135ca8168SChen Feng/*
235ca8168SChen Feng * dts file for Hisilicon Hi3660 SoC
335ca8168SChen Feng *
435ca8168SChen Feng * Copyright (C) 2016, Hisilicon Ltd.
535ca8168SChen Feng */
635ca8168SChen Feng
735ca8168SChen Feng#include <dt-bindings/interrupt-controller/arm-gic.h>
8a4e36ae0SZhangfei Gao#include <dt-bindings/clock/hi3660-clock.h>
935ca8168SChen Feng
1035ca8168SChen Feng/ {
1135ca8168SChen Feng	compatible = "hisilicon,hi3660";
1235ca8168SChen Feng	interrupt-parent = <&gic>;
1335ca8168SChen Feng	#address-cells = <2>;
1435ca8168SChen Feng	#size-cells = <2>;
1535ca8168SChen Feng
1635ca8168SChen Feng	psci {
1735ca8168SChen Feng		compatible = "arm,psci-0.2";
1835ca8168SChen Feng		method = "smc";
1935ca8168SChen Feng	};
2035ca8168SChen Feng
2135ca8168SChen Feng	cpus {
2235ca8168SChen Feng		#address-cells = <2>;
2335ca8168SChen Feng		#size-cells = <0>;
2435ca8168SChen Feng
2535ca8168SChen Feng		cpu-map {
2635ca8168SChen Feng			cluster0 {
2735ca8168SChen Feng				core0 {
2835ca8168SChen Feng					cpu = <&cpu0>;
2935ca8168SChen Feng				};
3035ca8168SChen Feng				core1 {
3135ca8168SChen Feng					cpu = <&cpu1>;
3235ca8168SChen Feng				};
3335ca8168SChen Feng				core2 {
3435ca8168SChen Feng					cpu = <&cpu2>;
3535ca8168SChen Feng				};
3635ca8168SChen Feng				core3 {
3735ca8168SChen Feng					cpu = <&cpu3>;
3835ca8168SChen Feng				};
3935ca8168SChen Feng			};
4035ca8168SChen Feng			cluster1 {
4135ca8168SChen Feng				core0 {
4235ca8168SChen Feng					cpu = <&cpu4>;
4335ca8168SChen Feng				};
4435ca8168SChen Feng				core1 {
4535ca8168SChen Feng					cpu = <&cpu5>;
4635ca8168SChen Feng				};
4735ca8168SChen Feng				core2 {
4835ca8168SChen Feng					cpu = <&cpu6>;
4935ca8168SChen Feng				};
5035ca8168SChen Feng				core3 {
5135ca8168SChen Feng					cpu = <&cpu7>;
5235ca8168SChen Feng				};
5335ca8168SChen Feng			};
5435ca8168SChen Feng		};
5535ca8168SChen Feng
5635ca8168SChen Feng		cpu0: cpu@0 {
5735ca8168SChen Feng			compatible = "arm,cortex-a53", "arm,armv8";
5835ca8168SChen Feng			device_type = "cpu";
5935ca8168SChen Feng			reg = <0x0 0x0>;
6035ca8168SChen Feng			enable-method = "psci";
61a6d08344SLeo Yan			next-level-cache = <&A53_L2>;
6230fec826SLeo Yan			cpu-idle-states = <&CPU_SLEEP &CLUSTER_SLEEP_0>;
6335ca8168SChen Feng		};
6435ca8168SChen Feng
6535ca8168SChen Feng		cpu1: cpu@1 {
6635ca8168SChen Feng			compatible = "arm,cortex-a53", "arm,armv8";
6735ca8168SChen Feng			device_type = "cpu";
6835ca8168SChen Feng			reg = <0x0 0x1>;
6935ca8168SChen Feng			enable-method = "psci";
70a6d08344SLeo Yan			next-level-cache = <&A53_L2>;
7130fec826SLeo Yan			cpu-idle-states = <&CPU_SLEEP &CLUSTER_SLEEP_0>;
7235ca8168SChen Feng		};
7335ca8168SChen Feng
7435ca8168SChen Feng		cpu2: cpu@2 {
7535ca8168SChen Feng			compatible = "arm,cortex-a53", "arm,armv8";
7635ca8168SChen Feng			device_type = "cpu";
7735ca8168SChen Feng			reg = <0x0 0x2>;
7835ca8168SChen Feng			enable-method = "psci";
79a6d08344SLeo Yan			next-level-cache = <&A53_L2>;
8030fec826SLeo Yan			cpu-idle-states = <&CPU_SLEEP &CLUSTER_SLEEP_0>;
8135ca8168SChen Feng		};
8235ca8168SChen Feng
8335ca8168SChen Feng		cpu3: cpu@3 {
8435ca8168SChen Feng			compatible = "arm,cortex-a53", "arm,armv8";
8535ca8168SChen Feng			device_type = "cpu";
8635ca8168SChen Feng			reg = <0x0 0x3>;
8735ca8168SChen Feng			enable-method = "psci";
88a6d08344SLeo Yan			next-level-cache = <&A53_L2>;
8930fec826SLeo Yan			cpu-idle-states = <&CPU_SLEEP &CLUSTER_SLEEP_0>;
9035ca8168SChen Feng		};
9135ca8168SChen Feng
9235ca8168SChen Feng		cpu4: cpu@100 {
9335ca8168SChen Feng			compatible = "arm,cortex-a73", "arm,armv8";
9435ca8168SChen Feng			device_type = "cpu";
9535ca8168SChen Feng			reg = <0x0 0x100>;
9635ca8168SChen Feng			enable-method = "psci";
97a6d08344SLeo Yan			next-level-cache = <&A73_L2>;
9830fec826SLeo Yan			cpu-idle-states = <
9930fec826SLeo Yan					&CPU_NAP
10030fec826SLeo Yan					&CPU_SLEEP
10130fec826SLeo Yan					&CLUSTER_SLEEP_1
10230fec826SLeo Yan			>;
10335ca8168SChen Feng		};
10435ca8168SChen Feng
10535ca8168SChen Feng		cpu5: cpu@101 {
10635ca8168SChen Feng			compatible = "arm,cortex-a73", "arm,armv8";
10735ca8168SChen Feng			device_type = "cpu";
10835ca8168SChen Feng			reg = <0x0 0x101>;
10935ca8168SChen Feng			enable-method = "psci";
110a6d08344SLeo Yan			next-level-cache = <&A73_L2>;
11130fec826SLeo Yan			cpu-idle-states = <
11230fec826SLeo Yan					&CPU_NAP
11330fec826SLeo Yan					&CPU_SLEEP
11430fec826SLeo Yan					&CLUSTER_SLEEP_1
11530fec826SLeo Yan			>;
11635ca8168SChen Feng		};
11735ca8168SChen Feng
11835ca8168SChen Feng		cpu6: cpu@102 {
11935ca8168SChen Feng			compatible = "arm,cortex-a73", "arm,armv8";
12035ca8168SChen Feng			device_type = "cpu";
12135ca8168SChen Feng			reg = <0x0 0x102>;
12235ca8168SChen Feng			enable-method = "psci";
123a6d08344SLeo Yan			next-level-cache = <&A73_L2>;
12430fec826SLeo Yan			cpu-idle-states = <
12530fec826SLeo Yan					&CPU_NAP
12630fec826SLeo Yan					&CPU_SLEEP
12730fec826SLeo Yan					&CLUSTER_SLEEP_1
12830fec826SLeo Yan			>;
12935ca8168SChen Feng		};
13035ca8168SChen Feng
13135ca8168SChen Feng		cpu7: cpu@103 {
13235ca8168SChen Feng			compatible = "arm,cortex-a73", "arm,armv8";
13335ca8168SChen Feng			device_type = "cpu";
13435ca8168SChen Feng			reg = <0x0 0x103>;
13535ca8168SChen Feng			enable-method = "psci";
136a6d08344SLeo Yan			next-level-cache = <&A73_L2>;
13730fec826SLeo Yan			cpu-idle-states = <
13830fec826SLeo Yan					&CPU_NAP
13930fec826SLeo Yan					&CPU_SLEEP
14030fec826SLeo Yan					&CLUSTER_SLEEP_1
14130fec826SLeo Yan			>;
14230fec826SLeo Yan		};
14330fec826SLeo Yan
14430fec826SLeo Yan		idle-states {
14530fec826SLeo Yan			entry-method = "psci";
14630fec826SLeo Yan
14730fec826SLeo Yan			CPU_NAP: cpu-nap {
14830fec826SLeo Yan				compatible = "arm,idle-state";
14930fec826SLeo Yan				arm,psci-suspend-param = <0x0000001>;
15030fec826SLeo Yan				entry-latency-us = <7>;
15130fec826SLeo Yan				exit-latency-us = <2>;
15230fec826SLeo Yan				min-residency-us = <15>;
15330fec826SLeo Yan			};
15430fec826SLeo Yan
15530fec826SLeo Yan			CPU_SLEEP: cpu-sleep {
15630fec826SLeo Yan				compatible = "arm,idle-state";
15730fec826SLeo Yan				local-timer-stop;
15830fec826SLeo Yan				arm,psci-suspend-param = <0x0010000>;
15930fec826SLeo Yan				entry-latency-us = <40>;
16030fec826SLeo Yan				exit-latency-us = <70>;
16130fec826SLeo Yan				min-residency-us = <3000>;
16230fec826SLeo Yan			};
16330fec826SLeo Yan
16430fec826SLeo Yan			CLUSTER_SLEEP_0: cluster-sleep-0 {
16530fec826SLeo Yan				compatible = "arm,idle-state";
16630fec826SLeo Yan				local-timer-stop;
16730fec826SLeo Yan				arm,psci-suspend-param = <0x1010000>;
16830fec826SLeo Yan				entry-latency-us = <500>;
16930fec826SLeo Yan				exit-latency-us = <5000>;
17030fec826SLeo Yan				min-residency-us = <20000>;
17130fec826SLeo Yan			};
17230fec826SLeo Yan
17330fec826SLeo Yan			CLUSTER_SLEEP_1: cluster-sleep-1 {
17430fec826SLeo Yan				compatible = "arm,idle-state";
17530fec826SLeo Yan				local-timer-stop;
17630fec826SLeo Yan				arm,psci-suspend-param = <0x1010000>;
17730fec826SLeo Yan				entry-latency-us = <1000>;
17830fec826SLeo Yan				exit-latency-us = <5000>;
17930fec826SLeo Yan				min-residency-us = <20000>;
18030fec826SLeo Yan			};
18135ca8168SChen Feng		};
182a6d08344SLeo Yan
183a6d08344SLeo Yan		A53_L2: l2-cache0 {
184a6d08344SLeo Yan			compatible = "cache";
185a6d08344SLeo Yan		};
186a6d08344SLeo Yan
187a6d08344SLeo Yan		A73_L2: l2-cache1 {
188a6d08344SLeo Yan			compatible = "cache";
189a6d08344SLeo Yan		};
19035ca8168SChen Feng	};
19135ca8168SChen Feng
19235ca8168SChen Feng	gic: interrupt-controller@e82b0000 {
19335ca8168SChen Feng		compatible = "arm,gic-400";
19435ca8168SChen Feng		reg = <0x0 0xe82b1000 0 0x1000>, /* GICD */
19535ca8168SChen Feng		      <0x0 0xe82b2000 0 0x2000>, /* GICC */
19635ca8168SChen Feng		      <0x0 0xe82b4000 0 0x2000>, /* GICH */
19735ca8168SChen Feng		      <0x0 0xe82b6000 0 0x2000>; /* GICV */
19835ca8168SChen Feng		#address-cells = <0>;
19935ca8168SChen Feng		#interrupt-cells = <3>;
20035ca8168SChen Feng		interrupt-controller;
20135ca8168SChen Feng		interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(8) |
20235ca8168SChen Feng					 IRQ_TYPE_LEVEL_HIGH)>;
20335ca8168SChen Feng	};
20435ca8168SChen Feng
20535ca8168SChen Feng	timer {
20635ca8168SChen Feng		compatible = "arm,armv8-timer";
20735ca8168SChen Feng		interrupt-parent = <&gic>;
20835ca8168SChen Feng		interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(8) |
20935ca8168SChen Feng					  IRQ_TYPE_LEVEL_LOW)>,
21035ca8168SChen Feng			     <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(8) |
21135ca8168SChen Feng					  IRQ_TYPE_LEVEL_LOW)>,
21235ca8168SChen Feng			     <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(8) |
21335ca8168SChen Feng					  IRQ_TYPE_LEVEL_LOW)>,
21435ca8168SChen Feng			     <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(8) |
21535ca8168SChen Feng					  IRQ_TYPE_LEVEL_LOW)>;
21635ca8168SChen Feng	};
21735ca8168SChen Feng
21835ca8168SChen Feng	soc {
21935ca8168SChen Feng		compatible = "simple-bus";
22035ca8168SChen Feng		#address-cells = <2>;
22135ca8168SChen Feng		#size-cells = <2>;
22235ca8168SChen Feng		ranges;
22335ca8168SChen Feng
224a4e36ae0SZhangfei Gao		crg_ctrl: crg_ctrl@fff35000 {
225a4e36ae0SZhangfei Gao			compatible = "hisilicon,hi3660-crgctrl", "syscon";
226a4e36ae0SZhangfei Gao			reg = <0x0 0xfff35000 0x0 0x1000>;
227a4e36ae0SZhangfei Gao			#clock-cells = <1>;
22835ca8168SChen Feng		};
22935ca8168SChen Feng
230a4e36ae0SZhangfei Gao		crg_rst: crg_rst_controller {
231a4e36ae0SZhangfei Gao			compatible = "hisilicon,hi3660-reset";
232a4e36ae0SZhangfei Gao			#reset-cells = <2>;
233a4e36ae0SZhangfei Gao			hisi,rst-syscon = <&crg_ctrl>;
234a4e36ae0SZhangfei Gao		};
235a4e36ae0SZhangfei Gao
236a4e36ae0SZhangfei Gao
237a4e36ae0SZhangfei Gao		pctrl: pctrl@e8a09000 {
238a4e36ae0SZhangfei Gao			compatible = "hisilicon,hi3660-pctrl", "syscon";
239a4e36ae0SZhangfei Gao			reg = <0x0 0xe8a09000 0x0 0x2000>;
240a4e36ae0SZhangfei Gao			#clock-cells = <1>;
241a4e36ae0SZhangfei Gao		};
242a4e36ae0SZhangfei Gao
243a4e36ae0SZhangfei Gao		pmuctrl: crg_ctrl@fff34000 {
244a4e36ae0SZhangfei Gao			compatible = "hisilicon,hi3660-pmuctrl", "syscon";
245a4e36ae0SZhangfei Gao			reg = <0x0 0xfff34000 0x0 0x1000>;
246a4e36ae0SZhangfei Gao			#clock-cells = <1>;
247a4e36ae0SZhangfei Gao		};
248a4e36ae0SZhangfei Gao
249a4e36ae0SZhangfei Gao		sctrl: sctrl@fff0a000 {
250a4e36ae0SZhangfei Gao			compatible = "hisilicon,hi3660-sctrl", "syscon";
251a4e36ae0SZhangfei Gao			reg = <0x0 0xfff0a000 0x0 0x1000>;
252a4e36ae0SZhangfei Gao			#clock-cells = <1>;
253a4e36ae0SZhangfei Gao		};
254a4e36ae0SZhangfei Gao
255a4e36ae0SZhangfei Gao		iomcu: iomcu@ffd7e000 {
256a4e36ae0SZhangfei Gao			compatible = "hisilicon,hi3660-iomcu", "syscon";
257a4e36ae0SZhangfei Gao			reg = <0x0 0xffd7e000 0x0 0x1000>;
258a4e36ae0SZhangfei Gao			#clock-cells = <1>;
259a4e36ae0SZhangfei Gao
260a4e36ae0SZhangfei Gao		};
261a4e36ae0SZhangfei Gao
262a4e36ae0SZhangfei Gao		iomcu_rst: reset {
263a4e36ae0SZhangfei Gao			compatible = "hisilicon,hi3660-reset";
264a4e36ae0SZhangfei Gao			hisi,rst-syscon = <&iomcu>;
265a4e36ae0SZhangfei Gao			#reset-cells = <2>;
266a4e36ae0SZhangfei Gao		};
267a4e36ae0SZhangfei Gao
26875196330SLeo Yan		dual_timer0: timer@fff14000 {
26975196330SLeo Yan			compatible = "arm,sp804", "arm,primecell";
27075196330SLeo Yan			reg = <0x0 0xfff14000 0x0 0x1000>;
27175196330SLeo Yan			interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>,
27275196330SLeo Yan				     <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
27375196330SLeo Yan			clocks = <&crg_ctrl HI3660_OSC32K>,
27475196330SLeo Yan				 <&crg_ctrl HI3660_OSC32K>,
27575196330SLeo Yan				 <&crg_ctrl HI3660_OSC32K>;
27675196330SLeo Yan			clock-names = "timer1", "timer2", "apb_pclk";
27775196330SLeo Yan		};
27875196330SLeo Yan
2795f8a3b77SZhangfei Gao		i2c0: i2c@ffd71000 {
2805f8a3b77SZhangfei Gao			compatible = "snps,designware-i2c";
2815f8a3b77SZhangfei Gao			reg = <0x0 0xffd71000 0x0 0x1000>;
2825f8a3b77SZhangfei Gao			interrupts = <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>;
2835f8a3b77SZhangfei Gao			#address-cells = <1>;
2845f8a3b77SZhangfei Gao			#size-cells = <0>;
2855f8a3b77SZhangfei Gao			clock-frequency = <400000>;
2865f8a3b77SZhangfei Gao			clocks = <&crg_ctrl HI3660_CLK_GATE_I2C0>;
2875f8a3b77SZhangfei Gao			resets = <&iomcu_rst 0x20 3>;
2885f8a3b77SZhangfei Gao			pinctrl-names = "default";
2895f8a3b77SZhangfei Gao			pinctrl-0 = <&i2c0_pmx_func &i2c0_cfg_func>;
2905f8a3b77SZhangfei Gao			status = "disabled";
2915f8a3b77SZhangfei Gao		};
2925f8a3b77SZhangfei Gao
2935f8a3b77SZhangfei Gao		i2c1: i2c@ffd72000 {
2945f8a3b77SZhangfei Gao			compatible = "snps,designware-i2c";
2955f8a3b77SZhangfei Gao			reg = <0x0 0xffd72000 0x0 0x1000>;
2965f8a3b77SZhangfei Gao			interrupts = <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>;
2975f8a3b77SZhangfei Gao			#address-cells = <1>;
2985f8a3b77SZhangfei Gao			#size-cells = <0>;
2995f8a3b77SZhangfei Gao			clock-frequency = <400000>;
3005f8a3b77SZhangfei Gao			clocks = <&crg_ctrl HI3660_CLK_GATE_I2C1>;
3015f8a3b77SZhangfei Gao			resets = <&iomcu_rst 0x20 4>;
3025f8a3b77SZhangfei Gao			pinctrl-names = "default";
3035f8a3b77SZhangfei Gao			pinctrl-0 = <&i2c1_pmx_func &i2c1_cfg_func>;
3045f8a3b77SZhangfei Gao			status = "disabled";
3055f8a3b77SZhangfei Gao		};
3065f8a3b77SZhangfei Gao
3075f8a3b77SZhangfei Gao		i2c3: i2c@fdf0c000 {
3085f8a3b77SZhangfei Gao			compatible = "snps,designware-i2c";
3095f8a3b77SZhangfei Gao			reg = <0x0 0xfdf0c000 0x0 0x1000>;
3105f8a3b77SZhangfei Gao			interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
3115f8a3b77SZhangfei Gao			#address-cells = <1>;
3125f8a3b77SZhangfei Gao			#size-cells = <0>;
3135f8a3b77SZhangfei Gao			clock-frequency = <400000>;
3145f8a3b77SZhangfei Gao			clocks = <&crg_ctrl HI3660_CLK_GATE_I2C3>;
3155f8a3b77SZhangfei Gao			resets = <&crg_rst 0x78 7>;
3165f8a3b77SZhangfei Gao			pinctrl-names = "default";
3175f8a3b77SZhangfei Gao			pinctrl-0 = <&i2c3_pmx_func &i2c3_cfg_func>;
3185f8a3b77SZhangfei Gao			status = "disabled";
3195f8a3b77SZhangfei Gao		};
3205f8a3b77SZhangfei Gao
3215f8a3b77SZhangfei Gao		i2c7: i2c@fdf0b000 {
3225f8a3b77SZhangfei Gao			compatible = "snps,designware-i2c";
3235f8a3b77SZhangfei Gao			reg = <0x0 0xfdf0b000 0x0 0x1000>;
3245f8a3b77SZhangfei Gao			interrupts = <GIC_SPI 314 IRQ_TYPE_LEVEL_HIGH>;
3255f8a3b77SZhangfei Gao			#address-cells = <1>;
3265f8a3b77SZhangfei Gao			#size-cells = <0>;
3275f8a3b77SZhangfei Gao			clock-frequency = <400000>;
3285f8a3b77SZhangfei Gao			clocks = <&crg_ctrl HI3660_CLK_GATE_I2C7>;
3295f8a3b77SZhangfei Gao			resets = <&crg_rst 0x60 14>;
3305f8a3b77SZhangfei Gao			pinctrl-names = "default";
3315f8a3b77SZhangfei Gao			pinctrl-0 = <&i2c7_pmx_func &i2c7_cfg_func>;
3325f8a3b77SZhangfei Gao			status = "disabled";
3335f8a3b77SZhangfei Gao		};
3345f8a3b77SZhangfei Gao
335254b07b2SChen Feng		uart0: serial@fdf02000 {
336254b07b2SChen Feng			compatible = "arm,pl011", "arm,primecell";
337254b07b2SChen Feng			reg = <0x0 0xfdf02000 0x0 0x1000>;
338254b07b2SChen Feng			interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
339254b07b2SChen Feng			clocks = <&crg_ctrl HI3660_CLK_MUX_UART0>,
340254b07b2SChen Feng				 <&crg_ctrl HI3660_PCLK>;
341254b07b2SChen Feng			clock-names = "uartclk", "apb_pclk";
342254b07b2SChen Feng			pinctrl-names = "default";
343254b07b2SChen Feng			pinctrl-0 = <&uart0_pmx_func &uart0_cfg_func>;
344254b07b2SChen Feng			status = "disabled";
345254b07b2SChen Feng		};
346254b07b2SChen Feng
347254b07b2SChen Feng		uart1: serial@fdf00000 {
348254b07b2SChen Feng			compatible = "arm,pl011", "arm,primecell";
349254b07b2SChen Feng			reg = <0x0 0xfdf00000 0x0 0x1000>;
350254b07b2SChen Feng			interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
351254b07b2SChen Feng			clocks = <&crg_ctrl HI3660_CLK_GATE_UART1>,
352254b07b2SChen Feng				 <&crg_ctrl HI3660_CLK_GATE_UART1>;
353254b07b2SChen Feng			clock-names = "uartclk", "apb_pclk";
354254b07b2SChen Feng			pinctrl-names = "default";
355254b07b2SChen Feng			pinctrl-0 = <&uart1_pmx_func &uart1_cfg_func>;
356254b07b2SChen Feng			status = "disabled";
357254b07b2SChen Feng		};
358254b07b2SChen Feng
359254b07b2SChen Feng		uart2: serial@fdf03000 {
360254b07b2SChen Feng			compatible = "arm,pl011", "arm,primecell";
361254b07b2SChen Feng			reg = <0x0 0xfdf03000 0x0 0x1000>;
362254b07b2SChen Feng			interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>;
363254b07b2SChen Feng			clocks = <&crg_ctrl HI3660_CLK_GATE_UART2>,
364254b07b2SChen Feng				 <&crg_ctrl HI3660_PCLK>;
365254b07b2SChen Feng			clock-names = "uartclk", "apb_pclk";
366254b07b2SChen Feng			pinctrl-names = "default";
367254b07b2SChen Feng			pinctrl-0 = <&uart2_pmx_func &uart2_cfg_func>;
368254b07b2SChen Feng			status = "disabled";
369254b07b2SChen Feng		};
370254b07b2SChen Feng
371254b07b2SChen Feng		uart3: serial@ffd74000 {
372254b07b2SChen Feng			compatible = "arm,pl011", "arm,primecell";
373254b07b2SChen Feng			reg = <0x0 0xffd74000 0x0 0x1000>;
374254b07b2SChen Feng			interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
375254b07b2SChen Feng			clocks = <&crg_ctrl HI3660_FACTOR_UART3>,
376254b07b2SChen Feng				 <&crg_ctrl HI3660_PCLK>;
377254b07b2SChen Feng			clock-names = "uartclk", "apb_pclk";
378254b07b2SChen Feng			pinctrl-names = "default";
379254b07b2SChen Feng			pinctrl-0 = <&uart3_pmx_func &uart3_cfg_func>;
380254b07b2SChen Feng			status = "disabled";
381254b07b2SChen Feng		};
382254b07b2SChen Feng
383254b07b2SChen Feng		uart4: serial@fdf01000 {
384254b07b2SChen Feng			compatible = "arm,pl011", "arm,primecell";
385254b07b2SChen Feng			reg = <0x0 0xfdf01000 0x0 0x1000>;
386254b07b2SChen Feng			interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
387254b07b2SChen Feng			clocks = <&crg_ctrl HI3660_CLK_GATE_UART4>,
388254b07b2SChen Feng				 <&crg_ctrl HI3660_CLK_GATE_UART4>;
389254b07b2SChen Feng			clock-names = "uartclk", "apb_pclk";
390254b07b2SChen Feng			pinctrl-names = "default";
391254b07b2SChen Feng			pinctrl-0 = <&uart4_pmx_func &uart4_cfg_func>;
392254b07b2SChen Feng			status = "disabled";
393254b07b2SChen Feng		};
394254b07b2SChen Feng
395a4e36ae0SZhangfei Gao		uart5: serial@fdf05000 {
39635ca8168SChen Feng			compatible = "arm,pl011", "arm,primecell";
39735ca8168SChen Feng			reg = <0x0 0xfdf05000 0x0 0x1000>;
39835ca8168SChen Feng			interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
399a4e36ae0SZhangfei Gao			clocks = <&crg_ctrl HI3660_CLK_GATE_UART5>,
400a4e36ae0SZhangfei Gao				 <&crg_ctrl HI3660_CLK_GATE_UART5>;
40135ca8168SChen Feng			clock-names = "uartclk", "apb_pclk";
402254b07b2SChen Feng			pinctrl-names = "default";
403254b07b2SChen Feng			pinctrl-0 = <&uart5_pmx_func &uart5_cfg_func>;
404254b07b2SChen Feng			status = "disabled";
405254b07b2SChen Feng		};
406254b07b2SChen Feng
407254b07b2SChen Feng		uart6: serial@fff32000 {
408254b07b2SChen Feng			compatible = "arm,pl011", "arm,primecell";
409254b07b2SChen Feng			reg = <0x0 0xfff32000 0x0 0x1000>;
410254b07b2SChen Feng			interrupts = <GIC_SPI 79 IRQ_TYPE_LEVEL_HIGH>;
411254b07b2SChen Feng			clocks = <&crg_ctrl HI3660_CLK_UART6>,
412254b07b2SChen Feng				 <&crg_ctrl HI3660_PCLK>;
413254b07b2SChen Feng			clock-names = "uartclk", "apb_pclk";
414254b07b2SChen Feng			pinctrl-names = "default";
415254b07b2SChen Feng			pinctrl-0 = <&uart6_pmx_func &uart6_cfg_func>;
41635ca8168SChen Feng			status = "disabled";
41735ca8168SChen Feng		};
418d94eab86SWang Xiaoyin
4190a0698f6SChen Feng		rtc0: rtc@fff04000 {
4200a0698f6SChen Feng			compatible = "arm,pl031", "arm,primecell";
4210a0698f6SChen Feng			reg = <0x0 0Xfff04000 0x0 0x1000>;
4220a0698f6SChen Feng			interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
4230a0698f6SChen Feng			clocks = <&crg_ctrl HI3660_PCLK>;
4240a0698f6SChen Feng			clock-names = "apb_pclk";
4250a0698f6SChen Feng		};
4260a0698f6SChen Feng
427d94eab86SWang Xiaoyin		gpio0: gpio@e8a0b000 {
428d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
429d94eab86SWang Xiaoyin			reg = <0 0xe8a0b000 0 0x1000>;
430d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>;
431d94eab86SWang Xiaoyin			gpio-controller;
432d94eab86SWang Xiaoyin			#gpio-cells = <2>;
433d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 1 0 7>;
434d94eab86SWang Xiaoyin			interrupt-controller;
435d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
436d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO0>;
437d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
438d94eab86SWang Xiaoyin		};
439d94eab86SWang Xiaoyin
440d94eab86SWang Xiaoyin		gpio1: gpio@e8a0c000 {
441d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
442d94eab86SWang Xiaoyin			reg = <0 0xe8a0c000 0 0x1000>;
443d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>;
444d94eab86SWang Xiaoyin			gpio-controller;
445d94eab86SWang Xiaoyin			#gpio-cells = <2>;
446d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 1 7 7>;
447d94eab86SWang Xiaoyin			interrupt-controller;
448d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
449d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO1>;
450d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
451d94eab86SWang Xiaoyin		};
452d94eab86SWang Xiaoyin
453d94eab86SWang Xiaoyin		gpio2: gpio@e8a0d000 {
454d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
455d94eab86SWang Xiaoyin			reg = <0 0xe8a0d000 0 0x1000>;
456d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
457d94eab86SWang Xiaoyin			gpio-controller;
458d94eab86SWang Xiaoyin			#gpio-cells = <2>;
459d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 14 8>;
460d94eab86SWang Xiaoyin			interrupt-controller;
461d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
462d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO2>;
463d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
464d94eab86SWang Xiaoyin		};
465d94eab86SWang Xiaoyin
466d94eab86SWang Xiaoyin		gpio3: gpio@e8a0e000 {
467d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
468d94eab86SWang Xiaoyin			reg = <0 0xe8a0e000 0 0x1000>;
469d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
470d94eab86SWang Xiaoyin			gpio-controller;
471d94eab86SWang Xiaoyin			#gpio-cells = <2>;
472d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 22 8>;
473d94eab86SWang Xiaoyin			interrupt-controller;
474d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
475d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO3>;
476d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
477d94eab86SWang Xiaoyin		};
478d94eab86SWang Xiaoyin
479d94eab86SWang Xiaoyin		gpio4: gpio@e8a0f000 {
480d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
481d94eab86SWang Xiaoyin			reg = <0 0xe8a0f000 0 0x1000>;
482d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>;
483d94eab86SWang Xiaoyin			gpio-controller;
484d94eab86SWang Xiaoyin			#gpio-cells = <2>;
485d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 30 8>;
486d94eab86SWang Xiaoyin			interrupt-controller;
487d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
488d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO4>;
489d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
490d94eab86SWang Xiaoyin		};
491d94eab86SWang Xiaoyin
492d94eab86SWang Xiaoyin		gpio5: gpio@e8a10000 {
493d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
494d94eab86SWang Xiaoyin			reg = <0 0xe8a10000 0 0x1000>;
495d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
496d94eab86SWang Xiaoyin			gpio-controller;
497d94eab86SWang Xiaoyin			#gpio-cells = <2>;
498d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 38 8>;
499d94eab86SWang Xiaoyin			interrupt-controller;
500d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
501d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO5>;
502d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
503d94eab86SWang Xiaoyin		};
504d94eab86SWang Xiaoyin
505d94eab86SWang Xiaoyin		gpio6: gpio@e8a11000 {
506d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
507d94eab86SWang Xiaoyin			reg = <0 0xe8a11000 0 0x1000>;
508d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>;
509d94eab86SWang Xiaoyin			gpio-controller;
510d94eab86SWang Xiaoyin			#gpio-cells = <2>;
511d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 46 8>;
512d94eab86SWang Xiaoyin			interrupt-controller;
513d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
514d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO6>;
515d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
516d94eab86SWang Xiaoyin		};
517d94eab86SWang Xiaoyin
518d94eab86SWang Xiaoyin		gpio7: gpio@e8a12000 {
519d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
520d94eab86SWang Xiaoyin			reg = <0 0xe8a12000 0 0x1000>;
521d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
522d94eab86SWang Xiaoyin			gpio-controller;
523d94eab86SWang Xiaoyin			#gpio-cells = <2>;
524d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 54 8>;
525d94eab86SWang Xiaoyin			interrupt-controller;
526d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
527d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO7>;
528d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
529d94eab86SWang Xiaoyin		};
530d94eab86SWang Xiaoyin
531d94eab86SWang Xiaoyin		gpio8: gpio@e8a13000 {
532d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
533d94eab86SWang Xiaoyin			reg = <0 0xe8a13000 0 0x1000>;
534d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>;
535d94eab86SWang Xiaoyin			gpio-controller;
536d94eab86SWang Xiaoyin			#gpio-cells = <2>;
537d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 62 8>;
538d94eab86SWang Xiaoyin			interrupt-controller;
539d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
540d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO8>;
541d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
542d94eab86SWang Xiaoyin		};
543d94eab86SWang Xiaoyin
544d94eab86SWang Xiaoyin		gpio9: gpio@e8a14000 {
545d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
546d94eab86SWang Xiaoyin			reg = <0 0xe8a14000 0 0x1000>;
547d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
548d94eab86SWang Xiaoyin			gpio-controller;
549d94eab86SWang Xiaoyin			#gpio-cells = <2>;
550d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 70 8>;
551d94eab86SWang Xiaoyin			interrupt-controller;
552d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
553d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO9>;
554d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
555d94eab86SWang Xiaoyin		};
556d94eab86SWang Xiaoyin
557d94eab86SWang Xiaoyin		gpio10: gpio@e8a15000 {
558d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
559d94eab86SWang Xiaoyin			reg = <0 0xe8a15000 0 0x1000>;
560d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
561d94eab86SWang Xiaoyin			gpio-controller;
562d94eab86SWang Xiaoyin			#gpio-cells = <2>;
563d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 78 8>;
564d94eab86SWang Xiaoyin			interrupt-controller;
565d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
566d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO10>;
567d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
568d94eab86SWang Xiaoyin		};
569d94eab86SWang Xiaoyin
570d94eab86SWang Xiaoyin		gpio11: gpio@e8a16000 {
571d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
572d94eab86SWang Xiaoyin			reg = <0 0xe8a16000 0 0x1000>;
573d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>;
574d94eab86SWang Xiaoyin			gpio-controller;
575d94eab86SWang Xiaoyin			#gpio-cells = <2>;
576d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 86 8>;
577d94eab86SWang Xiaoyin			interrupt-controller;
578d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
579d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO11>;
580d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
581d94eab86SWang Xiaoyin		};
582d94eab86SWang Xiaoyin
583d94eab86SWang Xiaoyin		gpio12: gpio@e8a17000 {
584d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
585d94eab86SWang Xiaoyin			reg = <0 0xe8a17000 0 0x1000>;
586d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
587d94eab86SWang Xiaoyin			gpio-controller;
588d94eab86SWang Xiaoyin			#gpio-cells = <2>;
589d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 94 3 &pmx0 7 101 1>;
590d94eab86SWang Xiaoyin			interrupt-controller;
591d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
592d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO12>;
593d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
594d94eab86SWang Xiaoyin		};
595d94eab86SWang Xiaoyin
596d94eab86SWang Xiaoyin		gpio13: gpio@e8a18000 {
597d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
598d94eab86SWang Xiaoyin			reg = <0 0xe8a18000 0 0x1000>;
599d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>;
600d94eab86SWang Xiaoyin			gpio-controller;
601d94eab86SWang Xiaoyin			#gpio-cells = <2>;
602d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 102 8>;
603d94eab86SWang Xiaoyin			interrupt-controller;
604d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
605d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO13>;
606d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
607d94eab86SWang Xiaoyin		};
608d94eab86SWang Xiaoyin
609d94eab86SWang Xiaoyin		gpio14: gpio@e8a19000 {
610d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
611d94eab86SWang Xiaoyin			reg = <0 0xe8a19000 0 0x1000>;
612d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>;
613d94eab86SWang Xiaoyin			gpio-controller;
614d94eab86SWang Xiaoyin			#gpio-cells = <2>;
615d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 110 8>;
616d94eab86SWang Xiaoyin			interrupt-controller;
617d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
618d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO14>;
619d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
620d94eab86SWang Xiaoyin		};
621d94eab86SWang Xiaoyin
622d94eab86SWang Xiaoyin		gpio15: gpio@e8a1a000 {
623d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
624d94eab86SWang Xiaoyin			reg = <0 0xe8a1a000 0 0x1000>;
625d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 99 IRQ_TYPE_LEVEL_HIGH>;
626d94eab86SWang Xiaoyin			gpio-controller;
627d94eab86SWang Xiaoyin			#gpio-cells = <2>;
628d94eab86SWang Xiaoyin			gpio-ranges = <&pmx0 0 118 6>;
629d94eab86SWang Xiaoyin			interrupt-controller;
630d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
631d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO15>;
632d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
633d94eab86SWang Xiaoyin		};
634d94eab86SWang Xiaoyin
635d94eab86SWang Xiaoyin		gpio16: gpio@e8a1b000 {
636d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
637d94eab86SWang Xiaoyin			reg = <0 0xe8a1b000 0 0x1000>;
638d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
639d94eab86SWang Xiaoyin			gpio-controller;
640d94eab86SWang Xiaoyin			#gpio-cells = <2>;
641d94eab86SWang Xiaoyin			interrupt-controller;
642d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
643d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO16>;
644d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
645d94eab86SWang Xiaoyin		};
646d94eab86SWang Xiaoyin
647d94eab86SWang Xiaoyin		gpio17: gpio@e8a1c000 {
648d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
649d94eab86SWang Xiaoyin			reg = <0 0xe8a1c000 0 0x1000>;
650d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
651d94eab86SWang Xiaoyin			gpio-controller;
652d94eab86SWang Xiaoyin			#gpio-cells = <2>;
653d94eab86SWang Xiaoyin			interrupt-controller;
654d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
655d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO17>;
656d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
657d94eab86SWang Xiaoyin		};
658d94eab86SWang Xiaoyin
659d94eab86SWang Xiaoyin		gpio18: gpio@ff3b4000 {
660d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
661d94eab86SWang Xiaoyin			reg = <0 0xff3b4000 0 0x1000>;
662d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>;
663d94eab86SWang Xiaoyin			gpio-controller;
664d94eab86SWang Xiaoyin			#gpio-cells = <2>;
665d94eab86SWang Xiaoyin			gpio-ranges = <&pmx2 0 0 8>;
666d94eab86SWang Xiaoyin			interrupt-controller;
667d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
668d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO18>;
669d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
670d94eab86SWang Xiaoyin		};
671d94eab86SWang Xiaoyin
672d94eab86SWang Xiaoyin		gpio19: gpio@ff3b5000 {
673d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
674d94eab86SWang Xiaoyin			reg = <0 0xff3b5000 0 0x1000>;
675d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
676d94eab86SWang Xiaoyin			gpio-controller;
677d94eab86SWang Xiaoyin			#gpio-cells = <2>;
678d94eab86SWang Xiaoyin			gpio-ranges = <&pmx2 0 8 4>;
679d94eab86SWang Xiaoyin			interrupt-controller;
680d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
681d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO19>;
682d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
683d94eab86SWang Xiaoyin		};
684d94eab86SWang Xiaoyin
685d94eab86SWang Xiaoyin		gpio20: gpio@e8a1f000 {
686d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
687d94eab86SWang Xiaoyin			reg = <0 0xe8a1f000 0 0x1000>;
688d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>;
689d94eab86SWang Xiaoyin			gpio-controller;
690d94eab86SWang Xiaoyin			#gpio-cells = <2>;
691d94eab86SWang Xiaoyin			gpio-ranges = <&pmx1 0 0 6>;
692d94eab86SWang Xiaoyin			interrupt-controller;
693d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
694d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO20>;
695d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
696d94eab86SWang Xiaoyin		};
697d94eab86SWang Xiaoyin
698d94eab86SWang Xiaoyin		gpio21: gpio@e8a20000 {
699d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
700d94eab86SWang Xiaoyin			reg = <0 0xe8a20000 0 0x1000>;
701d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
702d94eab86SWang Xiaoyin			gpio-controller;
703d94eab86SWang Xiaoyin			#gpio-cells = <2>;
704d94eab86SWang Xiaoyin			interrupt-controller;
705d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
706d94eab86SWang Xiaoyin			gpio-ranges = <&pmx3 0 0 6>;
707d94eab86SWang Xiaoyin			clocks = <&crg_ctrl HI3660_PCLK_GPIO21>;
708d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
709d94eab86SWang Xiaoyin		};
710d94eab86SWang Xiaoyin
711d94eab86SWang Xiaoyin		gpio22: gpio@fff0b000 {
712d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
713d94eab86SWang Xiaoyin			reg = <0 0xfff0b000 0 0x1000>;
714d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;
715d94eab86SWang Xiaoyin			gpio-controller;
716d94eab86SWang Xiaoyin			#gpio-cells = <2>;
717d94eab86SWang Xiaoyin			/* GPIO176 */
718d94eab86SWang Xiaoyin			gpio-ranges = <&pmx4 2 0 6>;
719d94eab86SWang Xiaoyin			interrupt-controller;
720d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
721d94eab86SWang Xiaoyin			clocks = <&sctrl HI3660_PCLK_AO_GPIO0>;
722d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
723d94eab86SWang Xiaoyin		};
724d94eab86SWang Xiaoyin
725d94eab86SWang Xiaoyin		gpio23: gpio@fff0c000 {
726d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
727d94eab86SWang Xiaoyin			reg = <0 0xfff0c000 0 0x1000>;
728d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>;
729d94eab86SWang Xiaoyin			gpio-controller;
730d94eab86SWang Xiaoyin			#gpio-cells = <2>;
731d94eab86SWang Xiaoyin			/* GPIO184 */
732d94eab86SWang Xiaoyin			gpio-ranges = <&pmx4 0 6 7>;
733d94eab86SWang Xiaoyin			interrupt-controller;
734d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
735d94eab86SWang Xiaoyin			clocks = <&sctrl HI3660_PCLK_AO_GPIO1>;
736d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
737d94eab86SWang Xiaoyin		};
738d94eab86SWang Xiaoyin
739d94eab86SWang Xiaoyin		gpio24: gpio@fff0d000 {
740d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
741d94eab86SWang Xiaoyin			reg = <0 0xfff0d000 0 0x1000>;
742d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
743d94eab86SWang Xiaoyin			gpio-controller;
744d94eab86SWang Xiaoyin			#gpio-cells = <2>;
745d94eab86SWang Xiaoyin			/* GPIO192 */
746d94eab86SWang Xiaoyin			gpio-ranges = <&pmx4 0 13 8>;
747d94eab86SWang Xiaoyin			interrupt-controller;
748d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
749d94eab86SWang Xiaoyin			clocks = <&sctrl HI3660_PCLK_AO_GPIO2>;
750d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
751d94eab86SWang Xiaoyin		};
752d94eab86SWang Xiaoyin
753d94eab86SWang Xiaoyin		gpio25: gpio@fff0e000 {
754d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
755d94eab86SWang Xiaoyin			reg = <0 0xfff0e000 0 0x1000>;
756d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 109 IRQ_TYPE_LEVEL_HIGH>;
757d94eab86SWang Xiaoyin			gpio-controller;
758d94eab86SWang Xiaoyin			#gpio-cells = <2>;
759d94eab86SWang Xiaoyin			/* GPIO200 */
760d94eab86SWang Xiaoyin			gpio-ranges = <&pmx4 0 21 4 &pmx4 5 25 3>;
761d94eab86SWang Xiaoyin			interrupt-controller;
762d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
763d94eab86SWang Xiaoyin			clocks = <&sctrl HI3660_PCLK_AO_GPIO3>;
764d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
765d94eab86SWang Xiaoyin		};
766d94eab86SWang Xiaoyin
767d94eab86SWang Xiaoyin		gpio26: gpio@fff0f000 {
768d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
769d94eab86SWang Xiaoyin			reg = <0 0xfff0f000 0 0x1000>;
770d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
771d94eab86SWang Xiaoyin			gpio-controller;
772d94eab86SWang Xiaoyin			#gpio-cells = <2>;
773d94eab86SWang Xiaoyin			/* GPIO208 */
774d94eab86SWang Xiaoyin			gpio-ranges = <&pmx4 0 28 8>;
775d94eab86SWang Xiaoyin			interrupt-controller;
776d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
777d94eab86SWang Xiaoyin			clocks = <&sctrl HI3660_PCLK_AO_GPIO4>;
778d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
779d94eab86SWang Xiaoyin		};
780d94eab86SWang Xiaoyin
781d94eab86SWang Xiaoyin		gpio27: gpio@fff10000 {
782d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
783d94eab86SWang Xiaoyin			reg = <0 0xfff10000 0 0x1000>;
784d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
785d94eab86SWang Xiaoyin			gpio-controller;
786d94eab86SWang Xiaoyin			#gpio-cells = <2>;
787d94eab86SWang Xiaoyin			/* GPIO216 */
788d94eab86SWang Xiaoyin			gpio-ranges = <&pmx4 0 36 6>;
789d94eab86SWang Xiaoyin			interrupt-controller;
790d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
791d94eab86SWang Xiaoyin			clocks = <&sctrl HI3660_PCLK_AO_GPIO5>;
792d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
793d94eab86SWang Xiaoyin		};
794d94eab86SWang Xiaoyin
795d94eab86SWang Xiaoyin		gpio28: gpio@fff1d000 {
796d94eab86SWang Xiaoyin			compatible = "arm,pl061", "arm,primecell";
797d94eab86SWang Xiaoyin			reg = <0 0xfff1d000 0 0x1000>;
798d94eab86SWang Xiaoyin			interrupts = <GIC_SPI 141 IRQ_TYPE_LEVEL_HIGH>;
799d94eab86SWang Xiaoyin			gpio-controller;
800d94eab86SWang Xiaoyin			#gpio-cells = <2>;
801d94eab86SWang Xiaoyin			interrupt-controller;
802d94eab86SWang Xiaoyin			#interrupt-cells = <2>;
803d94eab86SWang Xiaoyin			clocks = <&sctrl HI3660_PCLK_AO_GPIO6>;
804d94eab86SWang Xiaoyin			clock-names = "apb_pclk";
805d94eab86SWang Xiaoyin		};
80638810497SWang Xiaoyin
80738810497SWang Xiaoyin		spi2: spi@ffd68000 {
80838810497SWang Xiaoyin			compatible = "arm,pl022", "arm,primecell";
80938810497SWang Xiaoyin			reg = <0x0 0xffd68000 0x0 0x1000>;
81038810497SWang Xiaoyin			#address-cells = <1>;
81138810497SWang Xiaoyin			#size-cells = <0>;
81238810497SWang Xiaoyin			interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
81338810497SWang Xiaoyin			clocks = <&crg_ctrl HI3660_CLK_GATE_SPI2>;
81438810497SWang Xiaoyin			clock-names = "apb_pclk";
81538810497SWang Xiaoyin			pinctrl-names = "default";
81638810497SWang Xiaoyin			pinctrl-0 = <&spi2_pmx_func>;
81738810497SWang Xiaoyin			num-cs = <1>;
81838810497SWang Xiaoyin			cs-gpios = <&gpio27 2 0>;
81938810497SWang Xiaoyin			status = "disabled";
82038810497SWang Xiaoyin		};
82138810497SWang Xiaoyin
82238810497SWang Xiaoyin		spi3: spi@ff3b3000 {
82338810497SWang Xiaoyin			compatible = "arm,pl022", "arm,primecell";
82438810497SWang Xiaoyin			reg = <0x0 0xff3b3000 0x0 0x1000>;
82538810497SWang Xiaoyin			#address-cells = <1>;
82638810497SWang Xiaoyin			#size-cells = <0>;
82738810497SWang Xiaoyin			interrupts = <GIC_SPI 312 IRQ_TYPE_LEVEL_HIGH>;
82838810497SWang Xiaoyin			clocks = <&crg_ctrl HI3660_CLK_GATE_SPI3>;
82938810497SWang Xiaoyin			clock-names = "apb_pclk";
83038810497SWang Xiaoyin			pinctrl-names = "default";
83138810497SWang Xiaoyin			pinctrl-0 = <&spi3_pmx_func>;
83238810497SWang Xiaoyin			num-cs = <1>;
83338810497SWang Xiaoyin			cs-gpios = <&gpio18 5 0>;
83438810497SWang Xiaoyin			status = "disabled";
83538810497SWang Xiaoyin		};
83696909778SXiaowei Song
83796909778SXiaowei Song		pcie@f4000000 {
83896909778SXiaowei Song			compatible = "hisilicon,kirin960-pcie";
83996909778SXiaowei Song			reg = <0x0 0xf4000000 0x0 0x1000>,
84096909778SXiaowei Song			      <0x0 0xff3fe000 0x0 0x1000>,
84196909778SXiaowei Song			      <0x0 0xf3f20000 0x0 0x40000>,
84296909778SXiaowei Song			      <0x0 0xf5000000 0x0 0x2000>;
84396909778SXiaowei Song			reg-names = "dbi", "apb", "phy", "config";
84496909778SXiaowei Song			bus-range = <0x0  0x1>;
84596909778SXiaowei Song			#address-cells = <3>;
84696909778SXiaowei Song			#size-cells = <2>;
84796909778SXiaowei Song			device_type = "pci";
84896909778SXiaowei Song			ranges = <0x02000000 0x0 0x00000000
84996909778SXiaowei Song				  0x0 0xf6000000
85096909778SXiaowei Song				  0x0 0x02000000>;
85196909778SXiaowei Song			num-lanes = <1>;
85296909778SXiaowei Song			#interrupt-cells = <1>;
85396909778SXiaowei Song			interrupt-map-mask = <0xf800 0 0 7>;
85496909778SXiaowei Song			interrupt-map = <0x0 0 0 1
85596909778SXiaowei Song					 &gic GIC_SPI 282 IRQ_TYPE_LEVEL_HIGH>,
85696909778SXiaowei Song					<0x0 0 0 2
85796909778SXiaowei Song					 &gic GIC_SPI 283 IRQ_TYPE_LEVEL_HIGH>,
85896909778SXiaowei Song					<0x0 0 0 3
85996909778SXiaowei Song					 &gic GIC_SPI 284 IRQ_TYPE_LEVEL_HIGH>,
86096909778SXiaowei Song					<0x0 0 0 4
86196909778SXiaowei Song					 &gic GIC_SPI 285 IRQ_TYPE_LEVEL_HIGH>;
86296909778SXiaowei Song			clocks = <&crg_ctrl HI3660_PCIEPHY_REF>,
86396909778SXiaowei Song				 <&crg_ctrl HI3660_CLK_GATE_PCIEAUX>,
86496909778SXiaowei Song				 <&crg_ctrl HI3660_PCLK_GATE_PCIE_PHY>,
86596909778SXiaowei Song				 <&crg_ctrl HI3660_PCLK_GATE_PCIE_SYS>,
86696909778SXiaowei Song				 <&crg_ctrl HI3660_ACLK_GATE_PCIE>;
86796909778SXiaowei Song			clock-names = "pcie_phy_ref", "pcie_aux",
86896909778SXiaowei Song				      "pcie_apb_phy", "pcie_apb_sys",
86996909778SXiaowei Song				      "pcie_aclk";
87096909778SXiaowei Song			reset-gpios = <&gpio11 1 0 >;
87196909778SXiaowei Song		};
872804d7d7aSLi Wei
873804d7d7aSLi Wei		/* SD */
874804d7d7aSLi Wei		dwmmc1: dwmmc1@ff37f000 {
875804d7d7aSLi Wei			#address-cells = <1>;
876804d7d7aSLi Wei			#size-cells = <0>;
877804d7d7aSLi Wei			cd-inverted;
878804d7d7aSLi Wei			compatible = "hisilicon,hi3660-dw-mshc";
879804d7d7aSLi Wei			num-slots = <1>;
880804d7d7aSLi Wei			bus-width = <0x4>;
881804d7d7aSLi Wei			disable-wp;
882804d7d7aSLi Wei			cap-sd-highspeed;
883804d7d7aSLi Wei			supports-highspeed;
884804d7d7aSLi Wei			card-detect-delay = <200>;
885804d7d7aSLi Wei			reg = <0x0 0xff37f000 0x0 0x1000>;
886804d7d7aSLi Wei			interrupts = <GIC_SPI 139 IRQ_TYPE_LEVEL_HIGH>;
887804d7d7aSLi Wei			clocks = <&crg_ctrl HI3660_CLK_GATE_SD>,
888804d7d7aSLi Wei				<&crg_ctrl HI3660_HCLK_GATE_SD>;
889804d7d7aSLi Wei			clock-names = "ciu", "biu";
890804d7d7aSLi Wei			clock-frequency = <3200000>;
891804d7d7aSLi Wei			resets = <&crg_rst 0x94 18>;
892804d7d7aSLi Wei			cd-gpios = <&gpio25 3 0>;
893804d7d7aSLi Wei			hisilicon,peripheral-syscon = <&sctrl>;
894804d7d7aSLi Wei			pinctrl-names = "default";
895804d7d7aSLi Wei			pinctrl-0 = <&sd_pmx_func
896804d7d7aSLi Wei				     &sd_clk_cfg_func
897804d7d7aSLi Wei				     &sd_cfg_func>;
898804d7d7aSLi Wei			sd-uhs-sdr12;
899804d7d7aSLi Wei			sd-uhs-sdr25;
900804d7d7aSLi Wei			sd-uhs-sdr50;
901804d7d7aSLi Wei			sd-uhs-sdr104;
902804d7d7aSLi Wei			status = "disabled";
903804d7d7aSLi Wei
904804d7d7aSLi Wei			slot@0 {
905804d7d7aSLi Wei				reg = <0x0>;
906804d7d7aSLi Wei				bus-width = <4>;
907804d7d7aSLi Wei				disable-wp;
908804d7d7aSLi Wei			};
909804d7d7aSLi Wei		};
910804d7d7aSLi Wei
911804d7d7aSLi Wei		/* SDIO */
912804d7d7aSLi Wei		dwmmc2: dwmmc2@ff3ff000 {
913804d7d7aSLi Wei			compatible = "hisilicon,hi3660-dw-mshc";
914804d7d7aSLi Wei			reg = <0x0 0xff3ff000 0x0 0x1000>;
915804d7d7aSLi Wei			interrupts = <GIC_SPI 140 IRQ_TYPE_LEVEL_HIGH>;
916804d7d7aSLi Wei			num-slots = <1>;
917804d7d7aSLi Wei			clocks = <&crg_ctrl HI3660_CLK_GATE_SDIO0>,
918804d7d7aSLi Wei				 <&crg_ctrl HI3660_HCLK_GATE_SDIO0>;
919804d7d7aSLi Wei			clock-names = "ciu", "biu";
920804d7d7aSLi Wei			resets = <&crg_rst 0x94 20>;
921804d7d7aSLi Wei			card-detect-delay = <200>;
922804d7d7aSLi Wei			supports-highspeed;
923804d7d7aSLi Wei			keep-power-in-suspend;
924804d7d7aSLi Wei			pinctrl-names = "default";
925804d7d7aSLi Wei			pinctrl-0 = <&sdio_pmx_func
926804d7d7aSLi Wei				     &sdio_clk_cfg_func
927804d7d7aSLi Wei				     &sdio_cfg_func>;
928804d7d7aSLi Wei			status = "disabled";
929804d7d7aSLi Wei		};
93035ca8168SChen Feng	};
93135ca8168SChen Feng};
932