Commit b47a6c8b authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski

dt-bindings: pinctrl: qcom,sc8280xp-lpass-lpi: fix matching pin config

The LPASS pin controller follows generic pin-controller bindings, so
just like TLMM, should have subnodes with '-state' and '-pins'.
Reviewed-by: default avatarRob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20220927153429.55365-9-krzysztof.kozlowski@linaro.orgSigned-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
parent cb70c0d8
...@@ -43,9 +43,17 @@ properties: ...@@ -43,9 +43,17 @@ properties:
gpio-ranges: gpio-ranges:
maxItems: 1 maxItems: 1
#PIN CONFIGURATION NODES
patternProperties: patternProperties:
'-pins$': "-state$":
oneOf:
- $ref: "#/$defs/qcom-sc8280xp-lpass-state"
- patternProperties:
"-pins$":
$ref: "#/$defs/qcom-sc8280xp-lpass-state"
additionalProperties: false
$defs:
qcom-sc8280xp-lpass-state:
type: object type: object
description: description:
Pinctrl node's client devices use subnodes for desired pin configuration. Pinctrl node's client devices use subnodes for desired pin configuration.
...@@ -130,4 +138,21 @@ examples: ...@@ -130,4 +138,21 @@ examples:
gpio-controller; gpio-controller;
#gpio-cells = <2>; #gpio-cells = <2>;
gpio-ranges = <&lpi_tlmm 0 0 18>; gpio-ranges = <&lpi_tlmm 0 0 18>;
dmic01-state {
dmic01-clk-pins {
pins = "gpio16";
function = "dmic1_clk";
};
dmic01-clk-sleep-pins {
pins = "gpio16";
function = "dmic1_clk";
};
};
tx-swr-data-sleep-state {
pins = "gpio0", "gpio1";
function = "swr_tx_data";
};
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment