2018-08-10 09:39:33 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
*
|
|
|
|
* Generic coreboot payload device tree for x86 targets
|
|
|
|
*/
|
|
|
|
|
|
|
|
/dts-v1/;
|
|
|
|
|
|
|
|
/include/ "skeleton.dtsi"
|
|
|
|
/include/ "keyboard.dtsi"
|
2019-02-26 09:52:21 +00:00
|
|
|
/include/ "pcspkr.dtsi"
|
2018-08-10 09:39:33 +00:00
|
|
|
/include/ "reset.dtsi"
|
|
|
|
/include/ "rtc.dtsi"
|
|
|
|
/include/ "tsc_timer.dtsi"
|
|
|
|
|
|
|
|
/ {
|
|
|
|
model = "coreboot x86 payload";
|
|
|
|
compatible = "coreboot,x86-payload";
|
|
|
|
|
|
|
|
aliases {
|
|
|
|
serial0 = &serial;
|
|
|
|
};
|
|
|
|
|
|
|
|
config {
|
|
|
|
silent_console = <0>;
|
|
|
|
};
|
|
|
|
|
|
|
|
chosen {
|
|
|
|
stdout-path = "/serial";
|
|
|
|
};
|
|
|
|
|
2018-08-10 09:39:37 +00:00
|
|
|
tsc-timer {
|
|
|
|
clock-frequency = <1000000000>;
|
|
|
|
};
|
|
|
|
|
2018-08-10 09:39:33 +00:00
|
|
|
pci {
|
|
|
|
compatible = "pci-x86";
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
};
|
|
|
|
|
2019-12-20 00:58:21 +00:00
|
|
|
serial: serial {
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
compatible = "coreboot-serial";
|
|
|
|
};
|
|
|
|
|
2018-08-10 09:39:33 +00:00
|
|
|
coreboot-fb {
|
|
|
|
compatible = "coreboot-fb";
|
|
|
|
};
|
|
|
|
};
|