[PATCH v1 01/10] dt-bindings: soc: rockchip: add clock to RK3588 VO grf

Sebastian Reichel posted 10 patches 2 years ago
There is a newer version of this series
[PATCH v1 01/10] dt-bindings: soc: rockchip: add clock to RK3588 VO grf
Posted by Sebastian Reichel 2 years ago
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.

Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
---
 .../devicetree/bindings/soc/rockchip/grf.yaml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/Documentation/devicetree/bindings/soc/rockchip/grf.yaml b/Documentation/devicetree/bindings/soc/rockchip/grf.yaml
index 9793ea6f0fe6..20bc1f46384c 100644
--- a/Documentation/devicetree/bindings/soc/rockchip/grf.yaml
+++ b/Documentation/devicetree/bindings/soc/rockchip/grf.yaml
@@ -66,6 +66,9 @@ properties:
   reg:
     maxItems: 1
 
+  clocks:
+    maxItems: 1
+
   "#address-cells":
     const: 1
 
@@ -248,6 +251,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>
-- 
2.43.0
Re: [PATCH v1 01/10] dt-bindings: soc: rockchip: add clock to RK3588 VO grf
Posted by Conor Dooley 1 year, 12 months ago
On Fri, Feb 09, 2024 at 07:17:17PM +0100, Sebastian Reichel wrote:
> 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.
> 
> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>

Acked-by: Conor Dooley <conor.dooley@microchip.com>

Cheers,
Conor.