hc
2023-11-06 e3e12f52b214121840b44c91de5b3e5af5d3eb84
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// SPDX-License-Identifier: GPL-2.0
 
#include <dt-bindings/pinctrl/qcom,pmic-gpio.h>
&pm8994_gpios {
 
   pinctrl-names = "default";
   pinctrl-0 = <&ls_exp_gpio_f &bt_en_gpios>;
 
   ls_exp_gpio_f: pm8994_gpio5 {
       pinconf {
           pins = "gpio5";
           output-low;
           power-source = <2>; // PM8994_GPIO_S4, 1.8V
       };
   };
 
   bt_en_gpios: bt_en_gpios {
       pinconf {
           pins = "gpio19";
           function = PMIC_GPIO_FUNC_NORMAL;
           output-low;
           power-source = <PM8994_GPIO_S4>; // 1.8V
           qcom,drive-strength = <PMIC_GPIO_STRENGTH_LOW>;
           bias-pull-down;
       };
   };
 
   wlan_en_gpios: wlan_en_gpios {
       pinconf {
           pins = "gpio8";
           function = PMIC_GPIO_FUNC_NORMAL;
           output-low;
           power-source = <PM8994_GPIO_S4>; // 1.8V
           qcom,drive-strength = <PMIC_GPIO_STRENGTH_LOW>;
           bias-pull-down;
       };
   };
 
   volume_up_gpio: pm8996_gpio2 {
       pinconf {
           pins = "gpio2";
           function = "normal";
           input-enable;
           drive-push-pull;
           bias-pull-up;
           qcom,drive-strength = <PMIC_GPIO_STRENGTH_NO>;
           power-source = <PM8994_GPIO_S4>; // 1.8V
       };
   };
 
   divclk4_pin_a: divclk4 {
       pinconf {
           pins = "gpio18";
           function = PMIC_GPIO_FUNC_FUNC2;
 
           bias-disable;
           power-source = <PM8994_GPIO_S4>;
       };
   };
 
   usb3_vbus_det_gpio: pm8996_gpio22 {
       pinconf {
           pins = "gpio22";
           function = PMIC_GPIO_FUNC_NORMAL;
           input-enable;
           bias-pull-down;
           qcom,drive-strength = <PMIC_GPIO_STRENGTH_NO>;
           power-source = <PM8994_GPIO_S4>; // 1.8V
       };
   };
};
 
&pmi8994_gpios {
   usb2_vbus_det_gpio: pmi8996_gpio6 {
       pinconf {
           pins = "gpio6";
           function = PMIC_GPIO_FUNC_NORMAL;
           input-enable;
           bias-pull-down;
           qcom,drive-strength = <PMIC_GPIO_STRENGTH_NO>;
           power-source = <PM8994_GPIO_S4>; // 1.8V
       };
   };
};