new file mode 100644
@@ -0,0 +1,58 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/power/regulator-power-domain.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Power domain controlled by a regulator
+
+maintainers:
+ - Max Krummenacher <max.krummenacher@toradex.com>
+
+description: |+
+ Power domain provider which uses a regulator to control
+ the power domain.
+
+allOf:
+ - $ref: "power-domain.yaml#"
+
+properties:
+ compatible:
+ enum:
+ - regulator-pm-pd
+
+ power-supply:
+ description: The regulator used to control the power domain.
+
+ label:
+ description: Human readable string defining the domain.
+
+ "#power-domain-cells":
+ const: 0
+
+ power-domains:
+ maxItems: 1
+
+required:
+ - compatible
+ - "#power-domain-cells"
+ - power-supply
+
+additionalProperties: true
+
+examples:
+ - |
+ #include <dt-bindings/gpio/gpio.h>
+ reg_pd_sleep_moci: regulator-sleep-moci {
+ compatible = "regulator-fixed";
+ enable-active-high;
+ gpio = <&gpio5 1 GPIO_ACTIVE_HIGH>;
+ regulator-name = "CTRL_SLEEP_MOCI";
+ };
+
+ pd_sleep_moci: power-sleep-moci {
+ compatible = "regulator-pm-pd";
+ power-supply = <®_pd_sleep_moci>;
+ label = "pd_sleep_moci";
+ #power-domain-cells = <0>;
+ };