summaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/display/msm/dsi-phy-common.yaml
diff options
context:
space:
mode:
authorKrishna Manikandan <mkrishn@codeaurora.org>2021-05-24 17:14:12 +0530
committerRob Clark <robdclark@chromium.org>2021-05-24 15:54:45 -0700
commit8fc939e72ff80116c090aaf03952253a124d2a8e (patch)
tree30a4dbffcf4905decec4fe9836b6466d46516098 /Documentation/devicetree/bindings/display/msm/dsi-phy-common.yaml
parent4dbe55c9774179da9630498e647c718d1c910bca (diff)
downloadlinux-stable-8fc939e72ff80116c090aaf03952253a124d2a8e.tar.gz
linux-stable-8fc939e72ff80116c090aaf03952253a124d2a8e.tar.bz2
linux-stable-8fc939e72ff80116c090aaf03952253a124d2a8e.zip
dt-bindings: msm: dsi: add yaml schemas for DSI PHY bindings
Add YAML schema for the device tree bindings for DSI PHY. Signed-off-by: Krishna Manikandan <mkrishn@codeaurora.org> Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org> Reviewed-by: Stephen Boyd <swboyd@chromium.org> Reviewed-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/1621856653-10649-3-git-send-email-mkrishn@codeaurora.org Signed-off-by: Rob Clark <robdclark@chromium.org>
Diffstat (limited to 'Documentation/devicetree/bindings/display/msm/dsi-phy-common.yaml')
-rw-r--r--Documentation/devicetree/bindings/display/msm/dsi-phy-common.yaml40
1 files changed, 40 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/display/msm/dsi-phy-common.yaml b/Documentation/devicetree/bindings/display/msm/dsi-phy-common.yaml
new file mode 100644
index 000000000000..502bdda90235
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/msm/dsi-phy-common.yaml
@@ -0,0 +1,40 @@
+# SPDX-License-Identifier: GPL-2.0-only or BSD-2-Clause
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/display/msm/dsi-phy-common.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Description of Qualcomm Display DSI PHY common dt properties
+
+maintainers:
+ - Krishna Manikandan <mkrishn@codeaurora.org>
+
+description: |
+ This defines the DSI PHY dt properties which are common for all
+ dsi phy versions.
+
+properties:
+ "#clock-cells":
+ const: 1
+
+ "#phy-cells":
+ const: 0
+
+ clocks:
+ items:
+ - description: Display AHB clock
+ - description: Board XO source
+
+ clock-names:
+ items:
+ - const: iface
+ - const: ref
+
+required:
+ - clocks
+ - clock-names
+ - "#clock-cells"
+ - "#phy-cells"
+
+additionalProperties: true
+...