[U-Boot] [PATCH v2 1/1] video: dw_hdmi: Add support for ddc-i2c-bus property

2019-07-27 Thread Niklas Schulze
Signed-off-by: Niklas Schulze --- drivers/video/dw_hdmi.c | 13 + drivers/video/meson/meson_dw_hdmi.c | 3 +++ drivers/video/rockchip/rk_hdmi.c| 3 +++ drivers/video/sunxi/sunxi_dw_hdmi.c | 3 +++ include/dw_hdmi.h | 1 + 5 files changed, 23

[U-Boot] [PATCH 1/1] rockchip: video: rk3288_hdmi: Add missing call to dw_hdmi_enable()

2019-07-14 Thread Niklas Schulze
The RK3288 HDMI driver's rk3288_hdmi_enable() currently lacks a call to dw_hdmi_enable(). Thus, the HDMI output never gets enabled. Signed-off-by: Niklas Schulze Cc: Philipp Tomsich --- drivers/video/rockchip/rk3288_hdmi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --

[U-Boot] [PATCH 1/1] video: dw_hdmi: Add support for ddc-i2c-bus property

2019-07-17 Thread Niklas Schulze
Add support for the ddc-i2c-bus device tree property which allows for using an external i2c master for reading the display's EDID. Signed-off-by: Niklas Schulze --- drivers/video/dw_hdmi.c | 10 ++ drivers/video/meson/meson_dw_hdmi.c | 2 ++ drivers/video/rockchip/rk_h