1 # SPDX-License-Identifier: (GPL-2.0-only OR BS 2 %YAML 1.2 3 --- 4 $id: http://devicetree.org/schemas/pinctrl/qco 5 $schema: http://devicetree.org/meta-schemas/co 6 7 title: Qualcomm Technologies, Inc. SM6375 TLMM 8 9 maintainers: 10 - Konrad Dybcio <konradybcio@kernel.org> 11 12 description: 13 Top Level Mode Multiplexer pin controller in 14 15 allOf: 16 - $ref: /schemas/pinctrl/qcom,tlmm-common.ya 17 18 properties: 19 compatible: 20 const: qcom,sm6375-tlmm 21 22 reg: 23 maxItems: 1 24 25 interrupts: 26 maxItems: 1 27 28 gpio-reserved-ranges: true 29 30 patternProperties: 31 "-state$": 32 oneOf: 33 - $ref: "#/$defs/qcom-sm6375-tlmm-state" 34 - patternProperties: 35 "-pins$": 36 $ref: "#/$defs/qcom-sm6375-tlmm-st 37 additionalProperties: false 38 39 $defs: 40 qcom-sm6375-tlmm-state: 41 type: object 42 description: 43 Pinctrl node's client devices use subnod 44 Client device subnodes use below standar 45 $ref: qcom,tlmm-common.yaml#/$defs/qcom-tl 46 unevaluatedProperties: false 47 48 properties: 49 pins: 50 description: 51 List of gpio pins affected by the pr 52 subnode. 53 items: 54 oneOf: 55 - pattern: "^gpio([0-9]|[1-9][0-9] 56 - enum: [ ufs_reset, sdc1_clk, sdc 57 sdc2_cmd, sdc2_data ] 58 minItems: 1 59 maxItems: 36 60 61 function: 62 description: 63 Specify the alternative function to 64 pins. 65 66 enum: [ adsp_ext, agera_pll, atest_cha 67 atest_char2, atest_char3, ates 68 atest_usb1, atest_usb10, atest 69 atest_usb13, atest_usb2, atest 70 atest_usb22, atest_usb23, audi 71 cci_async, cci_i2c, cci_timer0 72 cci_timer3, cci_timer4, cri_tr 73 ddr_pxi0, ddr_pxi1, ddr_pxi2, 74 gcc_gp1, gcc_gp2, gcc_gp3, gp_ 75 gps_tx, ibi_i3c, jitter_bist, 76 m_voc, mclk, mdp_vsync, mdp_vs 77 mdp_vsync3, mi2s_0, mi2s_1, mi 78 nav_pps, pa_indicator, phase_f 79 phase_flag11, phase_flag12, ph 80 phase_flag15, phase_flag16, ph 81 phase_flag19, phase_flag2, pha 82 phase_flag22, phase_flag23, ph 83 phase_flag26, phase_flag27, ph 84 phase_flag3, phase_flag30, pha 85 phase_flag5, phase_flag6, phas 86 phase_flag9, pll_bist, pll_byp 87 prng_rosc0, prng_rosc1, prng_r 88 qdss_gpio, qdss_gpio0, qdss_gp 89 qdss_gpio12, qdss_gpio13, qdss 90 qdss_gpio2, qdss_gpio3, qdss_g 91 qdss_gpio7, qdss_gpio8, qdss_g 92 qlink0_request, qlink0_wmss, q 93 qlink1_wmss, qup00, qup01, qup 94 qup12, qup13_f1, qup13_f2, qup 95 sp_cmu, tgu_ch0, tgu_ch1, tgu_ 96 tsense_pwm2, uim1_clk, uim1_da 97 uim2_clk, uim2_data, uim2_pres 98 usb_phy, vfr_1, vsense_trigger 99 wlan2_adc0, wlan2_adc1 ] 100 101 required: 102 - pins 103 104 required: 105 - compatible 106 - reg 107 108 unevaluatedProperties: false 109 110 examples: 111 - | 112 #include <dt-bindings/interrupt-controller 113 pinctrl@500000 { 114 compatible = "qcom,sm6375-tlmm"; 115 reg = <0x00500000 0x800000>; 116 interrupts = <GIC_SPI 227 IRQ_TYPE_LEV 117 gpio-controller; 118 #gpio-cells = <2>; 119 interrupt-controller; 120 #interrupt-cells = <2>; 121 gpio-ranges = <&tlmm 0 0 157>; /* GPIO 122 123 gpio-wo-subnode-state { 124 pins = "gpio1"; 125 function = "gpio"; 126 }; 127 128 uart-w-subnodes-state { 129 rx-pins { 130 pins = "gpio18"; 131 function = "qup13_f2"; 132 bias-pull-up; 133 }; 134 135 tx-pins { 136 pins = "gpio19"; 137 function = "qup13_f2"; 138 bias-disable; 139 }; 140 }; 141 }; 142 ...
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.