aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2011-02-12 16:05:06 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-03-22 03:53:54 -0400
commit7e8970e1d5ae9237d00909599e70f85fce1fc489 (patch)
tree631dbd30df058c8ad337a9363a915d57ab2f1320
parent68e342b3068cae62f3378cb4a1d385734ea52784 (diff)
[media] omap3isp: Kconfig and Makefile
Add the OMAP3 ISP driver to the kernel build system. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--MAINTAINERS6
-rw-r--r--drivers/media/video/Kconfig13
-rw-r--r--drivers/media/video/Makefile2
-rw-r--r--drivers/media/video/omap3isp/Makefile13
-rw-r--r--include/linux/Kbuild1
5 files changed, 35 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index f1bc3dc6b369..1034f4a67347 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -4556,6 +4556,12 @@ L: linux-omap@vger.kernel.org
4556S: Maintained 4556S: Maintained
4557F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c 4557F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
4558 4558
4559OMAP IMAGE SIGNAL PROCESSOR (ISP)
4560M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4561L: linux-media@vger.kernel.org
4562S: Maintained
4563F: drivers/media/video/omap3isp/*
4564
4559OMAP USB SUPPORT 4565OMAP USB SUPPORT
4560M: Felipe Balbi <balbi@ti.com> 4566M: Felipe Balbi <balbi@ti.com>
4561M: David Brownell <dbrownell@users.sourceforge.net> 4567M: David Brownell <dbrownell@users.sourceforge.net>
diff --git a/drivers/media/video/Kconfig b/drivers/media/video/Kconfig
index e2f5a69aa400..4498b944dec8 100644
--- a/drivers/media/video/Kconfig
+++ b/drivers/media/video/Kconfig
@@ -746,6 +746,19 @@ config VIDEO_NOON010PC30
746 ---help--- 746 ---help---
747 This driver supports NOON010PC30 CIF camera from Siliconfile 747 This driver supports NOON010PC30 CIF camera from Siliconfile
748 748
749config VIDEO_OMAP3
750 tristate "OMAP 3 Camera support (EXPERIMENTAL)"
751 select OMAP_IOMMU
752 depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API && ARCH_OMAP3 && EXPERIMENTAL
753 ---help---
754 Driver for an OMAP 3 camera controller.
755
756config VIDEO_OMAP3_DEBUG
757 bool "OMAP 3 Camera debug messages"
758 depends on VIDEO_OMAP3
759 ---help---
760 Enable debug messages on OMAP 3 camera controller driver.
761
749config SOC_CAMERA 762config SOC_CAMERA
750 tristate "SoC camera support" 763 tristate "SoC camera support"
751 depends on VIDEO_V4L2 && HAS_DMA && I2C 764 depends on VIDEO_V4L2 && HAS_DMA && I2C
diff --git a/drivers/media/video/Makefile b/drivers/media/video/Makefile
index 7ea65163090e..ace5d8b57221 100644
--- a/drivers/media/video/Makefile
+++ b/drivers/media/video/Makefile
@@ -129,6 +129,8 @@ obj-$(CONFIG_VIDEO_CAFE_CCIC) += cafe_ccic.o
129 129
130obj-$(CONFIG_VIDEO_VIA_CAMERA) += via-camera.o 130obj-$(CONFIG_VIDEO_VIA_CAMERA) += via-camera.o
131 131
132obj-$(CONFIG_VIDEO_OMAP3) += omap3isp/
133
132obj-$(CONFIG_USB_ZR364XX) += zr364xx.o 134obj-$(CONFIG_USB_ZR364XX) += zr364xx.o
133obj-$(CONFIG_USB_STKWEBCAM) += stkwebcam.o 135obj-$(CONFIG_USB_STKWEBCAM) += stkwebcam.o
134 136
diff --git a/drivers/media/video/omap3isp/Makefile b/drivers/media/video/omap3isp/Makefile
new file mode 100644
index 000000000000..b1b344774ae7
--- /dev/null
+++ b/drivers/media/video/omap3isp/Makefile
@@ -0,0 +1,13 @@
1# Makefile for OMAP3 ISP driver
2
3ifdef CONFIG_VIDEO_OMAP3_DEBUG
4EXTRA_CFLAGS += -DDEBUG
5endif
6
7omap3-isp-objs += \
8 isp.o ispqueue.o ispvideo.o \
9 ispcsiphy.o ispccp2.o ispcsi2.o \
10 ispccdc.o isppreview.o ispresizer.o \
11 ispstat.o isph3a_aewb.o isph3a_af.o isphist.o
12
13obj-$(CONFIG_VIDEO_OMAP3) += omap3-isp.o
diff --git a/include/linux/Kbuild b/include/linux/Kbuild
index 43918a34db9f..75cf611641e6 100644
--- a/include/linux/Kbuild
+++ b/include/linux/Kbuild
@@ -277,6 +277,7 @@ header-y += nfsacl.h
277header-y += nl80211.h 277header-y += nl80211.h
278header-y += nubus.h 278header-y += nubus.h
279header-y += nvram.h 279header-y += nvram.h
280header-y += omap3isp.h
280header-y += omapfb.h 281header-y += omapfb.h
281header-y += oom.h 282header-y += oom.h
282header-y += param.h 283header-y += param.h