747 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			747 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
 | 
						|
/*
 | 
						|
 * Copyright (c) 2022 Rockchip Electronics Co., Ltd.
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
/dts-v1/;
 | 
						|
 | 
						|
#include <dt-bindings/gpio/gpio.h>
 | 
						|
#include <dt-bindings/leds/common.h>
 | 
						|
#include <dt-bindings/input/rk-input.h>
 | 
						|
#include <dt-bindings/pinctrl/rockchip.h>
 | 
						|
#include "rk3528.dtsi"
 | 
						|
 | 
						|
/ {
 | 
						|
	model = "ArmSom Sige1";
 | 
						|
	compatible = "armsom,sige1", "rockchip,rk3528";
 | 
						|
 | 
						|
	aliases {
 | 
						|
		ethernet0 = &gmac1;
 | 
						|
		mmc0 = &sdmmc;
 | 
						|
		mmc1 = &sdhci;
 | 
						|
		mmc2 = &sdio0;
 | 
						|
	};
 | 
						|
 | 
						|
	
 | 
						|
	acodec_sound: acodec-sound {
 | 
						|
		status = "okay";
 | 
						|
		compatible = "simple-audio-card";
 | 
						|
		simple-audio-card,name = "rk3528-acodec";
 | 
						|
		simple-audio-card,format = "i2s";
 | 
						|
		simple-audio-card,mclk-fs = <256>;
 | 
						|
		simple-audio-card,cpu {
 | 
						|
			sound-dai = <&sai2>;
 | 
						|
		};
 | 
						|
		simple-audio-card,codec {
 | 
						|
			sound-dai = <&acodec>;
 | 
						|
		};
 | 
						|
	};
 | 
						|
	
 | 
						|
	fiq-debugger {
 | 
						|
		compatible = "rockchip,fiq-debugger";
 | 
						|
		rockchip,serial-id = <0>;
 | 
						|
		rockchip,wake-irq = <0>;
 | 
						|
		/* If enable uart uses irq instead of fiq */
 | 
						|
		rockchip,irq-mode-enable = <1>;
 | 
						|
		rockchip,baudrate = <1500000>;  /* Only 115200 and 1500000 */
 | 
						|
		interrupts = <GIC_SPI 186 IRQ_TYPE_LEVEL_HIGH>;
 | 
						|
		pinctrl-names = "default";
 | 
						|
		pinctrl-0 = <&uart0m0_xfer>;
 | 
						|
		status = "okay";
 | 
						|
	};
 | 
						|
 | 
						|
	firmware {
 | 
						|
		optee {
 | 
						|
			compatible = "linaro,optee-tz";
 | 
						|
			method = "smc";
 | 
						|
		};
 | 
						|
	};
 | 
						|
 | 
						|
	dc_12v: dc-12v {
 | 
						|
		compatible = "regulator-fixed";
 | 
						|
		regulator-name = "dc_12v";
 | 
						|
		regulator-always-on;
 | 
						|
		regulator-boot-on;
 | 
						|
		regulator-min-microvolt = <12000000>;
 | 
						|
		regulator-max-microvolt = <12000000>;
 | 
						|
	};
 | 
						|
	
 | 
						|
	vcc5v0_sys: vcc5v0-sys {
 | 
						|
		compatible = "regulator-fixed";
 | 
						|
		regulator-name = "vcc5v0_sys";
 | 
						|
		regulator-always-on;
 | 
						|
		regulator-boot-on;
 | 
						|
		regulator-min-microvolt = <5000000>;
 | 
						|
		regulator-max-microvolt = <5000000>;
 | 
						|
		vin-supply = <&dc_12v>;
 | 
						|
	};
 | 
						|
 | 
						|
	/omit-if-no-ref/
 | 
						|
	vccio_sd: vccio-sd {
 | 
						|
		compatible = "regulator-gpio";
 | 
						|
		regulator-name = "vccio_sd";
 | 
						|
		regulator-min-microvolt = <1800000>;
 | 
						|
		regulator-max-microvolt = <3300000>;
 | 
						|
		gpios = <&gpio4 RK_PC2 GPIO_ACTIVE_LOW>;
 | 
						|
		vin-supply = <&vcc5v0_sys>;
 | 
						|
		states = <1800000 0x0
 | 
						|
			  3300000 0x1>;
 | 
						|
	};
 | 
						|
 | 
						|
	/omit-if-no-ref/
 | 
						|
	vcc_sd: vcc-sd {
 | 
						|
		compatible = "regulator-fixed";
 | 
						|
		gpio = <&gpio4 RK_PA1 GPIO_ACTIVE_LOW>;
 | 
						|
		regulator-name = "vcc_sd";
 | 
						|
		regulator-min-microvolt = <3300000>;
 | 
						|
		regulator-max-microvolt = <3300000>;
 | 
						|
		vin-supply = <&vcc5v0_sys>;
 | 
						|
	};
 | 
						|
 | 
						|
	vdd_logic: vdd-logic {
 | 
						|
		compatible = "pwm-regulator";
 | 
						|
		pwms = <&pwm2 0 5000 1>;
 | 
						|
		regulator-name = "vdd_logic";
 | 
						|
		regulator-min-microvolt = <705000>;
 | 
						|
		regulator-max-microvolt = <1006000>;
 | 
						|
		regulator-init-microvolt = <900000>;
 | 
						|
		regulator-always-on;
 | 
						|
		regulator-boot-on;
 | 
						|
		regulator-settling-time-up-us = <250>;
 | 
						|
		pwm-supply = <&vcc5v0_sys>;
 | 
						|
		status = "okay";
 | 
						|
	};
 | 
						|
 | 
						|
	vdd_cpu: vdd-cpu {
 | 
						|
		compatible = "pwm-regulator";
 | 
						|
		pwms = <&pwm3 0 5000 1>;
 | 
						|
		regulator-name = "vdd_cpu";
 | 
						|
		regulator-min-microvolt = <746000>;
 | 
						|
		regulator-max-microvolt = <1201000>;
 | 
						|
		regulator-init-microvolt = <953000>;
 | 
						|
		regulator-always-on;
 | 
						|
		regulator-boot-on;
 | 
						|
		regulator-settling-time-up-us = <250>;
 | 
						|
		pwm-supply = <&vcc5v0_sys>;
 | 
						|
		status = "okay";
 | 
						|
	};
 | 
						|
 | 
						|
	vdd_0v9_s3: vdd-0v9-s3 {
 | 
						|
		compatible = "regulator-fixed";
 | 
						|
		regulator-name = "vdd_0v9_s3";
 | 
						|
		regulator-always-on;
 | 
						|
		regulator-boot-on;
 | 
						|
		regulator-min-microvolt = <900000>;
 | 
						|
		regulator-max-microvolt = <900000>;
 | 
						|
		vin-supply = <&vcc5v0_sys>;
 | 
						|
	};
 | 
						|
 | 
						|
	vdd_1v8_s3: vdd-1v8-s3 {
 | 
						|
		compatible = "regulator-fixed";
 | 
						|
		regulator-name = "vdd_1v8_s3";
 | 
						|
		regulator-always-on;
 | 
						|
		regulator-boot-on;
 | 
						|
		regulator-min-microvolt = <1800000>;
 | 
						|
		regulator-max-microvolt = <1800000>;
 | 
						|
		vin-supply = <&vcc5v0_sys>;
 | 
						|
	};
 | 
						|
 | 
						|
	vcc_3v3_s3: vcc-3v3-s3 {
 | 
						|
		compatible = "regulator-fixed";
 | 
						|
		regulator-name = "vcc_3v3_s3";
 | 
						|
		regulator-always-on;
 | 
						|
		regulator-boot-on;
 | 
						|
		regulator-min-microvolt = <3300000>;
 | 
						|
		regulator-max-microvolt = <3300000>;
 | 
						|
		vin-supply = <&vcc5v0_sys>;
 | 
						|
	};
 | 
						|
 | 
						|
	vcc_ddr_s3: vcc-ddr-s3 {
 | 
						|
		compatible = "regulator-fixed";
 | 
						|
		regulator-name = "vcc_ddr_s3";
 | 
						|
		regulator-always-on;
 | 
						|
		regulator-boot-on;
 | 
						|
		regulator-min-microvolt = <1200000>;
 | 
						|
		regulator-max-microvolt = <1200000>;
 | 
						|
		vin-supply = <&vcc5v0_sys>;
 | 
						|
	};
 | 
						|
 | 
						|
	hdmi_sound: hdmi-sound {
 | 
						|
		compatible = "rockchip,hdmi";
 | 
						|
		rockchip,mclk-fs = <128>;
 | 
						|
		rockchip,card-name = "rockchip,hdmi";
 | 
						|
		rockchip,cpu = <&sai3>;
 | 
						|
		rockchip,codec = <&hdmi>;
 | 
						|
		rockchip,jack-det;
 | 
						|
	};
 | 
						|
 | 
						|
	pdmics: dummy-codec {
 | 
						|
		status = "disabled";
 | 
						|
		compatible = "rockchip,dummy-codec";
 | 
						|
		#sound-dai-cells = <0>;
 | 
						|
	};
 | 
						|
 | 
						|
	pdm_mic_array: pdm-mic-array {
 | 
						|
		status = "disabled";
 | 
						|
		compatible = "simple-audio-card";
 | 
						|
		simple-audio-card,name = "rockchip,pdm-mic-array";
 | 
						|
		simple-audio-card,cpu {
 | 
						|
			sound-dai = <&pdm>;
 | 
						|
		};
 | 
						|
		simple-audio-card,codec {
 | 
						|
			sound-dai = <&pdmics>;
 | 
						|
		};
 | 
						|
	};
 | 
						|
 | 
						|
	reserved_memory: reserved-memory {
 | 
						|
		#address-cells = <2>;
 | 
						|
		#size-cells = <2>;
 | 
						|
		ranges;
 | 
						|
 | 
						|
		drm_logo: drm-logo@00000000 {
 | 
						|
			compatible = "rockchip,drm-logo";
 | 
						|
			reg = <0x0 0x0 0x0 0x0>;
 | 
						|
		};
 | 
						|
 | 
						|
		drm_cubic_lut: drm-cubic-lut@00000000 {
 | 
						|
			compatible = "rockchip,drm-cubic-lut";
 | 
						|
			reg = <0x0 0x0 0x0 0x0>;
 | 
						|
		};
 | 
						|
 | 
						|
		ramoops: ramoops@110000 {
 | 
						|
			compatible = "ramoops";
 | 
						|
			/* 0x110000 to 0x1f0000 is for ramoops */
 | 
						|
			reg = <0x0 0x110000 0x0 0xe0000>;
 | 
						|
			boot-log-size = <0x8000>;	/* do not change */
 | 
						|
			boot-log-count = <0x1>;		/* do not change */
 | 
						|
			console-size = <0x80000>;
 | 
						|
			pmsg-size = <0x30000>;
 | 
						|
			ftrace-size = <0x00000>;
 | 
						|
			record-size = <0x14000>;
 | 
						|
		};
 | 
						|
	};
 | 
						|
	
 | 
						|
	vcc5v0_usb_host1: vcc5v0-usb-host1 {
 | 
						|
		compatible = "regulator-fixed";
 | 
						|
		regulator-name = "vcc5v0_usb_host1";
 | 
						|
		regulator-boot-on;
 | 
						|
		regulator-always-on;
 | 
						|
		regulator-min-microvolt = <5000000>;
 | 
						|
		regulator-max-microvolt = <5000000>;
 | 
						|
		enable-active-high;
 | 
						|
		gpio = <&gpio4 RK_PB1 GPIO_ACTIVE_HIGH>;
 | 
						|
		vin-supply = <&vcc5v0_sys>;
 | 
						|
		pinctrl-names = "default";
 | 
						|
		pinctrl-0 = <&usb_host1_pwren>;
 | 
						|
	};
 | 
						|
 | 
						|
	vcc5v0_usb_host2: vcc5v0-usb-host2 {
 | 
						|
		compatible = "regulator-fixed";
 | 
						|
		regulator-name = "vcc5v0_usb_host2";
 | 
						|
		regulator-boot-on;
 | 
						|
		regulator-always-on;
 | 
						|
		regulator-min-microvolt = <5000000>;
 | 
						|
		regulator-max-microvolt = <5000000>;
 | 
						|
		enable-active-high;
 | 
						|
		gpio = <&gpio4 RK_PB0 GPIO_ACTIVE_HIGH>;
 | 
						|
		vin-supply = <&vcc5v0_sys>;
 | 
						|
		pinctrl-names = "default";
 | 
						|
		pinctrl-0 = <&usb_host2_pwren>;
 | 
						|
	};
 | 
						|
 | 
						|
	sdio_pwrseq: sdio-pwrseq {
 | 
						|
		compatible = "mmc-pwrseq-simple";
 | 
						|
		pinctrl-names = "default";
 | 
						|
		pinctrl-0 = <&wifi_enable_h &clkm1_32k_out>;
 | 
						|
		reset-gpios = <&gpio1 RK_PA6 GPIO_ACTIVE_LOW>;
 | 
						|
	};
 | 
						|
 | 
						|
	wireless_wlan: wireless-wlan {
 | 
						|
		compatible = "wlan-platdata";
 | 
						|
		rockchip,grf = <&grf>;
 | 
						|
		wifi_chip_type = "rtl8852bs";
 | 
						|
		pinctrl-names = "default";
 | 
						|
		pinctrl-0 = <&wifi_host_wake_irq>;
 | 
						|
		WIFI,host_wake_irq = <&gpio1 RK_PA7 GPIO_ACTIVE_HIGH>;
 | 
						|
		status = "okay";
 | 
						|
	};
 | 
						|
 | 
						|
	leds {
 | 
						|
		compatible = "gpio-leds";
 | 
						|
 | 
						|
		led_green: led-0 {
 | 
						|
			color = <LED_COLOR_ID_GREEN>;
 | 
						|
			function = LED_FUNCTION_STATUS;
 | 
						|
			linux,default-trigger = "heartbeat";
 | 
						|
			gpios = <&gpio3 RK_PB3 GPIO_ACTIVE_HIGH>;
 | 
						|
		};
 | 
						|
 | 
						|
		led_red: led-1 {
 | 
						|
			color = <LED_COLOR_ID_RED>;
 | 
						|
			function = LED_FUNCTION_STATUS;
 | 
						|
			gpios = <&gpio3 RK_PB2 GPIO_ACTIVE_HIGH>;
 | 
						|
			linux,default-trigger = "none";
 | 
						|
		};
 | 
						|
	};
 | 
						|
 | 
						|
	fan: pwm-fan {
 | 
						|
		compatible = "pwm-fan";
 | 
						|
		#cooling-cells = <2>;
 | 
						|
		pwms = <&pwm6 0 50000 0>;
 | 
						|
		cooling-levels = <0 50 100 150 200 255>;
 | 
						|
		rockchip,temp-trips = <
 | 
						|
			50000	1
 | 
						|
			55000	2
 | 
						|
			60000	3
 | 
						|
			65000	4
 | 
						|
			70000	5
 | 
						|
		>;
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&avsd {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&cpu0 {
 | 
						|
	cpu-supply = <&vdd_cpu>;
 | 
						|
};
 | 
						|
 | 
						|
&crypto {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&dfi {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&display_subsystem {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&dmc {
 | 
						|
	center-supply = <&vdd_logic>;
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&gpu {
 | 
						|
	mali-supply = <&vdd_logic>;
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&gpu_bus {
 | 
						|
	bus-supply = <&vdd_logic>;
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&hdmi {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&hdmi_in_vp0 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&hdmiphy {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&iep {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&iep_mmu {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&jpegd {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&jpegd_mmu {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&mpp_srv {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&rga2 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&rga2_mmu {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&rkvdec {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&rkvdec_mmu {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&rkvenc {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&rkvenc_mmu {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&rkvtunnel {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&rockchip_suspend {
 | 
						|
	// status = "okay";
 | 
						|
	// rockchip,sleep-debug-en = <1>;
 | 
						|
	// rockchip,virtual-poweroff = <1>;
 | 
						|
	// rockchip,sleep-mode-config = <
 | 
						|
	// 	(0
 | 
						|
	// 	| RKPM_SLP_ARMPD
 | 
						|
	// 	)
 | 
						|
	// >;
 | 
						|
	// rockchip,wakeup-config = <
 | 
						|
	// 	(0
 | 
						|
	// 	| RKPM_CPU0_WKUP_EN
 | 
						|
	// 	| RKPM_GPIO_WKUP_EN
 | 
						|
	// 	)
 | 
						|
	// >;
 | 
						|
	// rockchip,pwm-regulator-config = <
 | 
						|
	// 	(0
 | 
						|
	// 	| RKPM_PWM0_M0_REGULATOR_EN
 | 
						|
	// 	| RKPM_PWM1_M0_REGULATOR_EN
 | 
						|
	// 	)
 | 
						|
	// >;
 | 
						|
};
 | 
						|
 | 
						|
&sai3 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&saradc {
 | 
						|
	status = "okay";
 | 
						|
	vref-supply = <&vdd_1v8_s3>;
 | 
						|
};
 | 
						|
 | 
						|
&sdhci {
 | 
						|
	bus-width = <8>;
 | 
						|
	no-sd;
 | 
						|
	no-sdio;
 | 
						|
	non-removable;
 | 
						|
	mmc-hs400-1_8v;
 | 
						|
	mmc-hs400-enhanced-strobe;
 | 
						|
	max-frequency = <200000000>;
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&sai2 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&sdio0 {
 | 
						|
	max-frequency = <200000000>;
 | 
						|
	no-sd;
 | 
						|
	no-mmc;
 | 
						|
	supports-sdio;
 | 
						|
	bus-width = <4>;
 | 
						|
	disable-wp;
 | 
						|
	cap-sd-highspeed;
 | 
						|
	cap-sdio-irq;
 | 
						|
	keep-power-in-suspend;
 | 
						|
	non-removable;
 | 
						|
	mmc-pwrseq = <&sdio_pwrseq>;
 | 
						|
	pinctrl-names = "default";
 | 
						|
	pinctrl-0 = <&sdio0_bus4 &sdio0_cmd &sdio0_clk>;
 | 
						|
	sd-uhs-sdr104;
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&sfc {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&spdif_8ch {
 | 
						|
	status = "disabled";
 | 
						|
};
 | 
						|
 | 
						|
&tsadc {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&tve {
 | 
						|
	status = "disabled";
 | 
						|
};
 | 
						|
 | 
						|
&tve_in_vp1 {
 | 
						|
	status = "disabled";
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
&uart2 {
 | 
						|
	status = "okay";
 | 
						|
	pinctrl-names = "default";
 | 
						|
	pinctrl-0 = <&uart2m1_xfer &uart2m1_ctsn &uart2m1_rtsn>;
 | 
						|
	uart-has-rtscts;
 | 
						|
	bluetooth {
 | 
						|
		compatible = "brcm,bcm43438-bt";
 | 
						|
		device-wakeup-gpios = <&gpio3 RK_PC3 0>;
 | 
						|
		host-wakeup-gpios = <&gpio1 RK_PC2 0>;
 | 
						|
		shutdown-gpios = <&gpio1 RK_PC1 0>;
 | 
						|
		pinctrl-names = "default";
 | 
						|
		pinctrl-0 = <&bt_host_wake &bt_wake &bt_enable>;
 | 
						|
		vbat-supply = <&vcc_3v3_s3>;
 | 
						|
		vddio-supply = <&vdd_1v8_s3>;
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&gmac1 {
 | 
						|
	/* Use rgmii-rxid mode to disable rx delay inside Soc */
 | 
						|
	phy-mode = "rgmii-rxid";
 | 
						|
	clock_in_out = "output";
 | 
						|
 | 
						|
	snps,reset-gpio = <&gpio4 RK_PB5 GPIO_ACTIVE_LOW>;
 | 
						|
	snps,reset-active-low;
 | 
						|
	/* Reset time is 20ms, 100ms for rtl8211f */
 | 
						|
	snps,reset-delays-us = <0 20000 100000>;
 | 
						|
 | 
						|
	tx_delay = <0x30>;
 | 
						|
	/* rx_delay = <0x3f>; */
 | 
						|
 | 
						|
	pinctrl-names = "default";
 | 
						|
	pinctrl-0 = <&rgmii_miim
 | 
						|
		     &rgmii_tx_bus2
 | 
						|
		     &rgmii_rx_bus2
 | 
						|
		     &rgmii_rgmii_clk
 | 
						|
		     &rgmii_rgmii_bus
 | 
						|
		     ð_pins>;
 | 
						|
 | 
						|
	phy-handle = <&rgmii_phy>;
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
&mdio1 {
 | 
						|
	rgmii_phy: phy@1 {
 | 
						|
		compatible = "ethernet-phy-ieee802.3-c22";
 | 
						|
		reg = <0x1>;
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&combphy_pu {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&pcie2x1 {
 | 
						|
	reset-gpios = <&gpio4 RK_PA4 GPIO_ACTIVE_HIGH>;
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
&i2c0 {
 | 
						|
	status = "okay";
 | 
						|
	hym8563: hym8563@51 {
 | 
						|
		compatible = "haoyu,hym8563";
 | 
						|
		reg = <0x51>;
 | 
						|
		#clock-cells = <0>;
 | 
						|
		clock-frequency = <32768>;
 | 
						|
		clock-output-names = "hym8563";
 | 
						|
		pinctrl-names = "default";
 | 
						|
		pinctrl-0 = <&hym8563_int>;
 | 
						|
		interrupt-parent = <&gpio4>;
 | 
						|
		interrupts = <RK_PA0 IRQ_TYPE_LEVEL_LOW>;
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
&pinctrl {
 | 
						|
	bt {
 | 
						|
		bt_enable: bt-enable {
 | 
						|
			rockchip,pins = <1 RK_PC1 RK_FUNC_GPIO &pcfg_pull_none>;
 | 
						|
		};
 | 
						|
 | 
						|
		bt_host_wake: bt-host-wake {
 | 
						|
			rockchip,pins = <1 RK_PC2 RK_FUNC_GPIO &pcfg_pull_down>;
 | 
						|
		};
 | 
						|
 | 
						|
		bt_wake: bt-wake {
 | 
						|
			rockchip,pins = <3 RK_PC3 RK_FUNC_GPIO &pcfg_pull_none>;
 | 
						|
		};
 | 
						|
	};
 | 
						|
 | 
						|
	sdio-pwrseq {
 | 
						|
		wifi_enable_h: wifi-enable-h {
 | 
						|
			rockchip,pins = <1 RK_PA6 RK_FUNC_GPIO &pcfg_pull_none>;
 | 
						|
		};
 | 
						|
	};
 | 
						|
 | 
						|
	wireless-wlan {
 | 
						|
		wifi_host_wake_irq: wifi-host-wake-irq {
 | 
						|
			rockchip,pins = <1 RK_PA7 RK_FUNC_GPIO &pcfg_pull_down>;
 | 
						|
		};
 | 
						|
	};
 | 
						|
 | 
						|
	hym8563 {
 | 
						|
		hym8563_int: hym8563-int {
 | 
						|
			rockchip,pins = <4 RK_PA0 RK_FUNC_GPIO &pcfg_pull_none>;
 | 
						|
		};
 | 
						|
	};
 | 
						|
 | 
						|
	usb {
 | 
						|
		usb_host1_pwren: usb-host1-pwren {
 | 
						|
			rockchip,pins = <4 RK_PB1 RK_FUNC_GPIO &pcfg_pull_none>;
 | 
						|
		};
 | 
						|
 | 
						|
		usb_host2_pwren: usb-host2-pwren {
 | 
						|
			rockchip,pins = <4 RK_PB0 RK_FUNC_GPIO &pcfg_pull_none>;
 | 
						|
		};
 | 
						|
	};
 | 
						|
 | 
						|
	leds {
 | 
						|
		led_rgb_r: led-red-en {
 | 
						|
			rockchip,pins = <3 RK_PB2 RK_FUNC_GPIO &pcfg_pull_none>;
 | 
						|
		};
 | 
						|
		led_rgb_g: led-green-en {
 | 
						|
			rockchip,pins = <3 RK_PB3 RK_FUNC_GPIO &pcfg_pull_none>;
 | 
						|
		};
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&pwm0 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&pwm1 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&pwm2 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&pwm3 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&pwm6 {
 | 
						|
	status = "okay";
 | 
						|
	pinctrl-0 = <&pwm6m2_pins>;
 | 
						|
};
 | 
						|
 | 
						|
&acodec {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&sdmmc {
 | 
						|
	bus-width = <4>;
 | 
						|
	cap-mmc-highspeed;
 | 
						|
	cap-sd-highspeed;
 | 
						|
	disable-wp;
 | 
						|
	max-frequency = <150000000>;
 | 
						|
	pinctrl-names = "default";
 | 
						|
	pinctrl-0 = <&sdmmc_clk &sdmmc_cmd &sdmmc_det &sdmmc_bus4>;
 | 
						|
	rockchip,default-sample-phase = <90>;
 | 
						|
	supports-sd;
 | 
						|
	sd-uhs-sdr12;
 | 
						|
	sd-uhs-sdr25;
 | 
						|
	sd-uhs-sdr50;
 | 
						|
	sd-uhs-sdr104;
 | 
						|
	vqmmc-supply = <&vccio_sd>;
 | 
						|
	vmmc-supply = <&vcc_sd>;
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&usb2phy {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&u2phy_host {
 | 
						|
	status = "okay";
 | 
						|
	phy-supply = <&vcc5v0_sys>;
 | 
						|
};
 | 
						|
 | 
						|
&u2phy_otg {
 | 
						|
	status = "okay";
 | 
						|
	vbus-supply = <&vcc5v0_sys>;
 | 
						|
};
 | 
						|
 | 
						|
&usbdrd30 {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&usbdrd_dwc3 {
 | 
						|
	// Only USB2.0 START
 | 
						|
	extcon = <&usb2phy>;
 | 
						|
	phys = <&u2phy_otg>;
 | 
						|
	phy-names = "usb2-phy";
 | 
						|
	maximum-speed = "high-speed";
 | 
						|
	snps,dis_u2_susphy_quirk;
 | 
						|
	// Only USB2.0 END
 | 
						|
	snps,usb2-lpm-disable;
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&usb_host0_ehci {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&usb_host0_ohci {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&display_subsystem {
 | 
						|
	memory-region = <&drm_logo>, <&drm_cubic_lut>;
 | 
						|
	memory-region-names = "drm-logo", "drm-cubic-lut";
 | 
						|
	/* devfreq = <&dmc>; */
 | 
						|
 | 
						|
	route {
 | 
						|
		route_hdmi: route-hdmi {
 | 
						|
			status = "okay";
 | 
						|
			logo,uboot = "logo.bmp";
 | 
						|
			logo,kernel = "logo_kernel.bmp";
 | 
						|
			logo,mode = "center";
 | 
						|
			charge_logo,mode = "center";
 | 
						|
			connect = <&vp0_out_hdmi>;
 | 
						|
		};
 | 
						|
		route_tve: route-tve {
 | 
						|
			status = "okay";
 | 
						|
			logo,uboot = "logo.bmp";
 | 
						|
			logo,kernel = "logo_kernel.bmp";
 | 
						|
			logo,mode = "center";
 | 
						|
			charge_logo,mode = "center";
 | 
						|
			connect = <&vp1_out_tve>;
 | 
						|
		};
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&rng {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&vdpp {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&vdpu {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&vdpu_mmu {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&vop {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
&vop_mmu {
 | 
						|
	status = "okay";
 | 
						|
};
 | 
						|
 | 
						|
/* watchdog */
 | 
						|
&wdt {
 | 
						|
	status = "okay";
 | 
						|
}; |