mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-25 19:07:46 +00:00
33c14ff838
FIMC (CAMIF) device is a camera interface embedded in S3C/S5P Samsung SOC series. It supports ITU-R BT.601/656 and MIPI-CSI2 standards, memory to memory operations, color conversion, resizing and rotation. Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
26 lines
466 B
Makefile
26 lines
466 B
Makefile
# arch/arm/plat-s5p/Makefile
|
|
#
|
|
# Copyright (c) 2009 Samsung Electronics Co., Ltd.
|
|
# http://www.samsung.com/
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n := dummy.o
|
|
obj- :=
|
|
|
|
# Core files
|
|
|
|
obj-y += dev-uart.o
|
|
obj-y += cpu.o
|
|
obj-y += clock.o
|
|
obj-y += irq.o
|
|
obj-$(CONFIG_S5P_EXT_INT) += irq-eint.o
|
|
|
|
# devices
|
|
|
|
obj-$(CONFIG_S5P_DEV_FIMC0) += dev-fimc0.o
|
|
obj-$(CONFIG_S5P_DEV_FIMC1) += dev-fimc1.o
|
|
obj-$(CONFIG_S5P_DEV_FIMC2) += dev-fimc2.o
|