Lines Matching +full:delay +full:- +full:us
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#
10 - Liam Girdwood <lgirdwood@gmail.com>
11 - Mark Brown <broonie@kernel.org>
16 expected to have the regulator-min-microvolt and regulator-max-microvolt
20 - $ref: "regulator.yaml#"
26 const: regulator-fixed-clock
28 - clocks
33 - regulator-fixed
34 - regulator-fixed-clock
36 regulator-name: true
45 the compatible is chosen to regulator-fixed-clock. The clock binding
46 is mandatory if compatible is chosen to regulator-fixed-clock.
49 startup-delay-us:
53 off-on-delay-us:
54 description: off delay time in microseconds
57 enable-active-high:
63 gpio-open-drain:
69 vin-supply:
73 - compatible
74 - regulator-name
79 - |
80 reg_1v8: regulator-1v8 {
81 compatible = "regulator-fixed";
82 regulator-name = "1v8";
83 regulator-min-microvolt = <1800000>;
84 regulator-max-microvolt = <1800000>;
86 startup-delay-us = <70000>;
87 enable-active-high;
88 regulator-boot-on;
89 gpio-open-drain;
90 vin-supply = <&parent_reg>;