xref: /freebsd/sys/contrib/device-tree/Bindings/pinctrl/qcom,sm6115-pinctrl.yaml (revision 8ddb146abcdf061be9f2c0db7e391697dafad85c)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/pinctrl/qcom,sm6115-pinctrl.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm Technologies, Inc. SM6115, SM4250 TLMM block
8
9maintainers:
10  - Iskren Chernev <iskren.chernev@gmail.com>
11
12description:
13  This binding describes the Top Level Mode Multiplexer block found in the
14  SM4250/6115 platforms.
15
16properties:
17  compatible:
18    const: qcom,sm6115-tlmm
19
20  reg:
21    minItems: 3
22    maxItems: 3
23
24  reg-names:
25    items:
26      - const: west
27      - const: south
28      - const: east
29
30  interrupts:
31    description: Specifies the TLMM summary IRQ
32    maxItems: 1
33
34  interrupt-controller: true
35
36  '#interrupt-cells':
37    description:
38      Specifies the PIN numbers and Flags, as defined in defined in
39      include/dt-bindings/interrupt-controller/irq.h
40    const: 2
41
42  gpio-controller: true
43
44  '#gpio-cells':
45    description: Specifying the pin number and flags, as defined in
46      include/dt-bindings/gpio/gpio.h
47    const: 2
48
49  gpio-ranges:
50    maxItems: 1
51
52  wakeup-parent:
53    maxItems: 1
54
55#PIN CONFIGURATION NODES
56patternProperties:
57  '-state$':
58    oneOf:
59      - $ref: "#/$defs/qcom-sm6115-tlmm-state"
60      - patternProperties:
61          ".*":
62            $ref: "#/$defs/qcom-sm6115-tlmm-state"
63
64'$defs':
65  qcom-sm6115-tlmm-state:
66    type: object
67    description:
68      Pinctrl node's client devices use subnodes for desired pin configuration.
69      Client device subnodes use below standard properties.
70    $ref: "qcom,tlmm-common.yaml#/$defs/qcom-tlmm-state"
71
72    properties:
73      pins:
74        description:
75          List of gpio pins affected by the properties specified in this
76          subnode.
77        items:
78          oneOf:
79            - pattern: "^gpio([0-9]|[1-9][0-9]|10[0-9]|11[0-2])$"
80            - enum: [ sdc1_rclk, sdc1_clk, sdc1_cmd, sdc1_data,
81                      sdc2_clk, sdc2_cmd, sdc2_data, ufs_reset ]
82        minItems: 1
83        maxItems: 36
84
85      function:
86        description:
87          Specify the alternative function to be configured for the specified
88          pins.
89
90        enum: [ adsp_ext, agera_pll, atest, cam_mclk, cci_async, cci_i2c,
91                cci_timer, cri_trng, dac_calib, dbg_out, ddr_bist, ddr_pxi0,
92                ddr_pxi1, ddr_pxi2, ddr_pxi3, gcc_gp1, gcc_gp2, gcc_gp3, gpio,
93                gp_pdm0, gp_pdm1, gp_pdm2, gsm0_tx, gsm1_tx, jitter_bist,
94                mdp_vsync, mdp_vsync_out_0, mdp_vsync_out_1, mpm_pwr, mss_lte,
95                m_voc, nav_gpio, pa_indicator, pbs, pbs_out, phase_flag,
96                pll_bist, pll_bypassnl, pll_reset, prng_rosc, qdss_cti,
97                qdss_gpio, qup0, qup1, qup2, qup3, qup4, qup5, sdc1_tb,
98                sdc2_tb, sd_write, ssbi_wtr1, tgu, tsense_pwm, uim1_clk,
99                uim1_data, uim1_present, uim1_reset, uim2_clk, uim2_data,
100                uim2_present, uim2_reset, usb_phy, vfr_1, vsense_trigger,
101                wlan1_adc0, elan1_adc1 ]
102
103      drive-strength:
104        enum: [2, 4, 6, 8, 10, 12, 14, 16]
105        default: 2
106        description:
107          Selects the drive strength for the specified pins, in mA.
108
109      bias-pull-down: true
110
111      bias-pull-up: true
112
113      bias-disable: true
114
115      output-high: true
116
117      output-low: true
118
119    required:
120      - pins
121
122    additionalProperties: false
123
124allOf:
125  - $ref: "pinctrl.yaml#"
126
127required:
128  - compatible
129  - reg
130  - reg-names
131  - interrupts
132  - interrupt-controller
133  - '#interrupt-cells'
134  - gpio-controller
135  - '#gpio-cells'
136  - gpio-ranges
137
138additionalProperties: false
139
140examples:
141  - |
142        #include <dt-bindings/interrupt-controller/arm-gic.h>
143        tlmm: pinctrl@500000 {
144                compatible = "qcom,sm6115-tlmm";
145                reg = <0x500000 0x400000>,
146                        <0x900000 0x400000>,
147                        <0xd00000 0x400000>;
148                reg-names = "west", "south", "east";
149                interrupts = <GIC_SPI 227 IRQ_TYPE_LEVEL_HIGH>;
150                gpio-controller;
151                #gpio-cells = <2>;
152                interrupt-controller;
153                #interrupt-cells = <2>;
154                gpio-ranges = <&tlmm 0 0 114>;
155
156                sdc2_on_state: sdc2-on-state {
157                        clk {
158                                pins = "sdc2_clk";
159                                bias-disable;
160                                drive-strength = <16>;
161                        };
162
163                        cmd {
164                                pins = "sdc2_cmd";
165                                bias-pull-up;
166                                drive-strength = <10>;
167                        };
168
169                        data {
170                                pins = "sdc2_data";
171                                bias-pull-up;
172                                drive-strength = <10>;
173                        };
174
175                        sd-cd {
176                                pins = "gpio88";
177                                function = "gpio";
178                                bias-pull-up;
179                                drive-strength = <2>;
180                        };
181                };
182        };
183