Skip to content

Commit

Permalink
add it66121 hdmi support for BB-GREEN-HDMI-00A0 cape
Browse files Browse the repository at this point in the history
fixes: beagleboard/linux#112
Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
  • Loading branch information
RobertCNelson committed Jan 6, 2017
1 parent fb4d702 commit 093b2db
Show file tree
Hide file tree
Showing 5 changed files with 2,803 additions and 10 deletions.
1 change: 1 addition & 0 deletions patch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,7 @@ reverts () {
}

drivers () {
dir 'drivers/it66121'
dir 'drivers/tsl2550'
dir 'drivers/ti/pm'
dir 'drivers/wireless'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Signed-off-by: Matt Porter <mporter@konsulko.com>
create mode 100644 drivers/gpu/drm/i2c/adihdmi_drv.c

diff --git a/drivers/gpu/drm/i2c/Kconfig b/drivers/gpu/drm/i2c/Kconfig
index 22c7ed6..d19bd80 100644
index 74e144078c43..4d32af8fd492 100644
--- a/drivers/gpu/drm/i2c/Kconfig
+++ b/drivers/gpu/drm/i2c/Kconfig
@@ -7,6 +7,12 @@ config DRM_I2C_ADV7511
Expand All @@ -37,19 +37,19 @@ index 22c7ed6..d19bd80 100644
tristate "Chrontel ch7006 TV encoder"
default m if DRM_NOUVEAU
diff --git a/drivers/gpu/drm/i2c/Makefile b/drivers/gpu/drm/i2c/Makefile
index 2c72eb5..5a509ae 100644
index b43c6d2b41c1..f5beafe7aff3 100644
--- a/drivers/gpu/drm/i2c/Makefile
+++ b/drivers/gpu/drm/i2c/Makefile
@@ -10,3 +10,6 @@ obj-$(CONFIG_DRM_I2C_SIL164) += sil164.o
@@ -13,3 +13,6 @@ obj-$(CONFIG_DRM_I2C_NXP_TDA998X) += tda998x.o

tda998x-y := tda998x_drv.o
obj-$(CONFIG_DRM_I2C_NXP_TDA998X) += tda998x.o
it66121-y := it66121_drv.o
obj-$(CONFIG_DRM_I2C_IT66121) += it66121.o
+
+adihdmi-y := adihdmi_drv.o
+obj-$(CONFIG_DRM_I2C_ADIHDMI) += adihdmi.o
diff --git a/drivers/gpu/drm/i2c/adihdmi.h b/drivers/gpu/drm/i2c/adihdmi.h
new file mode 100644
index 0000000..58d9a2b
index 000000000000..58d9a2b274ea
--- /dev/null
+++ b/drivers/gpu/drm/i2c/adihdmi.h
@@ -0,0 +1,289 @@
Expand Down Expand Up @@ -344,7 +344,7 @@ index 0000000..58d9a2b
+#endif /* __DRM_I2C_ADIHDMI_H__ */
diff --git a/drivers/gpu/drm/i2c/adihdmi_drv.c b/drivers/gpu/drm/i2c/adihdmi_drv.c
new file mode 100644
index 0000000..8ffef6c
index 000000000000..8ffef6c32f11
--- /dev/null
+++ b/drivers/gpu/drm/i2c/adihdmi_drv.c
@@ -0,0 +1,1088 @@
Expand Down Expand Up @@ -1437,5 +1437,5 @@ index 0000000..8ffef6c
+MODULE_DESCRIPTION("ADIHDMI HDMI transmitter driver");
+MODULE_LICENSE("GPL");
--
2.8.0.rc3
2.11.0

3 changes: 2 additions & 1 deletion patches/defconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm 4.4.32 Kernel Configuration
# Linux/arm 4.4.40 Kernel Configuration
#
CONFIG_ARM=y
CONFIG_ARM_HAS_SG_CHAIN=y
Expand Down Expand Up @@ -3902,6 +3902,7 @@ CONFIG_DRM_I2C_ADIHDMI=m
# CONFIG_DRM_I2C_CH7006 is not set
CONFIG_DRM_I2C_SIL164=m
CONFIG_DRM_I2C_NXP_TDA998X=m
CONFIG_DRM_I2C_IT66121=m
CONFIG_DRM_VGEM=m
# CONFIG_DRM_EXYNOS is not set
CONFIG_DRM_UDL=m
Expand Down
Loading

0 comments on commit 093b2db

Please sign in to comment.