mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 10:48:51 +00:00
e98a03ca68
This makes use of the existing device tree node to use driver model for the serial console. Signed-off-by: Simon Glass <sjg@chromium.org>
17 lines
248 B
Text
17 lines
248 B
Text
/include/ "skeleton.dtsi"
|
|
|
|
/ {
|
|
chosen {
|
|
stdout-path = "/serial";
|
|
};
|
|
|
|
serial {
|
|
compatible = "coreboot-uart";
|
|
reg = <0x3f8 0x10>;
|
|
reg-shift = <0>;
|
|
io-mapped = <1>;
|
|
multiplier = <1>;
|
|
baudrate = <115200>;
|
|
status = "disabled";
|
|
};
|
|
};
|