1// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2/* 3 * Copyright (c) 2021 Rockchip Electronics Co., Ltd 4 */ 5 6#include <dt-bindings/input/input.h> 7#include "rk3308b-evb-v10.dtsi" 8 9/ { 10 model = "Rockchip RK3308B-S EVB V11"; 11 compatible = "rockchip,rk3308bs-evb-v11", "rockchip,rk3308"; 12 13 /delete-node/ vdd-1v0; 14 /delete-node/ wireless-bluetooth; 15 /delete-node/ wireless-wlan; 16 17 vdd_0v9: vdd-0v9 { 18 compatible = "regulator-fixed"; 19 regulator-name = "vdd_0v9"; 20 regulator-always-on; 21 regulator-boot-on; 22 regulator-min-microvolt = <900000>; 23 regulator-max-microvolt = <900000>; 24 }; 25 26 wireless-bluetooth { 27 compatible = "bluetooth-platdata"; 28 uart_rts_gpios = <&gpio2 RK_PA3 GPIO_ACTIVE_LOW>; 29 pinctrl-names = "default", "rts_gpio"; 30 pinctrl-0 = <&uart0_rts>; 31 pinctrl-1 = <&uart0_rts_pin>; 32 BT,power_gpio = <&gpio2 RK_PB7 GPIO_ACTIVE_HIGH>; 33 BT,wake_host_irq = <&gpio2 RK_PB0 GPIO_ACTIVE_HIGH>; 34 status = "okay"; 35 }; 36 37 wireless-wlan { 38 compatible = "wlan-platdata"; 39 rockchip,grf = <&grf>; 40 pinctrl-names = "default"; 41 pinctrl-0 = <&wifi_wake_host>, <&rtc_32k>; 42 wifi_chip_type = "ap6256"; 43 WIFI,host_wake_irq = <&gpio2 RK_PB4 GPIO_ACTIVE_HIGH>; 44 status = "okay"; 45 }; 46}; 47 48&acodec_sound { 49 status = "disabled"; 50}; 51 52&mac { 53 status = "okay"; 54}; 55 56&vcc_ddr { 57 regulator-min-microvolt = <1350000>; 58 regulator-max-microvolt = <1350000>; 59}; 60 61&vdd_log { 62 regulator-min-microvolt = <900000>; 63 regulator-max-microvolt = <900000>; 64}; 65