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 }; 26}; 27