1// SPDX-License-Identifier: GPL-2.0
2
3/ {
4	bus@10000000 {
5		compatible = "simple-bus";
6		#address-cells = <2>;
7		#size-cells = <2>;
8		ranges = <0 0x10000000 0 0x10000000 0 0x10000000
9				0 0x40000000 0 0x40000000 0 0x40000000
10				0xfd 0xfe000000 0xfd 0xfe000000  0 0x2000000 /* PCI Config Space */>;
11
12		isa {
13			compatible = "isa";
14			#address-cells = <2>;
15			#size-cells = <1>;
16			ranges = <1 0 0 0 0x1000>;
17
18			rtc0: rtc@70 {
19				compatible = "motorola,mc146818";
20				reg = <1 0x70 0x8>;
21				interrupts = <8>;
22				interrupt-parent = <&htpic>;
23			};
24
25			acpi@800 {
26				compatible = "loongson,rs780e-acpi";
27				reg = <1 0x800 0x100>;
28			};
29		};
30	};
31};
32