~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/regulator/rohm,bd71828-regulator.yaml

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
  2 %YAML 1.2
  3 ---
  4 $id: http://devicetree.org/schemas/regulator/rohm,bd71828-regulator.yaml#
  5 $schema: http://devicetree.org/meta-schemas/core.yaml#
  6 
  7 title: ROHM BD71828 Power Management Integrated Circuit regulators
  8 
  9 maintainers:
 10   - Matti Vaittinen <mazziesaccount@gmail.com>
 11 
 12 description: |
 13   This module is part of the ROHM BD71828 MFD device. For more details
 14   see Documentation/devicetree/bindings/mfd/rohm,bd71828-pmic.yaml.
 15 
 16   The regulator controller is represented as a sub-node of the PMIC node
 17   on the device tree.
 18 
 19   Regulator nodes should be named to BUCK_<number> and LDO_<number>.
 20   The valid names for BD71828 regulator nodes are
 21   BUCK1, BUCK2, BUCK3, BUCK4, BUCK5, BUCK6, BUCK7
 22   LDO1, LDO2, LDO3, LDO4, LDO5, LDO6, LDO7
 23 
 24 patternProperties:
 25   "^LDO[1-7]$":
 26     type: object
 27     description:
 28       Properties for single LDO regulator.
 29     $ref: regulator.yaml#
 30 
 31     properties:
 32       regulator-name:
 33         pattern: "^ldo[1-7]$"
 34         description:
 35           should be "ldo1", ..., "ldo7"
 36 
 37     unevaluatedProperties: false
 38 
 39   "^BUCK[1-7]$":
 40     type: object
 41     description:
 42       Properties for single BUCK regulator.
 43     $ref: regulator.yaml#
 44 
 45     properties:
 46       regulator-name:
 47         pattern: "^buck[1-7]$"
 48         description:
 49           should be "buck1", ..., "buck7"
 50 
 51       rohm,dvs-run-voltage:
 52         description:
 53           PMIC default "RUN" state voltage in uV. See below table for
 54           bucks which support this. 0 means disabled.
 55         $ref: /schemas/types.yaml#/definitions/uint32
 56         minimum: 0
 57         maximum: 3300000
 58 
 59       rohm,dvs-idle-voltage:
 60         description:
 61           PMIC default "IDLE" state voltage in uV. See below table for
 62           bucks which support this. 0 means disabled.
 63         $ref: /schemas/types.yaml#/definitions/uint32
 64         minimum: 0
 65         maximum: 3300000
 66 
 67       rohm,dvs-suspend-voltage:
 68         description:
 69           PMIC default "SUSPEND" state voltage in uV. See below table for
 70           bucks which support this. 0 means disabled.
 71         $ref: /schemas/types.yaml#/definitions/uint32
 72         minimum: 0
 73         maximum: 3300000
 74 
 75       rohm,dvs-lpsr-voltage:
 76         description:
 77           PMIC default "LPSR" state voltage in uV. See below table for
 78           bucks which support this. 0 means disabled.
 79         $ref: /schemas/types.yaml#/definitions/uint32
 80         minimum: 0
 81         maximum: 3300000
 82 
 83         # Supported default DVS states:
 84         #     buck       |    run     |   idle    | suspend  | lpsr
 85         # --------------------------------------------------------------
 86         # 1, 2, 6, and 7 | supported  | supported | supported (*)
 87         # --------------------------------------------------------------
 88         # 3, 4, and 5    |                    supported (**)
 89         # --------------------------------------------------------------
 90         #
 91         # (*)  LPSR and SUSPEND states use same voltage but both states have own
 92         #      enable /
 93         #      disable settings. Voltage 0 can be specified for a state to make
 94         #      regulator disabled on that state.
 95         #
 96         # (**) All states use same voltage but have own enable / disable
 97         #      settings. Voltage 0 can be specified for a state to make
 98         #      regulator disabled on that state.
 99 
100     required:
101       - regulator-name
102 
103     unevaluatedProperties: false
104 
105 additionalProperties: false

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php