mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
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>
This commit is contained in:
parent
66c3724656
commit
23f965a4c6
11 changed files with 285 additions and 1 deletions
|
@ -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"
|
||||
|
|
|
@ -76,6 +76,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
dsi_host: dsi_host {
|
||||
compatible = "sandbox,dsi-host";
|
||||
};
|
||||
|
||||
a-test {
|
||||
reg = <0 1>;
|
||||
compatible = "denx,u-boot-fdt-test";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue