Lines Matching +full:off +full:- +full:on +full:- +full:delay +full:- +full:us
4 The binding is done by the property "compatible" - this is different, than for
5 binding by the node prefix (doc/device-tree-bindings/regulator/regulator.txt).
8 - compatible: "regulator-fixed"
9 - regulator-name: this is required by the regulator uclass
12 - gpio: GPIO to use for enable control
13 - startup-delay-us: startup time in microseconds
14 - u-boot,off-on-delay-us: off delay time in microseconds
15 - regulator constraints (binding info: regulator.txt)
16 - enable-active-high: Polarity of GPIO is Active high. If this property
20 Other kernel-style properties, are currently not used.
24 - regulator-min-microvolt is equal to regulator-max-microvolt
25 - regulator-min-microamp is equal to regulator-max-microamp
30 compatible = "regulator-fixed";
31 regulator-name = "LED_3.3V";
37 regulator-min-microvolt = <3300000>;
38 regulator-max-microvolt = <3300000>;
39 regulator-min-microamp = <15000>;
40 regulator-max-microamp = <15000>;
41 regulator-always-on;
42 regulator-boot-on;
43 enable-active-high;