Skip to content

Commit

Permalink
[media] add blackfin capture bridge driver
Browse files Browse the repository at this point in the history
This is a v4l2 bridge driver for Blackfin video capture device, support ppi and eppi interface.

Signed-off-by: Scott Jiang <scott.jiang.linux@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Scott Jiang authored and Mauro Carvalho Chehab committed Mar 19, 2012
1 parent f877ed9 commit 63b1a90
Show file tree
Hide file tree
Showing 8 changed files with 1,457 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/media/video/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,8 @@ source "drivers/media/video/davinci/Kconfig"

source "drivers/media/video/omap/Kconfig"

source "drivers/media/video/blackfin/Kconfig"

config VIDEO_SH_VOU
tristate "SuperH VOU video output driver"
depends on VIDEO_DEV && ARCH_SHMOBILE
Expand Down
2 changes: 2 additions & 0 deletions drivers/media/video/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ obj-$(CONFIG_VIDEO_SAMSUNG_S5P_TV) += s5p-tv/

obj-$(CONFIG_VIDEO_SAMSUNG_S5P_G2D) += s5p-g2d/

obj-$(CONFIG_BLACKFIN) += blackfin/

obj-$(CONFIG_ARCH_DAVINCI) += davinci/

obj-$(CONFIG_VIDEO_SH_VOU) += sh_vou.o
Expand Down
10 changes: 10 additions & 0 deletions drivers/media/video/blackfin/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
config VIDEO_BLACKFIN_CAPTURE
tristate "Blackfin Video Capture Driver"
depends on VIDEO_V4L2 && BLACKFIN && I2C
select VIDEOBUF2_DMA_CONTIG
help
V4L2 bridge driver for Blackfin video capture device.
Choose PPI or EPPI as its interface.

To compile this driver as a module, choose M here: the
module will be called bfin_video_capture.
2 changes: 2 additions & 0 deletions drivers/media/video/blackfin/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bfin_video_capture-objs := bfin_capture.o ppi.o
obj-$(CONFIG_VIDEO_BLACKFIN_CAPTURE) += bfin_video_capture.o
Loading

0 comments on commit 63b1a90

Please sign in to comment.