Skip to content

Commit

Permalink
drm/i2c: tda9950: add CEC driver
Browse files Browse the repository at this point in the history
Add a CEC driver for the TDA9950, which is a stand-alone I2C CEC device,
but is also integrated into HDMI transceivers such as the TDA9989 and
TDA19989.

The TDA9950 contains a command processor which handles retransmissions
and the low level bus protocol.  The driver just has to read and write
the messages, and handle error conditions.

Reviewed-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
  • Loading branch information
Russell King committed Apr 24, 2018
1 parent ba8975f commit f0316f9
Show file tree
Hide file tree
Showing 4 changed files with 531 additions and 0 deletions.
5 changes: 5 additions & 0 deletions drivers/gpu/drm/i2c/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,9 @@ config DRM_I2C_NXP_TDA998X
help
Support for NXP Semiconductors TDA998X HDMI encoders.

config DRM_I2C_NXP_TDA9950
tristate "NXP Semiconductors TDA9950/TDA998X HDMI CEC"
select CEC_NOTIFIER
select CEC_CORE

endmenu
1 change: 1 addition & 0 deletions drivers/gpu/drm/i2c/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ obj-$(CONFIG_DRM_I2C_SIL164) += sil164.o

tda998x-y := tda998x_drv.o
obj-$(CONFIG_DRM_I2C_NXP_TDA998X) += tda998x.o
obj-$(CONFIG_DRM_I2C_NXP_TDA9950) += tda9950.o
Loading

0 comments on commit f0316f9

Please sign in to comment.