mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
x86: Add a minimal device tree for alex x86
The device tree now includes the necessary console configuration information. Signed-off-by: Gabe Black <gabeblack@chromium.org> Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
028a56289a
commit
9ad4736e32
1 changed files with 30 additions and 0 deletions
30
board/chromebook-x86/dts/x86-alex.dts
Normal file
30
board/chromebook-x86/dts/x86-alex.dts
Normal file
|
@ -0,0 +1,30 @@
|
|||
/dts-v1/;
|
||||
|
||||
/ {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
model = "Google Alex";
|
||||
compatible = "google,alex", "intel,atom-pineview";
|
||||
|
||||
config {
|
||||
silent_console = <0>;
|
||||
};
|
||||
|
||||
aliases {
|
||||
console = "/serial@e0401000";
|
||||
};
|
||||
|
||||
serial@e0401000 {
|
||||
compatible = "ns16550";
|
||||
reg = <0xe0401000 0x40>;
|
||||
id = <1>;
|
||||
reg-shift = <1>;
|
||||
baudrate = <115200>;
|
||||
clock-frequency = <4000000>;
|
||||
multiplier = <1>;
|
||||
status = "ok";
|
||||
};
|
||||
|
||||
chosen { };
|
||||
memory { device_type = "memory"; reg = <0 0>; };
|
||||
};
|
Loading…
Reference in a new issue