diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2011-02-12 16:05:06 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-03-22 03:53:54 -0400 |
commit | 7e8970e1d5ae9237d00909599e70f85fce1fc489 (patch) | |
tree | 631dbd30df058c8ad337a9363a915d57ab2f1320 | |
parent | 68e342b3068cae62f3378cb4a1d385734ea52784 (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-- | MAINTAINERS | 6 | ||||
-rw-r--r-- | drivers/media/video/Kconfig | 13 | ||||
-rw-r--r-- | drivers/media/video/Makefile | 2 | ||||
-rw-r--r-- | drivers/media/video/omap3isp/Makefile | 13 | ||||
-rw-r--r-- | include/linux/Kbuild | 1 |
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 | |||
4556 | S: Maintained | 4556 | S: Maintained |
4557 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 4557 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c |
4558 | 4558 | ||
4559 | OMAP IMAGE SIGNAL PROCESSOR (ISP) | ||
4560 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | ||
4561 | L: linux-media@vger.kernel.org | ||
4562 | S: Maintained | ||
4563 | F: drivers/media/video/omap3isp/* | ||
4564 | |||
4559 | OMAP USB SUPPORT | 4565 | OMAP USB SUPPORT |
4560 | M: Felipe Balbi <balbi@ti.com> | 4566 | M: Felipe Balbi <balbi@ti.com> |
4561 | M: David Brownell <dbrownell@users.sourceforge.net> | 4567 | M: 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 | ||
749 | config 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 | |||
756 | config 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 | |||
749 | config SOC_CAMERA | 762 | config 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 | ||
130 | obj-$(CONFIG_VIDEO_VIA_CAMERA) += via-camera.o | 130 | obj-$(CONFIG_VIDEO_VIA_CAMERA) += via-camera.o |
131 | 131 | ||
132 | obj-$(CONFIG_VIDEO_OMAP3) += omap3isp/ | ||
133 | |||
132 | obj-$(CONFIG_USB_ZR364XX) += zr364xx.o | 134 | obj-$(CONFIG_USB_ZR364XX) += zr364xx.o |
133 | obj-$(CONFIG_USB_STKWEBCAM) += stkwebcam.o | 135 | obj-$(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 | |||
3 | ifdef CONFIG_VIDEO_OMAP3_DEBUG | ||
4 | EXTRA_CFLAGS += -DDEBUG | ||
5 | endif | ||
6 | |||
7 | omap3-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 | |||
13 | obj-$(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 | |||
277 | header-y += nl80211.h | 277 | header-y += nl80211.h |
278 | header-y += nubus.h | 278 | header-y += nubus.h |
279 | header-y += nvram.h | 279 | header-y += nvram.h |
280 | header-y += omap3isp.h | ||
280 | header-y += omapfb.h | 281 | header-y += omapfb.h |
281 | header-y += oom.h | 282 | header-y += oom.h |
282 | header-y += param.h | 283 | header-y += param.h |