|
| 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,ipq5332-tlmm.yaml# |
| 5 | +$schema: http://devicetree.org/meta-schemas/core.yaml# |
| 6 | + |
| 7 | +title: Qualcomm IPQ5332 TLMM pin controller |
| 8 | + |
| 9 | +maintainers: |
| 10 | + - Bjorn Andersson <[email protected]> |
| 11 | + - Krzysztof Kozlowski <[email protected]> |
| 12 | + |
| 13 | +description: | |
| 14 | + Top Level Mode Multiplexer pin controller in Qualcomm IPQ5332 SoC. |
| 15 | +
|
| 16 | +allOf: |
| 17 | + - $ref: /schemas/pinctrl/qcom,tlmm-common.yaml# |
| 18 | + |
| 19 | +properties: |
| 20 | + compatible: |
| 21 | + const: qcom,ipq5332-tlmm |
| 22 | + |
| 23 | + reg: |
| 24 | + maxItems: 1 |
| 25 | + |
| 26 | + interrupts: |
| 27 | + maxItems: 1 |
| 28 | + |
| 29 | + interrupt-controller: true |
| 30 | + "#interrupt-cells": true |
| 31 | + gpio-controller: true |
| 32 | + "#gpio-cells": true |
| 33 | + gpio-ranges: true |
| 34 | + wakeup-parent: true |
| 35 | + |
| 36 | + gpio-reserved-ranges: |
| 37 | + minItems: 1 |
| 38 | + maxItems: 27 |
| 39 | + |
| 40 | + gpio-line-names: |
| 41 | + maxItems: 53 |
| 42 | + |
| 43 | +patternProperties: |
| 44 | + "-state$": |
| 45 | + oneOf: |
| 46 | + - $ref: "#/$defs/qcom-ipq5332-tlmm-state" |
| 47 | + - patternProperties: |
| 48 | + "-pins$": |
| 49 | + $ref: "#/$defs/qcom-ipq5332-tlmm-state" |
| 50 | + additionalProperties: false |
| 51 | + |
| 52 | +$defs: |
| 53 | + qcom-ipq5332-tlmm-state: |
| 54 | + type: object |
| 55 | + description: |
| 56 | + Pinctrl node's client devices use subnodes for desired pin configuration. |
| 57 | + Client device subnodes use below standard properties. |
| 58 | + $ref: qcom,tlmm-common.yaml#/$defs/qcom-tlmm-state |
| 59 | + |
| 60 | + properties: |
| 61 | + pins: |
| 62 | + description: |
| 63 | + List of gpio pins affected by the properties specified in this |
| 64 | + subnode. |
| 65 | + items: |
| 66 | + pattern: "^gpio([0-9]|[1-4][0-9]|5[0-2])$" |
| 67 | + minItems: 1 |
| 68 | + maxItems: 36 |
| 69 | + |
| 70 | + function: |
| 71 | + description: |
| 72 | + Specify the alternative function to be configured for the specified |
| 73 | + pins. |
| 74 | + |
| 75 | + enum: [ atest_char, atest_char0, atest_char1, atest_char2, atest_char3, |
| 76 | + atest_tic, audio_pri, audio_pri0, audio_pri1, audio_sec, |
| 77 | + audio_sec0, audio_sec1, blsp0_i2c, blsp0_spi, blsp0_uart0, |
| 78 | + blsp0_uart1, blsp1_i2c0, blsp1_i2c1, blsp1_spi0, blsp1_spi1, |
| 79 | + blsp1_uart0, blsp1_uart1, blsp1_uart2, blsp2_i2c0, blsp2_i2c1, |
| 80 | + blsp2_spi, blsp2_spi0, blsp2_spi1, core_voltage, cri_trng0, |
| 81 | + cri_trng1, cri_trng2, cri_trng3, cxc_clk, cxc_data, dbg_out, |
| 82 | + gcc_plltest, gcc_tlmm, gpio, lock_det, mac0, mac1, mdc0, mdc1, |
| 83 | + mdio0, mdio1, pc, pcie0_clk, pcie0_wake, pcie1_clk, pcie1_wake, |
| 84 | + pcie2_clk, pcie2_wake, pll_test, prng_rosc0, prng_rosc1, |
| 85 | + prng_rosc2, prng_rosc3, pta, pwm0, pwm1, pwm2, pwm3, |
| 86 | + qdss_cti_trig_in_a0, qdss_cti_trig_in_a1, qdss_cti_trig_in_b0, |
| 87 | + qdss_cti_trig_in_b1, qdss_cti_trig_out_a0, |
| 88 | + qdss_cti_trig_out_a1, qdss_cti_trig_out_b0, |
| 89 | + qdss_cti_trig_out_b1, qdss_traceclk_a, qdss_traceclk_b, |
| 90 | + qdss_tracectl_a, qdss_tracectl_b, qdss_tracedata_a, |
| 91 | + qdss_tracedata_b, qspi_data, qspi_clk, qspi_cs, resout, rx0, |
| 92 | + rx1, sdc_data, sdc_clk, sdc_cmd, tsens_max, wci_txd, wci_rxd, |
| 93 | + wsi_clk, wsi_clk3, wsi_data, wsi_data3, wsis_reset, xfem ] |
| 94 | + |
| 95 | + bias-pull-down: true |
| 96 | + bias-pull-up: true |
| 97 | + bias-disable: true |
| 98 | + drive-strength: true |
| 99 | + input-enable: true |
| 100 | + output-high: true |
| 101 | + output-low: true |
| 102 | + |
| 103 | + required: |
| 104 | + - pins |
| 105 | + |
| 106 | + additionalProperties: false |
| 107 | + |
| 108 | +required: |
| 109 | + - compatible |
| 110 | + - reg |
| 111 | + |
| 112 | +additionalProperties: false |
| 113 | + |
| 114 | +examples: |
| 115 | + - | |
| 116 | + #include <dt-bindings/interrupt-controller/arm-gic.h> |
| 117 | +
|
| 118 | + tlmm: pinctrl@1000000 { |
| 119 | + compatible = "qcom,ipq5332-tlmm"; |
| 120 | + reg = <0x01000000 0x300000>; |
| 121 | + gpio-controller; |
| 122 | + #gpio-cells = <0x2>; |
| 123 | + gpio-ranges = <&tlmm 0 0 53>; |
| 124 | + interrupts = <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>; |
| 125 | + interrupt-controller; |
| 126 | + #interrupt-cells = <0x2>; |
| 127 | +
|
| 128 | + serial0-state { |
| 129 | + pins = "gpio18", "gpio19"; |
| 130 | + function = "blsp0_uart0"; |
| 131 | + drive-strength = <8>; |
| 132 | + bias-pull-up; |
| 133 | + }; |
| 134 | + }; |
0 commit comments