1# Copyright 2019-2020 Peter Bigot Consulting, LLC
2# Copyright 2023 EPAM Systems
3# SPDX-License-Identifier: Apache-2.0
4
5description: Fixed voltage regulators
6
7include:
8  - name: base.yaml
9  - name: regulator.yaml
10    property-allowlist:
11      - regulator-name
12      - regulator-boot-on
13      - regulator-always-on
14      - regulator-min-microvolt
15      - regulator-max-microvolt
16      - startup-delay-us
17      - off-on-delay-us
18
19compatible: "regulator-fixed"
20
21properties:
22  regulator-name:
23    required: true
24
25  enable-gpios:
26    type: phandle-array
27    description: |
28      GPIO to use to enable/disable the regulator.
29
30      Unlike the gpio property in the Linux bindings this array must
31      provide the GPIO polarity and open-drain status in the phandle
32      selector.  The Linux enable-active-high and gpio-open-drain
33      properties are not valid for Zephyr devicetree files.
34