1*5def4c47SEmmanuel Vadot// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2*5def4c47SEmmanuel Vadot/* 3*5def4c47SEmmanuel Vadot * Copyright (c) 2020 Engicam srl 4*5def4c47SEmmanuel Vadot * Copyright (c) 2020 Amarula Solutions 5*5def4c47SEmmanuel Vadot * Copyright (c) 2020 Amarula Solutions(India) 6*5def4c47SEmmanuel Vadot */ 7*5def4c47SEmmanuel Vadot 8*5def4c47SEmmanuel Vadot#include "px30-engicam-common.dtsi" 9*5def4c47SEmmanuel Vadot 10*5def4c47SEmmanuel Vadot&pinctrl { 11*5def4c47SEmmanuel Vadot bt { 12*5def4c47SEmmanuel Vadot bt_enable_h: bt-enable-h { 13*5def4c47SEmmanuel Vadot rockchip,pins = <1 RK_PC3 RK_FUNC_GPIO &pcfg_pull_none>; 14*5def4c47SEmmanuel Vadot }; 15*5def4c47SEmmanuel Vadot }; 16*5def4c47SEmmanuel Vadot 17*5def4c47SEmmanuel Vadot sdio-pwrseq { 18*5def4c47SEmmanuel Vadot wifi_enable_h: wifi-enable-h { 19*5def4c47SEmmanuel Vadot rockchip,pins = <1 RK_PC2 RK_FUNC_GPIO &pcfg_pull_none>; 20*5def4c47SEmmanuel Vadot }; 21*5def4c47SEmmanuel Vadot }; 22*5def4c47SEmmanuel Vadot}; 23*5def4c47SEmmanuel Vadot 24*5def4c47SEmmanuel Vadot&sdio_pwrseq { 25*5def4c47SEmmanuel Vadot reset-gpios = <&gpio1 RK_PC2 GPIO_ACTIVE_LOW>; 26*5def4c47SEmmanuel Vadot}; 27*5def4c47SEmmanuel Vadot 28*5def4c47SEmmanuel Vadot&vcc3v3_btreg { 29*5def4c47SEmmanuel Vadot enable-gpio = <&gpio1 RK_PC3 GPIO_ACTIVE_HIGH>; 30*5def4c47SEmmanuel Vadot}; 31