Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: regulator: Add ROHM BD96802 PMIC

BD96802Qxx-C is an automotive grade configurable Power Management
Integrated Circuit supporting Functional Safety features for application
processors, SoCs and FPGAs. BD96802 is controlled via I2C, provides two
interrupt lines and has two controllable buck regulators.

The BD96802 belongs to the family of ROHM Scalable PMICs and is intended
to be used as a companion PMIC for the BD96801.

Signed-off-by: Matti Vaittinen <mazziesaccount@gmail.com>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Link: https://lore.kernel.org/r/df7983e7c623041f14a4fbe409a2cff846e68a05.1744090658.git.mazziesaccount@gmail.com
Signed-off-by: Lee Jones <lee@kernel.org>

authored by

Matti Vaittinen and committed by
Lee Jones
9effbfda 0af2f6be

+44
+44
Documentation/devicetree/bindings/regulator/rohm,bd96802-regulator.yaml
··· 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,bd96802-regulator.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: ROHM BD96802 Power Management Integrated Circuit regulators 8 + 9 + maintainers: 10 + - Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com> 11 + 12 + description: 13 + This module is part of the ROHM BD96802 MFD device. For more details 14 + see Documentation/devicetree/bindings/mfd/rohm,bd96802-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 buck1 and buck2. 20 + 21 + patternProperties: 22 + "^buck[1-2]$": 23 + type: object 24 + description: 25 + Properties for single BUCK regulator. 26 + $ref: regulator.yaml# 27 + 28 + properties: 29 + rohm,initial-voltage-microvolt: 30 + description: 31 + Initial voltage for regulator. Voltage can be tuned +/-150 mV from 32 + this value. NOTE, This can be modified via I2C only when PMIC is in 33 + STBY state. 34 + minimum: 500000 35 + maximum: 3300000 36 + 37 + rohm,keep-on-stby: 38 + description: 39 + Keep the regulator powered when PMIC transitions to STBY state. 40 + type: boolean 41 + 42 + unevaluatedProperties: false 43 + 44 + additionalProperties: false