u-boot-brain/arch/x86/dts/coreboot.dtsi
Simon Glass e98a03ca68 dm: x86: Convert coreboot serial to use driver model
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>
2014-10-23 19:45:45 -06:00

18 lines
248 B
Plaintext

/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";
};
};