blob: 38ddaafa1981a12de5aabb0deb840a9c972e1897 [file] [log] [blame]
Bin Meng204e1e52018-08-10 02:39:33 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
4 *
5 * Generic coreboot payload device tree for x86 targets
6 */
7
8/dts-v1/;
9
10/include/ "skeleton.dtsi"
Bin Meng204e1e52018-08-10 02:39:33 -070011/include/ "keyboard.dtsi"
Bin Mengd2232ef2019-02-26 01:52:21 -080012/include/ "pcspkr.dtsi"
Bin Meng204e1e52018-08-10 02:39:33 -070013/include/ "reset.dtsi"
14/include/ "rtc.dtsi"
15/include/ "tsc_timer.dtsi"
16
17/ {
18 model = "coreboot x86 payload";
19 compatible = "coreboot,x86-payload";
20
21 aliases {
22 serial0 = &serial;
23 };
24
25 config {
26 silent_console = <0>;
27 };
28
29 chosen {
30 stdout-path = "/serial";
31 };
32
Bin Meng86758452018-08-10 02:39:37 -070033 tsc-timer {
34 clock-frequency = <1000000000>;
35 };
36
Bin Meng204e1e52018-08-10 02:39:33 -070037 pci {
38 compatible = "pci-x86";
39 u-boot,dm-pre-reloc;
40 };
41
Simon Glassfcddf8a2019-12-19 17:58:21 -070042 serial: serial {
43 u-boot,dm-pre-reloc;
44 compatible = "coreboot-serial";
45 };
46
Bin Meng204e1e52018-08-10 02:39:33 -070047 coreboot-fb {
48 compatible = "coreboot-fb";
49 };
50};