diff options
author | Sebastian Reichel <[email protected]> | 2024-02-13 17:32:35 +0100 |
---|---|---|
committer | Heiko Stuebner <[email protected]> | 2024-02-13 19:37:15 +0100 |
commit | c110b7e2d6bdad21caab3f4706a969b05aff7f62 (patch) | |
tree | 90d504f0d51febb6e28400791847325624086ec1 | |
parent | 738227ab42fe0c6047f932aef11b9fd647d203f9 (diff) |
dt-bindings: soc: rockchip: add clock to RK3588 VO grf
The RK3588 VO GRF needs a clock. This adds the clock to the allowed
properties, makes it mandatory for the RK3588 VO grf and disallows it
for any other Rockchip grf.
Acked-by: Conor Dooley <[email protected]>
Signed-off-by: Sebastian Reichel <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Heiko Stuebner <[email protected]>
-rw-r--r-- | Documentation/devicetree/bindings/soc/rockchip/grf.yaml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/soc/rockchip/grf.yaml b/Documentation/devicetree/bindings/soc/rockchip/grf.yaml index 61bfe678dc7f..40b0d01e3b8d 100644 --- a/Documentation/devicetree/bindings/soc/rockchip/grf.yaml +++ b/Documentation/devicetree/bindings/soc/rockchip/grf.yaml @@ -67,6 +67,9 @@ properties: reg: maxItems: 1 + clocks: + maxItems: 1 + "#address-cells": const: 1 @@ -249,6 +252,22 @@ allOf: unevaluatedProperties: false + - if: + properties: + compatible: + contains: + enum: + - rockchip,rk3588-vo-grf + + then: + required: + - clocks + + else: + properties: + clocks: false + + examples: - | #include <dt-bindings/clock/rk3399-cru.h> |