blob: 19f253064bca6a2f9299218707f2dc925a43aa8c [file] [log] [blame]
Bin Meng858429b2018-06-12 08:36:18 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
4 *
5 * Generic EFI payload device tree for x86 targets
6 */
7
8/dts-v1/;
9
10/include/ "skeleton.dtsi"
11/include/ "serial.dtsi"
12/include/ "keyboard.dtsi"
Bin Mengaf5b8d22018-07-19 03:07:33 -070013/include/ "reset.dtsi"
Bin Meng858429b2018-06-12 08:36:18 -070014/include/ "rtc.dtsi"
15/include/ "tsc_timer.dtsi"
16
17/ {
18 model = "EFI x86 Payload";
19 compatible = "efi,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
33 pci {
34 compatible = "pci-x86";
35 u-boot,dm-pre-reloc;
36 };
Bin Meng5d69a5c2018-06-12 08:36:23 -070037
38 efi-fb {
39 compatible = "efi-fb";
40 };
Bin Meng858429b2018-06-12 08:36:18 -070041};