[PATCH v1 1/2] dt-bindings: soc: samsung: usi: allow 64-bit address space

From: Ivaylo Ivanov
Date: Tue Jul 22 2025 - 08:12:03 EST


Some device trees, like the exynos2200 one, configure the root node
with #address-cells and #size-cells set to 2. However, the usi binding
expects 32 bit address space only. Allow these determining properties to
be set as 1 or 2 instead of a constant 1.

Signed-off-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@xxxxxxxxx>
---
Documentation/devicetree/bindings/soc/samsung/exynos-usi.yaml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/soc/samsung/exynos-usi.yaml b/Documentation/devicetree/bindings/soc/samsung/exynos-usi.yaml
index cb2263709..4ce871676 100644
--- a/Documentation/devicetree/bindings/soc/samsung/exynos-usi.yaml
+++ b/Documentation/devicetree/bindings/soc/samsung/exynos-usi.yaml
@@ -57,10 +57,10 @@ properties:
ranges: true

"#address-cells":
- const: 1
+ enum: [1, 2]

"#size-cells":
- const: 1
+ enum: [1, 2]

samsung,sysreg:
$ref: /schemas/types.yaml#/definitions/phandle-array
--
2.43.0