~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/pinctrl/qcom,sc7280-pinctrl.yaml

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/devicetree/bindings/pinctrl/qcom,sc7280-pinctrl.yaml (Version linux-6.12-rc7) and /Documentation/devicetree/bindings/pinctrl/qcom,sc7280-pinctrl.yaml (Version linux-5.18.19)


  1 # SPDX-License-Identifier: (GPL-2.0-only OR BS      1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2 %YAML 1.2                                           2 %YAML 1.2
  3 ---                                                 3 ---
  4 $id: http://devicetree.org/schemas/pinctrl/qco      4 $id: http://devicetree.org/schemas/pinctrl/qcom,sc7280-pinctrl.yaml#
  5 $schema: http://devicetree.org/meta-schemas/co      5 $schema: http://devicetree.org/meta-schemas/core.yaml#
  6                                                     6 
  7 title: Qualcomm Technologies, Inc. SC7280 TLMM      7 title: Qualcomm Technologies, Inc. SC7280 TLMM block
  8                                                     8 
  9 maintainers:                                        9 maintainers:
 10   - Bjorn Andersson <andersson@kernel.org>      !!  10   - Rajendra Nayak <rnayak@codeaurora.org>
 11                                                    11 
 12 description:                                   !!  12 description: |
 13   Top Level Mode Multiplexer pin controller in !!  13   This binding describes the Top Level Mode Multiplexer block found in the
                                                   >>  14   SC7280 platform.
 14                                                    15 
 15 properties:                                        16 properties:
 16   compatible:                                      17   compatible:
 17     const: qcom,sc7280-pinctrl                     18     const: qcom,sc7280-pinctrl
 18                                                    19 
 19   reg:                                             20   reg:
 20     maxItems: 1                                    21     maxItems: 1
 21                                                    22 
 22   interrupts:                                      23   interrupts:
 23     description: Specifies the TLMM summary IR     24     description: Specifies the TLMM summary IRQ
 24     maxItems: 1                                    25     maxItems: 1
 25                                                    26 
 26   gpio-reserved-ranges:                        !!  27   interrupt-controller: true
 27     minItems: 1                                << 
 28     maxItems: 88                               << 
 29                                                    28 
 30   gpio-line-names:                             !!  29   '#interrupt-cells':
 31     maxItems: 175                              !!  30     description:
                                                   >>  31       Specifies the PIN numbers and Flags, as defined in defined in
                                                   >>  32       include/dt-bindings/interrupt-controller/irq.h
                                                   >>  33     const: 2
                                                   >>  34 
                                                   >>  35   gpio-controller: true
                                                   >>  36 
                                                   >>  37   '#gpio-cells':
                                                   >>  38     description: Specifying the pin number and flags, as defined in
                                                   >>  39       include/dt-bindings/gpio/gpio.h
                                                   >>  40     const: 2
 32                                                    41 
 33 patternProperties:                             !!  42   gpio-ranges:
 34   "-state$":                                   !!  43     maxItems: 1
 35     oneOf:                                     << 
 36       - $ref: "#/$defs/qcom-sc7280-tlmm-state" << 
 37       - patternProperties:                     << 
 38           "-pins$":                            << 
 39             $ref: "#/$defs/qcom-sc7280-tlmm-st << 
 40         additionalProperties: false            << 
 41                                                    44 
 42 $defs:                                         !!  45   wakeup-parent:
 43   qcom-sc7280-tlmm-state:                      !!  46     maxItems: 1
                                                   >>  47 
                                                   >>  48 #PIN CONFIGURATION NODES
                                                   >>  49 patternProperties:
                                                   >>  50   '-pins$':
 44     type: object                                   51     type: object
 45     description:                                   52     description:
 46       Pinctrl node's client devices use subnod     53       Pinctrl node's client devices use subnodes for desired pin configuration.
 47       Client device subnodes use below standar     54       Client device subnodes use below standard properties.
 48     $ref: qcom,tlmm-common.yaml#/$defs/qcom-tl !!  55     $ref: "/schemas/pinctrl/pincfg-node.yaml"
 49     unevaluatedProperties: false               << 
 50                                                    56 
 51     properties:                                    57     properties:
 52       pins:                                        58       pins:
 53         description:                               59         description:
 54           List of gpio pins affected by the pr     60           List of gpio pins affected by the properties specified in this
 55           subnode.                                 61           subnode.
 56         items:                                     62         items:
 57           oneOf:                                   63           oneOf:
 58             - pattern: "^gpio([0-9]|[1-9][0-9] !!  64             - pattern: "^gpio([0-9]|[1-9][0-9]|1[0-7][0-4])$"
 59             - enum: [ sdc1_rclk, sdc1_clk, sdc     65             - enum: [ sdc1_rclk, sdc1_clk, sdc1_cmd, sdc1_data, sdc2_clk,
 60                       sdc2_cmd, sdc2_data, ufs     66                       sdc2_cmd, sdc2_data, ufs_reset ]
 61         minItems: 1                                67         minItems: 1
 62         maxItems: 16                               68         maxItems: 16
 63                                                    69 
 64       function:                                    70       function:
 65         description:                               71         description:
 66           Specify the alternative function to      72           Specify the alternative function to be configured for the specified
 67           pins.                                    73           pins.
 68                                                    74 
 69         enum: [ atest_char, atest_char0, atest     75         enum: [ atest_char, atest_char0, atest_char1, atest_char2,
 70                 atest_char3, atest_usb0, atest     76                 atest_char3, atest_usb0, atest_usb00, atest_usb01,
 71                 atest_usb02, atest_usb03, ates     77                 atest_usb02, atest_usb03, atest_usb1, atest_usb10,
 72                 atest_usb11, atest_usb12, ates     78                 atest_usb11, atest_usb12, atest_usb13, audio_ref,
 73                 cam_mclk, cci_async, cci_i2c,      79                 cam_mclk, cci_async, cci_i2c, cci_timer0, cci_timer1,
 74                 cci_timer2, cci_timer3, cci_ti     80                 cci_timer2, cci_timer3, cci_timer4, cmu_rng0, cmu_rng1,
 75                 cmu_rng2, cmu_rng3, coex_uart1     81                 cmu_rng2, cmu_rng3, coex_uart1, cri_trng, cri_trng0,
 76                 cri_trng1, dbg_out, ddr_bist,      82                 cri_trng1, dbg_out, ddr_bist, ddr_pxi0, ddr_pxi1, dp_hot,
 77                 dp_lcd, edp_hot, edp_lcd, gcc_     83                 dp_lcd, edp_hot, edp_lcd, gcc_gp1, gcc_gp2, gcc_gp3,
 78                 gpio, host2wlan_sol, ibi_i3c,      84                 gpio, host2wlan_sol, ibi_i3c, jitter_bist, lpass_slimbus,
 79                 mdp_vsync, mdp_vsync0, mdp_vsy     85                 mdp_vsync, mdp_vsync0, mdp_vsync1, mdp_vsync2, mdp_vsync3,
 80                 mdp_vsync4, mdp_vsync5, mi2s0_     86                 mdp_vsync4, mdp_vsync5, mi2s0_data0, mi2s0_data1, mi2s0_sck,
 81                 mi2s0_ws, mi2s1_data0, mi2s1_d     87                 mi2s0_ws, mi2s1_data0, mi2s1_data1, mi2s1_sck, mi2s1_ws,
 82                 mi2s2_data0, mi2s2_data1, mi2s     88                 mi2s2_data0, mi2s2_data1, mi2s2_sck, mi2s2_ws, mss_grfc0,
 83                 mss_grfc1, mss_grfc10, mss_grf     89                 mss_grfc1, mss_grfc10, mss_grfc11, mss_grfc12, mss_grfc2,
 84                 mss_grfc3, mss_grfc4, mss_grfc     90                 mss_grfc3, mss_grfc4, mss_grfc5, mss_grfc6, mss_grfc7,
 85                 mss_grfc8, mss_grfc9, nav_gpio     91                 mss_grfc8, mss_grfc9, nav_gpio0, nav_gpio1, nav_gpio2,
 86                 pa_indicator, pcie0_clkreqn, p     92                 pa_indicator, pcie0_clkreqn, pcie1_clkreqn, phase_flag,
 87                 pll_bist, pll_bypassnl, pll_cl     93                 pll_bist, pll_bypassnl, pll_clk, pll_reset, pri_mi2s, prng_rosc,
 88                 qdss, qdss_cti, qlink0_enable,     94                 qdss, qdss_cti, qlink0_enable, qlink0_request, qlink0_wmss,
 89                 qlink1_enable, qlink1_request,     95                 qlink1_enable, qlink1_request, qlink1_wmss, qspi_clk, qspi_cs,
 90                 qspi_data, qup00, qup01, qup02     96                 qspi_data, qup00, qup01, qup02, qup03, qup04, qup05, qup06, qup07,
 91                 qup10, qup11, qup12, qup13, qu     97                 qup10, qup11, qup12, qup13, qup14, qup15, qup16, qup17,
 92                 sdc40, sdc41, sdc42, sdc43, sd     98                 sdc40, sdc41, sdc42, sdc43, sdc4_clk, sdc4_cmd, sd_write,
 93                 sec_mi2s, tb_trig, tgu_ch0, tg     99                 sec_mi2s, tb_trig, tgu_ch0, tgu_ch1, tsense_pwm1,
 94                 tsense_pwm2, uim0_clk, uim0_da    100                 tsense_pwm2, uim0_clk, uim0_data, uim0_present, uim0_reset,
 95                 uim1_clk, uim1_data, uim1_pres    101                 uim1_clk, uim1_data, uim1_present, uim1_reset, usb2phy_ac,
 96                 usb_phy, vfr_0, vfr_1, vsense_    102                 usb_phy, vfr_0, vfr_1, vsense_trigger ]
 97                                                   103 
                                                   >> 104       drive-strength:
                                                   >> 105         enum: [2, 4, 6, 8, 10, 12, 14, 16]
                                                   >> 106         default: 2
                                                   >> 107         description:
                                                   >> 108           Selects the drive strength for the specified pins, in mA.
                                                   >> 109 
                                                   >> 110       bias-pull-down: true
                                                   >> 111 
                                                   >> 112       bias-pull-up: true
                                                   >> 113 
                                                   >> 114       bias-disable: true
                                                   >> 115 
                                                   >> 116       output-high: true
                                                   >> 117 
                                                   >> 118       output-low: true
                                                   >> 119 
 98     required:                                     120     required:
 99       - pins                                      121       - pins
                                                   >> 122       - function
                                                   >> 123 
                                                   >> 124     additionalProperties: false
100                                                   125 
101 allOf:                                            126 allOf:
102   - $ref: /schemas/pinctrl/qcom,tlmm-common.ya !! 127   - $ref: "pinctrl.yaml#"
103                                                   128 
104 required:                                         129 required:
105   - compatible                                    130   - compatible
106   - reg                                           131   - reg
                                                   >> 132   - interrupts
                                                   >> 133   - interrupt-controller
                                                   >> 134   - '#interrupt-cells'
                                                   >> 135   - gpio-controller
                                                   >> 136   - '#gpio-cells'
                                                   >> 137   - gpio-ranges
107                                                   138 
108 unevaluatedProperties: false                   !! 139 additionalProperties: false
109                                                   140 
110 examples:                                         141 examples:
111   - |                                             142   - |
112     #include <dt-bindings/interrupt-controller !! 143         #include <dt-bindings/interrupt-controller/arm-gic.h>
113     tlmm: pinctrl@f000000 {                    !! 144         tlmm: pinctrl@f000000 {
114         compatible = "qcom,sc7280-pinctrl";    !! 145                 compatible = "qcom,sc7280-pinctrl";
115         reg = <0xf000000 0x1000000>;           !! 146                 reg = <0xf000000 0x1000000>;
116         interrupts = <GIC_SPI 208 IRQ_TYPE_LEV !! 147                 interrupts = <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>;
117         gpio-controller;                       !! 148                 gpio-controller;
118         #gpio-cells = <2>;                     !! 149                 #gpio-cells = <2>;
119         interrupt-controller;                  !! 150                 interrupt-controller;
120         #interrupt-cells = <2>;                !! 151                 #interrupt-cells = <2>;
121         gpio-ranges = <&tlmm 0 0 175>;         !! 152                 gpio-ranges = <&tlmm 0 0 175>;
122         wakeup-parent = <&pdc>;                !! 153                 wakeup-parent = <&pdc>;
123                                                !! 154 
124         qup_uart5_default: qup-uart5-state {   !! 155                 qup_uart5_default: qup-uart5-pins {
125             pins = "gpio46", "gpio47";         !! 156                         pins = "gpio46", "gpio47";
126             function = "qup13";                !! 157                         function = "qup13";
127             drive-strength = <2>;              !! 158                         drive-strength = <2>;
128             bias-disable;                      !! 159                         bias-disable;
                                                   >> 160                 };
129         };                                        161         };
130     };                                         << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php