diff options
author | Niklas Schulze <me@jns.io> | 2019-07-27 12:07:13 +0000 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2019-07-29 00:32:59 +0200 |
commit | 60a62acfb07afb0815f28abe6f49a9b906a7c3f4 (patch) | |
tree | 84b3875ef9c441ffb7c8a5275423f68cf25a0aed /include/dw_hdmi.h | |
parent | 233358c46a753438d9f0c26dc67dad3ddecca1e9 (diff) | |
download | u-boot-60a62acfb07afb0815f28abe6f49a9b906a7c3f4.tar.gz |
video: dw_hdmi: Add support for ddc-i2c-bus property
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 <me@jns.io>
Diffstat (limited to 'include/dw_hdmi.h')
-rw-r--r-- | include/dw_hdmi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dw_hdmi.h b/include/dw_hdmi.h index 90fb64bc99..8acae3839f 100644 --- a/include/dw_hdmi.h +++ b/include/dw_hdmi.h @@ -542,6 +542,7 @@ struct dw_hdmi { u8 i2c_clk_low; u8 reg_io_width; struct hdmi_data_info hdmi_data; + struct udevice *ddc_bus; int (*phy_set)(struct dw_hdmi *hdmi, uint mpixelclock); void (*write_reg)(struct dw_hdmi *hdmi, u8 val, int offset); |