[media] cobalt: add new driver
authorHans Verkuil <hans.verkuil@cisco.com>
Tue, 12 May 2015 11:52:21 +0000 (08:52 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Wed, 20 May 2015 16:44:01 +0000 (13:44 -0300)
The cobalt device is a PCIe card with 4 HDMI inputs (adv7604) and a
connector that can be used to hook up an adv7511 transmitter or an
adv7842 receiver daughterboard.

This device is used within Cisco but is sadly not available outside
of Cisco. Nevertheless it is a very interesting driver that can serve
as an example of how to support HDMI hardware and how to use the popular
adv devices.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
30 files changed:
MAINTAINERS
drivers/media/pci/Kconfig
drivers/media/pci/Makefile
drivers/media/pci/cobalt/Kconfig [new file with mode: 0644]
drivers/media/pci/cobalt/Makefile [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-alsa-main.c [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-alsa-pcm.c [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-alsa-pcm.h [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-alsa.h [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-cpld.c [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-cpld.h [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-driver.c [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-driver.h [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-flash.c [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-flash.h [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-i2c.c [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-i2c.h [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-irq.c [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-irq.h [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-omnitek.c [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-omnitek.h [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-v4l2.c [new file with mode: 0644]
drivers/media/pci/cobalt/cobalt-v4l2.h [new file with mode: 0644]
drivers/media/pci/cobalt/m00233_video_measure_memmap_package.h [new file with mode: 0644]
drivers/media/pci/cobalt/m00235_fdma_packer_memmap_package.h [new file with mode: 0644]
drivers/media/pci/cobalt/m00389_cvi_memmap_package.h [new file with mode: 0644]
drivers/media/pci/cobalt/m00460_evcnt_memmap_package.h [new file with mode: 0644]
drivers/media/pci/cobalt/m00473_freewheel_memmap_package.h [new file with mode: 0644]
drivers/media/pci/cobalt/m00479_clk_loss_detector_memmap_package.h [new file with mode: 0644]
drivers/media/pci/cobalt/m00514_syncgen_flow_evcnt_memmap_package.h [new file with mode: 0644]

index 5579b55..3cfb979 100644 (file)
@@ -2602,6 +2602,14 @@ L:       platform-driver-x86@vger.kernel.org
 S:     Supported
 F:     drivers/platform/x86/classmate-laptop.c
 
+COBALT MEDIA DRIVER
+M:     Hans Verkuil <hans.verkuil@cisco.com>
+L:     linux-media@vger.kernel.org
+T:     git git://linuxtv.org/media_tree.git
+W:     http://linuxtv.org
+S:     Supported
+F:     drivers/media/pci/cobalt/
+
 COCCINELLE/Semantic Patches (SmPL)
 M:     Julia Lawall <Julia.Lawall@lip6.fr>
 M:     Gilles Muller <Gilles.Muller@lip6.fr>
index fd359fb..f318ae9 100644 (file)
@@ -33,6 +33,7 @@ source "drivers/media/pci/cx88/Kconfig"
 source "drivers/media/pci/bt8xx/Kconfig"
 source "drivers/media/pci/saa7134/Kconfig"
 source "drivers/media/pci/saa7164/Kconfig"
+source "drivers/media/pci/cobalt/Kconfig"
 
 endif
 
index 3471ab6..23ce53b 100644 (file)
@@ -28,3 +28,4 @@ obj-$(CONFIG_VIDEO_DT3155) += dt3155/
 obj-$(CONFIG_VIDEO_MEYE) += meye/
 obj-$(CONFIG_STA2X11_VIP) += sta2x11/
 obj-$(CONFIG_VIDEO_SOLO6X10) += solo6x10/
+obj-$(CONFIG_VIDEO_COBALT) += cobalt/
diff --git a/drivers/media/pci/cobalt/Kconfig b/drivers/media/pci/cobalt/Kconfig
new file mode 100644 (file)
index 0000000..e3c03e9
--- /dev/null
@@ -0,0 +1,18 @@
+config VIDEO_COBALT
+       tristate "Cisco Cobalt support"
+       depends on VIDEO_V4L2 && I2C && MEDIA_CONTROLLER
+       depends on PCI_MSI && MTD_COMPLEX_MAPPINGS
+       select I2C_ALGOBIT
+       select VIDEO_ADV7604
+       select VIDEO_ADV7511
+       select VIDEO_ADV7842
+       select VIDEOBUF2_DMA_SG
+       ---help---
+         This is a video4linux driver for the Cisco PCIe Cobalt card.
+
+         This board is sadly not available outside of Cisco, but it is
+         very useful as an example of a real driver that uses all the
+         latest frameworks and APIs.
+
+         To compile this driver as a module, choose M here: the
+         module will be called cobalt.
diff --git a/drivers/media/pci/cobalt/Makefile b/drivers/media/pci/cobalt/Makefile
new file mode 100644 (file)
index 0000000..b328955
--- /dev/null
@@ -0,0 +1,5 @@
+cobalt-objs    := cobalt-driver.o cobalt-irq.o cobalt-v4l2.o \
+                 cobalt-i2c.o cobalt-omnitek.o cobalt-flash.o cobalt-cpld.o \
+                 cobalt-alsa-main.o cobalt-alsa-pcm.o
+
+obj-$(CONFIG_VIDEO_COBALT) += cobalt.o
Simple merge
Simple merge
Simple merge
Simple merge