1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
3 * Copyright (c) 2017 Fuzhou Rockchip Electronics Co., Ltd.
4 * Copyright (c) 2018 Akash Gajjar <Akash_Gajjar@mentor.com>
5 * Copyright (c) 2020 Tobias Schramm <t.schramm@manjaro.org>
9 #include <dt-bindings/input/gpio-keys.h>
10 #include <dt-bindings/input/linux-event-codes.h>
11 #include <dt-bindings/pwm/pwm.h>
12 #include <dt-bindings/usb/pd.h>
13 #include <dt-bindings/leds/common.h>
14 #include "rk3399.dtsi"
15 #include "rk3399-opp.dtsi"
18 model = "Pine64 Pinebook Pro";
19 compatible = "pine64,pinebook-pro", "rockchip,rk3399";
22 stdout-path = "serial2:1500000n8";
25 backlight: edp-backlight {
26 compatible = "pwm-backlight";
27 power-supply = <&vcc_12v>;
28 pwms = <&pwm0 0 740740 0>;
31 edp_panel: edp-panel {
32 compatible = "boe,nv140fhmn49";
33 backlight = <&backlight>;
34 enable-gpios = <&gpio1 RK_PA0 GPIO_ACTIVE_HIGH>;
35 pinctrl-names = "default";
36 pinctrl-0 = <&panel_en_gpio>;
37 power-supply = <&vcc3v3_panel>;
48 panel_in_edp: endpoint@0 {
50 remote-endpoint = <&edp_out_panel>;
57 * Use separate nodes for gpio-keys to allow for selective deactivation
58 * of wakeup sources via sysfs without disabling the whole key
61 compatible = "gpio-keys";
62 pinctrl-names = "default";
63 pinctrl-0 = <&lidbtn_gpio>;
66 debounce-interval = <20>;
67 gpios = <&gpio1 RK_PA1 GPIO_ACTIVE_LOW>;
69 linux,code = <SW_LID>;
70 linux,input-type = <EV_SW>;
71 wakeup-event-action = <EV_ACT_DEASSERTED>;
77 compatible = "gpio-keys";
78 pinctrl-names = "default";
79 pinctrl-0 = <&pwrbtn_gpio>;
82 debounce-interval = <20>;
83 gpios = <&gpio0 RK_PA5 GPIO_ACTIVE_LOW>;
85 linux,code = <KEY_POWER>;
91 compatible = "gpio-leds";
92 pinctrl-names = "default";
93 pinctrl-0 = <&pwrled_gpio &slpled_gpio>;
96 color = <LED_COLOR_ID_GREEN>;
98 function = LED_FUNCTION_POWER;
99 gpios = <&gpio0 RK_PB3 GPIO_ACTIVE_HIGH>;
100 label = "green:power";
104 color = <LED_COLOR_ID_RED>;
105 default-state = "off";
106 function = LED_FUNCTION_STANDBY;
107 gpios = <&gpio0 RK_PA2 GPIO_ACTIVE_HIGH>;
108 label = "red:standby";
110 retain-state-suspended;
114 /* Power sequence for SDIO WiFi module */
115 sdio_pwrseq: sdio-pwrseq {
116 compatible = "mmc-pwrseq-simple";
118 clock-names = "ext_clock";
119 pinctrl-names = "default";
120 pinctrl-0 = <&wifi_enable_h_gpio>;
121 post-power-on-delay-ms = <100>;
122 power-off-delay-us = <500000>;
124 /* WL_REG_ON on module */
125 reset-gpios = <&gpio0 RK_PB2 GPIO_ACTIVE_LOW>;
128 /* Audio components */
130 compatible = "simple-audio-card";
131 pinctrl-names = "default";
132 pinctrl-0 = <&hp_det_gpio>;
133 simple-audio-card,name = "rockchip,es8316-codec";
134 simple-audio-card,format = "i2s";
135 simple-audio-card,mclk-fs = <256>;
137 simple-audio-card,widgets =
138 "Microphone", "Mic Jack",
139 "Headphone", "Headphones",
140 "Speaker", "Speaker";
141 simple-audio-card,routing =
143 "Headphones", "HPOL",
144 "Headphones", "HPOR",
145 "Speaker Amplifier INL", "HPOL",
146 "Speaker Amplifier INR", "HPOR",
147 "Speaker", "Speaker Amplifier OUTL",
148 "Speaker", "Speaker Amplifier OUTR";
150 simple-audio-card,hp-det-gpio = <&gpio0 RK_PB0 GPIO_ACTIVE_HIGH>;
151 simple-audio-card,aux-devs = <&speaker_amp>;
152 simple-audio-card,pin-switches = "Speaker";
154 simple-audio-card,cpu {
158 simple-audio-card,codec {
159 sound-dai = <&es8316>;
163 speaker_amp: speaker-amplifier {
164 compatible = "simple-audio-amplifier";
165 enable-gpios = <&gpio4 RK_PD3 GPIO_ACTIVE_HIGH>;
166 sound-name-prefix = "Speaker Amplifier";
167 VCC-supply = <&pa_5v>;
171 /* Root power source */
172 vcc_sysin: vcc-sysin {
173 compatible = "regulator-fixed";
174 regulator-name = "vcc_sysin";
179 /* Regulators supplied by vcc_sysin */
180 /* LCD backlight supply */
182 compatible = "regulator-fixed";
183 regulator-name = "vcc_12v";
186 regulator-min-microvolt = <12000000>;
187 regulator-max-microvolt = <12000000>;
188 vin-supply = <&vcc_sysin>;
190 regulator-state-mem {
191 regulator-off-in-suspend;
195 /* Main 3.3 V supply */
196 vcc3v3_sys: wifi_bat: vcc3v3-sys {
197 compatible = "regulator-fixed";
198 regulator-name = "vcc3v3_sys";
201 regulator-min-microvolt = <3300000>;
202 regulator-max-microvolt = <3300000>;
203 vin-supply = <&vcc_sysin>;
205 regulator-state-mem {
206 regulator-on-in-suspend;
210 /* 5 V USB power supply */
211 vcc5v0_usb: pa_5v: vcc5v0-usb-regulator {
212 compatible = "regulator-fixed";
214 gpio = <&gpio1 RK_PB5 GPIO_ACTIVE_HIGH>;
215 pinctrl-names = "default";
216 pinctrl-0 = <&pwr_5v_gpio>;
217 regulator-name = "vcc5v0_usb";
219 regulator-min-microvolt = <5000000>;
220 regulator-max-microvolt = <5000000>;
221 vin-supply = <&vcc_sysin>;
223 regulator-state-mem {
224 regulator-off-in-suspend;
228 /* RK3399 logic supply */
230 compatible = "pwm-regulator";
231 pwms = <&pwm2 0 25000 1>;
232 regulator-name = "vdd_log";
235 regulator-min-microvolt = <800000>;
236 regulator-max-microvolt = <1400000>;
237 vin-supply = <&vcc_sysin>;
239 regulator-state-mem {
240 regulator-on-in-suspend;
244 /* Regulators supplied by vcc3v3_sys */
245 /* 0.9 V supply, always on */
247 compatible = "regulator-fixed";
248 regulator-name = "vcc_0v9";
251 regulator-min-microvolt = <900000>;
252 regulator-max-microvolt = <900000>;
253 vin-supply = <&vcc3v3_sys>;
256 /* S3 1.8 V supply, switched by vcc1v8_s3 */
257 vcca1v8_s3: vcc1v8-s3 {
258 compatible = "regulator-fixed";
259 regulator-name = "vcca1v8_s3";
262 regulator-min-microvolt = <1800000>;
263 regulator-max-microvolt = <1800000>;
264 vin-supply = <&vcc3v3_sys>;
267 /* micro SD card power */
268 vcc3v0_sd: vcc3v0-sd {
269 compatible = "regulator-fixed";
271 gpio = <&gpio0 RK_PA1 GPIO_ACTIVE_HIGH>;
272 pinctrl-names = "default";
273 pinctrl-0 = <&sdmmc0_pwr_h_gpio>;
274 regulator-name = "vcc3v0_sd";
276 regulator-min-microvolt = <3000000>;
277 regulator-max-microvolt = <3000000>;
278 vin-supply = <&vcc3v3_sys>;
280 regulator-state-mem {
281 regulator-off-in-suspend;
285 /* LCD panel power, called VCC3V3_S0 in schematic */
286 vcc3v3_panel: vcc3v3-panel {
287 compatible = "regulator-fixed";
289 gpio = <&gpio1 RK_PC6 GPIO_ACTIVE_HIGH>;
290 pinctrl-names = "default";
291 pinctrl-0 = <&lcdvcc_en_gpio>;
292 regulator-name = "vcc3v3_panel";
294 regulator-min-microvolt = <3300000>;
295 regulator-max-microvolt = <3300000>;
296 regulator-enable-ramp-delay = <100000>;
297 vin-supply = <&vcc3v3_sys>;
299 regulator-state-mem {
300 regulator-off-in-suspend;
304 /* M.2 adapter power, switched by vcc1v8_s3 */
305 vcc3v3_ssd: vcc3v3-ssd {
306 compatible = "regulator-fixed";
307 regulator-name = "vcc3v3_ssd";
308 regulator-min-microvolt = <3300000>;
309 regulator-max-microvolt = <3300000>;
310 vin-supply = <&vcc3v3_sys>;
313 /* Regulators supplied by vcc5v0_usb */
314 /* USB 3 port power supply regulator */
315 vcc5v0_otg: vcc5v0-otg {
316 compatible = "regulator-fixed";
318 gpio = <&gpio4 RK_PD2 GPIO_ACTIVE_HIGH>;
319 pinctrl-names = "default";
320 pinctrl-0 = <&vcc5v0_host_en_gpio>;
321 regulator-name = "vcc5v0_otg";
323 regulator-min-microvolt = <5000000>;
324 regulator-max-microvolt = <5000000>;
325 vin-supply = <&vcc5v0_usb>;
327 regulator-state-mem {
328 regulator-off-in-suspend;
332 /* Regulators supplied by vcc5v0_usb */
333 /* Type C port power supply regulator */
334 vbus_5vout: vbus_typec: vbus-5vout {
335 compatible = "regulator-fixed";
337 gpio = <&gpio1 RK_PA3 GPIO_ACTIVE_HIGH>;
338 pinctrl-names = "default";
339 pinctrl-0 = <&vcc5v0_typec0_en_gpio>;
340 regulator-name = "vbus_5vout";
341 regulator-min-microvolt = <5000000>;
342 regulator-max-microvolt = <5000000>;
343 vin-supply = <&vcc5v0_usb>;
345 regulator-state-mem {
346 regulator-off-in-suspend;
350 /* Regulators supplied by vcc_1v8 */
351 /* Primary 0.9 V LDO */
352 vcca0v9_s3: vcca0v9-s3 {
353 compatible = "regulator-fixed";
354 regulator-name = "vcc0v9_s3";
355 regulator-min-microvolt = <5000000>;
356 regulator-max-microvolt = <5000000>;
357 vin-supply = <&vcc_1v8>;
359 regulator-state-mem {
360 regulator-on-in-suspend;
364 mains_charger: dc-charger {
365 compatible = "gpio-charger";
366 charger-type = "mains";
367 gpios = <&gpio4 RK_PD0 GPIO_ACTIVE_LOW>;
369 /* Also triggered by USB charger */
370 pinctrl-names = "default";
371 pinctrl-0 = <&dc_det_gpio>;
380 cpu-supply = <&vdd_cpu_b>;
384 cpu-supply = <&vdd_cpu_b>;
388 cpu-supply = <&vdd_cpu_l>;
392 cpu-supply = <&vdd_cpu_l>;
396 cpu-supply = <&vdd_cpu_l>;
400 cpu-supply = <&vdd_cpu_l>;
405 pinctrl-names = "default";
406 pinctrl-0 = <&edp_hpd>;
412 #address-cells = <1>;
415 edp_out_panel: endpoint@0 {
417 remote-endpoint = <&panel_in_edp>;
428 mali-supply = <&vdd_gpu>;
437 clock-frequency = <400000>;
438 i2c-scl-falling-time-ns = <4>;
439 i2c-scl-rising-time-ns = <168>;
443 compatible = "rockchip,rk808";
446 clock-output-names = "xin32k", "rk808-clkout2";
447 interrupt-parent = <&gpio3>;
448 interrupts = <10 IRQ_TYPE_LEVEL_LOW>;
449 pinctrl-names = "default";
450 pinctrl-0 = <&pmic_int_l_gpio>;
451 rockchip,system-power-controller;
454 vcc1-supply = <&vcc_sysin>;
455 vcc2-supply = <&vcc_sysin>;
456 vcc3-supply = <&vcc_sysin>;
457 vcc4-supply = <&vcc_sysin>;
458 vcc6-supply = <&vcc_sysin>;
459 vcc7-supply = <&vcc_sysin>;
460 vcc8-supply = <&vcc3v3_sys>;
461 vcc9-supply = <&vcc_sysin>;
462 vcc10-supply = <&vcc_sysin>;
463 vcc11-supply = <&vcc_sysin>;
464 vcc12-supply = <&vcc3v3_sys>;
465 vcc13-supply = <&vcc_sysin>;
466 vcc14-supply = <&vcc_sysin>;
469 /* rk3399 center logic supply */
470 vdd_center: DCDC_REG1 {
471 regulator-name = "vdd_center";
474 regulator-min-microvolt = <750000>;
475 regulator-max-microvolt = <1350000>;
476 regulator-ramp-delay = <6001>;
478 regulator-state-mem {
479 regulator-off-in-suspend;
483 vdd_cpu_l: DCDC_REG2 {
484 regulator-name = "vdd_cpu_l";
487 regulator-min-microvolt = <750000>;
488 regulator-max-microvolt = <1350000>;
489 regulator-ramp-delay = <6001>;
491 regulator-state-mem {
492 regulator-off-in-suspend;
497 regulator-name = "vcc_ddr";
501 regulator-state-mem {
502 regulator-on-in-suspend;
506 vcc_1v8: vcc_wl: DCDC_REG4 {
507 regulator-name = "vcc_1v8";
510 regulator-min-microvolt = <1800000>;
511 regulator-max-microvolt = <1800000>;
513 regulator-state-mem {
514 regulator-on-in-suspend;
515 regulator-suspend-microvolt = <1800000>;
527 vcc1v8_pmupll: LDO_REG3 {
528 regulator-name = "vcc1v8_pmupll";
531 regulator-min-microvolt = <1800000>;
532 regulator-max-microvolt = <1800000>;
534 regulator-state-mem {
535 regulator-on-in-suspend;
536 regulator-suspend-microvolt = <1800000>;
541 regulator-name = "vcc_sdio";
544 regulator-min-microvolt = <1800000>;
545 regulator-max-microvolt = <3000000>;
547 regulator-state-mem {
548 regulator-on-in-suspend;
549 regulator-suspend-microvolt = <3000000>;
553 vcca3v0_codec: LDO_REG5 {
554 regulator-name = "vcca3v0_codec";
557 regulator-min-microvolt = <3000000>;
558 regulator-max-microvolt = <3000000>;
560 regulator-state-mem {
561 regulator-off-in-suspend;
566 regulator-name = "vcc_1v5";
569 regulator-min-microvolt = <1500000>;
570 regulator-max-microvolt = <1500000>;
572 regulator-state-mem {
573 regulator-on-in-suspend;
574 regulator-suspend-microvolt = <1500000>;
578 vcca1v8_codec: LDO_REG7 {
579 regulator-name = "vcca1v8_codec";
582 regulator-min-microvolt = <1800000>;
583 regulator-max-microvolt = <1800000>;
585 regulator-state-mem {
586 regulator-off-in-suspend;
591 regulator-name = "vcc_3v0";
594 regulator-min-microvolt = <3000000>;
595 regulator-max-microvolt = <3000000>;
597 regulator-state-mem {
598 regulator-on-in-suspend;
599 regulator-suspend-microvolt = <3000000>;
603 vcc3v3_s3: SWITCH_REG1 {
604 regulator-name = "vcc3v3_s3";
608 regulator-state-mem {
609 regulator-off-in-suspend;
613 vcc3v3_s0: SWITCH_REG2 {
614 regulator-name = "vcc3v3_s0";
618 regulator-state-mem {
619 regulator-off-in-suspend;
625 vdd_cpu_b: regulator@40 {
626 compatible = "silergy,syr827";
628 fcs,suspend-voltage-selector = <1>;
629 pinctrl-names = "default";
630 pinctrl-0 = <&vsel1_gpio>;
631 regulator-name = "vdd_cpu_b";
634 regulator-min-microvolt = <712500>;
635 regulator-max-microvolt = <1500000>;
636 regulator-ramp-delay = <1000>;
637 vin-supply = <&vcc_1v8>;
639 regulator-state-mem {
640 regulator-off-in-suspend;
644 vdd_gpu: regulator@41 {
645 compatible = "silergy,syr828";
647 fcs,suspend-voltage-selector = <1>;
648 pinctrl-names = "default";
649 pinctrl-0 = <&vsel2_gpio>;
650 regulator-name = "vdd_gpu";
653 regulator-min-microvolt = <712500>;
654 regulator-max-microvolt = <1500000>;
655 regulator-ramp-delay = <1000>;
656 vin-supply = <&vcc_1v8>;
658 regulator-state-mem {
659 regulator-off-in-suspend;
665 clock-frequency = <100000>;
666 i2c-scl-falling-time-ns = <4>;
667 i2c-scl-rising-time-ns = <168>;
671 compatible = "everest,es8316";
673 clocks = <&cru SCLK_I2S_8CH_OUT>;
674 clock-names = "mclk";
675 #sound-dai-cells = <0>;
680 i2c-scl-falling-time-ns = <15>;
681 i2c-scl-rising-time-ns = <450>;
686 i2c-scl-falling-time-ns = <20>;
687 i2c-scl-rising-time-ns = <600>;
691 compatible = "fcs,fusb302";
693 interrupt-parent = <&gpio1>;
694 interrupts = <RK_PA2 IRQ_TYPE_LEVEL_LOW>;
695 pinctrl-names = "default";
696 pinctrl-0 = <&fusb0_int_gpio>;
697 vbus-supply = <&vbus_typec>;
700 compatible = "usb-c-connector";
703 op-sink-microwatt = <1000000>;
706 <PDO_FIXED(5000, 2500, PDO_FIXED_USB_COMM)>;
708 <PDO_FIXED(5000, 1400, PDO_FIXED_USB_COMM)>;
709 try-power-role = "sink";
712 #address-cells = <1>;
747 #sound-dai-cells = <0>;
748 pinctrl-names = "default";
749 pinctrl-0 = <&i2s_8ch_mclk_gpio>, <&i2s1_2ch_bus>;
750 rockchip,capture-channels = <8>;
751 rockchip,playback-channels = <8>;
756 audio-supply = <&vcc_3v0>;
757 gpio1830-supply = <&vcc_3v0>;
758 sdmmc-supply = <&vcc_sdio>;
767 bus-scan-delay-ms = <1000>;
768 ep-gpios = <&gpio2 RK_PD4 GPIO_ACTIVE_HIGH>;
769 max-link-speed = <2>;
771 pinctrl-names = "default";
772 pinctrl-0 = <&pcie_clkreqn_cpm>;
773 vpcie0v9-supply = <&vcca0v9_s3>;
774 vpcie1v8-supply = <&vcca1v8_s3>;
775 vpcie3v3-supply = <&vcc3v3_ssd>;
781 pwrbtn_gpio: pwrbtn-gpio {
782 rockchip,pins = <0 RK_PA5 RK_FUNC_GPIO &pcfg_pull_up>;
785 lidbtn_gpio: lidbtn-gpio {
786 rockchip,pins = <1 RK_PA1 RK_FUNC_GPIO &pcfg_pull_up>;
791 dc_det_gpio: dc-det-gpio {
792 rockchip,pins = <4 RK_PD0 RK_FUNC_GPIO &pcfg_pull_up>;
797 hp_det_gpio: hp-det-gpio {
798 rockchip,pins = <0 RK_PB0 RK_FUNC_GPIO &pcfg_pull_up>;
803 fusb0_int_gpio: fusb0-int-gpio {
804 rockchip,pins = <1 RK_PA2 RK_FUNC_GPIO &pcfg_pull_up>;
809 i2s_8ch_mclk_gpio: i2s-8ch-mclk-gpio {
810 rockchip,pins = <4 RK_PA0 1 &pcfg_pull_none>;
815 lcdvcc_en_gpio: lcdvcc-en-gpio {
816 rockchip,pins = <1 RK_PC6 RK_FUNC_GPIO &pcfg_pull_none>;
819 panel_en_gpio: panel-en-gpio {
820 rockchip,pins = <1 RK_PA0 RK_FUNC_GPIO &pcfg_pull_none>;
823 lcd_panel_reset_gpio: lcd-panel-reset-gpio {
824 rockchip,pins = <4 RK_PD6 RK_FUNC_GPIO &pcfg_pull_up>;
829 pwrled_gpio: pwrled_gpio {
830 rockchip,pins = <0 RK_PB3 RK_FUNC_GPIO &pcfg_pull_none>;
833 slpled_gpio: slpled_gpio {
834 rockchip,pins = <0 RK_PA2 RK_FUNC_GPIO &pcfg_pull_none>;
839 pmic_int_l_gpio: pmic-int-l-gpio {
840 rockchip,pins = <3 RK_PB2 RK_FUNC_GPIO &pcfg_pull_up>;
843 vsel1_gpio: vsel1-gpio {
844 rockchip,pins = <1 RK_PC1 RK_FUNC_GPIO &pcfg_pull_down>;
847 vsel2_gpio: vsel2-gpio {
848 rockchip,pins = <1 RK_PB6 RK_FUNC_GPIO &pcfg_pull_down>;
853 sdmmc0_pwr_h_gpio: sdmmc0-pwr-h-gpio {
854 rockchip,pins = <0 RK_PA1 RK_FUNC_GPIO &pcfg_pull_none>;
860 wifi_enable_h_gpio: wifi-enable-h-gpio {
861 rockchip,pins = <0 RK_PB2 RK_FUNC_GPIO &pcfg_pull_none>;
866 vcc5v0_typec0_en_gpio: vcc5v0-typec0-en-gpio {
867 rockchip,pins = <1 RK_PA3 RK_FUNC_GPIO &pcfg_pull_up>;
872 pwr_5v_gpio: pwr-5v-gpio {
873 rockchip,pins = <1 RK_PB5 RK_FUNC_GPIO &pcfg_pull_none>;
876 vcc5v0_host_en_gpio: vcc5v0-host-en-gpio {
877 rockchip,pins = <4 RK_PD2 RK_FUNC_GPIO &pcfg_pull_none>;
882 bt_wake_gpio: bt-wake-gpio {
883 rockchip,pins = <2 RK_PD3 RK_FUNC_GPIO &pcfg_pull_none>;
886 bt_host_wake_gpio: bt-host-wake-gpio {
887 rockchip,pins = <0 RK_PA4 RK_FUNC_GPIO &pcfg_pull_none>;
890 bt_reset_gpio: bt-reset-gpio {
891 rockchip,pins = <0 RK_PB1 RK_FUNC_GPIO &pcfg_pull_none>;
897 pmu1830-supply = <&vcc_3v0>;
910 vref-supply = <&vcca1v8_s3>;
918 cd-gpios = <&gpio0 RK_PA7 GPIO_ACTIVE_LOW>;
920 pinctrl-names = "default";
921 pinctrl-0 = <&sdmmc_clk &sdmmc_cmd &sdmmc_bus4>;
923 vmmc-supply = <&vcc3v0_sd>;
924 vqmmc-supply = <&vcc_sdio>;
932 keep-power-in-suspend;
933 mmc-pwrseq = <&sdio_pwrseq>;
935 pinctrl-names = "default";
936 pinctrl-0 = <&sdio0_bus4 &sdio0_cmd &sdio0_clk>;
949 max-freq = <10000000>;
953 compatible = "jedec,spi-nor";
956 spi-max-frequency = <10000000>;
966 tcphy0_typec_dp: endpoint {
967 remote-endpoint = <&usbc_dp>;
974 tcphy0_typec_ss: endpoint {
975 remote-endpoint = <&usbc_ss>;
985 /* tshut mode 0:CRU 1:GPIO */
986 rockchip,hw-tshut-mode = <1>;
987 /* tshut polarity 0:LOW 1:HIGH */
988 rockchip,hw-tshut-polarity = <1>;
995 u2phy0_otg: otg-port {
999 u2phy0_host: host-port {
1000 phy-supply = <&vcc5v0_otg>;
1005 u2phy0_typec_hs: endpoint {
1006 remote-endpoint = <&usbc_hs>;
1014 u2phy1_otg: otg-port {
1018 u2phy1_host: host-port {
1019 phy-supply = <&vcc5v0_otg>;
1025 pinctrl-names = "default";
1026 pinctrl-0 = <&uart0_xfer &uart0_cts &uart0_rts>;
1031 compatible = "brcm,bcm4345c5";
1032 clocks = <&rk808 1>;
1033 clock-names = "lpo";
1034 device-wakeup-gpios = <&gpio2 RK_PD3 GPIO_ACTIVE_HIGH>;
1035 host-wakeup-gpios = <&gpio0 RK_PA4 GPIO_ACTIVE_HIGH>;
1036 max-speed = <1500000>;
1037 pinctrl-names = "default";
1038 pinctrl-0 = <&bt_host_wake_gpio &bt_wake_gpio &bt_reset_gpio>;
1039 shutdown-gpios = <&gpio0 RK_PB1 GPIO_ACTIVE_HIGH>;
1040 vbat-supply = <&wifi_bat>;
1041 vddio-supply = <&vcc_wl>;