xref: /freebsd/sys/contrib/device-tree/Bindings/regulator/silergy,sy8106a.yaml (revision 7ef62cebc2f965b0f640263e179276928885e33d)
18cc087a1SEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0
28cc087a1SEmmanuel Vadot%YAML 1.2
38cc087a1SEmmanuel Vadot---
48cc087a1SEmmanuel Vadot$id: http://devicetree.org/schemas/regulator/silergy,sy8106a.yaml#
58cc087a1SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
68cc087a1SEmmanuel Vadot
7*7ef62cebSEmmanuel Vadottitle: Silergy SY8106A Voltage Regulator
88cc087a1SEmmanuel Vadot
98cc087a1SEmmanuel Vadotmaintainers:
108cc087a1SEmmanuel Vadot  - Ondrej Jirman <megous@megous.com>
118cc087a1SEmmanuel Vadot
128cc087a1SEmmanuel VadotallOf:
138cc087a1SEmmanuel Vadot  - $ref: regulator.yaml#
148cc087a1SEmmanuel Vadot
158cc087a1SEmmanuel Vadotproperties:
168cc087a1SEmmanuel Vadot  compatible:
178cc087a1SEmmanuel Vadot    const: silergy,sy8106a
188cc087a1SEmmanuel Vadot
198cc087a1SEmmanuel Vadot  reg:
208cc087a1SEmmanuel Vadot    maxItems: 1
218cc087a1SEmmanuel Vadot
228cc087a1SEmmanuel Vadot  silergy,fixed-microvolt:
238cc087a1SEmmanuel Vadot    description: >
248cc087a1SEmmanuel Vadot      The voltage when I2C regulating is disabled (set by external resistor
258cc087a1SEmmanuel Vadot      like a fixed voltage)
268cc087a1SEmmanuel Vadot
278cc087a1SEmmanuel Vadotrequired:
288cc087a1SEmmanuel Vadot  - compatible
298cc087a1SEmmanuel Vadot  - reg
308cc087a1SEmmanuel Vadot  - silergy,fixed-microvolt
318cc087a1SEmmanuel Vadot
328cc087a1SEmmanuel VadotunevaluatedProperties: false
338cc087a1SEmmanuel Vadot
348cc087a1SEmmanuel Vadotexamples:
358cc087a1SEmmanuel Vadot  - |
368cc087a1SEmmanuel Vadot    i2c {
378cc087a1SEmmanuel Vadot        #address-cells = <1>;
388cc087a1SEmmanuel Vadot        #size-cells = <0>;
398cc087a1SEmmanuel Vadot
408cc087a1SEmmanuel Vadot        regulator@65 {
418cc087a1SEmmanuel Vadot            compatible = "silergy,sy8106a";
428cc087a1SEmmanuel Vadot            reg = <0x65>;
438cc087a1SEmmanuel Vadot            regulator-name = "sy8106a-vdd";
448cc087a1SEmmanuel Vadot            silergy,fixed-microvolt = <1200000>;
458cc087a1SEmmanuel Vadot            regulator-min-microvolt = <1000000>;
468cc087a1SEmmanuel Vadot            regulator-max-microvolt = <1400000>;
478cc087a1SEmmanuel Vadot            regulator-boot-on;
488cc087a1SEmmanuel Vadot            regulator-always-on;
498cc087a1SEmmanuel Vadot        };
508cc087a1SEmmanuel Vadot    };
518cc087a1SEmmanuel Vadot
528cc087a1SEmmanuel Vadot...
53