18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Copyright (c) 2016 Matthias Brugger <mbrugger@suse.com>
48c2ecf20Sopenharmony_ci */
58c2ecf20Sopenharmony_ci
68c2ecf20Sopenharmony_ci/dts-v1/;
78c2ecf20Sopenharmony_ci#include <dt-bindings/input/input.h>
88c2ecf20Sopenharmony_ci#include "rk3368.dtsi"
98c2ecf20Sopenharmony_ci
108c2ecf20Sopenharmony_ci/ {
118c2ecf20Sopenharmony_ci	model = "Rockchip Orion R68";
128c2ecf20Sopenharmony_ci	compatible = "tronsmart,orion-r68-meta", "rockchip,rk3368";
138c2ecf20Sopenharmony_ci
148c2ecf20Sopenharmony_ci	chosen {
158c2ecf20Sopenharmony_ci		stdout-path = "serial2:115200n8";
168c2ecf20Sopenharmony_ci	};
178c2ecf20Sopenharmony_ci
188c2ecf20Sopenharmony_ci	memory {
198c2ecf20Sopenharmony_ci		device_type = "memory";
208c2ecf20Sopenharmony_ci		reg = <0x0 0x0 0x0 0x80000000>;
218c2ecf20Sopenharmony_ci	};
228c2ecf20Sopenharmony_ci
238c2ecf20Sopenharmony_ci	emmc_pwrseq: emmc-pwrseq {
248c2ecf20Sopenharmony_ci		compatible = "mmc-pwrseq-emmc";
258c2ecf20Sopenharmony_ci		pinctrl-0 = <&emmc_reset>;
268c2ecf20Sopenharmony_ci		pinctrl-names = "default";
278c2ecf20Sopenharmony_ci		reset-gpios = <&gpio2 RK_PA3 GPIO_ACTIVE_HIGH>;
288c2ecf20Sopenharmony_ci	};
298c2ecf20Sopenharmony_ci
308c2ecf20Sopenharmony_ci	ext_gmac: external-gmac-clock {
318c2ecf20Sopenharmony_ci		compatible = "fixed-clock";
328c2ecf20Sopenharmony_ci		#clock-cells = <0>;
338c2ecf20Sopenharmony_ci		clock-frequency = <125000000>;
348c2ecf20Sopenharmony_ci		clock-output-names = "ext_gmac";
358c2ecf20Sopenharmony_ci	};
368c2ecf20Sopenharmony_ci
378c2ecf20Sopenharmony_ci	keys: gpio-keys {
388c2ecf20Sopenharmony_ci		compatible = "gpio-keys";
398c2ecf20Sopenharmony_ci		pinctrl-names = "default";
408c2ecf20Sopenharmony_ci		pinctrl-0 = <&pwr_key>;
418c2ecf20Sopenharmony_ci
428c2ecf20Sopenharmony_ci		power {
438c2ecf20Sopenharmony_ci			wakeup-source;
448c2ecf20Sopenharmony_ci			gpios = <&gpio0 RK_PA5 GPIO_ACTIVE_HIGH>;
458c2ecf20Sopenharmony_ci			label = "GPIO Power";
468c2ecf20Sopenharmony_ci			linux,code = <KEY_POWER>;
478c2ecf20Sopenharmony_ci		};
488c2ecf20Sopenharmony_ci	};
498c2ecf20Sopenharmony_ci
508c2ecf20Sopenharmony_ci	leds: gpio-leds {
518c2ecf20Sopenharmony_ci		compatible = "gpio-leds";
528c2ecf20Sopenharmony_ci
538c2ecf20Sopenharmony_ci		red_led: led-0 {
548c2ecf20Sopenharmony_ci			gpios = <&gpio3 RK_PD5 GPIO_ACTIVE_HIGH>;
558c2ecf20Sopenharmony_ci			label = "orion:red:led";
568c2ecf20Sopenharmony_ci			pinctrl-names = "default";
578c2ecf20Sopenharmony_ci			pinctrl-0 = <&led_ctl>;
588c2ecf20Sopenharmony_ci			default-state = "on";
598c2ecf20Sopenharmony_ci		};
608c2ecf20Sopenharmony_ci
618c2ecf20Sopenharmony_ci		blue_led: led-1 {
628c2ecf20Sopenharmony_ci			gpios = <&gpio0 RK_PB4 GPIO_ACTIVE_HIGH>;
638c2ecf20Sopenharmony_ci			label = "orion:blue:led";
648c2ecf20Sopenharmony_ci			pinctrl-names = "default";
658c2ecf20Sopenharmony_ci			pinctrl-0 = <&stby_pwren>;
668c2ecf20Sopenharmony_ci			default-state = "off";
678c2ecf20Sopenharmony_ci		};
688c2ecf20Sopenharmony_ci	};
698c2ecf20Sopenharmony_ci
708c2ecf20Sopenharmony_ci	vcc_18: vcc18-regulator {
718c2ecf20Sopenharmony_ci		compatible = "regulator-fixed";
728c2ecf20Sopenharmony_ci		regulator-name = "vcc_18";
738c2ecf20Sopenharmony_ci		regulator-min-microvolt = <1800000>;
748c2ecf20Sopenharmony_ci		regulator-max-microvolt = <1800000>;
758c2ecf20Sopenharmony_ci		regulator-always-on;
768c2ecf20Sopenharmony_ci		regulator-boot-on;
778c2ecf20Sopenharmony_ci		vin-supply = <&vcc_sys>;
788c2ecf20Sopenharmony_ci	};
798c2ecf20Sopenharmony_ci
808c2ecf20Sopenharmony_ci	/* supplies both host and otg */
818c2ecf20Sopenharmony_ci	vcc_host: vcc-host-regulator {
828c2ecf20Sopenharmony_ci		compatible = "regulator-fixed";
838c2ecf20Sopenharmony_ci		gpio = <&gpio0 RK_PA4 GPIO_ACTIVE_LOW>;
848c2ecf20Sopenharmony_ci		pinctrl-names = "default";
858c2ecf20Sopenharmony_ci		pinctrl-0 = <&host_vbus_drv>;
868c2ecf20Sopenharmony_ci		regulator-name = "vcc_host";
878c2ecf20Sopenharmony_ci		regulator-always-on;
888c2ecf20Sopenharmony_ci		regulator-boot-on;
898c2ecf20Sopenharmony_ci		vin-supply = <&vcc_sys>;
908c2ecf20Sopenharmony_ci	};
918c2ecf20Sopenharmony_ci
928c2ecf20Sopenharmony_ci	vcc_io: vcc-io-regulator {
938c2ecf20Sopenharmony_ci		compatible = "regulator-fixed";
948c2ecf20Sopenharmony_ci		regulator-name = "vcc_io";
958c2ecf20Sopenharmony_ci		regulator-min-microvolt = <3300000>;
968c2ecf20Sopenharmony_ci		regulator-max-microvolt = <3300000>;
978c2ecf20Sopenharmony_ci		regulator-always-on;
988c2ecf20Sopenharmony_ci		regulator-boot-on;
998c2ecf20Sopenharmony_ci		vin-supply = <&vcc_sys>;
1008c2ecf20Sopenharmony_ci	};
1018c2ecf20Sopenharmony_ci
1028c2ecf20Sopenharmony_ci	vcc_lan: vcc-lan-regulator {
1038c2ecf20Sopenharmony_ci		compatible = "regulator-fixed";
1048c2ecf20Sopenharmony_ci		regulator-name = "vcc_lan";
1058c2ecf20Sopenharmony_ci		regulator-min-microvolt = <3300000>;
1068c2ecf20Sopenharmony_ci		regulator-max-microvolt = <3300000>;
1078c2ecf20Sopenharmony_ci		regulator-always-on;
1088c2ecf20Sopenharmony_ci		regulator-boot-on;
1098c2ecf20Sopenharmony_ci		vin-supply = <&vcc_io>;
1108c2ecf20Sopenharmony_ci	};
1118c2ecf20Sopenharmony_ci
1128c2ecf20Sopenharmony_ci	vcc_sd: vcc-sd-regulator {
1138c2ecf20Sopenharmony_ci		compatible = "regulator-fixed";
1148c2ecf20Sopenharmony_ci		regulator-name = "vcc_sd";
1158c2ecf20Sopenharmony_ci		gpio = <&gpio3 RK_PB3 GPIO_ACTIVE_LOW>;
1168c2ecf20Sopenharmony_ci		regulator-min-microvolt = <1800000>;
1178c2ecf20Sopenharmony_ci		regulator-max-microvolt = <3300000>;
1188c2ecf20Sopenharmony_ci		vin-supply = <&vcc_io>;
1198c2ecf20Sopenharmony_ci	};
1208c2ecf20Sopenharmony_ci
1218c2ecf20Sopenharmony_ci	vcc_sys: vcc-sys-regulator {
1228c2ecf20Sopenharmony_ci		compatible = "regulator-fixed";
1238c2ecf20Sopenharmony_ci		regulator-name = "vcc_sys";
1248c2ecf20Sopenharmony_ci		regulator-min-microvolt = <5000000>;
1258c2ecf20Sopenharmony_ci		regulator-max-microvolt = <5000000>;
1268c2ecf20Sopenharmony_ci		regulator-always-on;
1278c2ecf20Sopenharmony_ci		regulator-boot-on;
1288c2ecf20Sopenharmony_ci	};
1298c2ecf20Sopenharmony_ci
1308c2ecf20Sopenharmony_ci	vccio_sd: vcc-io-sd-regulator {
1318c2ecf20Sopenharmony_ci		compatible = "regulator-fixed";
1328c2ecf20Sopenharmony_ci		regulator-name= "vccio_sd";
1338c2ecf20Sopenharmony_ci		regulator-min-microvolt = <1800000>;
1348c2ecf20Sopenharmony_ci		regulator-max-microvolt = <3300000>;
1358c2ecf20Sopenharmony_ci		regulator-always-on;
1368c2ecf20Sopenharmony_ci		regulator-boot-on;
1378c2ecf20Sopenharmony_ci		vin-supply = <&vcc_io>;
1388c2ecf20Sopenharmony_ci	};
1398c2ecf20Sopenharmony_ci
1408c2ecf20Sopenharmony_ci	vccio_wl: vccio-wl-regulator {
1418c2ecf20Sopenharmony_ci		compatible = "regulator-fixed";
1428c2ecf20Sopenharmony_ci		regulator-name = "vccio_wl";
1438c2ecf20Sopenharmony_ci		regulator-min-microvolt = <3300000>;
1448c2ecf20Sopenharmony_ci		regulator-max-microvolt = <3300000>;
1458c2ecf20Sopenharmony_ci		regulator-always-on;
1468c2ecf20Sopenharmony_ci		regulator-boot-on;
1478c2ecf20Sopenharmony_ci		vin-supply = <&vcc_io>;
1488c2ecf20Sopenharmony_ci	};
1498c2ecf20Sopenharmony_ci
1508c2ecf20Sopenharmony_ci	vdd_10: vdd-10-regulator {
1518c2ecf20Sopenharmony_ci		compatible = "regulator-fixed";
1528c2ecf20Sopenharmony_ci		regulator-name = "vdd_10";
1538c2ecf20Sopenharmony_ci		regulator-min-microvolt = <1000000>;
1548c2ecf20Sopenharmony_ci		regulator-max-microvolt = <1000000>;
1558c2ecf20Sopenharmony_ci		regulator-always-on;
1568c2ecf20Sopenharmony_ci		regulator-boot-on;
1578c2ecf20Sopenharmony_ci		vin-supply = <&vcc_sys>;
1588c2ecf20Sopenharmony_ci	};
1598c2ecf20Sopenharmony_ci};
1608c2ecf20Sopenharmony_ci
1618c2ecf20Sopenharmony_ci&emmc {
1628c2ecf20Sopenharmony_ci	bus-width = <8>;
1638c2ecf20Sopenharmony_ci	cap-mmc-highspeed;
1648c2ecf20Sopenharmony_ci	mmc-pwrseq = <&emmc_pwrseq>;
1658c2ecf20Sopenharmony_ci	mmc-hs200-1_2v;
1668c2ecf20Sopenharmony_ci	mmc-hs200-1_8v;
1678c2ecf20Sopenharmony_ci	non-removable;
1688c2ecf20Sopenharmony_ci	pinctrl-names = "default";
1698c2ecf20Sopenharmony_ci	pinctrl-0 = <&emmc_clk &emmc_cmd &emmc_bus8>;
1708c2ecf20Sopenharmony_ci	status = "okay";
1718c2ecf20Sopenharmony_ci};
1728c2ecf20Sopenharmony_ci
1738c2ecf20Sopenharmony_ci&gmac {
1748c2ecf20Sopenharmony_ci	assigned-clocks = <&cru SCLK_MAC>;
1758c2ecf20Sopenharmony_ci	assigned-clock-parents = <&ext_gmac>;
1768c2ecf20Sopenharmony_ci	clock_in_out = "input";
1778c2ecf20Sopenharmony_ci	phy-supply = <&vcc_lan>;
1788c2ecf20Sopenharmony_ci	phy-mode = "rgmii";
1798c2ecf20Sopenharmony_ci	pinctrl-names = "default";
1808c2ecf20Sopenharmony_ci	pinctrl-0 = <&rgmii_pins>;
1818c2ecf20Sopenharmony_ci	snps,reset-gpio = <&gpio3 RK_PB4 GPIO_ACTIVE_HIGH>;
1828c2ecf20Sopenharmony_ci	snps,reset-active-low;
1838c2ecf20Sopenharmony_ci	snps,reset-delays-us = <0 10000 1000000>;
1848c2ecf20Sopenharmony_ci	tx_delay = <0x30>;
1858c2ecf20Sopenharmony_ci	rx_delay = <0x10>;
1868c2ecf20Sopenharmony_ci	status = "okay";
1878c2ecf20Sopenharmony_ci};
1888c2ecf20Sopenharmony_ci
1898c2ecf20Sopenharmony_ci&i2c0 {
1908c2ecf20Sopenharmony_ci	status = "okay";
1918c2ecf20Sopenharmony_ci
1928c2ecf20Sopenharmony_ci	vdd_cpu: syr827@40 {
1938c2ecf20Sopenharmony_ci		compatible = "silergy,syr827";
1948c2ecf20Sopenharmony_ci		reg = <0x40>;
1958c2ecf20Sopenharmony_ci		fcs,suspend-voltage-selector = <1>;
1968c2ecf20Sopenharmony_ci		regulator-name = "vdd_cpu";
1978c2ecf20Sopenharmony_ci		regulator-enable-ramp-delay = <300>;
1988c2ecf20Sopenharmony_ci		regulator-min-microvolt = <712500>;
1998c2ecf20Sopenharmony_ci		regulator-max-microvolt = <1500000>;
2008c2ecf20Sopenharmony_ci		regulator-ramp-delay = <8000>;
2018c2ecf20Sopenharmony_ci		regulator-always-on;
2028c2ecf20Sopenharmony_ci		regulator-boot-on;
2038c2ecf20Sopenharmony_ci		vin-supply = <&vcc_sys>;
2048c2ecf20Sopenharmony_ci	};
2058c2ecf20Sopenharmony_ci
2068c2ecf20Sopenharmony_ci	hym8563: hym8563@51 {
2078c2ecf20Sopenharmony_ci		compatible = "haoyu,hym8563";
2088c2ecf20Sopenharmony_ci		reg = <0x51>;
2098c2ecf20Sopenharmony_ci		#clock-cells = <0>;
2108c2ecf20Sopenharmony_ci		clock-frequency = <32768>;
2118c2ecf20Sopenharmony_ci		clock-output-names = "xin32k";
2128c2ecf20Sopenharmony_ci		/* rtc_int is not connected */
2138c2ecf20Sopenharmony_ci	};
2148c2ecf20Sopenharmony_ci};
2158c2ecf20Sopenharmony_ci
2168c2ecf20Sopenharmony_ci&pinctrl {
2178c2ecf20Sopenharmony_ci	pcfg_pull_none_drv_8ma: pcfg-pull-none-drv-8ma {
2188c2ecf20Sopenharmony_ci		bias-disable;
2198c2ecf20Sopenharmony_ci		drive-strength = <8>;
2208c2ecf20Sopenharmony_ci	};
2218c2ecf20Sopenharmony_ci
2228c2ecf20Sopenharmony_ci	pcfg_pull_up_drv_8ma: pcfg-pull-up-drv-8ma {
2238c2ecf20Sopenharmony_ci		bias-pull-up;
2248c2ecf20Sopenharmony_ci		drive-strength = <8>;
2258c2ecf20Sopenharmony_ci	};
2268c2ecf20Sopenharmony_ci
2278c2ecf20Sopenharmony_ci	emmc {
2288c2ecf20Sopenharmony_ci		emmc_bus8: emmc-bus8 {
2298c2ecf20Sopenharmony_ci			rockchip,pins = <1 RK_PC2 2 &pcfg_pull_up_drv_8ma>,
2308c2ecf20Sopenharmony_ci					<1 RK_PC3 2 &pcfg_pull_up_drv_8ma>,
2318c2ecf20Sopenharmony_ci					<1 RK_PC4 2 &pcfg_pull_up_drv_8ma>,
2328c2ecf20Sopenharmony_ci					<1 RK_PC5 2 &pcfg_pull_up_drv_8ma>,
2338c2ecf20Sopenharmony_ci					<1 RK_PC6 2 &pcfg_pull_up_drv_8ma>,
2348c2ecf20Sopenharmony_ci					<1 RK_PC7 2 &pcfg_pull_up_drv_8ma>,
2358c2ecf20Sopenharmony_ci					<1 RK_PD0 2 &pcfg_pull_up_drv_8ma>,
2368c2ecf20Sopenharmony_ci					<1 RK_PD1 2 &pcfg_pull_up_drv_8ma>;
2378c2ecf20Sopenharmony_ci		};
2388c2ecf20Sopenharmony_ci
2398c2ecf20Sopenharmony_ci		emmc-clk {
2408c2ecf20Sopenharmony_ci			rockchip,pins = <2 RK_PA4 2 &pcfg_pull_none_drv_8ma>;
2418c2ecf20Sopenharmony_ci		};
2428c2ecf20Sopenharmony_ci
2438c2ecf20Sopenharmony_ci		emmc-cmd {
2448c2ecf20Sopenharmony_ci			rockchip,pins = <1 RK_PD2 2 &pcfg_pull_up_drv_8ma>;
2458c2ecf20Sopenharmony_ci		};
2468c2ecf20Sopenharmony_ci
2478c2ecf20Sopenharmony_ci		emmc_reset: emmc-reset {
2488c2ecf20Sopenharmony_ci			rockchip,pins = <2 RK_PA3 RK_FUNC_GPIO &pcfg_pull_none>;
2498c2ecf20Sopenharmony_ci		};
2508c2ecf20Sopenharmony_ci	};
2518c2ecf20Sopenharmony_ci
2528c2ecf20Sopenharmony_ci	keys {
2538c2ecf20Sopenharmony_ci		pwr_key: pwr-key {
2548c2ecf20Sopenharmony_ci			rockchip,pins = <0 RK_PA5 RK_FUNC_GPIO &pcfg_pull_down>;
2558c2ecf20Sopenharmony_ci		};
2568c2ecf20Sopenharmony_ci	};
2578c2ecf20Sopenharmony_ci
2588c2ecf20Sopenharmony_ci	leds {
2598c2ecf20Sopenharmony_ci		stby_pwren: stby-pwren {
2608c2ecf20Sopenharmony_ci			rockchip,pins = <0 RK_PB4 RK_FUNC_GPIO &pcfg_pull_none>;
2618c2ecf20Sopenharmony_ci		};
2628c2ecf20Sopenharmony_ci
2638c2ecf20Sopenharmony_ci		led_ctl: led-ctl {
2648c2ecf20Sopenharmony_ci			rockchip,pins = <3 RK_PD5 RK_FUNC_GPIO &pcfg_pull_none>;
2658c2ecf20Sopenharmony_ci		};
2668c2ecf20Sopenharmony_ci	};
2678c2ecf20Sopenharmony_ci
2688c2ecf20Sopenharmony_ci	sdmmc {
2698c2ecf20Sopenharmony_ci		sdmmc_clk: sdmmc-clk {
2708c2ecf20Sopenharmony_ci			rockchip,pins = <2 RK_PB1 1 &pcfg_pull_none_drv_8ma>;
2718c2ecf20Sopenharmony_ci		};
2728c2ecf20Sopenharmony_ci
2738c2ecf20Sopenharmony_ci		sdmmc_cmd: sdmmc-cmd {
2748c2ecf20Sopenharmony_ci			rockchip,pins = <2 RK_PB2 1 &pcfg_pull_up_drv_8ma>;
2758c2ecf20Sopenharmony_ci		};
2768c2ecf20Sopenharmony_ci
2778c2ecf20Sopenharmony_ci		sdmmc_cd: sdmmc-cd {
2788c2ecf20Sopenharmony_ci			rockchip,pins = <2 RK_PB3 1 &pcfg_pull_up_drv_8ma>;
2798c2ecf20Sopenharmony_ci		};
2808c2ecf20Sopenharmony_ci
2818c2ecf20Sopenharmony_ci		sdmmc_bus1: sdmmc-bus1 {
2828c2ecf20Sopenharmony_ci			rockchip,pins = <2 RK_PA5 1 &pcfg_pull_up_drv_8ma>;
2838c2ecf20Sopenharmony_ci		};
2848c2ecf20Sopenharmony_ci
2858c2ecf20Sopenharmony_ci		sdmmc_bus4: sdmmc-bus4 {
2868c2ecf20Sopenharmony_ci			rockchip,pins = <2 RK_PA5 1 &pcfg_pull_up_drv_8ma>,
2878c2ecf20Sopenharmony_ci					<2 RK_PA6 1 &pcfg_pull_up_drv_8ma>,
2888c2ecf20Sopenharmony_ci					<2 RK_PA7 1 &pcfg_pull_up_drv_8ma>,
2898c2ecf20Sopenharmony_ci					<2 RK_PB0 1 &pcfg_pull_up_drv_8ma>;
2908c2ecf20Sopenharmony_ci		};
2918c2ecf20Sopenharmony_ci	};
2928c2ecf20Sopenharmony_ci
2938c2ecf20Sopenharmony_ci	usb {
2948c2ecf20Sopenharmony_ci		host_vbus_drv: host-vbus-drv {
2958c2ecf20Sopenharmony_ci			rockchip,pins = <0 RK_PA4 RK_FUNC_GPIO &pcfg_pull_none>;
2968c2ecf20Sopenharmony_ci		};
2978c2ecf20Sopenharmony_ci	};
2988c2ecf20Sopenharmony_ci};
2998c2ecf20Sopenharmony_ci
3008c2ecf20Sopenharmony_ci&saradc {
3018c2ecf20Sopenharmony_ci	vref-supply = <&vcc_18>;
3028c2ecf20Sopenharmony_ci	status = "okay";
3038c2ecf20Sopenharmony_ci};
3048c2ecf20Sopenharmony_ci
3058c2ecf20Sopenharmony_ci&sdmmc {
3068c2ecf20Sopenharmony_ci	bus-width = <4>;
3078c2ecf20Sopenharmony_ci	clock-frequency = <50000000>;
3088c2ecf20Sopenharmony_ci	max-frequency = <50000000>;
3098c2ecf20Sopenharmony_ci	cap-sd-highspeed;
3108c2ecf20Sopenharmony_ci	card-detect-delay = <200>;
3118c2ecf20Sopenharmony_ci	pinctrl-names = "default";
3128c2ecf20Sopenharmony_ci	pinctrl-0 = <&sdmmc_clk &sdmmc_cmd &sdmmc_cd &sdmmc_bus4>;
3138c2ecf20Sopenharmony_ci	vmmc-supply = <&vcc_sd>;
3148c2ecf20Sopenharmony_ci	vqmmc-supply = <&vccio_sd>;
3158c2ecf20Sopenharmony_ci	status = "okay";
3168c2ecf20Sopenharmony_ci};
3178c2ecf20Sopenharmony_ci
3188c2ecf20Sopenharmony_ci&uart2 {
3198c2ecf20Sopenharmony_ci	status = "okay";
3208c2ecf20Sopenharmony_ci};
3218c2ecf20Sopenharmony_ci
3228c2ecf20Sopenharmony_ci&uart4 {
3238c2ecf20Sopenharmony_ci	pinctrl-names = "default";
3248c2ecf20Sopenharmony_ci	pinctrl-0 = <&uart4_xfer>;
3258c2ecf20Sopenharmony_ci	status = "okay";
3268c2ecf20Sopenharmony_ci};
3278c2ecf20Sopenharmony_ci
3288c2ecf20Sopenharmony_ci&usb_host0_ehci {
3298c2ecf20Sopenharmony_ci	status = "okay";
3308c2ecf20Sopenharmony_ci};
3318c2ecf20Sopenharmony_ci
3328c2ecf20Sopenharmony_ci&usb_otg {
3338c2ecf20Sopenharmony_ci	status = "okay";
3348c2ecf20Sopenharmony_ci};
3358c2ecf20Sopenharmony_ci
3368c2ecf20Sopenharmony_ci&wdt {
3378c2ecf20Sopenharmony_ci	status = "okay";
3388c2ecf20Sopenharmony_ci};
339