@@ -25,6 +25,10 @@ properties:
reg:
maxItems: 1
+ deprecated: true
+ description:
+ Physical base address and length of Power Domains area (if not a child of
+ PMU).
clocks:
deprecated: true
@@ -45,10 +49,15 @@ properties:
power-domains:
maxItems: 1
+ samsung,pd-index:
+ $ref: /schemas/types.yaml#/definitions/uint32
+ description: |
+ Power domain index (if a child of PMU). Valid values are defined in::
+ "include/dt-bindings/power/samsung,exynos850-power.h" - for Exynos850
+
required:
- compatible
- "#power-domain-cells"
- - reg
unevaluatedProperties: false
Introduce a new "samsung,pd-index" property to choose a specific power domain. This way it would be possible to avoid specifying any addresses in power domain nodes, relying solely on syscon regmap from the parent node (which should be a PMU system controller). Therefore the "reg" property is deprecated now, as it's more logical to describe power domains as children of PMU node, because PD registers reside in the PMU area. Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org> --- .../devicetree/bindings/power/pd-samsung.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-)