The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/regulator/mps,mp5416.yaml

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/regulator/mps,mp5416.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Monolithic Power System MP5416 PMIC
    8 
    9 maintainers:
   10   - Saravanan Sekar <sravanhome@gmail.com>
   11 
   12 properties:
   13   $nodename:
   14     pattern: "^pmic@[0-9a-f]{1,2}$"
   15   compatible:
   16     enum:
   17       - mps,mp5416
   18       - mps,mp5496
   19 
   20   reg:
   21     maxItems: 1
   22 
   23   regulators:
   24     type: object
   25     description: |
   26       list of regulators provided by this controller, must be named
   27       after their hardware counterparts BUCK[1-4] and LDO[1-4]
   28 
   29     patternProperties:
   30       "^buck[1-4]$":
   31         $ref: "regulator.yaml#"
   32         type: object
   33 
   34       "^ldo[1-4]$":
   35         $ref: "regulator.yaml#"
   36         type: object
   37 
   38     additionalProperties: false
   39 
   40 required:
   41   - compatible
   42   - reg
   43   - regulators
   44 
   45 additionalProperties: false
   46 
   47 examples:
   48   - |
   49     i2c {
   50         #address-cells = <1>;
   51         #size-cells = <0>;
   52 
   53         pmic@69 {
   54           compatible = "mps,mp5416";
   55           reg = <0x69>;
   56 
   57           regulators {
   58 
   59             buck1 {
   60              regulator-name = "buck1";
   61              regulator-min-microvolt = <600000>;
   62              regulator-max-microvolt = <2187500>;
   63              regulator-min-microamp  = <3800000>;
   64              regulator-max-microamp  = <6800000>;
   65              regulator-boot-on;
   66             };
   67 
   68             ldo2 {
   69              regulator-name = "ldo2";
   70              regulator-min-microvolt = <800000>;
   71              regulator-max-microvolt = <3975000>;
   72             };
   73          };
   74        };
   75      };
   76 ...

Cache object: 8a0d55bf5961063dabdf4a8f4ad2f3d5


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.