diff options
author | Dmitry Baryshkov <[email protected]> | 2023-01-18 06:12:35 +0200 |
---|---|---|
committer | Dmitry Baryshkov <[email protected]> | 2023-01-20 09:44:07 +0200 |
commit | 2d2d525cc4a0131deed91b729de2a0292f5871e0 (patch) | |
tree | 62df3ee7487ba3e2d74cc872e13217e38f1c9c79 | |
parent | 5c7199679aac3542f11a82298b307680ec653ea8 (diff) |
dt-bindings: display/msm: add core clock to the mdss bindings
Add (optional) core clock to the mdss bindings to let the MDSS driver
access hardware registers before MDP driver probes.
Signed-off-by: Dmitry Baryshkov <[email protected]>
Reviewed-by: Rob Herring <[email protected]>
Patchwork: https://patchwork.freedesktop.org/patch/518816/
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Dmitry Baryshkov <[email protected]>
-rw-r--r-- | Documentation/devicetree/bindings/display/msm/qcom,mdss.yaml | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/Documentation/devicetree/bindings/display/msm/qcom,mdss.yaml b/Documentation/devicetree/bindings/display/msm/qcom,mdss.yaml index 90819272002b..8d72ad6685ff 100644 --- a/Documentation/devicetree/bindings/display/msm/qcom,mdss.yaml +++ b/Documentation/devicetree/bindings/display/msm/qcom,mdss.yaml @@ -44,18 +44,30 @@ properties: The MDSS power domain provided by GCC clocks: - minItems: 1 - items: - - description: Display abh clock - - description: Display axi clock - - description: Display vsync clock + oneOf: + - minItems: 3 + items: + - description: Display abh clock + - description: Display axi clock + - description: Display vsync clock + - description: Display core clock + - minItems: 1 + items: + - description: Display abh clock + - description: Display core clock clock-names: - minItems: 1 - items: - - const: iface - - const: bus - - const: vsync + oneOf: + - minItems: 3 + items: + - const: iface + - const: bus + - const: vsync + - const: core + - minItems: 1 + items: + - const: iface + - const: core "#address-cells": const: 1 |