xref: /freebsd/sys/contrib/device-tree/Bindings/pinctrl/qcom,mdm9615-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,mdm9615-pinctrl.yaml#
58bab661aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
68bab661aSEmmanuel Vadot
78bab661aSEmmanuel Vadottitle: Qualcomm Technologies, Inc. MDM9615 TLMM block
88bab661aSEmmanuel Vadot
98bab661aSEmmanuel Vadotmaintainers:
108bab661aSEmmanuel Vadot  - Bjorn Andersson <andersson@kernel.org>
118bab661aSEmmanuel Vadot
128bab661aSEmmanuel Vadotdescription: Top Level Mode Multiplexer pin controller in Qualcomm MDM9615 SoC.
138bab661aSEmmanuel Vadot
148bab661aSEmmanuel Vadot$ref: /schemas/pinctrl/qcom,tlmm-common.yaml#
158bab661aSEmmanuel Vadot
168bab661aSEmmanuel Vadotproperties:
178bab661aSEmmanuel Vadot  compatible:
188bab661aSEmmanuel Vadot    const: qcom,mdm9615-pinctrl
198bab661aSEmmanuel Vadot
208bab661aSEmmanuel Vadot  reg:
218bab661aSEmmanuel Vadot    maxItems: 1
228bab661aSEmmanuel Vadot
23cb7aa33aSEmmanuel Vadot  interrupts:
24cb7aa33aSEmmanuel Vadot    maxItems: 1
25cb7aa33aSEmmanuel Vadot
268bab661aSEmmanuel VadotpatternProperties:
278bab661aSEmmanuel Vadot  "-state$":
288bab661aSEmmanuel Vadot    oneOf:
298bab661aSEmmanuel Vadot      - $ref: "#/$defs/qcom-mdm9615-pinctrl-state"
308bab661aSEmmanuel Vadot      - patternProperties:
318bab661aSEmmanuel Vadot          "-pins$":
328bab661aSEmmanuel Vadot            $ref: "#/$defs/qcom-mdm9615-pinctrl-state"
338bab661aSEmmanuel Vadot        additionalProperties: false
348bab661aSEmmanuel Vadot
358bab661aSEmmanuel Vadot$defs:
368bab661aSEmmanuel Vadot  qcom-mdm9615-pinctrl-state:
378bab661aSEmmanuel Vadot    type: object
388bab661aSEmmanuel Vadot    description:
398bab661aSEmmanuel Vadot      Pinctrl node's client devices use subnodes for desired pin configuration.
408bab661aSEmmanuel Vadot      Client device subnodes use below standard properties.
418bab661aSEmmanuel Vadot    $ref: qcom,tlmm-common.yaml#/$defs/qcom-tlmm-state
42fac71e4eSEmmanuel Vadot    unevaluatedProperties: false
438bab661aSEmmanuel Vadot
448bab661aSEmmanuel Vadot    properties:
458bab661aSEmmanuel Vadot      pins:
468bab661aSEmmanuel Vadot        description:
478bab661aSEmmanuel Vadot          List of gpio pins affected by the properties specified in this
488bab661aSEmmanuel Vadot          subnode.
498bab661aSEmmanuel Vadot        items:
508bab661aSEmmanuel Vadot          pattern: "^gpio([0-9]|[1-7][0-9]|8[0-7])$"
518bab661aSEmmanuel Vadot        minItems: 1
528bab661aSEmmanuel Vadot        maxItems: 16
538bab661aSEmmanuel Vadot
548bab661aSEmmanuel Vadot      function:
558bab661aSEmmanuel Vadot        description:
568bab661aSEmmanuel Vadot          Specify the alternative function to be configured for the specified
578bab661aSEmmanuel Vadot          pins.
588bab661aSEmmanuel Vadot
598bab661aSEmmanuel Vadot        enum: [ gpio, gsbi2_i2c, gsbi3, gsbi4, gsbi5_i2c, gsbi5_uart,
608bab661aSEmmanuel Vadot                sdc2, ebi2_lcdc, ps_hold, prim_audio, sec_audio, cdc_mclk, ]
618bab661aSEmmanuel Vadot
628bab661aSEmmanuel Vadot    required:
638bab661aSEmmanuel Vadot      - pins
648bab661aSEmmanuel Vadot
65*8d13bc63SEmmanuel Vadotrequired:
66*8d13bc63SEmmanuel Vadot  - compatible
67*8d13bc63SEmmanuel Vadot  - reg
68*8d13bc63SEmmanuel Vadot
69*8d13bc63SEmmanuel VadotunevaluatedProperties: false
70*8d13bc63SEmmanuel Vadot
718bab661aSEmmanuel Vadotexamples:
728bab661aSEmmanuel Vadot  - |
738bab661aSEmmanuel Vadot    #include <dt-bindings/interrupt-controller/arm-gic.h>
748bab661aSEmmanuel Vadot    tlmm: pinctrl@1000000 {
758bab661aSEmmanuel Vadot      compatible = "qcom,mdm9615-pinctrl";
768bab661aSEmmanuel Vadot      reg = <0x01000000 0x300000>;
778bab661aSEmmanuel Vadot      interrupts = <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>;
788bab661aSEmmanuel Vadot      gpio-controller;
798bab661aSEmmanuel Vadot      gpio-ranges = <&msmgpio 0 0 88>;
808bab661aSEmmanuel Vadot      #gpio-cells = <2>;
818bab661aSEmmanuel Vadot      interrupt-controller;
828bab661aSEmmanuel Vadot      #interrupt-cells = <2>;
838bab661aSEmmanuel Vadot
848bab661aSEmmanuel Vadot      gsbi3-state {
858bab661aSEmmanuel Vadot        pins = "gpio8", "gpio9", "gpio10", "gpio11";
868bab661aSEmmanuel Vadot        function = "gsbi3";
878bab661aSEmmanuel Vadot        drive-strength = <8>;
888bab661aSEmmanuel Vadot        bias-disable;
898bab661aSEmmanuel Vadot      };
908bab661aSEmmanuel Vadot
918bab661aSEmmanuel Vadot      gsbi5-i2c-state {
928bab661aSEmmanuel Vadot        sda-pins {
938bab661aSEmmanuel Vadot          pins = "gpio16";
948bab661aSEmmanuel Vadot          function = "gsbi5_i2c";
958bab661aSEmmanuel Vadot          drive-strength = <8>;
968bab661aSEmmanuel Vadot          bias-disable;
978bab661aSEmmanuel Vadot        };
988bab661aSEmmanuel Vadot
998bab661aSEmmanuel Vadot        scl-pins {
1008bab661aSEmmanuel Vadot          pins = "gpio17";
1018bab661aSEmmanuel Vadot          function = "gsbi5_i2c";
1028bab661aSEmmanuel Vadot          drive-strength = <2>;
1038bab661aSEmmanuel Vadot          bias-disable;
1048bab661aSEmmanuel Vadot        };
1058bab661aSEmmanuel Vadot      };
1068bab661aSEmmanuel Vadot    };
107