Lines Matching +full:regulator +full:- +full:fixed

1 # SPDX-License-Identifier: GPL-2.0
3 ---
4 $id: http://devicetree.org/schemas/regulator/fixed-regulator.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Fixed Voltage regulators
10 - Liam Girdwood <lgirdwood@gmail.com>
11 - Mark Brown <broonie@kernel.org>
14 Any property defined as part of the core regulator binding, defined in
15 regulator.yaml, can also be used. However a fixed voltage regulator is
16 expected to have the regulator-min-microvolt and regulator-max-microvolt
20 - $ref: regulator.yaml#
21 - if:
25 const: regulator-fixed-clock
28 - clocks
29 - if:
33 const: regulator-fixed-domain
36 - power-domains
37 - required-opps
38 - not:
40 - gpio
41 - gpios
46 - regulator-fixed
47 - regulator-fixed-clock
48 - regulator-fixed-domain
50 regulator-name: true
62 the compatible is chosen to regulator-fixed-clock. The clock binding
63 is mandatory if compatible is chosen to regulator-fixed-clock.
66 power-domains:
70 available if the compatible is chosen to regulator-fixed-domain.
73 required-opps:
77 available if the compatible is chosen to regulator-fixed-domain. The
78 power-domain binding is mandatory if compatible is chosen to
79 regulator-fixed-domain.
82 startup-delay-us:
85 off-on-delay-us:
88 enable-active-high:
94 gpio-open-drain:
100 vin-supply:
104 - compatible
105 - regulator-name
110 - |
111 reg_1v8: regulator-1v8 {
112 compatible = "regulator-fixed";
113 regulator-name = "1v8";
114 regulator-min-microvolt = <1800000>;
115 regulator-max-microvolt = <1800000>;
117 startup-delay-us = <70000>;
118 enable-active-high;
119 regulator-boot-on;
120 gpio-open-drain;
121 vin-supply = <&parent_reg>;
123 reg_1v8_clk: regulator-1v8-clk {
124 compatible = "regulator-fixed-clock";
125 regulator-name = "1v8";
126 regulator-min-microvolt = <1800000>;
127 regulator-max-microvolt = <1800000>;
129 startup-delay-us = <70000>;
130 enable-active-high;
131 regulator-boot-on;
132 vin-supply = <&parent_reg>;
134 reg_1v8_domain: regulator-1v8-domain {
135 compatible = "regulator-fixed-domain";
136 regulator-name = "1v8";
137 regulator-min-microvolt = <1800000>;
138 regulator-max-microvolt = <1800000>;
139 power-domains = <&domain1>;
140 required-opps = <&domain1_state1>;
141 startup-delay-us = <70000>;
142 enable-active-high;
143 regulator-boot-on;
144 vin-supply = <&parent_reg>;