spi-topcliff-pch: Fix issue for transmitting over 4KByte
[zen-stable.git] / Documentation / devicetree / bindings / regulator / fixed-regulator.txt
blob9cf57fd042d24b84586c092d45d621aca643d751
1 Fixed Voltage regulators
3 Required properties:
4 - compatible: Must be "regulator-fixed";
6 Optional properties:
7 - gpio: gpio to use for enable control
8 - startup-delay-us: startup time in microseconds
9 - enable-active-high: Polarity of GPIO is Active high
10 If this property is missing, the default assumed is Active low.
12 Any property defined as part of the core regulator
13 binding, defined in regulator.txt, can also be used.
14 However a fixed voltage regulator is expected to have the
15 regulator-min-microvolt and regulator-max-microvolt
16 to be the same.
18 Example:
20         abc: fixedregulator@0 {
21                 compatible = "regulator-fixed";
22                 regulator-name = "fixed-supply";
23                 regulator-min-microvolt = <1800000>;
24                 regulator-max-microvolt = <1800000>;
25                 gpio = <&gpio1 16 0>;
26                 startup-delay-us = <70000>;
27                 enable-active-high;
28                 regulator-boot-on
29         };