Skip to content

Commit

Permalink
[media] rainshadow-cec: new RainShadow Tech HDMI CEC driver
Browse files Browse the repository at this point in the history
This driver supports the RainShadow Tech USB HDMI CEC adapter.

See: http://rainshadowtech.com/HdmiCecUsb.html

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Apr 10, 2017
1 parent 04dffe1 commit 0f314f6
Show file tree
Hide file tree
Showing 6 changed files with 408 additions and 0 deletions.
7 changes: 7 additions & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -10456,6 +10456,13 @@ L: linux-fbdev@vger.kernel.org
S: Maintained
F: drivers/video/fbdev/aty/aty128fb.c

RAINSHADOW-CEC DRIVER
M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org
T: git git://linuxtv.org/media_tree.git
S: Maintained
F: drivers/media/usb/rainshadow-cec/*

RALINK MIPS ARCHITECTURE
M: John Crispin <john@phrozen.org>
L: linux-mips@linux-mips.org
Expand Down
1 change: 1 addition & 0 deletions drivers/media/usb/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ endif
if MEDIA_CEC_SUPPORT
comment "USB HDMI CEC adapters"
source "drivers/media/usb/pulse8-cec/Kconfig"
source "drivers/media/usb/rainshadow-cec/Kconfig"
endif

endif #MEDIA_USB_SUPPORT
Expand Down
1 change: 1 addition & 0 deletions drivers/media/usb/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ obj-$(CONFIG_VIDEO_USBTV) += usbtv/
obj-$(CONFIG_VIDEO_GO7007) += go7007/
obj-$(CONFIG_DVB_AS102) += as102/
obj-$(CONFIG_USB_PULSE8_CEC) += pulse8-cec/
obj-$(CONFIG_USB_RAINSHADOW_CEC) += rainshadow-cec/
10 changes: 10 additions & 0 deletions drivers/media/usb/rainshadow-cec/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
config USB_RAINSHADOW_CEC
tristate "RainShadow Tech HDMI CEC"
depends on USB_ACM && MEDIA_CEC_SUPPORT
select SERIO
select SERIO_SERPORT
---help---
This is a cec driver for the RainShadow Tech HDMI CEC device.

To compile this driver as a module, choose M here: the
module will be called rainshadow-cec.
1 change: 1 addition & 0 deletions drivers/media/usb/rainshadow-cec/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
obj-$(CONFIG_USB_RAINSHADOW_CEC) += rainshadow-cec.o
Loading

0 comments on commit 0f314f6

Please sign in to comment.