2 * max8660.c -- Voltage regulation for the Maxim 8660/8661
4 * based on max1586.c and wm8400-regulator.c
6 * Copyright (C) 2009 Wolfram Sang, Pengutronix e.K.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; version 2 of the License.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
19 * Place, Suite 330, Boston, MA 02111-1307 USA
23 * Datasheet: http://datasheets.maxim-ic.com/en/ds/MAX8660-MAX8661.pdf
25 * This chip is a bit nasty because it is a write-only device. Thus, the driver
26 * uses shadow registers to keep track of its values. The main problem appears
27 * to be the initialization: When Linux boots up, we cannot know if the chip is
28 * in the default state or not, so we would have to pass such information in
29 * platform_data. As this adds a bit of complexity to the driver, this is left
30 * out for now until it is really needed.
32 * [A|S|M]DTV1 registers are currently not used, but [A|S|M]DTV2.
34 * If the driver is feature complete, it might be worth to check if one set of
35 * functions for V3-V7 is sufficient. For maximum flexibility during
36 * development, they are separated for now.
40 #include <linux/module.h>
41 #include <linux/err.h>
42 #include <linux/i2c.h>
43 #include <linux/platform_device.h>
44 #include <linux/regulator/driver.h>
45 #include <linux/slab.h>
46 #include <linux/regulator/max8660.h>
48 #include <linux/of_device.h>
49 #include <linux/regulator/of_regulator.h>
51 #define MAX8660_DCDC_MIN_UV 725000
52 #define MAX8660_DCDC_MAX_UV 1800000
53 #define MAX8660_DCDC_STEP 25000
54 #define MAX8660_DCDC_MAX_SEL 0x2b
56 #define MAX8660_LDO5_MIN_UV 1700000
57 #define MAX8660_LDO5_MAX_UV 2000000
58 #define MAX8660_LDO5_STEP 25000
59 #define MAX8660_LDO5_MAX_SEL 0x0c
61 #define MAX8660_LDO67_MIN_UV 1800000
62 #define MAX8660_LDO67_MAX_UV 3300000
63 #define MAX8660_LDO67_STEP 100000
64 #define MAX8660_LDO67_MAX_SEL 0x0f
78 MAX8660_N_REGS
, /* not a real register */
82 struct i2c_client
*client
;
83 u8 shadow_regs
[MAX8660_N_REGS
]; /* as chip is write only */
86 static int max8660_write(struct max8660
*max8660
, u8 reg
, u8 mask
, u8 val
)
88 static const u8 max8660_addresses
[MAX8660_N_REGS
] = {
89 0x10, 0x12, 0x20, 0x23, 0x24, 0x29, 0x2a, 0x32, 0x33, 0x39, 0x80
93 u8 reg_val
= (max8660
->shadow_regs
[reg
] & mask
) | val
;
95 dev_vdbg(&max8660
->client
->dev
, "Writing reg %02x with %02x\n",
96 max8660_addresses
[reg
], reg_val
);
98 ret
= i2c_smbus_write_byte_data(max8660
->client
,
99 max8660_addresses
[reg
], reg_val
);
101 max8660
->shadow_regs
[reg
] = reg_val
;
111 static int max8660_dcdc_is_enabled(struct regulator_dev
*rdev
)
113 struct max8660
*max8660
= rdev_get_drvdata(rdev
);
114 u8 val
= max8660
->shadow_regs
[MAX8660_OVER1
];
115 u8 mask
= (rdev_get_id(rdev
) == MAX8660_V3
) ? 1 : 4;
117 return !!(val
& mask
);
120 static int max8660_dcdc_enable(struct regulator_dev
*rdev
)
122 struct max8660
*max8660
= rdev_get_drvdata(rdev
);
123 u8 bit
= (rdev_get_id(rdev
) == MAX8660_V3
) ? 1 : 4;
125 return max8660_write(max8660
, MAX8660_OVER1
, 0xff, bit
);
128 static int max8660_dcdc_disable(struct regulator_dev
*rdev
)
130 struct max8660
*max8660
= rdev_get_drvdata(rdev
);
131 u8 mask
= (rdev_get_id(rdev
) == MAX8660_V3
) ? ~1 : ~4;
133 return max8660_write(max8660
, MAX8660_OVER1
, mask
, 0);
136 static int max8660_dcdc_get_voltage_sel(struct regulator_dev
*rdev
)
138 struct max8660
*max8660
= rdev_get_drvdata(rdev
);
139 u8 reg
= (rdev_get_id(rdev
) == MAX8660_V3
) ? MAX8660_ADTV2
: MAX8660_SDTV2
;
140 u8 selector
= max8660
->shadow_regs
[reg
];
145 static int max8660_dcdc_set_voltage_sel(struct regulator_dev
*rdev
,
146 unsigned int selector
)
148 struct max8660
*max8660
= rdev_get_drvdata(rdev
);
152 reg
= (rdev_get_id(rdev
) == MAX8660_V3
) ? MAX8660_ADTV2
: MAX8660_SDTV2
;
153 ret
= max8660_write(max8660
, reg
, 0, selector
);
157 /* Select target voltage register and activate regulation */
158 bits
= (rdev_get_id(rdev
) == MAX8660_V3
) ? 0x03 : 0x30;
159 return max8660_write(max8660
, MAX8660_VCC1
, 0xff, bits
);
162 static struct regulator_ops max8660_dcdc_ops
= {
163 .is_enabled
= max8660_dcdc_is_enabled
,
164 .list_voltage
= regulator_list_voltage_linear
,
165 .map_voltage
= regulator_map_voltage_linear
,
166 .set_voltage_sel
= max8660_dcdc_set_voltage_sel
,
167 .get_voltage_sel
= max8660_dcdc_get_voltage_sel
,
175 static int max8660_ldo5_get_voltage_sel(struct regulator_dev
*rdev
)
177 struct max8660
*max8660
= rdev_get_drvdata(rdev
);
179 u8 selector
= max8660
->shadow_regs
[MAX8660_MDTV2
];
183 static int max8660_ldo5_set_voltage_sel(struct regulator_dev
*rdev
,
184 unsigned int selector
)
186 struct max8660
*max8660
= rdev_get_drvdata(rdev
);
189 ret
= max8660_write(max8660
, MAX8660_MDTV2
, 0, selector
);
193 /* Select target voltage register and activate regulation */
194 return max8660_write(max8660
, MAX8660_VCC1
, 0xff, 0xc0);
197 static struct regulator_ops max8660_ldo5_ops
= {
198 .list_voltage
= regulator_list_voltage_linear
,
199 .map_voltage
= regulator_map_voltage_linear
,
200 .set_voltage_sel
= max8660_ldo5_set_voltage_sel
,
201 .get_voltage_sel
= max8660_ldo5_get_voltage_sel
,
209 static int max8660_ldo67_is_enabled(struct regulator_dev
*rdev
)
211 struct max8660
*max8660
= rdev_get_drvdata(rdev
);
212 u8 val
= max8660
->shadow_regs
[MAX8660_OVER2
];
213 u8 mask
= (rdev_get_id(rdev
) == MAX8660_V6
) ? 2 : 4;
215 return !!(val
& mask
);
218 static int max8660_ldo67_enable(struct regulator_dev
*rdev
)
220 struct max8660
*max8660
= rdev_get_drvdata(rdev
);
221 u8 bit
= (rdev_get_id(rdev
) == MAX8660_V6
) ? 2 : 4;
223 return max8660_write(max8660
, MAX8660_OVER2
, 0xff, bit
);
226 static int max8660_ldo67_disable(struct regulator_dev
*rdev
)
228 struct max8660
*max8660
= rdev_get_drvdata(rdev
);
229 u8 mask
= (rdev_get_id(rdev
) == MAX8660_V6
) ? ~2 : ~4;
231 return max8660_write(max8660
, MAX8660_OVER2
, mask
, 0);
234 static int max8660_ldo67_get_voltage_sel(struct regulator_dev
*rdev
)
236 struct max8660
*max8660
= rdev_get_drvdata(rdev
);
237 u8 shift
= (rdev_get_id(rdev
) == MAX8660_V6
) ? 0 : 4;
238 u8 selector
= (max8660
->shadow_regs
[MAX8660_L12VCR
] >> shift
) & 0xf;
243 static int max8660_ldo67_set_voltage_sel(struct regulator_dev
*rdev
,
244 unsigned int selector
)
246 struct max8660
*max8660
= rdev_get_drvdata(rdev
);
248 if (rdev_get_id(rdev
) == MAX8660_V6
)
249 return max8660_write(max8660
, MAX8660_L12VCR
, 0xf0, selector
);
251 return max8660_write(max8660
, MAX8660_L12VCR
, 0x0f,
255 static struct regulator_ops max8660_ldo67_ops
= {
256 .is_enabled
= max8660_ldo67_is_enabled
,
257 .enable
= max8660_ldo67_enable
,
258 .disable
= max8660_ldo67_disable
,
259 .list_voltage
= regulator_list_voltage_linear
,
260 .map_voltage
= regulator_map_voltage_linear
,
261 .get_voltage_sel
= max8660_ldo67_get_voltage_sel
,
262 .set_voltage_sel
= max8660_ldo67_set_voltage_sel
,
265 static const struct regulator_desc max8660_reg
[] = {
269 .ops
= &max8660_dcdc_ops
,
270 .type
= REGULATOR_VOLTAGE
,
271 .n_voltages
= MAX8660_DCDC_MAX_SEL
+ 1,
272 .owner
= THIS_MODULE
,
273 .min_uV
= MAX8660_DCDC_MIN_UV
,
274 .uV_step
= MAX8660_DCDC_STEP
,
279 .ops
= &max8660_dcdc_ops
,
280 .type
= REGULATOR_VOLTAGE
,
281 .n_voltages
= MAX8660_DCDC_MAX_SEL
+ 1,
282 .owner
= THIS_MODULE
,
283 .min_uV
= MAX8660_DCDC_MIN_UV
,
284 .uV_step
= MAX8660_DCDC_STEP
,
289 .ops
= &max8660_ldo5_ops
,
290 .type
= REGULATOR_VOLTAGE
,
291 .n_voltages
= MAX8660_LDO5_MAX_SEL
+ 1,
292 .owner
= THIS_MODULE
,
293 .min_uV
= MAX8660_LDO5_MIN_UV
,
294 .uV_step
= MAX8660_LDO5_STEP
,
299 .ops
= &max8660_ldo67_ops
,
300 .type
= REGULATOR_VOLTAGE
,
301 .n_voltages
= MAX8660_LDO67_MAX_SEL
+ 1,
302 .owner
= THIS_MODULE
,
303 .min_uV
= MAX8660_LDO67_MIN_UV
,
304 .uV_step
= MAX8660_LDO67_STEP
,
309 .ops
= &max8660_ldo67_ops
,
310 .type
= REGULATOR_VOLTAGE
,
311 .n_voltages
= MAX8660_LDO67_MAX_SEL
+ 1,
312 .owner
= THIS_MODULE
,
313 .min_uV
= MAX8660_LDO67_MIN_UV
,
314 .uV_step
= MAX8660_LDO67_STEP
,
324 static const struct of_device_id max8660_dt_ids
[] = {
325 { .compatible
= "maxim,max8660", .data
= (void *) MAX8660
},
326 { .compatible
= "maxim,max8661", .data
= (void *) MAX8661
},
329 MODULE_DEVICE_TABLE(of
, max8660_dt_ids
);
331 static int max8660_pdata_from_dt(struct device
*dev
,
332 struct device_node
**of_node
,
333 struct max8660_platform_data
*pdata
)
336 struct device_node
*np
;
337 struct max8660_subdev_data
*sub
;
338 struct of_regulator_match rmatch
[ARRAY_SIZE(max8660_reg
)] = { };
340 np
= of_get_child_by_name(dev
->of_node
, "regulators");
342 dev_err(dev
, "missing 'regulators' subnode in DT\n");
346 for (i
= 0; i
< ARRAY_SIZE(rmatch
); i
++)
347 rmatch
[i
].name
= max8660_reg
[i
].name
;
349 matched
= of_regulator_match(dev
, np
, rmatch
, ARRAY_SIZE(rmatch
));
354 pdata
->subdevs
= devm_kzalloc(dev
, sizeof(struct max8660_subdev_data
) *
355 matched
, GFP_KERNEL
);
359 pdata
->num_subdevs
= matched
;
360 sub
= pdata
->subdevs
;
362 for (i
= 0; i
< matched
; i
++) {
364 sub
->name
= rmatch
[i
].name
;
365 sub
->platform_data
= rmatch
[i
].init_data
;
366 of_node
[i
] = rmatch
[i
].of_node
;
373 static inline int max8660_pdata_from_dt(struct device
*dev
,
374 struct device_node
**of_node
,
375 struct max8660_platform_data
*pdata
)
381 static int max8660_probe(struct i2c_client
*client
,
382 const struct i2c_device_id
*i2c_id
)
384 struct device
*dev
= &client
->dev
;
385 struct max8660_platform_data pdata_of
, *pdata
= dev_get_platdata(dev
);
386 struct regulator_config config
= { };
387 struct max8660
*max8660
;
388 int boot_on
, i
, id
, ret
= -EINVAL
;
389 struct device_node
*of_node
[MAX8660_V_END
];
392 if (dev
->of_node
&& !pdata
) {
393 const struct of_device_id
*id
;
395 id
= of_match_device(of_match_ptr(max8660_dt_ids
), dev
);
399 ret
= max8660_pdata_from_dt(dev
, of_node
, &pdata_of
);
404 type
= (unsigned long) id
->data
;
406 type
= i2c_id
->driver_data
;
407 memset(of_node
, 0, sizeof(of_node
));
410 if (pdata
->num_subdevs
> MAX8660_V_END
) {
411 dev_err(dev
, "Too many regulators found!\n");
415 max8660
= devm_kzalloc(dev
, sizeof(struct max8660
), GFP_KERNEL
);
419 max8660
->client
= client
;
421 if (pdata
->en34_is_high
) {
422 /* Simulate always on */
423 max8660
->shadow_regs
[MAX8660_OVER1
] = 5;
425 /* Otherwise devices can be toggled via software */
426 max8660_dcdc_ops
.enable
= max8660_dcdc_enable
;
427 max8660_dcdc_ops
.disable
= max8660_dcdc_disable
;
431 * First, set up shadow registers to prevent glitches. As some
432 * registers are shared between regulators, everything must be properly
433 * set up for all regulators in advance.
435 max8660
->shadow_regs
[MAX8660_ADTV1
] =
436 max8660
->shadow_regs
[MAX8660_ADTV2
] =
437 max8660
->shadow_regs
[MAX8660_SDTV1
] =
438 max8660
->shadow_regs
[MAX8660_SDTV2
] = 0x1b;
439 max8660
->shadow_regs
[MAX8660_MDTV1
] =
440 max8660
->shadow_regs
[MAX8660_MDTV2
] = 0x04;
442 for (i
= 0; i
< pdata
->num_subdevs
; i
++) {
444 if (!pdata
->subdevs
[i
].platform_data
)
447 boot_on
= pdata
->subdevs
[i
].platform_data
->constraints
.boot_on
;
449 switch (pdata
->subdevs
[i
].id
) {
452 max8660
->shadow_regs
[MAX8660_OVER1
] |= 1;
457 max8660
->shadow_regs
[MAX8660_OVER1
] |= 4;
465 max8660
->shadow_regs
[MAX8660_OVER2
] |= 2;
469 if (type
== MAX8661
) {
470 dev_err(dev
, "Regulator not on this chip!\n");
475 max8660
->shadow_regs
[MAX8660_OVER2
] |= 4;
479 dev_err(dev
, "invalid regulator %s\n",
480 pdata
->subdevs
[i
].name
);
485 /* Finally register devices */
486 for (i
= 0; i
< pdata
->num_subdevs
; i
++) {
487 struct regulator_dev
*rdev
;
489 id
= pdata
->subdevs
[i
].id
;
492 config
.init_data
= pdata
->subdevs
[i
].platform_data
;
493 config
.of_node
= of_node
[i
];
494 config
.driver_data
= max8660
;
496 rdev
= devm_regulator_register(&client
->dev
,
497 &max8660_reg
[id
], &config
);
500 dev_err(&client
->dev
, "failed to register %s\n",
501 max8660_reg
[id
].name
);
502 return PTR_ERR(rdev
);
506 i2c_set_clientdata(client
, max8660
);
510 static const struct i2c_device_id max8660_id
[] = {
511 { .name
= "max8660", .driver_data
= MAX8660
},
512 { .name
= "max8661", .driver_data
= MAX8661
},
515 MODULE_DEVICE_TABLE(i2c
, max8660_id
);
517 static struct i2c_driver max8660_driver
= {
518 .probe
= max8660_probe
,
522 .id_table
= max8660_id
,
525 static int __init
max8660_init(void)
527 return i2c_add_driver(&max8660_driver
);
529 subsys_initcall(max8660_init
);
531 static void __exit
max8660_exit(void)
533 i2c_del_driver(&max8660_driver
);
535 module_exit(max8660_exit
);
537 /* Module information */
538 MODULE_DESCRIPTION("MAXIM 8660/8661 voltage regulator driver");
539 MODULE_AUTHOR("Wolfram Sang");
540 MODULE_LICENSE("GPL v2");