Home | History | Annotate | Line # | Download | only in dts
      1  1.1.1.7  jmcneill // SPDX-License-Identifier: GPL-2.0
      2      1.1  jmcneill /*
      3  1.1.1.7  jmcneill  * Device Tree Source for the R-Car E2 (R8A77940) SoC
      4      1.1  jmcneill  *
      5      1.1  jmcneill  * Copyright (C) 2014 Renesas Electronics Corporation
      6      1.1  jmcneill  * Copyright (C) 2014 Ulrich Hecht
      7      1.1  jmcneill  */
      8      1.1  jmcneill 
      9  1.1.1.4  jmcneill #include <dt-bindings/clock/r8a7794-cpg-mssr.h>
     10      1.1  jmcneill #include <dt-bindings/interrupt-controller/arm-gic.h>
     11      1.1  jmcneill #include <dt-bindings/interrupt-controller/irq.h>
     12      1.1  jmcneill #include <dt-bindings/power/r8a7794-sysc.h>
     13      1.1  jmcneill 
     14      1.1  jmcneill / {
     15      1.1  jmcneill 	compatible = "renesas,r8a7794";
     16      1.1  jmcneill 	#address-cells = <2>;
     17      1.1  jmcneill 	#size-cells = <2>;
     18      1.1  jmcneill 
     19      1.1  jmcneill 	aliases {
     20      1.1  jmcneill 		i2c0 = &i2c0;
     21      1.1  jmcneill 		i2c1 = &i2c1;
     22      1.1  jmcneill 		i2c2 = &i2c2;
     23      1.1  jmcneill 		i2c3 = &i2c3;
     24      1.1  jmcneill 		i2c4 = &i2c4;
     25      1.1  jmcneill 		i2c5 = &i2c5;
     26      1.1  jmcneill 		i2c6 = &i2c6;
     27      1.1  jmcneill 		i2c7 = &i2c7;
     28      1.1  jmcneill 		spi0 = &qspi;
     29      1.1  jmcneill 		vin0 = &vin0;
     30      1.1  jmcneill 		vin1 = &vin1;
     31      1.1  jmcneill 	};
     32      1.1  jmcneill 
     33  1.1.1.5  jmcneill 	/*
     34  1.1.1.5  jmcneill 	 * The external audio clocks are configured as 0 Hz fixed frequency
     35  1.1.1.5  jmcneill 	 * clocks by default.
     36  1.1.1.5  jmcneill 	 * Boards that provide audio clocks should override them.
     37  1.1.1.5  jmcneill 	 */
     38  1.1.1.5  jmcneill 	audio_clka: audio_clka {
     39  1.1.1.5  jmcneill 		compatible = "fixed-clock";
     40  1.1.1.5  jmcneill 		#clock-cells = <0>;
     41  1.1.1.5  jmcneill 		clock-frequency = <0>;
     42  1.1.1.5  jmcneill 	};
     43  1.1.1.5  jmcneill 	audio_clkb: audio_clkb {
     44  1.1.1.5  jmcneill 		compatible = "fixed-clock";
     45  1.1.1.5  jmcneill 		#clock-cells = <0>;
     46  1.1.1.5  jmcneill 		clock-frequency = <0>;
     47  1.1.1.5  jmcneill 	};
     48  1.1.1.5  jmcneill 	audio_clkc: audio_clkc {
     49  1.1.1.5  jmcneill 		compatible = "fixed-clock";
     50  1.1.1.5  jmcneill 		#clock-cells = <0>;
     51  1.1.1.5  jmcneill 		clock-frequency = <0>;
     52  1.1.1.5  jmcneill 	};
     53  1.1.1.5  jmcneill 
     54  1.1.1.5  jmcneill 	/* External CAN clock */
     55  1.1.1.5  jmcneill 	can_clk: can {
     56  1.1.1.5  jmcneill 		compatible = "fixed-clock";
     57  1.1.1.5  jmcneill 		#clock-cells = <0>;
     58  1.1.1.5  jmcneill 		/* This value must be overridden by the board. */
     59  1.1.1.5  jmcneill 		clock-frequency = <0>;
     60  1.1.1.5  jmcneill 	};
     61  1.1.1.5  jmcneill 
     62      1.1  jmcneill 	cpus {
     63      1.1  jmcneill 		#address-cells = <1>;
     64      1.1  jmcneill 		#size-cells = <0>;
     65      1.1  jmcneill 
     66      1.1  jmcneill 		cpu0: cpu@0 {
     67      1.1  jmcneill 			device_type = "cpu";
     68      1.1  jmcneill 			compatible = "arm,cortex-a7";
     69      1.1  jmcneill 			reg = <0>;
     70      1.1  jmcneill 			clock-frequency = <1000000000>;
     71  1.1.1.4  jmcneill 			clocks = <&cpg CPG_CORE R8A7794_CLK_Z2>;
     72      1.1  jmcneill 			power-domains = <&sysc R8A7794_PD_CA7_CPU0>;
     73  1.1.1.8  jmcneill 			enable-method = "renesas,apmu";
     74      1.1  jmcneill 			next-level-cache = <&L2_CA7>;
     75      1.1  jmcneill 		};
     76      1.1  jmcneill 
     77      1.1  jmcneill 		cpu1: cpu@1 {
     78      1.1  jmcneill 			device_type = "cpu";
     79      1.1  jmcneill 			compatible = "arm,cortex-a7";
     80      1.1  jmcneill 			reg = <1>;
     81      1.1  jmcneill 			clock-frequency = <1000000000>;
     82  1.1.1.4  jmcneill 			clocks = <&cpg CPG_CORE R8A7794_CLK_Z2>;
     83      1.1  jmcneill 			power-domains = <&sysc R8A7794_PD_CA7_CPU1>;
     84  1.1.1.8  jmcneill 			enable-method = "renesas,apmu";
     85      1.1  jmcneill 			next-level-cache = <&L2_CA7>;
     86      1.1  jmcneill 		};
     87      1.1  jmcneill 
     88  1.1.1.2  jmcneill 		L2_CA7: cache-controller-0 {
     89      1.1  jmcneill 			compatible = "cache";
     90      1.1  jmcneill 			power-domains = <&sysc R8A7794_PD_CA7_SCU>;
     91      1.1  jmcneill 			cache-unified;
     92      1.1  jmcneill 			cache-level = <2>;
     93      1.1  jmcneill 		};
     94      1.1  jmcneill 	};
     95      1.1  jmcneill 
     96  1.1.1.5  jmcneill 	/* External root clock */
     97  1.1.1.5  jmcneill 	extal_clk: extal {
     98  1.1.1.5  jmcneill 		compatible = "fixed-clock";
     99  1.1.1.5  jmcneill 		#clock-cells = <0>;
    100  1.1.1.5  jmcneill 		/* This value must be overridden by the board. */
    101  1.1.1.5  jmcneill 		clock-frequency = <0>;
    102      1.1  jmcneill 	};
    103      1.1  jmcneill 
    104  1.1.1.6  jmcneill 	pmu {
    105  1.1.1.6  jmcneill 		compatible = "arm,cortex-a7-pmu";
    106  1.1.1.6  jmcneill 		interrupts-extended = <&gic GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>,
    107  1.1.1.6  jmcneill 				      <&gic GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
    108  1.1.1.6  jmcneill 		interrupt-affinity = <&cpu0>, <&cpu1>;
    109  1.1.1.6  jmcneill 	};
    110  1.1.1.6  jmcneill 
    111  1.1.1.5  jmcneill 	/* External SCIF clock */
    112  1.1.1.5  jmcneill 	scif_clk: scif {
    113  1.1.1.5  jmcneill 		compatible = "fixed-clock";
    114  1.1.1.5  jmcneill 		#clock-cells = <0>;
    115  1.1.1.5  jmcneill 		/* This value must be overridden by the board. */
    116  1.1.1.5  jmcneill 		clock-frequency = <0>;
    117      1.1  jmcneill 	};
    118      1.1  jmcneill 
    119  1.1.1.5  jmcneill 	soc {
    120  1.1.1.5  jmcneill 		compatible = "simple-bus";
    121  1.1.1.5  jmcneill 		interrupt-parent = <&gic>;
    122      1.1  jmcneill 
    123  1.1.1.5  jmcneill 		#address-cells = <2>;
    124  1.1.1.5  jmcneill 		#size-cells = <2>;
    125  1.1.1.5  jmcneill 		ranges;
    126      1.1  jmcneill 
    127  1.1.1.6  jmcneill 		rwdt: watchdog@e6020000 {
    128  1.1.1.6  jmcneill 			compatible = "renesas,r8a7794-wdt",
    129  1.1.1.6  jmcneill 				     "renesas,rcar-gen2-wdt";
    130  1.1.1.6  jmcneill 			reg = <0 0xe6020000 0 0x0c>;
    131  1.1.1.6  jmcneill 			clocks = <&cpg CPG_MOD 402>;
    132  1.1.1.6  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    133  1.1.1.6  jmcneill 			resets = <&cpg 402>;
    134  1.1.1.6  jmcneill 			status = "disabled";
    135  1.1.1.6  jmcneill 		};
    136  1.1.1.6  jmcneill 
    137  1.1.1.5  jmcneill 		gpio0: gpio@e6050000 {
    138  1.1.1.5  jmcneill 			compatible = "renesas,gpio-r8a7794",
    139  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-gpio";
    140  1.1.1.5  jmcneill 			reg = <0 0xe6050000 0 0x50>;
    141  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>;
    142  1.1.1.5  jmcneill 			#gpio-cells = <2>;
    143  1.1.1.5  jmcneill 			gpio-controller;
    144  1.1.1.5  jmcneill 			gpio-ranges = <&pfc 0 0 32>;
    145  1.1.1.5  jmcneill 			#interrupt-cells = <2>;
    146  1.1.1.5  jmcneill 			interrupt-controller;
    147  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 912>;
    148  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    149  1.1.1.5  jmcneill 			resets = <&cpg 912>;
    150  1.1.1.5  jmcneill 		};
    151      1.1  jmcneill 
    152  1.1.1.5  jmcneill 		gpio1: gpio@e6051000 {
    153  1.1.1.5  jmcneill 			compatible = "renesas,gpio-r8a7794",
    154  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-gpio";
    155  1.1.1.5  jmcneill 			reg = <0 0xe6051000 0 0x50>;
    156  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>;
    157  1.1.1.5  jmcneill 			#gpio-cells = <2>;
    158  1.1.1.5  jmcneill 			gpio-controller;
    159  1.1.1.5  jmcneill 			gpio-ranges = <&pfc 0 32 26>;
    160  1.1.1.5  jmcneill 			#interrupt-cells = <2>;
    161  1.1.1.5  jmcneill 			interrupt-controller;
    162  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 911>;
    163  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    164  1.1.1.5  jmcneill 			resets = <&cpg 911>;
    165  1.1.1.5  jmcneill 		};
    166      1.1  jmcneill 
    167  1.1.1.5  jmcneill 		gpio2: gpio@e6052000 {
    168  1.1.1.5  jmcneill 			compatible = "renesas,gpio-r8a7794",
    169  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-gpio";
    170  1.1.1.5  jmcneill 			reg = <0 0xe6052000 0 0x50>;
    171  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
    172  1.1.1.5  jmcneill 			#gpio-cells = <2>;
    173  1.1.1.5  jmcneill 			gpio-controller;
    174  1.1.1.5  jmcneill 			gpio-ranges = <&pfc 0 64 32>;
    175  1.1.1.5  jmcneill 			#interrupt-cells = <2>;
    176  1.1.1.5  jmcneill 			interrupt-controller;
    177  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 910>;
    178  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    179  1.1.1.5  jmcneill 			resets = <&cpg 910>;
    180  1.1.1.5  jmcneill 		};
    181      1.1  jmcneill 
    182  1.1.1.5  jmcneill 		gpio3: gpio@e6053000 {
    183  1.1.1.5  jmcneill 			compatible = "renesas,gpio-r8a7794",
    184  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-gpio";
    185  1.1.1.5  jmcneill 			reg = <0 0xe6053000 0 0x50>;
    186  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>;
    187  1.1.1.5  jmcneill 			#gpio-cells = <2>;
    188  1.1.1.5  jmcneill 			gpio-controller;
    189  1.1.1.5  jmcneill 			gpio-ranges = <&pfc 0 96 32>;
    190  1.1.1.5  jmcneill 			#interrupt-cells = <2>;
    191  1.1.1.5  jmcneill 			interrupt-controller;
    192  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 909>;
    193  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    194  1.1.1.5  jmcneill 			resets = <&cpg 909>;
    195  1.1.1.5  jmcneill 		};
    196      1.1  jmcneill 
    197  1.1.1.5  jmcneill 		gpio4: gpio@e6054000 {
    198  1.1.1.5  jmcneill 			compatible = "renesas,gpio-r8a7794",
    199  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-gpio";
    200  1.1.1.5  jmcneill 			reg = <0 0xe6054000 0 0x50>;
    201  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>;
    202  1.1.1.5  jmcneill 			#gpio-cells = <2>;
    203  1.1.1.5  jmcneill 			gpio-controller;
    204  1.1.1.5  jmcneill 			gpio-ranges = <&pfc 0 128 32>;
    205  1.1.1.5  jmcneill 			#interrupt-cells = <2>;
    206  1.1.1.5  jmcneill 			interrupt-controller;
    207  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 908>;
    208  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    209  1.1.1.5  jmcneill 			resets = <&cpg 908>;
    210  1.1.1.5  jmcneill 		};
    211      1.1  jmcneill 
    212  1.1.1.5  jmcneill 		gpio5: gpio@e6055000 {
    213  1.1.1.5  jmcneill 			compatible = "renesas,gpio-r8a7794",
    214  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-gpio";
    215  1.1.1.5  jmcneill 			reg = <0 0xe6055000 0 0x50>;
    216  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>;
    217  1.1.1.5  jmcneill 			#gpio-cells = <2>;
    218  1.1.1.5  jmcneill 			gpio-controller;
    219  1.1.1.5  jmcneill 			gpio-ranges = <&pfc 0 160 28>;
    220  1.1.1.5  jmcneill 			#interrupt-cells = <2>;
    221  1.1.1.5  jmcneill 			interrupt-controller;
    222  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 907>;
    223  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    224  1.1.1.5  jmcneill 			resets = <&cpg 907>;
    225  1.1.1.5  jmcneill 		};
    226      1.1  jmcneill 
    227  1.1.1.5  jmcneill 		gpio6: gpio@e6055400 {
    228  1.1.1.5  jmcneill 			compatible = "renesas,gpio-r8a7794",
    229  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-gpio";
    230  1.1.1.5  jmcneill 			reg = <0 0xe6055400 0 0x50>;
    231  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
    232  1.1.1.5  jmcneill 			#gpio-cells = <2>;
    233  1.1.1.5  jmcneill 			gpio-controller;
    234  1.1.1.5  jmcneill 			gpio-ranges = <&pfc 0 192 26>;
    235  1.1.1.5  jmcneill 			#interrupt-cells = <2>;
    236  1.1.1.5  jmcneill 			interrupt-controller;
    237  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 905>;
    238  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    239  1.1.1.5  jmcneill 			resets = <&cpg 905>;
    240  1.1.1.5  jmcneill 		};
    241      1.1  jmcneill 
    242  1.1.1.8  jmcneill 		pfc: pinctrl@e6060000 {
    243  1.1.1.5  jmcneill 			compatible = "renesas,pfc-r8a7794";
    244  1.1.1.5  jmcneill 			reg = <0 0xe6060000 0 0x11c>;
    245  1.1.1.5  jmcneill 		};
    246      1.1  jmcneill 
    247  1.1.1.5  jmcneill 		cpg: clock-controller@e6150000 {
    248  1.1.1.5  jmcneill 			compatible = "renesas,r8a7794-cpg-mssr";
    249  1.1.1.5  jmcneill 			reg = <0 0xe6150000 0 0x1000>;
    250  1.1.1.5  jmcneill 			clocks = <&extal_clk>, <&usb_extal_clk>;
    251  1.1.1.5  jmcneill 			clock-names = "extal", "usb_extal";
    252  1.1.1.5  jmcneill 			#clock-cells = <2>;
    253  1.1.1.5  jmcneill 			#power-domain-cells = <0>;
    254  1.1.1.5  jmcneill 			#reset-cells = <1>;
    255  1.1.1.5  jmcneill 		};
    256      1.1  jmcneill 
    257  1.1.1.5  jmcneill 		apmu@e6151000 {
    258  1.1.1.5  jmcneill 			compatible = "renesas,r8a7794-apmu", "renesas,apmu";
    259  1.1.1.5  jmcneill 			reg = <0 0xe6151000 0 0x188>;
    260  1.1.1.8  jmcneill 			cpus = <&cpu0>, <&cpu1>;
    261  1.1.1.5  jmcneill 		};
    262      1.1  jmcneill 
    263  1.1.1.5  jmcneill 		rst: reset-controller@e6160000 {
    264  1.1.1.5  jmcneill 			compatible = "renesas,r8a7794-rst";
    265  1.1.1.5  jmcneill 			reg = <0 0xe6160000 0 0x0100>;
    266  1.1.1.5  jmcneill 		};
    267      1.1  jmcneill 
    268  1.1.1.5  jmcneill 		sysc: system-controller@e6180000 {
    269  1.1.1.5  jmcneill 			compatible = "renesas,r8a7794-sysc";
    270  1.1.1.5  jmcneill 			reg = <0 0xe6180000 0 0x0200>;
    271  1.1.1.5  jmcneill 			#power-domain-cells = <1>;
    272  1.1.1.5  jmcneill 		};
    273      1.1  jmcneill 
    274  1.1.1.5  jmcneill 		irqc0: interrupt-controller@e61c0000 {
    275  1.1.1.5  jmcneill 			compatible = "renesas,irqc-r8a7794", "renesas,irqc";
    276  1.1.1.5  jmcneill 			#interrupt-cells = <2>;
    277  1.1.1.5  jmcneill 			interrupt-controller;
    278  1.1.1.5  jmcneill 			reg = <0 0xe61c0000 0 0x200>;
    279  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>,
    280  1.1.1.5  jmcneill 				     <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>,
    281  1.1.1.5  jmcneill 				     <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>,
    282  1.1.1.5  jmcneill 				     <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>,
    283  1.1.1.5  jmcneill 				     <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
    284  1.1.1.5  jmcneill 				     <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>,
    285  1.1.1.5  jmcneill 				     <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>,
    286  1.1.1.5  jmcneill 				     <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>,
    287  1.1.1.5  jmcneill 				     <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>,
    288  1.1.1.5  jmcneill 				     <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
    289  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 407>;
    290  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    291  1.1.1.5  jmcneill 			resets = <&cpg 407>;
    292  1.1.1.5  jmcneill 		};
    293      1.1  jmcneill 
    294  1.1.1.8  jmcneill 		ipmmu_sy0: iommu@e6280000 {
    295  1.1.1.5  jmcneill 			compatible = "renesas,ipmmu-r8a7794",
    296  1.1.1.5  jmcneill 				     "renesas,ipmmu-vmsa";
    297  1.1.1.5  jmcneill 			reg = <0 0xe6280000 0 0x1000>;
    298  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 223 IRQ_TYPE_LEVEL_HIGH>,
    299  1.1.1.5  jmcneill 				     <GIC_SPI 224 IRQ_TYPE_LEVEL_HIGH>;
    300  1.1.1.5  jmcneill 			#iommu-cells = <1>;
    301  1.1.1.5  jmcneill 			status = "disabled";
    302  1.1.1.5  jmcneill 		};
    303      1.1  jmcneill 
    304  1.1.1.8  jmcneill 		ipmmu_sy1: iommu@e6290000 {
    305  1.1.1.5  jmcneill 			compatible = "renesas,ipmmu-r8a7794",
    306  1.1.1.5  jmcneill 				     "renesas,ipmmu-vmsa";
    307  1.1.1.5  jmcneill 			reg = <0 0xe6290000 0 0x1000>;
    308  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
    309  1.1.1.5  jmcneill 			#iommu-cells = <1>;
    310  1.1.1.5  jmcneill 			status = "disabled";
    311  1.1.1.5  jmcneill 		};
    312      1.1  jmcneill 
    313  1.1.1.8  jmcneill 		ipmmu_ds: iommu@e6740000 {
    314  1.1.1.5  jmcneill 			compatible = "renesas,ipmmu-r8a7794",
    315  1.1.1.5  jmcneill 				     "renesas,ipmmu-vmsa";
    316  1.1.1.5  jmcneill 			reg = <0 0xe6740000 0 0x1000>;
    317  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 198 IRQ_TYPE_LEVEL_HIGH>,
    318  1.1.1.5  jmcneill 				     <GIC_SPI 199 IRQ_TYPE_LEVEL_HIGH>;
    319  1.1.1.5  jmcneill 			#iommu-cells = <1>;
    320  1.1.1.5  jmcneill 			status = "disabled";
    321  1.1.1.5  jmcneill 		};
    322      1.1  jmcneill 
    323  1.1.1.8  jmcneill 		ipmmu_mp: iommu@ec680000 {
    324  1.1.1.5  jmcneill 			compatible = "renesas,ipmmu-r8a7794",
    325  1.1.1.5  jmcneill 				     "renesas,ipmmu-vmsa";
    326  1.1.1.5  jmcneill 			reg = <0 0xec680000 0 0x1000>;
    327  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 226 IRQ_TYPE_LEVEL_HIGH>;
    328  1.1.1.5  jmcneill 			#iommu-cells = <1>;
    329  1.1.1.5  jmcneill 			status = "disabled";
    330  1.1.1.5  jmcneill 		};
    331      1.1  jmcneill 
    332  1.1.1.8  jmcneill 		ipmmu_mx: iommu@fe951000 {
    333  1.1.1.5  jmcneill 			compatible = "renesas,ipmmu-r8a7794",
    334  1.1.1.5  jmcneill 				     "renesas,ipmmu-vmsa";
    335  1.1.1.5  jmcneill 			reg = <0 0xfe951000 0 0x1000>;
    336  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>,
    337  1.1.1.5  jmcneill 				     <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
    338  1.1.1.5  jmcneill 			#iommu-cells = <1>;
    339  1.1.1.5  jmcneill 			status = "disabled";
    340  1.1.1.5  jmcneill 		};
    341      1.1  jmcneill 
    342  1.1.1.8  jmcneill 		ipmmu_gp: iommu@e62a0000 {
    343  1.1.1.5  jmcneill 			compatible = "renesas,ipmmu-r8a7794",
    344  1.1.1.5  jmcneill 				     "renesas,ipmmu-vmsa";
    345  1.1.1.5  jmcneill 			reg = <0 0xe62a0000 0 0x1000>;
    346  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>,
    347  1.1.1.5  jmcneill 				     <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>;
    348  1.1.1.5  jmcneill 			#iommu-cells = <1>;
    349  1.1.1.5  jmcneill 			status = "disabled";
    350  1.1.1.5  jmcneill 		};
    351      1.1  jmcneill 
    352  1.1.1.5  jmcneill 		icram0:	sram@e63a0000 {
    353  1.1.1.5  jmcneill 			compatible = "mmio-sram";
    354  1.1.1.5  jmcneill 			reg = <0 0xe63a0000 0 0x12000>;
    355  1.1.1.8  jmcneill 			#address-cells = <1>;
    356  1.1.1.8  jmcneill 			#size-cells = <1>;
    357  1.1.1.8  jmcneill 			ranges = <0 0 0xe63a0000 0x12000>;
    358  1.1.1.5  jmcneill 		};
    359      1.1  jmcneill 
    360  1.1.1.5  jmcneill 		icram1:	sram@e63c0000 {
    361  1.1.1.5  jmcneill 			compatible = "mmio-sram";
    362  1.1.1.5  jmcneill 			reg = <0 0xe63c0000 0 0x1000>;
    363  1.1.1.5  jmcneill 			#address-cells = <1>;
    364  1.1.1.5  jmcneill 			#size-cells = <1>;
    365  1.1.1.5  jmcneill 			ranges = <0 0 0xe63c0000 0x1000>;
    366      1.1  jmcneill 
    367  1.1.1.5  jmcneill 			smp-sram@0 {
    368  1.1.1.5  jmcneill 				compatible = "renesas,smp-sram";
    369  1.1.1.6  jmcneill 				reg = <0 0x100>;
    370  1.1.1.5  jmcneill 			};
    371  1.1.1.5  jmcneill 		};
    372      1.1  jmcneill 
    373  1.1.1.5  jmcneill 		/* The memory map in the User's Manual maps the cores to
    374  1.1.1.5  jmcneill 		 * bus numbers
    375  1.1.1.5  jmcneill 		 */
    376  1.1.1.5  jmcneill 		i2c0: i2c@e6508000 {
    377  1.1.1.5  jmcneill 			compatible = "renesas,i2c-r8a7794",
    378  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-i2c";
    379  1.1.1.5  jmcneill 			reg = <0 0xe6508000 0 0x40>;
    380  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 287 IRQ_TYPE_LEVEL_HIGH>;
    381  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 931>;
    382  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    383  1.1.1.5  jmcneill 			resets = <&cpg 931>;
    384  1.1.1.5  jmcneill 			#address-cells = <1>;
    385  1.1.1.5  jmcneill 			#size-cells = <0>;
    386  1.1.1.5  jmcneill 			i2c-scl-internal-delay-ns = <6>;
    387  1.1.1.5  jmcneill 			status = "disabled";
    388  1.1.1.5  jmcneill 		};
    389      1.1  jmcneill 
    390  1.1.1.5  jmcneill 		i2c1: i2c@e6518000 {
    391  1.1.1.5  jmcneill 			compatible = "renesas,i2c-r8a7794",
    392  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-i2c";
    393  1.1.1.5  jmcneill 			reg = <0 0xe6518000 0 0x40>;
    394  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 288 IRQ_TYPE_LEVEL_HIGH>;
    395  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 930>;
    396  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    397  1.1.1.5  jmcneill 			resets = <&cpg 930>;
    398  1.1.1.5  jmcneill 			#address-cells = <1>;
    399  1.1.1.5  jmcneill 			#size-cells = <0>;
    400  1.1.1.5  jmcneill 			i2c-scl-internal-delay-ns = <6>;
    401  1.1.1.5  jmcneill 			status = "disabled";
    402  1.1.1.5  jmcneill 		};
    403      1.1  jmcneill 
    404  1.1.1.5  jmcneill 		i2c2: i2c@e6530000 {
    405  1.1.1.5  jmcneill 			compatible = "renesas,i2c-r8a7794",
    406  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-i2c";
    407  1.1.1.5  jmcneill 			reg = <0 0xe6530000 0 0x40>;
    408  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 286 IRQ_TYPE_LEVEL_HIGH>;
    409  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 929>;
    410  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    411  1.1.1.5  jmcneill 			resets = <&cpg 929>;
    412  1.1.1.5  jmcneill 			#address-cells = <1>;
    413  1.1.1.5  jmcneill 			#size-cells = <0>;
    414  1.1.1.5  jmcneill 			i2c-scl-internal-delay-ns = <6>;
    415  1.1.1.5  jmcneill 			status = "disabled";
    416  1.1.1.5  jmcneill 		};
    417      1.1  jmcneill 
    418  1.1.1.5  jmcneill 		i2c3: i2c@e6540000 {
    419  1.1.1.5  jmcneill 			compatible = "renesas,i2c-r8a7794",
    420  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-i2c";
    421  1.1.1.5  jmcneill 			reg = <0 0xe6540000 0 0x40>;
    422  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 290 IRQ_TYPE_LEVEL_HIGH>;
    423  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 928>;
    424  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    425  1.1.1.5  jmcneill 			resets = <&cpg 928>;
    426  1.1.1.5  jmcneill 			#address-cells = <1>;
    427  1.1.1.5  jmcneill 			#size-cells = <0>;
    428  1.1.1.5  jmcneill 			i2c-scl-internal-delay-ns = <6>;
    429  1.1.1.5  jmcneill 			status = "disabled";
    430  1.1.1.5  jmcneill 		};
    431      1.1  jmcneill 
    432  1.1.1.5  jmcneill 		i2c4: i2c@e6520000 {
    433  1.1.1.5  jmcneill 			compatible = "renesas,i2c-r8a7794",
    434  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-i2c";
    435  1.1.1.5  jmcneill 			reg = <0 0xe6520000 0 0x40>;
    436  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>;
    437  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 927>;
    438  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    439  1.1.1.5  jmcneill 			resets = <&cpg 927>;
    440  1.1.1.5  jmcneill 			#address-cells = <1>;
    441  1.1.1.5  jmcneill 			#size-cells = <0>;
    442  1.1.1.5  jmcneill 			i2c-scl-internal-delay-ns = <6>;
    443  1.1.1.5  jmcneill 			status = "disabled";
    444  1.1.1.5  jmcneill 		};
    445  1.1.1.3  jmcneill 
    446  1.1.1.5  jmcneill 		i2c5: i2c@e6528000 {
    447  1.1.1.5  jmcneill 			compatible = "renesas,i2c-r8a7794",
    448  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-i2c";
    449  1.1.1.5  jmcneill 			reg = <0 0xe6528000 0 0x40>;
    450  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
    451  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 925>;
    452  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    453  1.1.1.5  jmcneill 			resets = <&cpg 925>;
    454  1.1.1.5  jmcneill 			#address-cells = <1>;
    455  1.1.1.5  jmcneill 			#size-cells = <0>;
    456  1.1.1.5  jmcneill 			i2c-scl-internal-delay-ns = <6>;
    457  1.1.1.5  jmcneill 			status = "disabled";
    458  1.1.1.5  jmcneill 		};
    459  1.1.1.3  jmcneill 
    460  1.1.1.5  jmcneill 		i2c6: i2c@e6500000 {
    461  1.1.1.5  jmcneill 			compatible = "renesas,iic-r8a7794",
    462  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-iic",
    463  1.1.1.5  jmcneill 				     "renesas,rmobile-iic";
    464  1.1.1.5  jmcneill 			reg = <0 0xe6500000 0 0x425>;
    465  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>;
    466  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 318>;
    467  1.1.1.5  jmcneill 			dmas = <&dmac0 0x61>, <&dmac0 0x62>,
    468  1.1.1.5  jmcneill 			       <&dmac1 0x61>, <&dmac1 0x62>;
    469  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    470  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    471  1.1.1.5  jmcneill 			resets = <&cpg 318>;
    472  1.1.1.5  jmcneill 			#address-cells = <1>;
    473  1.1.1.5  jmcneill 			#size-cells = <0>;
    474  1.1.1.5  jmcneill 			status = "disabled";
    475  1.1.1.3  jmcneill 		};
    476  1.1.1.3  jmcneill 
    477  1.1.1.5  jmcneill 		i2c7: i2c@e6510000 {
    478  1.1.1.5  jmcneill 			compatible = "renesas,iic-r8a7794",
    479  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-iic",
    480  1.1.1.5  jmcneill 				     "renesas,rmobile-iic";
    481  1.1.1.5  jmcneill 			reg = <0 0xe6510000 0 0x425>;
    482  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 175 IRQ_TYPE_LEVEL_HIGH>;
    483  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 323>;
    484  1.1.1.5  jmcneill 			dmas = <&dmac0 0x65>, <&dmac0 0x66>,
    485  1.1.1.5  jmcneill 			       <&dmac1 0x65>, <&dmac1 0x66>;
    486  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    487  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    488  1.1.1.5  jmcneill 			resets = <&cpg 323>;
    489  1.1.1.5  jmcneill 			#address-cells = <1>;
    490  1.1.1.5  jmcneill 			#size-cells = <0>;
    491  1.1.1.5  jmcneill 			status = "disabled";
    492  1.1.1.5  jmcneill 		};
    493      1.1  jmcneill 
    494  1.1.1.5  jmcneill 		hsusb: usb@e6590000 {
    495  1.1.1.5  jmcneill 			compatible = "renesas,usbhs-r8a7794",
    496  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-usbhs";
    497  1.1.1.5  jmcneill 			reg = <0 0xe6590000 0 0x100>;
    498  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>;
    499  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 704>;
    500  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    501  1.1.1.5  jmcneill 			resets = <&cpg 704>;
    502  1.1.1.5  jmcneill 			renesas,buswait = <4>;
    503  1.1.1.5  jmcneill 			phys = <&usb0 1>;
    504  1.1.1.5  jmcneill 			phy-names = "usb";
    505  1.1.1.5  jmcneill 			status = "disabled";
    506  1.1.1.5  jmcneill 		};
    507      1.1  jmcneill 
    508  1.1.1.5  jmcneill 		usbphy: usb-phy@e6590100 {
    509  1.1.1.5  jmcneill 			compatible = "renesas,usb-phy-r8a7794",
    510  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-usb-phy";
    511  1.1.1.5  jmcneill 			reg = <0 0xe6590100 0 0x100>;
    512  1.1.1.5  jmcneill 			#address-cells = <1>;
    513  1.1.1.5  jmcneill 			#size-cells = <0>;
    514  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 704>;
    515  1.1.1.5  jmcneill 			clock-names = "usbhs";
    516  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    517  1.1.1.5  jmcneill 			resets = <&cpg 704>;
    518  1.1.1.5  jmcneill 			status = "disabled";
    519      1.1  jmcneill 
    520  1.1.1.5  jmcneill 			usb0: usb-channel@0 {
    521  1.1.1.5  jmcneill 				reg = <0>;
    522  1.1.1.5  jmcneill 				#phy-cells = <1>;
    523  1.1.1.5  jmcneill 			};
    524  1.1.1.5  jmcneill 			usb2: usb-channel@2 {
    525  1.1.1.5  jmcneill 				reg = <2>;
    526  1.1.1.5  jmcneill 				#phy-cells = <1>;
    527  1.1.1.5  jmcneill 			};
    528  1.1.1.5  jmcneill 		};
    529      1.1  jmcneill 
    530  1.1.1.5  jmcneill 		dmac0: dma-controller@e6700000 {
    531  1.1.1.5  jmcneill 			compatible = "renesas,dmac-r8a7794",
    532  1.1.1.5  jmcneill 				     "renesas,rcar-dmac";
    533  1.1.1.5  jmcneill 			reg = <0 0xe6700000 0 0x20000>;
    534  1.1.1.8  jmcneill 			interrupts = <GIC_SPI 197 IRQ_TYPE_LEVEL_HIGH>,
    535  1.1.1.8  jmcneill 				     <GIC_SPI 200 IRQ_TYPE_LEVEL_HIGH>,
    536  1.1.1.8  jmcneill 				     <GIC_SPI 201 IRQ_TYPE_LEVEL_HIGH>,
    537  1.1.1.8  jmcneill 				     <GIC_SPI 202 IRQ_TYPE_LEVEL_HIGH>,
    538  1.1.1.8  jmcneill 				     <GIC_SPI 203 IRQ_TYPE_LEVEL_HIGH>,
    539  1.1.1.8  jmcneill 				     <GIC_SPI 204 IRQ_TYPE_LEVEL_HIGH>,
    540  1.1.1.8  jmcneill 				     <GIC_SPI 205 IRQ_TYPE_LEVEL_HIGH>,
    541  1.1.1.8  jmcneill 				     <GIC_SPI 206 IRQ_TYPE_LEVEL_HIGH>,
    542  1.1.1.8  jmcneill 				     <GIC_SPI 207 IRQ_TYPE_LEVEL_HIGH>,
    543  1.1.1.8  jmcneill 				     <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>,
    544  1.1.1.8  jmcneill 				     <GIC_SPI 209 IRQ_TYPE_LEVEL_HIGH>,
    545  1.1.1.8  jmcneill 				     <GIC_SPI 210 IRQ_TYPE_LEVEL_HIGH>,
    546  1.1.1.8  jmcneill 				     <GIC_SPI 211 IRQ_TYPE_LEVEL_HIGH>,
    547  1.1.1.8  jmcneill 				     <GIC_SPI 212 IRQ_TYPE_LEVEL_HIGH>,
    548  1.1.1.8  jmcneill 				     <GIC_SPI 213 IRQ_TYPE_LEVEL_HIGH>,
    549  1.1.1.8  jmcneill 				     <GIC_SPI 214 IRQ_TYPE_LEVEL_HIGH>;
    550  1.1.1.5  jmcneill 			interrupt-names = "error",
    551  1.1.1.5  jmcneill 					  "ch0", "ch1", "ch2", "ch3",
    552  1.1.1.5  jmcneill 					  "ch4", "ch5", "ch6", "ch7",
    553  1.1.1.5  jmcneill 					  "ch8", "ch9", "ch10", "ch11",
    554  1.1.1.5  jmcneill 					  "ch12", "ch13", "ch14";
    555  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 219>;
    556  1.1.1.5  jmcneill 			clock-names = "fck";
    557  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    558  1.1.1.5  jmcneill 			resets = <&cpg 219>;
    559  1.1.1.5  jmcneill 			#dma-cells = <1>;
    560  1.1.1.5  jmcneill 			dma-channels = <15>;
    561  1.1.1.5  jmcneill 		};
    562      1.1  jmcneill 
    563  1.1.1.5  jmcneill 		dmac1: dma-controller@e6720000 {
    564  1.1.1.5  jmcneill 			compatible = "renesas,dmac-r8a7794",
    565  1.1.1.5  jmcneill 				     "renesas,rcar-dmac";
    566  1.1.1.5  jmcneill 			reg = <0 0xe6720000 0 0x20000>;
    567  1.1.1.8  jmcneill 			interrupts = <GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>,
    568  1.1.1.8  jmcneill 				     <GIC_SPI 216 IRQ_TYPE_LEVEL_HIGH>,
    569  1.1.1.8  jmcneill 				     <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>,
    570  1.1.1.8  jmcneill 				     <GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>,
    571  1.1.1.8  jmcneill 				     <GIC_SPI 219 IRQ_TYPE_LEVEL_HIGH>,
    572  1.1.1.8  jmcneill 				     <GIC_SPI 308 IRQ_TYPE_LEVEL_HIGH>,
    573  1.1.1.8  jmcneill 				     <GIC_SPI 309 IRQ_TYPE_LEVEL_HIGH>,
    574  1.1.1.8  jmcneill 				     <GIC_SPI 310 IRQ_TYPE_LEVEL_HIGH>,
    575  1.1.1.8  jmcneill 				     <GIC_SPI 311 IRQ_TYPE_LEVEL_HIGH>,
    576  1.1.1.8  jmcneill 				     <GIC_SPI 312 IRQ_TYPE_LEVEL_HIGH>,
    577  1.1.1.8  jmcneill 				     <GIC_SPI 313 IRQ_TYPE_LEVEL_HIGH>,
    578  1.1.1.8  jmcneill 				     <GIC_SPI 314 IRQ_TYPE_LEVEL_HIGH>,
    579  1.1.1.8  jmcneill 				     <GIC_SPI 315 IRQ_TYPE_LEVEL_HIGH>,
    580  1.1.1.8  jmcneill 				     <GIC_SPI 316 IRQ_TYPE_LEVEL_HIGH>,
    581  1.1.1.8  jmcneill 				     <GIC_SPI 317 IRQ_TYPE_LEVEL_HIGH>,
    582  1.1.1.8  jmcneill 				     <GIC_SPI 318 IRQ_TYPE_LEVEL_HIGH>;
    583  1.1.1.5  jmcneill 			interrupt-names = "error",
    584  1.1.1.5  jmcneill 					  "ch0", "ch1", "ch2", "ch3",
    585  1.1.1.5  jmcneill 					  "ch4", "ch5", "ch6", "ch7",
    586  1.1.1.5  jmcneill 					  "ch8", "ch9", "ch10", "ch11",
    587  1.1.1.5  jmcneill 					  "ch12", "ch13", "ch14";
    588  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 218>;
    589  1.1.1.5  jmcneill 			clock-names = "fck";
    590  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    591  1.1.1.5  jmcneill 			resets = <&cpg 218>;
    592  1.1.1.5  jmcneill 			#dma-cells = <1>;
    593  1.1.1.5  jmcneill 			dma-channels = <15>;
    594  1.1.1.5  jmcneill 		};
    595      1.1  jmcneill 
    596  1.1.1.5  jmcneill 		avb: ethernet@e6800000 {
    597  1.1.1.5  jmcneill 			compatible = "renesas,etheravb-r8a7794",
    598  1.1.1.5  jmcneill 				     "renesas,etheravb-rcar-gen2";
    599  1.1.1.5  jmcneill 			reg = <0 0xe6800000 0 0x800>, <0 0xee0e8000 0 0x4000>;
    600  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 163 IRQ_TYPE_LEVEL_HIGH>;
    601  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 812>;
    602  1.1.1.8  jmcneill 			clock-names = "fck";
    603  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    604  1.1.1.5  jmcneill 			resets = <&cpg 812>;
    605  1.1.1.5  jmcneill 			#address-cells = <1>;
    606  1.1.1.5  jmcneill 			#size-cells = <0>;
    607  1.1.1.5  jmcneill 			status = "disabled";
    608  1.1.1.5  jmcneill 		};
    609      1.1  jmcneill 
    610  1.1.1.5  jmcneill 		qspi: spi@e6b10000 {
    611  1.1.1.5  jmcneill 			compatible = "renesas,qspi-r8a7794", "renesas,qspi";
    612  1.1.1.5  jmcneill 			reg = <0 0xe6b10000 0 0x2c>;
    613  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>;
    614  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 917>;
    615  1.1.1.5  jmcneill 			dmas = <&dmac0 0x17>, <&dmac0 0x18>,
    616  1.1.1.5  jmcneill 			       <&dmac1 0x17>, <&dmac1 0x18>;
    617  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    618  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    619  1.1.1.5  jmcneill 			resets = <&cpg 917>;
    620  1.1.1.5  jmcneill 			num-cs = <1>;
    621  1.1.1.5  jmcneill 			#address-cells = <1>;
    622  1.1.1.5  jmcneill 			#size-cells = <0>;
    623  1.1.1.5  jmcneill 			status = "disabled";
    624  1.1.1.5  jmcneill 		};
    625      1.1  jmcneill 
    626  1.1.1.5  jmcneill 		scifa0: serial@e6c40000 {
    627  1.1.1.5  jmcneill 			compatible = "renesas,scifa-r8a7794",
    628  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scifa", "renesas,scifa";
    629  1.1.1.5  jmcneill 			reg = <0 0xe6c40000 0 64>;
    630  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 144 IRQ_TYPE_LEVEL_HIGH>;
    631  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 204>;
    632  1.1.1.5  jmcneill 			clock-names = "fck";
    633  1.1.1.5  jmcneill 			dmas = <&dmac0 0x21>, <&dmac0 0x22>,
    634  1.1.1.5  jmcneill 			       <&dmac1 0x21>, <&dmac1 0x22>;
    635  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    636  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    637  1.1.1.5  jmcneill 			resets = <&cpg 204>;
    638  1.1.1.5  jmcneill 			status = "disabled";
    639  1.1.1.5  jmcneill 		};
    640      1.1  jmcneill 
    641  1.1.1.5  jmcneill 		scifa1: serial@e6c50000 {
    642  1.1.1.5  jmcneill 			compatible = "renesas,scifa-r8a7794",
    643  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scifa", "renesas,scifa";
    644  1.1.1.5  jmcneill 			reg = <0 0xe6c50000 0 64>;
    645  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>;
    646  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 203>;
    647  1.1.1.5  jmcneill 			clock-names = "fck";
    648  1.1.1.5  jmcneill 			dmas = <&dmac0 0x25>, <&dmac0 0x26>,
    649  1.1.1.5  jmcneill 			       <&dmac1 0x25>, <&dmac1 0x26>;
    650  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    651  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    652  1.1.1.5  jmcneill 			resets = <&cpg 203>;
    653  1.1.1.5  jmcneill 			status = "disabled";
    654  1.1.1.5  jmcneill 		};
    655      1.1  jmcneill 
    656  1.1.1.5  jmcneill 		scifa2: serial@e6c60000 {
    657  1.1.1.5  jmcneill 			compatible = "renesas,scifa-r8a7794",
    658  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scifa", "renesas,scifa";
    659  1.1.1.5  jmcneill 			reg = <0 0xe6c60000 0 64>;
    660  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>;
    661  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 202>;
    662  1.1.1.5  jmcneill 			clock-names = "fck";
    663  1.1.1.5  jmcneill 			dmas = <&dmac0 0x27>, <&dmac0 0x28>,
    664  1.1.1.5  jmcneill 			       <&dmac1 0x27>, <&dmac1 0x28>;
    665  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    666  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    667  1.1.1.5  jmcneill 			resets = <&cpg 202>;
    668  1.1.1.5  jmcneill 			status = "disabled";
    669  1.1.1.5  jmcneill 		};
    670      1.1  jmcneill 
    671  1.1.1.5  jmcneill 		scifa3: serial@e6c70000 {
    672  1.1.1.5  jmcneill 			compatible = "renesas,scifa-r8a7794",
    673  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scifa", "renesas,scifa";
    674  1.1.1.5  jmcneill 			reg = <0 0xe6c70000 0 64>;
    675  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
    676  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 1106>;
    677  1.1.1.5  jmcneill 			clock-names = "fck";
    678  1.1.1.5  jmcneill 			dmas = <&dmac0 0x1b>, <&dmac0 0x1c>,
    679  1.1.1.5  jmcneill 			       <&dmac1 0x1b>, <&dmac1 0x1c>;
    680  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    681  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    682  1.1.1.5  jmcneill 			resets = <&cpg 1106>;
    683  1.1.1.5  jmcneill 			status = "disabled";
    684  1.1.1.5  jmcneill 		};
    685      1.1  jmcneill 
    686  1.1.1.5  jmcneill 		scifa4: serial@e6c78000 {
    687  1.1.1.5  jmcneill 			compatible = "renesas,scifa-r8a7794",
    688  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scifa", "renesas,scifa";
    689  1.1.1.5  jmcneill 			reg = <0 0xe6c78000 0 64>;
    690  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
    691  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 1107>;
    692  1.1.1.5  jmcneill 			clock-names = "fck";
    693  1.1.1.5  jmcneill 			dmas = <&dmac0 0x1f>, <&dmac0 0x20>,
    694  1.1.1.5  jmcneill 			       <&dmac1 0x1f>, <&dmac1 0x20>;
    695  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    696  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    697  1.1.1.5  jmcneill 			resets = <&cpg 1107>;
    698  1.1.1.5  jmcneill 			status = "disabled";
    699  1.1.1.5  jmcneill 		};
    700      1.1  jmcneill 
    701  1.1.1.5  jmcneill 		scifa5: serial@e6c80000 {
    702  1.1.1.5  jmcneill 			compatible = "renesas,scifa-r8a7794",
    703  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scifa", "renesas,scifa";
    704  1.1.1.5  jmcneill 			reg = <0 0xe6c80000 0 64>;
    705  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
    706  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 1108>;
    707  1.1.1.5  jmcneill 			clock-names = "fck";
    708  1.1.1.5  jmcneill 			dmas = <&dmac0 0x23>, <&dmac0 0x24>,
    709  1.1.1.5  jmcneill 			       <&dmac1 0x23>, <&dmac1 0x24>;
    710  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    711  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    712  1.1.1.5  jmcneill 			resets = <&cpg 1108>;
    713  1.1.1.5  jmcneill 			status = "disabled";
    714  1.1.1.5  jmcneill 		};
    715      1.1  jmcneill 
    716  1.1.1.5  jmcneill 		scifb0: serial@e6c20000 {
    717  1.1.1.5  jmcneill 			compatible = "renesas,scifb-r8a7794",
    718  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scifb", "renesas,scifb";
    719  1.1.1.5  jmcneill 			reg = <0 0xe6c20000 0 0x100>;
    720  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 148 IRQ_TYPE_LEVEL_HIGH>;
    721  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 206>;
    722  1.1.1.5  jmcneill 			clock-names = "fck";
    723  1.1.1.5  jmcneill 			dmas = <&dmac0 0x3d>, <&dmac0 0x3e>,
    724  1.1.1.5  jmcneill 			       <&dmac1 0x3d>, <&dmac1 0x3e>;
    725  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    726  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    727  1.1.1.5  jmcneill 			resets = <&cpg 206>;
    728  1.1.1.5  jmcneill 			status = "disabled";
    729  1.1.1.5  jmcneill 		};
    730      1.1  jmcneill 
    731  1.1.1.5  jmcneill 		scifb1: serial@e6c30000 {
    732  1.1.1.5  jmcneill 			compatible = "renesas,scifb-r8a7794",
    733  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scifb", "renesas,scifb";
    734  1.1.1.5  jmcneill 			reg = <0 0xe6c30000 0 0x100>;
    735  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 149 IRQ_TYPE_LEVEL_HIGH>;
    736  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 207>;
    737  1.1.1.5  jmcneill 			clock-names = "fck";
    738  1.1.1.5  jmcneill 			dmas = <&dmac0 0x19>, <&dmac0 0x1a>,
    739  1.1.1.5  jmcneill 			       <&dmac1 0x19>, <&dmac1 0x1a>;
    740  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    741  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    742  1.1.1.5  jmcneill 			resets = <&cpg 207>;
    743  1.1.1.5  jmcneill 			status = "disabled";
    744  1.1.1.5  jmcneill 		};
    745      1.1  jmcneill 
    746  1.1.1.5  jmcneill 		scifb2: serial@e6ce0000 {
    747  1.1.1.5  jmcneill 			compatible = "renesas,scifb-r8a7794",
    748  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scifb", "renesas,scifb";
    749  1.1.1.5  jmcneill 			reg = <0 0xe6ce0000 0 0x100>;
    750  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 150 IRQ_TYPE_LEVEL_HIGH>;
    751  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 216>;
    752  1.1.1.5  jmcneill 			clock-names = "fck";
    753  1.1.1.5  jmcneill 			dmas = <&dmac0 0x1d>, <&dmac0 0x1e>,
    754  1.1.1.5  jmcneill 			       <&dmac1 0x1d>, <&dmac1 0x1e>;
    755  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    756  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    757  1.1.1.5  jmcneill 			resets = <&cpg 216>;
    758  1.1.1.5  jmcneill 			status = "disabled";
    759  1.1.1.5  jmcneill 		};
    760      1.1  jmcneill 
    761  1.1.1.5  jmcneill 		scif0: serial@e6e60000 {
    762  1.1.1.5  jmcneill 			compatible = "renesas,scif-r8a7794",
    763  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scif",
    764  1.1.1.5  jmcneill 				     "renesas,scif";
    765  1.1.1.5  jmcneill 			reg = <0 0xe6e60000 0 64>;
    766  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 152 IRQ_TYPE_LEVEL_HIGH>;
    767  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 721>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
    768  1.1.1.5  jmcneill 				 <&scif_clk>;
    769  1.1.1.5  jmcneill 			clock-names = "fck", "brg_int", "scif_clk";
    770  1.1.1.5  jmcneill 			dmas = <&dmac0 0x29>, <&dmac0 0x2a>,
    771  1.1.1.5  jmcneill 			       <&dmac1 0x29>, <&dmac1 0x2a>;
    772  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    773  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    774  1.1.1.5  jmcneill 			resets = <&cpg 721>;
    775  1.1.1.5  jmcneill 			status = "disabled";
    776  1.1.1.5  jmcneill 		};
    777      1.1  jmcneill 
    778  1.1.1.5  jmcneill 		scif1: serial@e6e68000 {
    779  1.1.1.5  jmcneill 			compatible = "renesas,scif-r8a7794",
    780  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scif",
    781  1.1.1.5  jmcneill 				     "renesas,scif";
    782  1.1.1.5  jmcneill 			reg = <0 0xe6e68000 0 64>;
    783  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>;
    784  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 720>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
    785  1.1.1.5  jmcneill 				 <&scif_clk>;
    786  1.1.1.5  jmcneill 			clock-names = "fck", "brg_int", "scif_clk";
    787  1.1.1.5  jmcneill 			dmas = <&dmac0 0x2d>, <&dmac0 0x2e>,
    788  1.1.1.5  jmcneill 			       <&dmac1 0x2d>, <&dmac1 0x2e>;
    789  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    790  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    791  1.1.1.5  jmcneill 			resets = <&cpg 720>;
    792  1.1.1.5  jmcneill 			status = "disabled";
    793      1.1  jmcneill 		};
    794      1.1  jmcneill 
    795  1.1.1.5  jmcneill 		scif2: serial@e6e58000 {
    796  1.1.1.5  jmcneill 			compatible = "renesas,scif-r8a7794",
    797  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scif", "renesas,scif";
    798  1.1.1.5  jmcneill 			reg = <0 0xe6e58000 0 64>;
    799  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
    800  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 719>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
    801  1.1.1.5  jmcneill 				 <&scif_clk>;
    802  1.1.1.5  jmcneill 			clock-names = "fck", "brg_int", "scif_clk";
    803  1.1.1.5  jmcneill 			dmas = <&dmac0 0x2b>, <&dmac0 0x2c>,
    804  1.1.1.5  jmcneill 			       <&dmac1 0x2b>, <&dmac1 0x2c>;
    805  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    806  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    807  1.1.1.5  jmcneill 			resets = <&cpg 719>;
    808  1.1.1.5  jmcneill 			status = "disabled";
    809      1.1  jmcneill 		};
    810      1.1  jmcneill 
    811  1.1.1.5  jmcneill 		scif3: serial@e6ea8000 {
    812  1.1.1.5  jmcneill 			compatible = "renesas,scif-r8a7794",
    813  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scif", "renesas,scif";
    814  1.1.1.5  jmcneill 			reg = <0 0xe6ea8000 0 64>;
    815  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
    816  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 718>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
    817  1.1.1.5  jmcneill 				 <&scif_clk>;
    818  1.1.1.5  jmcneill 			clock-names = "fck", "brg_int", "scif_clk";
    819  1.1.1.5  jmcneill 			dmas = <&dmac0 0x2f>, <&dmac0 0x30>,
    820  1.1.1.5  jmcneill 			       <&dmac1 0x2f>, <&dmac1 0x30>;
    821  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    822  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    823  1.1.1.5  jmcneill 			resets = <&cpg 718>;
    824  1.1.1.5  jmcneill 			status = "disabled";
    825  1.1.1.5  jmcneill 		};
    826      1.1  jmcneill 
    827  1.1.1.5  jmcneill 		scif4: serial@e6ee0000 {
    828  1.1.1.5  jmcneill 			compatible = "renesas,scif-r8a7794",
    829  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scif", "renesas,scif";
    830  1.1.1.5  jmcneill 			reg = <0 0xe6ee0000 0 64>;
    831  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
    832  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 715>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
    833  1.1.1.5  jmcneill 				 <&scif_clk>;
    834  1.1.1.5  jmcneill 			clock-names = "fck", "brg_int", "scif_clk";
    835  1.1.1.5  jmcneill 			dmas = <&dmac0 0xfb>, <&dmac0 0xfc>,
    836  1.1.1.5  jmcneill 			       <&dmac1 0xfb>, <&dmac1 0xfc>;
    837  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    838  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    839  1.1.1.5  jmcneill 			resets = <&cpg 715>;
    840  1.1.1.5  jmcneill 			status = "disabled";
    841      1.1  jmcneill 		};
    842      1.1  jmcneill 
    843  1.1.1.5  jmcneill 		scif5: serial@e6ee8000 {
    844  1.1.1.5  jmcneill 			compatible = "renesas,scif-r8a7794",
    845  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-scif", "renesas,scif";
    846  1.1.1.5  jmcneill 			reg = <0 0xe6ee8000 0 64>;
    847  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
    848  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 714>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
    849  1.1.1.5  jmcneill 				 <&scif_clk>;
    850  1.1.1.5  jmcneill 			clock-names = "fck", "brg_int", "scif_clk";
    851  1.1.1.5  jmcneill 			dmas = <&dmac0 0xfd>, <&dmac0 0xfe>,
    852  1.1.1.5  jmcneill 			       <&dmac1 0xfd>, <&dmac1 0xfe>;
    853  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    854  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    855  1.1.1.5  jmcneill 			resets = <&cpg 714>;
    856  1.1.1.5  jmcneill 			status = "disabled";
    857      1.1  jmcneill 		};
    858      1.1  jmcneill 
    859  1.1.1.5  jmcneill 		hscif0: serial@e62c0000 {
    860  1.1.1.5  jmcneill 			compatible = "renesas,hscif-r8a7794",
    861  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-hscif", "renesas,hscif";
    862  1.1.1.5  jmcneill 			reg = <0 0xe62c0000 0 96>;
    863  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 154 IRQ_TYPE_LEVEL_HIGH>;
    864  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 717>,
    865  1.1.1.5  jmcneill 				 <&cpg CPG_CORE R8A7794_CLK_ZS>, <&scif_clk>;
    866  1.1.1.5  jmcneill 			clock-names = "fck", "brg_int", "scif_clk";
    867  1.1.1.5  jmcneill 			dmas = <&dmac0 0x39>, <&dmac0 0x3a>,
    868  1.1.1.5  jmcneill 			       <&dmac1 0x39>, <&dmac1 0x3a>;
    869  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    870  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    871  1.1.1.5  jmcneill 			resets = <&cpg 717>;
    872  1.1.1.5  jmcneill 			status = "disabled";
    873  1.1.1.5  jmcneill 		};
    874      1.1  jmcneill 
    875  1.1.1.5  jmcneill 		hscif1: serial@e62c8000 {
    876  1.1.1.5  jmcneill 			compatible = "renesas,hscif-r8a7794",
    877  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-hscif", "renesas,hscif";
    878  1.1.1.5  jmcneill 			reg = <0 0xe62c8000 0 96>;
    879  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 155 IRQ_TYPE_LEVEL_HIGH>;
    880  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 716>,
    881  1.1.1.5  jmcneill 				 <&cpg CPG_CORE R8A7794_CLK_ZS>, <&scif_clk>;
    882  1.1.1.5  jmcneill 			clock-names = "fck", "brg_int", "scif_clk";
    883  1.1.1.5  jmcneill 			dmas = <&dmac0 0x4d>, <&dmac0 0x4e>,
    884  1.1.1.5  jmcneill 			       <&dmac1 0x4d>, <&dmac1 0x4e>;
    885  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    886  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    887  1.1.1.5  jmcneill 			resets = <&cpg 716>;
    888  1.1.1.5  jmcneill 			status = "disabled";
    889  1.1.1.5  jmcneill 		};
    890      1.1  jmcneill 
    891  1.1.1.5  jmcneill 		hscif2: serial@e62d0000 {
    892  1.1.1.5  jmcneill 			compatible = "renesas,hscif-r8a7794",
    893  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-hscif", "renesas,hscif";
    894  1.1.1.5  jmcneill 			reg = <0 0xe62d0000 0 96>;
    895  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
    896  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 713>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
    897  1.1.1.5  jmcneill 				 <&scif_clk>;
    898  1.1.1.5  jmcneill 			clock-names = "fck", "brg_int", "scif_clk";
    899  1.1.1.5  jmcneill 			dmas = <&dmac0 0x3b>, <&dmac0 0x3c>,
    900  1.1.1.5  jmcneill 			       <&dmac1 0x3b>, <&dmac1 0x3c>;
    901  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
    902  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    903  1.1.1.5  jmcneill 			resets = <&cpg 713>;
    904  1.1.1.5  jmcneill 			status = "disabled";
    905      1.1  jmcneill 		};
    906  1.1.1.5  jmcneill 
    907  1.1.1.5  jmcneill 		can0: can@e6e80000 {
    908  1.1.1.5  jmcneill 			compatible = "renesas,can-r8a7794",
    909  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-can";
    910  1.1.1.5  jmcneill 			reg = <0 0xe6e80000 0 0x1000>;
    911  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 186 IRQ_TYPE_LEVEL_HIGH>;
    912  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 916>, <&cpg CPG_CORE R8A7794_CLK_RCAN>,
    913  1.1.1.5  jmcneill 				 <&can_clk>;
    914  1.1.1.5  jmcneill 			clock-names = "clkp1", "clkp2", "can_clk";
    915  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    916  1.1.1.5  jmcneill 			resets = <&cpg 916>;
    917  1.1.1.5  jmcneill 			status = "disabled";
    918      1.1  jmcneill 		};
    919      1.1  jmcneill 
    920  1.1.1.5  jmcneill 		can1: can@e6e88000 {
    921  1.1.1.5  jmcneill 			compatible = "renesas,can-r8a7794",
    922  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-can";
    923  1.1.1.5  jmcneill 			reg = <0 0xe6e88000 0 0x1000>;
    924  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 187 IRQ_TYPE_LEVEL_HIGH>;
    925  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 915>, <&cpg CPG_CORE R8A7794_CLK_RCAN>,
    926  1.1.1.5  jmcneill 				 <&can_clk>;
    927  1.1.1.5  jmcneill 			clock-names = "clkp1", "clkp2", "can_clk";
    928  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    929  1.1.1.5  jmcneill 			resets = <&cpg 915>;
    930  1.1.1.5  jmcneill 			status = "disabled";
    931  1.1.1.5  jmcneill 		};
    932      1.1  jmcneill 
    933  1.1.1.5  jmcneill 		vin0: video@e6ef0000 {
    934  1.1.1.5  jmcneill 			compatible = "renesas,vin-r8a7794",
    935  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-vin";
    936  1.1.1.5  jmcneill 			reg = <0 0xe6ef0000 0 0x1000>;
    937  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>;
    938  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 811>;
    939  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    940  1.1.1.5  jmcneill 			resets = <&cpg 811>;
    941  1.1.1.5  jmcneill 			status = "disabled";
    942  1.1.1.5  jmcneill 		};
    943      1.1  jmcneill 
    944  1.1.1.5  jmcneill 		vin1: video@e6ef1000 {
    945  1.1.1.5  jmcneill 			compatible = "renesas,vin-r8a7794",
    946  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-vin";
    947  1.1.1.5  jmcneill 			reg = <0 0xe6ef1000 0 0x1000>;
    948  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>;
    949  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 810>;
    950  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    951  1.1.1.5  jmcneill 			resets = <&cpg 810>;
    952  1.1.1.5  jmcneill 			status = "disabled";
    953  1.1.1.5  jmcneill 		};
    954      1.1  jmcneill 
    955  1.1.1.5  jmcneill 		rcar_sound: sound@ec500000 {
    956  1.1.1.5  jmcneill 			/*
    957  1.1.1.5  jmcneill 			 * #sound-dai-cells is required
    958  1.1.1.5  jmcneill 			 *
    959  1.1.1.5  jmcneill 			 * Single DAI : #sound-dai-cells = <0>;         <&rcar_sound>;
    960  1.1.1.5  jmcneill 			 * Multi  DAI : #sound-dai-cells = <1>;         <&rcar_sound N>;
    961  1.1.1.5  jmcneill 			 */
    962  1.1.1.5  jmcneill 			compatible = "renesas,rcar_sound-r8a7794",
    963  1.1.1.5  jmcneill 				     "renesas,rcar_sound-gen2";
    964  1.1.1.5  jmcneill 			reg = <0 0xec500000 0 0x1000>, /* SCU */
    965  1.1.1.5  jmcneill 			      <0 0xec5a0000 0 0x100>,  /* ADG */
    966  1.1.1.5  jmcneill 			      <0 0xec540000 0 0x1000>, /* SSIU */
    967  1.1.1.5  jmcneill 			      <0 0xec541000 0 0x280>,  /* SSI */
    968  1.1.1.5  jmcneill 			      <0 0xec740000 0 0x200>;  /* Audio DMAC peri peri */
    969  1.1.1.5  jmcneill 			reg-names = "scu", "adg", "ssiu", "ssi", "audmapp";
    970  1.1.1.5  jmcneill 
    971  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 1005>,
    972  1.1.1.5  jmcneill 				 <&cpg CPG_MOD 1006>, <&cpg CPG_MOD 1007>,
    973  1.1.1.5  jmcneill 				 <&cpg CPG_MOD 1008>, <&cpg CPG_MOD 1009>,
    974  1.1.1.5  jmcneill 				 <&cpg CPG_MOD 1010>, <&cpg CPG_MOD 1011>,
    975  1.1.1.5  jmcneill 				 <&cpg CPG_MOD 1012>, <&cpg CPG_MOD 1013>,
    976  1.1.1.5  jmcneill 				 <&cpg CPG_MOD 1014>, <&cpg CPG_MOD 1015>,
    977  1.1.1.5  jmcneill 				 <&cpg CPG_MOD 1025>, <&cpg CPG_MOD 1026>,
    978  1.1.1.5  jmcneill 				 <&cpg CPG_MOD 1027>, <&cpg CPG_MOD 1028>,
    979  1.1.1.5  jmcneill 				 <&cpg CPG_MOD 1029>, <&cpg CPG_MOD 1030>,
    980  1.1.1.5  jmcneill 				 <&cpg CPG_MOD 1021>, <&cpg CPG_MOD 1020>,
    981  1.1.1.5  jmcneill 				 <&cpg CPG_MOD 1021>, <&cpg CPG_MOD 1020>,
    982  1.1.1.5  jmcneill 				 <&cpg CPG_MOD 1019>, <&cpg CPG_MOD 1018>,
    983  1.1.1.5  jmcneill 				 <&audio_clka>, <&audio_clkb>, <&audio_clkc>,
    984  1.1.1.5  jmcneill 				 <&cpg CPG_CORE R8A7794_CLK_M2>;
    985  1.1.1.5  jmcneill 			clock-names = "ssi-all",
    986  1.1.1.5  jmcneill 				      "ssi.9", "ssi.8", "ssi.7", "ssi.6",
    987  1.1.1.5  jmcneill 				      "ssi.5", "ssi.4", "ssi.3", "ssi.2",
    988  1.1.1.5  jmcneill 				      "ssi.1", "ssi.0",
    989  1.1.1.5  jmcneill 				      "src.6", "src.5", "src.4", "src.3",
    990  1.1.1.5  jmcneill 				      "src.2", "src.1",
    991  1.1.1.5  jmcneill 				      "ctu.0", "ctu.1",
    992  1.1.1.5  jmcneill 				      "mix.0", "mix.1",
    993  1.1.1.5  jmcneill 				      "dvc.0", "dvc.1",
    994  1.1.1.5  jmcneill 				      "clk_a", "clk_b", "clk_c", "clk_i";
    995  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
    996  1.1.1.5  jmcneill 			resets = <&cpg 1005>,
    997  1.1.1.5  jmcneill 				 <&cpg 1006>, <&cpg 1007>,
    998  1.1.1.5  jmcneill 				 <&cpg 1008>, <&cpg 1009>,
    999  1.1.1.5  jmcneill 				 <&cpg 1010>, <&cpg 1011>,
   1000  1.1.1.5  jmcneill 				 <&cpg 1012>, <&cpg 1013>,
   1001  1.1.1.5  jmcneill 				 <&cpg 1014>, <&cpg 1015>;
   1002  1.1.1.5  jmcneill 			reset-names = "ssi-all",
   1003  1.1.1.5  jmcneill 				      "ssi.9", "ssi.8", "ssi.7", "ssi.6",
   1004  1.1.1.5  jmcneill 				      "ssi.5", "ssi.4", "ssi.3", "ssi.2",
   1005  1.1.1.5  jmcneill 				      "ssi.1", "ssi.0";
   1006  1.1.1.5  jmcneill 
   1007  1.1.1.5  jmcneill 			status = "disabled";
   1008  1.1.1.5  jmcneill 
   1009  1.1.1.5  jmcneill 			rcar_sound,dvc {
   1010  1.1.1.5  jmcneill 				dvc0: dvc-0 {
   1011  1.1.1.5  jmcneill 					dmas = <&audma0 0xbc>;
   1012  1.1.1.5  jmcneill 					dma-names = "tx";
   1013  1.1.1.5  jmcneill 				};
   1014  1.1.1.5  jmcneill 				dvc1: dvc-1 {
   1015  1.1.1.5  jmcneill 					dmas = <&audma0 0xbe>;
   1016  1.1.1.5  jmcneill 					dma-names = "tx";
   1017  1.1.1.5  jmcneill 				};
   1018  1.1.1.5  jmcneill 			};
   1019      1.1  jmcneill 
   1020  1.1.1.5  jmcneill 			rcar_sound,mix {
   1021  1.1.1.5  jmcneill 				mix0: mix-0 { };
   1022  1.1.1.5  jmcneill 				mix1: mix-1 { };
   1023  1.1.1.5  jmcneill 			};
   1024  1.1.1.5  jmcneill 
   1025  1.1.1.5  jmcneill 			rcar_sound,ctu {
   1026  1.1.1.5  jmcneill 				ctu00: ctu-0 { };
   1027  1.1.1.5  jmcneill 				ctu01: ctu-1 { };
   1028  1.1.1.5  jmcneill 				ctu02: ctu-2 { };
   1029  1.1.1.5  jmcneill 				ctu03: ctu-3 { };
   1030  1.1.1.5  jmcneill 				ctu10: ctu-4 { };
   1031  1.1.1.5  jmcneill 				ctu11: ctu-5 { };
   1032  1.1.1.5  jmcneill 				ctu12: ctu-6 { };
   1033  1.1.1.5  jmcneill 				ctu13: ctu-7 { };
   1034  1.1.1.5  jmcneill 			};
   1035  1.1.1.5  jmcneill 
   1036  1.1.1.5  jmcneill 			rcar_sound,src {
   1037  1.1.1.5  jmcneill 				src-0 {
   1038  1.1.1.5  jmcneill 					status = "disabled";
   1039  1.1.1.5  jmcneill 				};
   1040  1.1.1.5  jmcneill 				src1: src-1 {
   1041  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 353 IRQ_TYPE_LEVEL_HIGH>;
   1042  1.1.1.5  jmcneill 					dmas = <&audma0 0x87>, <&audma0 0x9c>;
   1043  1.1.1.5  jmcneill 					dma-names = "rx", "tx";
   1044  1.1.1.5  jmcneill 				};
   1045  1.1.1.5  jmcneill 				src2: src-2 {
   1046  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 354 IRQ_TYPE_LEVEL_HIGH>;
   1047  1.1.1.5  jmcneill 					dmas = <&audma0 0x89>, <&audma0 0x9e>;
   1048  1.1.1.5  jmcneill 					dma-names = "rx", "tx";
   1049  1.1.1.5  jmcneill 				};
   1050  1.1.1.5  jmcneill 				src3: src-3 {
   1051  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 355 IRQ_TYPE_LEVEL_HIGH>;
   1052  1.1.1.5  jmcneill 					dmas = <&audma0 0x8b>, <&audma0 0xa0>;
   1053  1.1.1.5  jmcneill 					dma-names = "rx", "tx";
   1054  1.1.1.5  jmcneill 				};
   1055  1.1.1.5  jmcneill 				src4: src-4 {
   1056  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 356 IRQ_TYPE_LEVEL_HIGH>;
   1057  1.1.1.5  jmcneill 					dmas = <&audma0 0x8d>, <&audma0 0xb0>;
   1058  1.1.1.5  jmcneill 					dma-names = "rx", "tx";
   1059  1.1.1.5  jmcneill 				};
   1060  1.1.1.5  jmcneill 				src5: src-5 {
   1061  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 357 IRQ_TYPE_LEVEL_HIGH>;
   1062  1.1.1.5  jmcneill 					dmas = <&audma0 0x8f>, <&audma0 0xb2>;
   1063  1.1.1.5  jmcneill 					dma-names = "rx", "tx";
   1064  1.1.1.5  jmcneill 				};
   1065  1.1.1.5  jmcneill 				src6: src-6 {
   1066  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 358 IRQ_TYPE_LEVEL_HIGH>;
   1067  1.1.1.5  jmcneill 					dmas = <&audma0 0x91>, <&audma0 0xb4>;
   1068  1.1.1.5  jmcneill 					dma-names = "rx", "tx";
   1069      1.1  jmcneill 				};
   1070      1.1  jmcneill 			};
   1071  1.1.1.5  jmcneill 
   1072  1.1.1.5  jmcneill 			rcar_sound,ssi {
   1073  1.1.1.5  jmcneill 				ssi0: ssi-0 {
   1074  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 370 IRQ_TYPE_LEVEL_HIGH>;
   1075  1.1.1.5  jmcneill 					dmas = <&audma0 0x01>, <&audma0 0x02>,
   1076  1.1.1.5  jmcneill 					       <&audma0 0x15>, <&audma0 0x16>;
   1077  1.1.1.5  jmcneill 					dma-names = "rx", "tx", "rxu", "txu";
   1078  1.1.1.5  jmcneill 				};
   1079  1.1.1.5  jmcneill 				ssi1: ssi-1 {
   1080  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 371 IRQ_TYPE_LEVEL_HIGH>;
   1081  1.1.1.5  jmcneill 					dmas = <&audma0 0x03>, <&audma0 0x04>,
   1082  1.1.1.5  jmcneill 					       <&audma0 0x49>, <&audma0 0x4a>;
   1083  1.1.1.5  jmcneill 					dma-names = "rx", "tx", "rxu", "txu";
   1084  1.1.1.5  jmcneill 				};
   1085  1.1.1.5  jmcneill 				ssi2: ssi-2 {
   1086  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 372 IRQ_TYPE_LEVEL_HIGH>;
   1087  1.1.1.5  jmcneill 					dmas = <&audma0 0x05>, <&audma0 0x06>,
   1088  1.1.1.5  jmcneill 					       <&audma0 0x63>, <&audma0 0x64>;
   1089  1.1.1.5  jmcneill 					dma-names = "rx", "tx", "rxu", "txu";
   1090  1.1.1.5  jmcneill 				};
   1091  1.1.1.5  jmcneill 				ssi3: ssi-3 {
   1092  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 373 IRQ_TYPE_LEVEL_HIGH>;
   1093  1.1.1.5  jmcneill 					dmas = <&audma0 0x07>, <&audma0 0x08>,
   1094  1.1.1.5  jmcneill 					       <&audma0 0x6f>, <&audma0 0x70>;
   1095  1.1.1.5  jmcneill 					dma-names = "rx", "tx", "rxu", "txu";
   1096  1.1.1.5  jmcneill 				};
   1097  1.1.1.5  jmcneill 				ssi4: ssi-4 {
   1098  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 374 IRQ_TYPE_LEVEL_HIGH>;
   1099  1.1.1.5  jmcneill 					dmas = <&audma0 0x09>, <&audma0 0x0a>,
   1100  1.1.1.5  jmcneill 					       <&audma0 0x71>, <&audma0 0x72>;
   1101  1.1.1.5  jmcneill 					dma-names = "rx", "tx", "rxu", "txu";
   1102  1.1.1.5  jmcneill 				};
   1103  1.1.1.5  jmcneill 				ssi5: ssi-5 {
   1104  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 375 IRQ_TYPE_LEVEL_HIGH>;
   1105  1.1.1.5  jmcneill 					dmas = <&audma0 0x0b>, <&audma0 0x0c>,
   1106  1.1.1.5  jmcneill 					       <&audma0 0x73>, <&audma0 0x74>;
   1107  1.1.1.5  jmcneill 					dma-names = "rx", "tx", "rxu", "txu";
   1108  1.1.1.5  jmcneill 				};
   1109  1.1.1.5  jmcneill 				ssi6: ssi-6 {
   1110  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 376 IRQ_TYPE_LEVEL_HIGH>;
   1111  1.1.1.5  jmcneill 					dmas = <&audma0 0x0d>, <&audma0 0x0e>,
   1112  1.1.1.5  jmcneill 					       <&audma0 0x75>, <&audma0 0x76>;
   1113  1.1.1.5  jmcneill 					dma-names = "rx", "tx", "rxu", "txu";
   1114  1.1.1.5  jmcneill 				};
   1115  1.1.1.5  jmcneill 				ssi7: ssi-7 {
   1116  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 377 IRQ_TYPE_LEVEL_HIGH>;
   1117  1.1.1.5  jmcneill 					dmas = <&audma0 0x0f>, <&audma0 0x10>,
   1118  1.1.1.5  jmcneill 					       <&audma0 0x79>, <&audma0 0x7a>;
   1119  1.1.1.5  jmcneill 					dma-names = "rx", "tx", "rxu", "txu";
   1120  1.1.1.5  jmcneill 				};
   1121  1.1.1.5  jmcneill 				ssi8: ssi-8 {
   1122  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 378 IRQ_TYPE_LEVEL_HIGH>;
   1123  1.1.1.5  jmcneill 					dmas = <&audma0 0x11>, <&audma0 0x12>,
   1124  1.1.1.5  jmcneill 					       <&audma0 0x7b>, <&audma0 0x7c>;
   1125  1.1.1.5  jmcneill 					dma-names = "rx", "tx", "rxu", "txu";
   1126  1.1.1.5  jmcneill 				};
   1127  1.1.1.5  jmcneill 				ssi9: ssi-9 {
   1128  1.1.1.5  jmcneill 					interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>;
   1129  1.1.1.5  jmcneill 					dmas = <&audma0 0x13>, <&audma0 0x14>,
   1130  1.1.1.5  jmcneill 					       <&audma0 0x7d>, <&audma0 0x7e>;
   1131  1.1.1.5  jmcneill 					dma-names = "rx", "tx", "rxu", "txu";
   1132      1.1  jmcneill 				};
   1133      1.1  jmcneill 			};
   1134      1.1  jmcneill 		};
   1135      1.1  jmcneill 
   1136  1.1.1.5  jmcneill 		audma0: dma-controller@ec700000 {
   1137  1.1.1.5  jmcneill 			compatible = "renesas,dmac-r8a7794",
   1138  1.1.1.5  jmcneill 				     "renesas,rcar-dmac";
   1139  1.1.1.5  jmcneill 			reg = <0 0xec700000 0 0x10000>;
   1140  1.1.1.8  jmcneill 			interrupts = <GIC_SPI 346 IRQ_TYPE_LEVEL_HIGH>,
   1141  1.1.1.8  jmcneill 				     <GIC_SPI 320 IRQ_TYPE_LEVEL_HIGH>,
   1142  1.1.1.8  jmcneill 				     <GIC_SPI 321 IRQ_TYPE_LEVEL_HIGH>,
   1143  1.1.1.8  jmcneill 				     <GIC_SPI 322 IRQ_TYPE_LEVEL_HIGH>,
   1144  1.1.1.8  jmcneill 				     <GIC_SPI 323 IRQ_TYPE_LEVEL_HIGH>,
   1145  1.1.1.8  jmcneill 				     <GIC_SPI 324 IRQ_TYPE_LEVEL_HIGH>,
   1146  1.1.1.8  jmcneill 				     <GIC_SPI 325 IRQ_TYPE_LEVEL_HIGH>,
   1147  1.1.1.8  jmcneill 				     <GIC_SPI 326 IRQ_TYPE_LEVEL_HIGH>,
   1148  1.1.1.8  jmcneill 				     <GIC_SPI 327 IRQ_TYPE_LEVEL_HIGH>,
   1149  1.1.1.8  jmcneill 				     <GIC_SPI 328 IRQ_TYPE_LEVEL_HIGH>,
   1150  1.1.1.8  jmcneill 				     <GIC_SPI 329 IRQ_TYPE_LEVEL_HIGH>,
   1151  1.1.1.8  jmcneill 				     <GIC_SPI 330 IRQ_TYPE_LEVEL_HIGH>,
   1152  1.1.1.8  jmcneill 				     <GIC_SPI 331 IRQ_TYPE_LEVEL_HIGH>,
   1153  1.1.1.8  jmcneill 				     <GIC_SPI 332 IRQ_TYPE_LEVEL_HIGH>;
   1154  1.1.1.5  jmcneill 			interrupt-names = "error",
   1155  1.1.1.5  jmcneill 					  "ch0", "ch1", "ch2", "ch3", "ch4",
   1156  1.1.1.5  jmcneill 					  "ch5", "ch6", "ch7", "ch8", "ch9",
   1157  1.1.1.5  jmcneill 					  "ch10", "ch11",
   1158  1.1.1.5  jmcneill 					  "ch12";
   1159  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 502>;
   1160  1.1.1.5  jmcneill 			clock-names = "fck";
   1161  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1162  1.1.1.5  jmcneill 			resets = <&cpg 502>;
   1163  1.1.1.5  jmcneill 			#dma-cells = <1>;
   1164  1.1.1.5  jmcneill 			dma-channels = <13>;
   1165  1.1.1.5  jmcneill 		};
   1166      1.1  jmcneill 
   1167  1.1.1.5  jmcneill 		pci0: pci@ee090000 {
   1168  1.1.1.5  jmcneill 			compatible = "renesas,pci-r8a7794",
   1169  1.1.1.5  jmcneill 				     "renesas,pci-rcar-gen2";
   1170  1.1.1.5  jmcneill 			device_type = "pci";
   1171  1.1.1.5  jmcneill 			reg = <0 0xee090000 0 0xc00>,
   1172  1.1.1.5  jmcneill 			      <0 0xee080000 0 0x1100>;
   1173  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
   1174  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 703>;
   1175  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1176  1.1.1.5  jmcneill 			resets = <&cpg 703>;
   1177  1.1.1.5  jmcneill 			status = "disabled";
   1178  1.1.1.5  jmcneill 
   1179  1.1.1.5  jmcneill 			bus-range = <0 0>;
   1180  1.1.1.5  jmcneill 			#address-cells = <3>;
   1181  1.1.1.5  jmcneill 			#size-cells = <2>;
   1182  1.1.1.5  jmcneill 			#interrupt-cells = <1>;
   1183  1.1.1.5  jmcneill 			ranges = <0x02000000 0 0xee080000 0 0xee080000 0 0x00010000>;
   1184  1.1.1.8  jmcneill 			interrupt-map-mask = <0xf800 0 0 0x7>;
   1185  1.1.1.8  jmcneill 			interrupt-map = <0x0000 0 0 1 &gic GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>,
   1186  1.1.1.8  jmcneill 					<0x0800 0 0 1 &gic GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>,
   1187  1.1.1.8  jmcneill 					<0x1000 0 0 2 &gic GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
   1188  1.1.1.5  jmcneill 
   1189  1.1.1.5  jmcneill 			usb@1,0 {
   1190  1.1.1.5  jmcneill 				reg = <0x800 0 0 0 0>;
   1191  1.1.1.5  jmcneill 				phys = <&usb0 0>;
   1192  1.1.1.5  jmcneill 				phy-names = "usb";
   1193  1.1.1.5  jmcneill 			};
   1194  1.1.1.5  jmcneill 
   1195  1.1.1.5  jmcneill 			usb@2,0 {
   1196  1.1.1.5  jmcneill 				reg = <0x1000 0 0 0 0>;
   1197  1.1.1.5  jmcneill 				phys = <&usb0 0>;
   1198  1.1.1.5  jmcneill 				phy-names = "usb";
   1199  1.1.1.5  jmcneill 			};
   1200  1.1.1.5  jmcneill 		};
   1201  1.1.1.4  jmcneill 
   1202  1.1.1.5  jmcneill 		pci1: pci@ee0d0000 {
   1203  1.1.1.5  jmcneill 			compatible = "renesas,pci-r8a7794",
   1204  1.1.1.5  jmcneill 				     "renesas,pci-rcar-gen2";
   1205  1.1.1.5  jmcneill 			device_type = "pci";
   1206  1.1.1.5  jmcneill 			reg = <0 0xee0d0000 0 0xc00>,
   1207  1.1.1.5  jmcneill 			      <0 0xee0c0000 0 0x1100>;
   1208  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>;
   1209  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 703>;
   1210  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1211  1.1.1.5  jmcneill 			resets = <&cpg 703>;
   1212  1.1.1.5  jmcneill 			status = "disabled";
   1213  1.1.1.5  jmcneill 
   1214  1.1.1.5  jmcneill 			bus-range = <1 1>;
   1215  1.1.1.5  jmcneill 			#address-cells = <3>;
   1216  1.1.1.5  jmcneill 			#size-cells = <2>;
   1217  1.1.1.5  jmcneill 			#interrupt-cells = <1>;
   1218  1.1.1.5  jmcneill 			ranges = <0x02000000 0 0xee0c0000 0 0xee0c0000 0 0x00010000>;
   1219  1.1.1.8  jmcneill 			interrupt-map-mask = <0xf800 0 0 0x7>;
   1220  1.1.1.8  jmcneill 			interrupt-map = <0x0000 0 0 1 &gic GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>,
   1221  1.1.1.8  jmcneill 					<0x0800 0 0 1 &gic GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>,
   1222  1.1.1.8  jmcneill 					<0x1000 0 0 2 &gic GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>;
   1223  1.1.1.5  jmcneill 
   1224  1.1.1.5  jmcneill 			usb@1,0 {
   1225  1.1.1.5  jmcneill 				reg = <0x10800 0 0 0 0>;
   1226  1.1.1.5  jmcneill 				phys = <&usb2 0>;
   1227  1.1.1.5  jmcneill 				phy-names = "usb";
   1228  1.1.1.5  jmcneill 			};
   1229  1.1.1.5  jmcneill 
   1230  1.1.1.5  jmcneill 			usb@2,0 {
   1231  1.1.1.5  jmcneill 				reg = <0x11000 0 0 0 0>;
   1232  1.1.1.5  jmcneill 				phys = <&usb2 0>;
   1233  1.1.1.5  jmcneill 				phy-names = "usb";
   1234  1.1.1.5  jmcneill 			};
   1235  1.1.1.5  jmcneill 		};
   1236  1.1.1.4  jmcneill 
   1237  1.1.1.8  jmcneill 		sdhi0: mmc@ee100000 {
   1238  1.1.1.5  jmcneill 			compatible = "renesas,sdhi-r8a7794",
   1239  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-sdhi";
   1240  1.1.1.5  jmcneill 			reg = <0 0xee100000 0 0x328>;
   1241  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 165 IRQ_TYPE_LEVEL_HIGH>;
   1242  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 314>;
   1243  1.1.1.5  jmcneill 			dmas = <&dmac0 0xcd>, <&dmac0 0xce>,
   1244  1.1.1.5  jmcneill 			       <&dmac1 0xcd>, <&dmac1 0xce>;
   1245  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
   1246  1.1.1.5  jmcneill 			max-frequency = <195000000>;
   1247  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1248  1.1.1.5  jmcneill 			resets = <&cpg 314>;
   1249  1.1.1.5  jmcneill 			status = "disabled";
   1250  1.1.1.5  jmcneill 		};
   1251  1.1.1.4  jmcneill 
   1252  1.1.1.8  jmcneill 		sdhi1: mmc@ee140000 {
   1253  1.1.1.5  jmcneill 			compatible = "renesas,sdhi-r8a7794",
   1254  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-sdhi";
   1255  1.1.1.5  jmcneill 			reg = <0 0xee140000 0 0x100>;
   1256  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 167 IRQ_TYPE_LEVEL_HIGH>;
   1257  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 312>;
   1258  1.1.1.5  jmcneill 			dmas = <&dmac0 0xc1>, <&dmac0 0xc2>,
   1259  1.1.1.5  jmcneill 			       <&dmac1 0xc1>, <&dmac1 0xc2>;
   1260  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
   1261  1.1.1.5  jmcneill 			max-frequency = <97500000>;
   1262  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1263  1.1.1.5  jmcneill 			resets = <&cpg 312>;
   1264  1.1.1.5  jmcneill 			status = "disabled";
   1265  1.1.1.5  jmcneill 		};
   1266  1.1.1.4  jmcneill 
   1267  1.1.1.8  jmcneill 		sdhi2: mmc@ee160000 {
   1268  1.1.1.5  jmcneill 			compatible = "renesas,sdhi-r8a7794",
   1269  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-sdhi";
   1270  1.1.1.5  jmcneill 			reg = <0 0xee160000 0 0x100>;
   1271  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>;
   1272  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 311>;
   1273  1.1.1.5  jmcneill 			dmas = <&dmac0 0xd3>, <&dmac0 0xd4>,
   1274  1.1.1.5  jmcneill 			       <&dmac1 0xd3>, <&dmac1 0xd4>;
   1275  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
   1276  1.1.1.5  jmcneill 			max-frequency = <97500000>;
   1277  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1278  1.1.1.5  jmcneill 			resets = <&cpg 311>;
   1279  1.1.1.5  jmcneill 			status = "disabled";
   1280  1.1.1.5  jmcneill 		};
   1281  1.1.1.4  jmcneill 
   1282  1.1.1.5  jmcneill 		mmcif0: mmc@ee200000 {
   1283  1.1.1.5  jmcneill 			compatible = "renesas,mmcif-r8a7794",
   1284  1.1.1.5  jmcneill 				     "renesas,sh-mmcif";
   1285  1.1.1.5  jmcneill 			reg = <0 0xee200000 0 0x80>;
   1286  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 169 IRQ_TYPE_LEVEL_HIGH>;
   1287  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 315>;
   1288  1.1.1.5  jmcneill 			dmas = <&dmac0 0xd1>, <&dmac0 0xd2>,
   1289  1.1.1.5  jmcneill 			       <&dmac1 0xd1>, <&dmac1 0xd2>;
   1290  1.1.1.5  jmcneill 			dma-names = "tx", "rx", "tx", "rx";
   1291  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1292  1.1.1.5  jmcneill 			resets = <&cpg 315>;
   1293  1.1.1.5  jmcneill 			reg-io-width = <4>;
   1294  1.1.1.5  jmcneill 			status = "disabled";
   1295  1.1.1.5  jmcneill 		};
   1296      1.1  jmcneill 
   1297  1.1.1.5  jmcneill 		ether: ethernet@ee700000 {
   1298  1.1.1.5  jmcneill 			compatible = "renesas,ether-r8a7794",
   1299  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-ether";
   1300  1.1.1.5  jmcneill 			reg = <0 0xee700000 0 0x400>;
   1301  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 162 IRQ_TYPE_LEVEL_HIGH>;
   1302  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 813>;
   1303  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1304  1.1.1.5  jmcneill 			resets = <&cpg 813>;
   1305  1.1.1.5  jmcneill 			phy-mode = "rmii";
   1306  1.1.1.5  jmcneill 			#address-cells = <1>;
   1307  1.1.1.5  jmcneill 			#size-cells = <0>;
   1308  1.1.1.5  jmcneill 			status = "disabled";
   1309  1.1.1.5  jmcneill 		};
   1310      1.1  jmcneill 
   1311  1.1.1.5  jmcneill 		gic: interrupt-controller@f1001000 {
   1312  1.1.1.5  jmcneill 			compatible = "arm,gic-400";
   1313  1.1.1.5  jmcneill 			#interrupt-cells = <3>;
   1314  1.1.1.5  jmcneill 			#address-cells = <0>;
   1315  1.1.1.5  jmcneill 			interrupt-controller;
   1316  1.1.1.5  jmcneill 			reg = <0 0xf1001000 0 0x1000>,
   1317  1.1.1.5  jmcneill 			      <0 0xf1002000 0 0x2000>,
   1318  1.1.1.5  jmcneill 			      <0 0xf1004000 0 0x2000>,
   1319  1.1.1.5  jmcneill 			      <0 0xf1006000 0 0x2000>;
   1320  1.1.1.5  jmcneill 			interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>;
   1321  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 408>;
   1322  1.1.1.5  jmcneill 			clock-names = "clk";
   1323  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1324  1.1.1.5  jmcneill 			resets = <&cpg 408>;
   1325  1.1.1.5  jmcneill 		};
   1326      1.1  jmcneill 
   1327  1.1.1.5  jmcneill 		vsp@fe928000 {
   1328  1.1.1.5  jmcneill 			compatible = "renesas,vsp1";
   1329  1.1.1.5  jmcneill 			reg = <0 0xfe928000 0 0x8000>;
   1330  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>;
   1331  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 131>;
   1332  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1333  1.1.1.5  jmcneill 			resets = <&cpg 131>;
   1334  1.1.1.5  jmcneill 		};
   1335      1.1  jmcneill 
   1336  1.1.1.5  jmcneill 		vsp@fe930000 {
   1337  1.1.1.5  jmcneill 			compatible = "renesas,vsp1";
   1338  1.1.1.5  jmcneill 			reg = <0 0xfe930000 0 0x8000>;
   1339  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>;
   1340  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 128>;
   1341  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1342  1.1.1.5  jmcneill 			resets = <&cpg 128>;
   1343  1.1.1.5  jmcneill 		};
   1344      1.1  jmcneill 
   1345  1.1.1.6  jmcneill 		fdp1@fe940000 {
   1346  1.1.1.6  jmcneill 			compatible = "renesas,fdp1";
   1347  1.1.1.6  jmcneill 			reg = <0 0xfe940000 0 0x2400>;
   1348  1.1.1.6  jmcneill 			interrupts = <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>;
   1349  1.1.1.6  jmcneill 			clocks = <&cpg CPG_MOD 119>;
   1350  1.1.1.6  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1351  1.1.1.6  jmcneill 			resets = <&cpg 119>;
   1352  1.1.1.6  jmcneill 		};
   1353  1.1.1.6  jmcneill 
   1354  1.1.1.5  jmcneill 		du: display@feb00000 {
   1355  1.1.1.5  jmcneill 			compatible = "renesas,du-r8a7794";
   1356  1.1.1.5  jmcneill 			reg = <0 0xfeb00000 0 0x40000>;
   1357  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>,
   1358  1.1.1.5  jmcneill 				     <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>;
   1359  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 724>, <&cpg CPG_MOD 723>;
   1360  1.1.1.5  jmcneill 			clock-names = "du.0", "du.1";
   1361  1.1.1.8  jmcneill 			resets = <&cpg 724>;
   1362  1.1.1.8  jmcneill 			reset-names = "du.0";
   1363  1.1.1.5  jmcneill 			status = "disabled";
   1364  1.1.1.5  jmcneill 
   1365  1.1.1.5  jmcneill 			ports {
   1366  1.1.1.5  jmcneill 				#address-cells = <1>;
   1367  1.1.1.5  jmcneill 				#size-cells = <0>;
   1368  1.1.1.5  jmcneill 
   1369  1.1.1.5  jmcneill 				port@0 {
   1370  1.1.1.5  jmcneill 					reg = <0>;
   1371  1.1.1.5  jmcneill 					du_out_rgb0: endpoint {
   1372  1.1.1.5  jmcneill 					};
   1373  1.1.1.5  jmcneill 				};
   1374  1.1.1.5  jmcneill 				port@1 {
   1375  1.1.1.5  jmcneill 					reg = <1>;
   1376  1.1.1.5  jmcneill 					du_out_rgb1: endpoint {
   1377  1.1.1.5  jmcneill 					};
   1378  1.1.1.5  jmcneill 				};
   1379  1.1.1.5  jmcneill 			};
   1380  1.1.1.5  jmcneill 		};
   1381      1.1  jmcneill 
   1382  1.1.1.5  jmcneill 		prr: chipid@ff000044 {
   1383  1.1.1.5  jmcneill 			compatible = "renesas,prr";
   1384  1.1.1.5  jmcneill 			reg = <0 0xff000044 0 4>;
   1385  1.1.1.5  jmcneill 		};
   1386      1.1  jmcneill 
   1387  1.1.1.5  jmcneill 		cmt0: timer@ffca0000 {
   1388  1.1.1.5  jmcneill 			compatible = "renesas,r8a7794-cmt0",
   1389  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-cmt0";
   1390  1.1.1.5  jmcneill 			reg = <0 0xffca0000 0 0x1004>;
   1391  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 142 IRQ_TYPE_LEVEL_HIGH>,
   1392  1.1.1.5  jmcneill 				     <GIC_SPI 143 IRQ_TYPE_LEVEL_HIGH>;
   1393  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 124>;
   1394  1.1.1.5  jmcneill 			clock-names = "fck";
   1395  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1396  1.1.1.5  jmcneill 			resets = <&cpg 124>;
   1397      1.1  jmcneill 
   1398  1.1.1.5  jmcneill 			status = "disabled";
   1399  1.1.1.5  jmcneill 		};
   1400      1.1  jmcneill 
   1401  1.1.1.5  jmcneill 		cmt1: timer@e6130000 {
   1402  1.1.1.5  jmcneill 			compatible = "renesas,r8a7794-cmt1",
   1403  1.1.1.5  jmcneill 				     "renesas,rcar-gen2-cmt1";
   1404  1.1.1.5  jmcneill 			reg = <0 0xe6130000 0 0x1004>;
   1405  1.1.1.5  jmcneill 			interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>,
   1406  1.1.1.5  jmcneill 				     <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>,
   1407  1.1.1.5  jmcneill 				     <GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>,
   1408  1.1.1.5  jmcneill 				     <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>,
   1409  1.1.1.5  jmcneill 				     <GIC_SPI 124 IRQ_TYPE_LEVEL_HIGH>,
   1410  1.1.1.5  jmcneill 				     <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>,
   1411  1.1.1.5  jmcneill 				     <GIC_SPI 126 IRQ_TYPE_LEVEL_HIGH>,
   1412  1.1.1.5  jmcneill 				     <GIC_SPI 127 IRQ_TYPE_LEVEL_HIGH>;
   1413  1.1.1.5  jmcneill 			clocks = <&cpg CPG_MOD 329>;
   1414  1.1.1.5  jmcneill 			clock-names = "fck";
   1415  1.1.1.5  jmcneill 			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
   1416  1.1.1.5  jmcneill 			resets = <&cpg 329>;
   1417      1.1  jmcneill 
   1418  1.1.1.5  jmcneill 			status = "disabled";
   1419      1.1  jmcneill 		};
   1420  1.1.1.5  jmcneill 	};
   1421      1.1  jmcneill 
   1422  1.1.1.5  jmcneill 	timer {
   1423  1.1.1.5  jmcneill 		compatible = "arm,armv7-timer";
   1424  1.1.1.5  jmcneill 		interrupts-extended = <&gic GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
   1425  1.1.1.5  jmcneill 				      <&gic GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
   1426  1.1.1.5  jmcneill 				      <&gic GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
   1427  1.1.1.5  jmcneill 				      <&gic GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>;
   1428  1.1.1.5  jmcneill 	};
   1429      1.1  jmcneill 
   1430  1.1.1.5  jmcneill 	/* External USB clock - can be overridden by the board */
   1431  1.1.1.5  jmcneill 	usb_extal_clk: usb_extal {
   1432  1.1.1.5  jmcneill 		compatible = "fixed-clock";
   1433  1.1.1.5  jmcneill 		#clock-cells = <0>;
   1434  1.1.1.5  jmcneill 		clock-frequency = <48000000>;
   1435      1.1  jmcneill 	};
   1436      1.1  jmcneill };
   1437