Merge tag '5.11-rc-smb3-part2' of git://git.samba.org/sfrench/cifs-2.6
[linux-2.6-microblaze.git] / Documentation / power / regulator / machine.rst
1 ==================================
2 Regulator Machine Driver Interface
3 ==================================
4
5 The regulator machine driver interface is intended for board/machine specific
6 initialisation code to configure the regulator subsystem.
7
8 Consider the following machine::
9
10   Regulator-1 -+-> Regulator-2 --> [Consumer A @ 1.8 - 2.0V]
11                |
12                +-> [Consumer B @ 3.3V]
13
14 The drivers for consumers A & B must be mapped to the correct regulator in
15 order to control their power supplies. This mapping can be achieved in machine
16 initialisation code by creating a struct regulator_consumer_supply for
17 each regulator::
18
19   struct regulator_consumer_supply {
20         const char *dev_name;   /* consumer dev_name() */
21         const char *supply;     /* consumer supply - e.g. "vcc" */
22   };
23
24 e.g. for the machine above::
25
26   static struct regulator_consumer_supply regulator1_consumers[] = {
27         REGULATOR_SUPPLY("Vcc", "consumer B"),
28   };
29
30   static struct regulator_consumer_supply regulator2_consumers[] = {
31         REGULATOR_SUPPLY("Vcc", "consumer A"),
32   };
33
34 This maps Regulator-1 to the 'Vcc' supply for Consumer B and maps Regulator-2
35 to the 'Vcc' supply for Consumer A.
36
37 Constraints can now be registered by defining a struct regulator_init_data
38 for each regulator power domain. This structure also maps the consumers
39 to their supply regulators::
40
41   static struct regulator_init_data regulator1_data = {
42         .constraints = {
43                 .name = "Regulator-1",
44                 .min_uV = 3300000,
45                 .max_uV = 3300000,
46                 .valid_modes_mask = REGULATOR_MODE_NORMAL,
47         },
48         .num_consumer_supplies = ARRAY_SIZE(regulator1_consumers),
49         .consumer_supplies = regulator1_consumers,
50   };
51
52 The name field should be set to something that is usefully descriptive
53 for the board for configuration of supplies for other regulators and
54 for use in logging and other diagnostic output.  Normally the name
55 used for the supply rail in the schematic is a good choice.  If no
56 name is provided then the subsystem will choose one.
57
58 Regulator-1 supplies power to Regulator-2. This relationship must be registered
59 with the core so that Regulator-1 is also enabled when Consumer A enables its
60 supply (Regulator-2). The supply regulator is set by the supply_regulator
61 field below and co::
62
63   static struct regulator_init_data regulator2_data = {
64         .supply_regulator = "Regulator-1",
65         .constraints = {
66                 .min_uV = 1800000,
67                 .max_uV = 2000000,
68                 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
69                 .valid_modes_mask = REGULATOR_MODE_NORMAL,
70         },
71         .num_consumer_supplies = ARRAY_SIZE(regulator2_consumers),
72         .consumer_supplies = regulator2_consumers,
73   };
74
75 Finally the regulator devices must be registered in the usual manner::
76
77   static struct platform_device regulator_devices[] = {
78         {
79                 .name = "regulator",
80                 .id = DCDC_1,
81                 .dev = {
82                         .platform_data = &regulator1_data,
83                 },
84         },
85         {
86                 .name = "regulator",
87                 .id = DCDC_2,
88                 .dev = {
89                         .platform_data = &regulator2_data,
90                 },
91         },
92   };
93   /* register regulator 1 device */
94   platform_device_register(&regulator_devices[0]);
95
96   /* register regulator 2 device */
97   platform_device_register(&regulator_devices[1]);