xref: /freebsd/sys/contrib/device-tree/Bindings/pinctrl/qcom,msm8660-pinctrl.yaml (revision 8d13bc63c0e1d50bc9e47ac1f26329c999bfecf0)
18bab661aSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
28bab661aSEmmanuel Vadot%YAML 1.2
38bab661aSEmmanuel Vadot---
48bab661aSEmmanuel Vadot$id: http://devicetree.org/schemas/pinctrl/qcom,msm8660-pinctrl.yaml#
58bab661aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
68bab661aSEmmanuel Vadot
78bab661aSEmmanuel Vadottitle: Qualcomm MSM8660 TLMM pin controller
88bab661aSEmmanuel Vadot
98bab661aSEmmanuel Vadotmaintainers:
108bab661aSEmmanuel Vadot  - Bjorn Andersson <andersson@kernel.org>
118bab661aSEmmanuel Vadot  - Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
128bab661aSEmmanuel Vadot
138bab661aSEmmanuel Vadotdescription:
148bab661aSEmmanuel Vadot  Top Level Mode Multiplexer pin controller in Qualcomm MSM8660 SoC.
158bab661aSEmmanuel Vadot
168bab661aSEmmanuel Vadotproperties:
178bab661aSEmmanuel Vadot  compatible:
188bab661aSEmmanuel Vadot    const: qcom,msm8660-pinctrl
198bab661aSEmmanuel Vadot
208bab661aSEmmanuel Vadot  reg:
218bab661aSEmmanuel Vadot    maxItems: 1
228bab661aSEmmanuel Vadot
23cb7aa33aSEmmanuel Vadot  interrupts:
24cb7aa33aSEmmanuel Vadot    maxItems: 1
25cb7aa33aSEmmanuel Vadot
268bab661aSEmmanuel Vadot  gpio-reserved-ranges:
278bab661aSEmmanuel Vadot    minItems: 1
288bab661aSEmmanuel Vadot    maxItems: 86
298bab661aSEmmanuel Vadot
308bab661aSEmmanuel Vadot  gpio-line-names:
318bab661aSEmmanuel Vadot    maxItems: 173
328bab661aSEmmanuel Vadot
338bab661aSEmmanuel VadotpatternProperties:
348bab661aSEmmanuel Vadot  "-state$":
358bab661aSEmmanuel Vadot    oneOf:
368bab661aSEmmanuel Vadot      - $ref: "#/$defs/qcom-msm8660-tlmm-state"
378bab661aSEmmanuel Vadot      - patternProperties:
388bab661aSEmmanuel Vadot          "-pins$":
398bab661aSEmmanuel Vadot            $ref: "#/$defs/qcom-msm8660-tlmm-state"
408bab661aSEmmanuel Vadot        additionalProperties: false
418bab661aSEmmanuel Vadot
428bab661aSEmmanuel Vadot$defs:
438bab661aSEmmanuel Vadot  qcom-msm8660-tlmm-state:
448bab661aSEmmanuel Vadot    type: object
458bab661aSEmmanuel Vadot    description:
468bab661aSEmmanuel Vadot      Pinctrl node's client devices use subnodes for desired pin configuration.
478bab661aSEmmanuel Vadot      Client device subnodes use below standard properties.
488bab661aSEmmanuel Vadot    $ref: qcom,tlmm-common.yaml#/$defs/qcom-tlmm-state
49fac71e4eSEmmanuel Vadot    unevaluatedProperties: false
508bab661aSEmmanuel Vadot
518bab661aSEmmanuel Vadot    properties:
528bab661aSEmmanuel Vadot      pins:
538bab661aSEmmanuel Vadot        description:
548bab661aSEmmanuel Vadot          List of gpio pins affected by the properties specified in this
558bab661aSEmmanuel Vadot          subnode.
568bab661aSEmmanuel Vadot        items:
578bab661aSEmmanuel Vadot          oneOf:
588bab661aSEmmanuel Vadot            - pattern: "^gpio([0-9]|[1-9][0-9]|1[0-6][0-9]|17[0-2])$"
598bab661aSEmmanuel Vadot            - enum: [ sdc3_clk, sdc3_cmd, sdc3_data, sdc4_clk, sdc4_cmd, sdc4_data ]
608bab661aSEmmanuel Vadot        minItems: 1
618bab661aSEmmanuel Vadot        maxItems: 36
628bab661aSEmmanuel Vadot
638bab661aSEmmanuel Vadot      function:
648bab661aSEmmanuel Vadot        description:
658bab661aSEmmanuel Vadot          Specify the alternative function to be configured for the specified
668bab661aSEmmanuel Vadot          pins.
678bab661aSEmmanuel Vadot
688bab661aSEmmanuel Vadot        enum: [ gpio, cam_mclk, dsub, ext_gps, gp_clk_0a, gp_clk_0b, gp_clk_1a,
698bab661aSEmmanuel Vadot                gp_clk_1b, gp_clk_2a, gp_clk_2b, gp_mn, gsbi1, gsbi1_spi_cs1_n,
708bab661aSEmmanuel Vadot                gsbi1_spi_cs2a_n, gsbi1_spi_cs2b_n, gsbi1_spi_cs3_n, gsbi2,
718bab661aSEmmanuel Vadot                gsbi2_spi_cs1_n, gsbi2_spi_cs2_n, gsbi2_spi_cs3_n, gsbi3,
728bab661aSEmmanuel Vadot                gsbi3_spi_cs1_n, gsbi3_spi_cs2_n, gsbi3_spi_cs3_n, gsbi4,
738bab661aSEmmanuel Vadot                gsbi5, gsbi6, gsbi7, gsbi8, gsbi9, gsbi10, gsbi11, gsbi12,
748bab661aSEmmanuel Vadot                hdmi, i2s, lcdc, mdp_vsync, mi2s, pcm, ps_hold, sdc1, sdc2,
758bab661aSEmmanuel Vadot                sdc5, tsif1, tsif2, usb_fs1, usb_fs1_oe_n, usb_fs2,
768bab661aSEmmanuel Vadot                usb_fs2_oe_n, vfe, vsens_alarm, ebi2, ebi2cs ]
778bab661aSEmmanuel Vadot
788bab661aSEmmanuel Vadot    required:
798bab661aSEmmanuel Vadot      - pins
808bab661aSEmmanuel Vadot
818bab661aSEmmanuel VadotallOf:
828bab661aSEmmanuel Vadot  - $ref: /schemas/pinctrl/qcom,tlmm-common.yaml#
838bab661aSEmmanuel Vadot
848bab661aSEmmanuel Vadotrequired:
858bab661aSEmmanuel Vadot  - compatible
868bab661aSEmmanuel Vadot  - reg
878bab661aSEmmanuel Vadot
88*8d13bc63SEmmanuel VadotunevaluatedProperties: false
898bab661aSEmmanuel Vadot
908bab661aSEmmanuel Vadotexamples:
918bab661aSEmmanuel Vadot  - |
928bab661aSEmmanuel Vadot    #include <dt-bindings/interrupt-controller/arm-gic.h>
938bab661aSEmmanuel Vadot    tlmm: pinctrl@800000 {
948bab661aSEmmanuel Vadot        compatible = "qcom,msm8660-pinctrl";
958bab661aSEmmanuel Vadot        reg = <0x800000 0x4000>;
968bab661aSEmmanuel Vadot
978bab661aSEmmanuel Vadot        gpio-controller;
988bab661aSEmmanuel Vadot        gpio-ranges = <&tlmm 0 0 173>;
998bab661aSEmmanuel Vadot        #gpio-cells = <2>;
1008bab661aSEmmanuel Vadot        interrupts = <0 16 0x4>;
1018bab661aSEmmanuel Vadot        interrupt-controller;
1028bab661aSEmmanuel Vadot        #interrupt-cells = <2>;
1038bab661aSEmmanuel Vadot
1048bab661aSEmmanuel Vadot        gsbi3-i2c-state {
1058bab661aSEmmanuel Vadot            pins = "gpio43", "gpio44";
1068bab661aSEmmanuel Vadot            function = "gsbi3";
1078bab661aSEmmanuel Vadot            drive-strength = <8>;
1088bab661aSEmmanuel Vadot            bias-disable;
1098bab661aSEmmanuel Vadot        };
1108bab661aSEmmanuel Vadot    };
111