| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
- %YAML 1.2
- ---
- $id: http://devicetree.org/schemas/regulator/mps,mpq2286.yaml#
- $schema: http://devicetree.org/meta-schemas/core.yaml#
- title: Monolithic Power System MPQ2286 PMIC
- maintainers:
- - Saravanan Sekar <saravanan@linumiz.com>
- properties:
- compatible:
- enum:
- - mps,mpq2286
- reg:
- maxItems: 1
- regulators:
- type: object
- properties:
- buck:
- type: object
- $ref: regulator.yaml#
- unevaluatedProperties: false
- additionalProperties: false
- required:
- - compatible
- - reg
- - regulators
- additionalProperties: false
- examples:
- - |
- i2c {
- #address-cells = <1>;
- #size-cells = <0>;
- pmic@3 {
- compatible = "mps,mpq2286";
- reg = <0x3>;
- regulators {
- buck {
- regulator-name = "buck";
- regulator-min-microvolt = <1600000>;
- regulator-max-microvolt = <1800000>;
- regulator-boot-on;
- };
- };
- };
- };
- ...
|