diff options
author | Magnus Damm <magnus.damm@gmail.com> | 2008-07-17 00:59:28 +0200 |
---|---|---|
committer | Magnus Damm <magnus.damm@gmail.com> | 2008-07-17 00:59:28 +0200 |
commit | 22a4b32d43ab24e459a3d454f2bd89ec0193056d (patch) | |
tree | 379a77192d7b333c3715d4a5f67230636116eb5d /linux/drivers/media/video/Makefile | |
parent | 2bddd0c00ca2ada3437d201131eaf36cde36f653 (diff) | |
download | mediapointer-dvb-s2-22a4b32d43ab24e459a3d454f2bd89ec0193056d.tar.gz mediapointer-dvb-s2-22a4b32d43ab24e459a3d454f2bd89ec0193056d.tar.bz2 |
sh_mobile_ceu_camera: Add SuperH Mobile CEU driver V3
This is V3 of the SuperH Mobile CEU soc_camera driver.
The CEU hardware block is configured in a transparent data fetch
mode, frames are captured from the attached camera and written to
physically contiguous memory buffers provided by the newly added
videobuf-dma-contig queue. Tested on sh7722 and sh7723 processors.
Signed-off-by: Magnus Damm <damm@igel.co.jp>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@pengutronix.de>
---
Changes since V2:
- remove SUPERH Kconfig dependency
- move sh_mobile_ceu.h to include/media
- add board callback support with enable_camera()/disable_camera()
- add support for declare_coherent_memory
- rework video memory limit
- more verbose error messages
Changes since V1:
- fixed the CEU driver to work with the newly updated patches
drivers/media/video/Kconfig | 8
drivers/media/video/Makefile | 1
drivers/media/video/sh_mobile_ceu_camera.c | 657 ++++++++++++++++++++++++++++
include/media/sh_mobile_ceu.h | 12
4 files changed, 678 insertions(+)
Diffstat (limited to 'linux/drivers/media/video/Makefile')
-rw-r--r-- | linux/drivers/media/video/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux/drivers/media/video/Makefile b/linux/drivers/media/video/Makefile index 84aa5a5e3..b6120c32a 100644 --- a/linux/drivers/media/video/Makefile +++ b/linux/drivers/media/video/Makefile @@ -134,6 +134,7 @@ obj-$(CONFIG_VIDEO_VIVI) += vivi.o obj-$(CONFIG_VIDEO_CX23885) += cx23885/ obj-$(CONFIG_VIDEO_PXA27x) += pxa_camera.o +obj-$(CONFIG_VIDEO_SH_MOBILE_CEU) += sh_mobile_ceu_camera.o obj-$(CONFIG_SOC_CAMERA) += soc_camera.o obj-$(CONFIG_SOC_CAMERA_MT9M001) += mt9m001.o obj-$(CONFIG_SOC_CAMERA_MT9V022) += mt9v022.o |