1MAXIM, MAX77686 pmic
2
3This device uses two drivers:
4- drivers/power/pmic/max77686.c (for parent device)
5- drivers/power/regulator/max77686.c (for child regulators)
6
7This file describes the binding info for the PMIC driver.
8
9To bind the regulators, please read the additional binding info:
10- doc/device-tree-bindings/regulator/max77686.txt
11
12Required properties:
13- compatible: "maxim,max77686"
14- reg = 0x9
15
16With those two properties, the pmic device can be used for read/write only.
17To bind each regulator, the optional regulators subnode should exists.
18
19Optional subnode:
20- voltage-regulators: subnode list of each device's regulator
21  (see max77686.txt - regulator binding info)
22
23Example:
24
25max77686@09 {
26	compatible = "maxim,max77686";
27	reg = <0x09>;
28
29	voltage-regulators {
30		ldo1 {
31			...
32		};
33		...
34	};
35};
36