blob: 2e785fa4bf507ed38f6d92d472c0f2f7b81195e4 [file] [log] [blame]
Bin Menga65b25d2015-05-07 21:34:08 +08001/*
2 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7/dts-v1/;
8
Bin Meng5c564222015-06-03 09:20:06 +08009#include <dt-bindings/interrupt-router/intel-irq.h>
10
11/* ICH9 IRQ router has discrete PIRQ control registers */
12#undef PIRQE
13#undef PIRQF
14#undef PIRQG
15#undef PIRQH
16#define PIRQE 8
17#define PIRQF 9
18#define PIRQG 10
19#define PIRQH 11
20
Bin Menga65b25d2015-05-07 21:34:08 +080021/include/ "skeleton.dtsi"
22/include/ "serial.dtsi"
Bin Meng93f8a312015-07-15 16:23:39 +080023/include/ "rtc.dtsi"
Bin Menga65b25d2015-05-07 21:34:08 +080024
25/ {
Bin Meng683b09d2015-06-03 09:20:04 +080026 model = "QEMU x86 (Q35)";
Bin Menga65b25d2015-05-07 21:34:08 +080027 compatible = "qemu,x86";
28
29 config {
30 silent_console = <0>;
Bin Mengf2653e82015-06-03 09:20:05 +080031 u-boot,no-apm-finalize;
Bin Menga65b25d2015-05-07 21:34:08 +080032 };
33
34 chosen {
35 stdout-path = "/serial";
36 };
37
Bin Menga8ebf282015-07-22 01:21:13 -070038 cpus {
39 #address-cells = <1>;
40 #size-cells = <0>;
41
42 cpu@0 {
43 device_type = "cpu";
44 compatible = "cpu-x86";
45 reg = <0>;
46 intel,apic-id = <0>;
47 };
48 };
49
Bin Menga65b25d2015-05-07 21:34:08 +080050 pci {
51 compatible = "pci-x86";
52 #address-cells = <3>;
53 #size-cells = <2>;
54 u-boot,dm-pre-reloc;
55 ranges = <0x02000000 0x0 0xc0000000 0xc0000000 0 0x10000000
56 0x42000000 0x0 0xd0000000 0xd0000000 0 0x10000000
57 0x01000000 0x0 0x2000 0x2000 0 0xe000>;
Bin Meng5c564222015-06-03 09:20:06 +080058
59 irq-router@1f,0 {
60 reg = <0x0000f800 0 0 0 0>;
61 compatible = "intel,irq-router";
62 intel,pirq-config = "pci";
63 intel,pirq-link = <0x60 8>;
64 intel,pirq-mask = <0x0e40>;
65 intel,pirq-routing = <
66 /* e1000 NIC */
67 PCI_BDF(0, 2, 0) INTA PIRQG
68 /* ICH9 UHCI */
69 PCI_BDF(0, 29, 0) INTA PIRQA
70 PCI_BDF(0, 29, 1) INTB PIRQB
71 PCI_BDF(0, 29, 2) INTC PIRQC
72 /* ICH9 EHCI */
73 PCI_BDF(0, 29, 7) INTD PIRQD
74 /* ICH9 SATA */
75 PCI_BDF(0, 31, 2) INTA PIRQA
76 >;
77 };
Bin Menga65b25d2015-05-07 21:34:08 +080078 };
79
80};