diff options
author | Yannick Fertré <yannick.fertre@st.com> | 2019-10-07 15:29:05 +0200 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2019-10-13 23:34:43 +0200 |
commit | 23f965a4c611e5c2d2576b5f8d2aa2ea6fffb24c (patch) | |
tree | e22352952c3220fbb074c95dfab9873e2c3fc9ac /arch/sandbox/dts/sandbox.dts | |
parent | 66c37246567c04416780f2c2b87aa251470e0585 (diff) |
dm: Add a dsi host uclass
Display Serial Interface (DSI) host can usefully be modelled
as their own uclass.
DSI defines a serial bus and a communication protocol
between the host and the device (panel, bridge).
Signed-off-by: Yannick Fertré <yannick.fertre@st.com>
Diffstat (limited to 'arch/sandbox/dts/sandbox.dts')
-rw-r--r-- | arch/sandbox/dts/sandbox.dts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/sandbox/dts/sandbox.dts b/arch/sandbox/dts/sandbox.dts index 16a33db87d..f1637c80f6 100644 --- a/arch/sandbox/dts/sandbox.dts +++ b/arch/sandbox/dts/sandbox.dts @@ -25,6 +25,11 @@ compatible = "google,cros-ec-sandbox"; }; + dsi_host: dsi_host { + compatible = "sandbox,dsi-host"; + status = "okay"; + }; + ethrawbus { compatible = "sandbox,eth-raw-bus"; skip-localhost = <0>; @@ -63,7 +68,6 @@ compatible = "sandbox,spi"; cs-gpios = <0>, <&gpio_a 0>; }; - }; #include "sandbox.dtsi" |