mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
0a836ceb01
This patch adds device tree for the ST Micro stv0991 board & enables device tree control. Progressively device tree support for the drivers being used will also be added. Signed-off-by: Vikas Manocha <vikas.manocha@st.com> Reviewed-by: Simon Glass <sjg@chromium.org>
23 lines
360 B
Text
23 lines
360 B
Text
/dts-v1/;
|
|
|
|
/ {
|
|
model = "ST STV0991 application board";
|
|
compatible = "st,stv0991";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
chosen {
|
|
stdout-path = &uart0;
|
|
};
|
|
|
|
memory {
|
|
device_type="memory";
|
|
reg = <0x0 0x198000>;
|
|
};
|
|
|
|
uart0: serial@0x80406000 {
|
|
compatible = "arm,pl011", "arm,primecell";
|
|
reg = <0x80406000 0x1000>;
|
|
clock = <2700000>;
|
|
};
|
|
};
|