Loading...
1// SPDX-License-Identifier: GPL-2.0
2//
3// MCP16502 PMIC driver
4//
5// Copyright (C) 2018 Microchip Technology Inc. and its subsidiaries
6//
7// Author: Andrei Stefanescu <andrei.stefanescu@microchip.com>
8//
9// Inspired from tps65086-regulator.c
10
11#include <linux/i2c.h>
12#include <linux/init.h>
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/of.h>
16#include <linux/regmap.h>
17#include <linux/regulator/driver.h>
18#include <linux/suspend.h>
19#include <linux/gpio/consumer.h>
20
21#define VDD_LOW_SEL 0x0D
22#define VDD_HIGH_SEL 0x3F
23
24#define MCP16502_FLT BIT(7)
25#define MCP16502_DVSR GENMASK(3, 2)
26#define MCP16502_ENS BIT(0)
27
28/*
29 * The PMIC has four sets of registers corresponding to four power modes:
30 * Performance, Active, Low-power, Hibernate.
31 *
32 * Registers:
33 * Each regulator has a register for each power mode. To access a register
34 * for a specific regulator and mode BASE_* and OFFSET_* need to be added.
35 *
36 * Operating modes:
37 * In order for the PMIC to transition to operating modes it has to be
38 * controlled via GPIO lines called LPM and HPM.
39 *
40 * The registers are fully configurable such that you can put all regulators in
41 * a low-power state while the PMIC is in Active mode. They are supposed to be
42 * configured at startup and then simply transition to/from a global low-power
43 * state by setting the GPIO lpm pin high/low.
44 *
45 * This driver keeps the PMIC in Active mode, Low-power state is set for the
46 * regulators by enabling/disabling operating mode (FPWM or Auto PFM).
47 *
48 * The PMIC's Low-power and Hibernate modes are used during standby/suspend.
49 * To enter standby/suspend the PMIC will go to Low-power mode. From there, it
50 * will transition to Hibernate when the PWRHLD line is set to low by the MPU.
51 */
52
53/*
54 * This function is useful for iterating over all regulators and accessing their
55 * registers in a generic way or accessing a regulator device by its id.
56 */
57#define MCP16502_REG_BASE(i, r) ((((i) + 1) << 4) + MCP16502_REG_##r)
58#define MCP16502_STAT_BASE(i) ((i) + 5)
59
60#define MCP16502_OPMODE_ACTIVE REGULATOR_MODE_NORMAL
61#define MCP16502_OPMODE_LPM REGULATOR_MODE_IDLE
62#define MCP16502_OPMODE_HIB REGULATOR_MODE_STANDBY
63
64#define MCP16502_MODE_AUTO_PFM 0
65#define MCP16502_MODE_FPWM BIT(6)
66
67#define MCP16502_VSEL 0x3F
68#define MCP16502_EN BIT(7)
69#define MCP16502_MODE BIT(6)
70
71#define MCP16502_MIN_REG 0x0
72#define MCP16502_MAX_REG 0x65
73
74/**
75 * enum mcp16502_reg - MCP16502 regulators's registers
76 * @MCP16502_REG_A: active state register
77 * @MCP16502_REG_LPM: low power mode state register
78 * @MCP16502_REG_HIB: hibernate state register
79 * @MCP16502_REG_HPM: high-performance mode register
80 * @MCP16502_REG_SEQ: startup sequence register
81 * @MCP16502_REG_CFG: configuration register
82 */
83enum mcp16502_reg {
84 MCP16502_REG_A,
85 MCP16502_REG_LPM,
86 MCP16502_REG_HIB,
87 MCP16502_REG_HPM,
88 MCP16502_REG_SEQ,
89 MCP16502_REG_CFG,
90};
91
92/* Ramp delay (uV/us) for buck1, ldo1, ldo2. */
93static const unsigned int mcp16502_ramp_b1l12[] = {
94 6250, 3125, 2083, 1563
95};
96
97/* Ramp delay (uV/us) for buck2, buck3, buck4. */
98static const unsigned int mcp16502_ramp_b234[] = {
99 3125, 1563, 1042, 781
100};
101
102static unsigned int mcp16502_of_map_mode(unsigned int mode)
103{
104 if (mode == REGULATOR_MODE_NORMAL || mode == REGULATOR_MODE_IDLE)
105 return mode;
106
107 return REGULATOR_MODE_INVALID;
108}
109
110#define MCP16502_REGULATOR(_name, _id, _sn, _ranges, _ops, _ramp_table) \
111 [_id] = { \
112 .name = _name, \
113 .supply_name = #_sn, \
114 .regulators_node = "regulators", \
115 .id = _id, \
116 .ops = &(_ops), \
117 .type = REGULATOR_VOLTAGE, \
118 .owner = THIS_MODULE, \
119 .n_voltages = MCP16502_VSEL + 1, \
120 .linear_ranges = _ranges, \
121 .linear_min_sel = VDD_LOW_SEL, \
122 .n_linear_ranges = ARRAY_SIZE(_ranges), \
123 .of_match = _name, \
124 .of_map_mode = mcp16502_of_map_mode, \
125 .vsel_reg = (((_id) + 1) << 4), \
126 .vsel_mask = MCP16502_VSEL, \
127 .enable_reg = (((_id) + 1) << 4), \
128 .enable_mask = MCP16502_EN, \
129 .ramp_reg = MCP16502_REG_BASE(_id, CFG), \
130 .ramp_mask = MCP16502_DVSR, \
131 .ramp_delay_table = _ramp_table, \
132 .n_ramp_values = ARRAY_SIZE(_ramp_table), \
133 }
134
135enum {
136 BUCK1 = 0,
137 BUCK2,
138 BUCK3,
139 BUCK4,
140 LDO1,
141 LDO2,
142 NUM_REGULATORS
143};
144
145/*
146 * struct mcp16502 - PMIC representation
147 * @lpm: LPM GPIO descriptor
148 */
149struct mcp16502 {
150 struct gpio_desc *lpm;
151};
152
153/*
154 * mcp16502_gpio_set_mode() - set the GPIO corresponding value
155 *
156 * Used to prepare transitioning into hibernate or resuming from it.
157 */
158static void mcp16502_gpio_set_mode(struct mcp16502 *mcp, int mode)
159{
160 switch (mode) {
161 case MCP16502_OPMODE_ACTIVE:
162 gpiod_set_value(mcp->lpm, 0);
163 break;
164 case MCP16502_OPMODE_LPM:
165 case MCP16502_OPMODE_HIB:
166 gpiod_set_value(mcp->lpm, 1);
167 break;
168 default:
169 pr_err("%s: %d invalid\n", __func__, mode);
170 }
171}
172
173/*
174 * mcp16502_get_reg() - get the PMIC's state configuration register for opmode
175 *
176 * @rdev: the regulator whose register we are searching
177 * @opmode: the PMIC's operating mode ACTIVE, Low-power, Hibernate
178 */
179static int mcp16502_get_state_reg(struct regulator_dev *rdev, int opmode)
180{
181 switch (opmode) {
182 case MCP16502_OPMODE_ACTIVE:
183 return MCP16502_REG_BASE(rdev_get_id(rdev), A);
184 case MCP16502_OPMODE_LPM:
185 return MCP16502_REG_BASE(rdev_get_id(rdev), LPM);
186 case MCP16502_OPMODE_HIB:
187 return MCP16502_REG_BASE(rdev_get_id(rdev), HIB);
188 default:
189 return -EINVAL;
190 }
191}
192
193/*
194 * mcp16502_get_mode() - return the current operating mode of a regulator
195 *
196 * Note: all functions that are not part of entering/exiting standby/suspend
197 * use the Active mode registers.
198 *
199 * Note: this is different from the PMIC's operatig mode, it is the
200 * MODE bit from the regulator's register.
201 */
202static unsigned int mcp16502_get_mode(struct regulator_dev *rdev)
203{
204 unsigned int val;
205 int ret, reg;
206
207 reg = mcp16502_get_state_reg(rdev, MCP16502_OPMODE_ACTIVE);
208 if (reg < 0)
209 return reg;
210
211 ret = regmap_read(rdev->regmap, reg, &val);
212 if (ret)
213 return ret;
214
215 switch (val & MCP16502_MODE) {
216 case MCP16502_MODE_FPWM:
217 return REGULATOR_MODE_NORMAL;
218 case MCP16502_MODE_AUTO_PFM:
219 return REGULATOR_MODE_IDLE;
220 default:
221 return REGULATOR_MODE_INVALID;
222 }
223}
224
225/*
226 * _mcp16502_set_mode() - helper for set_mode and set_suspend_mode
227 *
228 * @rdev: the regulator for which we are setting the mode
229 * @mode: the regulator's mode (the one from MODE bit)
230 * @opmode: the PMIC's operating mode: Active/Low-power/Hibernate
231 */
232static int _mcp16502_set_mode(struct regulator_dev *rdev, unsigned int mode,
233 unsigned int op_mode)
234{
235 int val;
236 int reg;
237
238 reg = mcp16502_get_state_reg(rdev, op_mode);
239 if (reg < 0)
240 return reg;
241
242 switch (mode) {
243 case REGULATOR_MODE_NORMAL:
244 val = MCP16502_MODE_FPWM;
245 break;
246 case REGULATOR_MODE_IDLE:
247 val = MCP16502_MODE_AUTO_PFM;
248 break;
249 default:
250 return -EINVAL;
251 }
252
253 reg = regmap_update_bits(rdev->regmap, reg, MCP16502_MODE, val);
254 return reg;
255}
256
257/*
258 * mcp16502_set_mode() - regulator_ops set_mode
259 */
260static int mcp16502_set_mode(struct regulator_dev *rdev, unsigned int mode)
261{
262 return _mcp16502_set_mode(rdev, mode, MCP16502_OPMODE_ACTIVE);
263}
264
265/*
266 * mcp16502_get_status() - regulator_ops get_status
267 */
268static int mcp16502_get_status(struct regulator_dev *rdev)
269{
270 int ret;
271 unsigned int val;
272
273 ret = regmap_read(rdev->regmap, MCP16502_STAT_BASE(rdev_get_id(rdev)),
274 &val);
275 if (ret)
276 return ret;
277
278 if (val & MCP16502_FLT)
279 return REGULATOR_STATUS_ERROR;
280 else if (val & MCP16502_ENS)
281 return REGULATOR_STATUS_ON;
282 else if (!(val & MCP16502_ENS))
283 return REGULATOR_STATUS_OFF;
284
285 return REGULATOR_STATUS_UNDEFINED;
286}
287
288static int mcp16502_set_voltage_time_sel(struct regulator_dev *rdev,
289 unsigned int old_sel,
290 unsigned int new_sel)
291{
292 static const u8 us_ramp[] = { 8, 16, 24, 32 };
293 int id = rdev_get_id(rdev);
294 unsigned int uV_delta, val;
295 int ret;
296
297 ret = regmap_read(rdev->regmap, MCP16502_REG_BASE(id, CFG), &val);
298 if (ret)
299 return ret;
300
301 val = (val & MCP16502_DVSR) >> 2;
302 uV_delta = abs(new_sel * rdev->desc->linear_ranges->step -
303 old_sel * rdev->desc->linear_ranges->step);
304 switch (id) {
305 case BUCK1:
306 case LDO1:
307 case LDO2:
308 ret = DIV_ROUND_CLOSEST(uV_delta * us_ramp[val],
309 mcp16502_ramp_b1l12[val]);
310 break;
311
312 case BUCK2:
313 case BUCK3:
314 case BUCK4:
315 ret = DIV_ROUND_CLOSEST(uV_delta * us_ramp[val],
316 mcp16502_ramp_b234[val]);
317 break;
318
319 default:
320 return -EINVAL;
321 }
322
323 return ret;
324}
325
326#ifdef CONFIG_SUSPEND
327/*
328 * mcp16502_suspend_get_target_reg() - get the reg of the target suspend PMIC
329 * mode
330 */
331static int mcp16502_suspend_get_target_reg(struct regulator_dev *rdev)
332{
333 switch (pm_suspend_target_state) {
334 case PM_SUSPEND_STANDBY:
335 return mcp16502_get_state_reg(rdev, MCP16502_OPMODE_LPM);
336 case PM_SUSPEND_ON:
337 case PM_SUSPEND_MEM:
338 return mcp16502_get_state_reg(rdev, MCP16502_OPMODE_HIB);
339 default:
340 dev_err(&rdev->dev, "invalid suspend target: %d\n",
341 pm_suspend_target_state);
342 }
343
344 return -EINVAL;
345}
346
347/*
348 * mcp16502_set_suspend_voltage() - regulator_ops set_suspend_voltage
349 */
350static int mcp16502_set_suspend_voltage(struct regulator_dev *rdev, int uV)
351{
352 int sel = regulator_map_voltage_linear_range(rdev, uV, uV);
353 int reg = mcp16502_suspend_get_target_reg(rdev);
354
355 if (sel < 0)
356 return sel;
357
358 if (reg < 0)
359 return reg;
360
361 return regmap_update_bits(rdev->regmap, reg, MCP16502_VSEL, sel);
362}
363
364/*
365 * mcp16502_set_suspend_mode() - regulator_ops set_suspend_mode
366 */
367static int mcp16502_set_suspend_mode(struct regulator_dev *rdev,
368 unsigned int mode)
369{
370 switch (pm_suspend_target_state) {
371 case PM_SUSPEND_STANDBY:
372 return _mcp16502_set_mode(rdev, mode, MCP16502_OPMODE_LPM);
373 case PM_SUSPEND_ON:
374 case PM_SUSPEND_MEM:
375 return _mcp16502_set_mode(rdev, mode, MCP16502_OPMODE_HIB);
376 default:
377 dev_err(&rdev->dev, "invalid suspend target: %d\n",
378 pm_suspend_target_state);
379 }
380
381 return -EINVAL;
382}
383
384/*
385 * mcp16502_set_suspend_enable() - regulator_ops set_suspend_enable
386 */
387static int mcp16502_set_suspend_enable(struct regulator_dev *rdev)
388{
389 int reg = mcp16502_suspend_get_target_reg(rdev);
390
391 if (reg < 0)
392 return reg;
393
394 return regmap_update_bits(rdev->regmap, reg, MCP16502_EN, MCP16502_EN);
395}
396
397/*
398 * mcp16502_set_suspend_disable() - regulator_ops set_suspend_disable
399 */
400static int mcp16502_set_suspend_disable(struct regulator_dev *rdev)
401{
402 int reg = mcp16502_suspend_get_target_reg(rdev);
403
404 if (reg < 0)
405 return reg;
406
407 return regmap_update_bits(rdev->regmap, reg, MCP16502_EN, 0);
408}
409#endif /* CONFIG_SUSPEND */
410
411static const struct regulator_ops mcp16502_buck_ops = {
412 .list_voltage = regulator_list_voltage_linear_range,
413 .map_voltage = regulator_map_voltage_linear_range,
414 .get_voltage_sel = regulator_get_voltage_sel_regmap,
415 .set_voltage_sel = regulator_set_voltage_sel_regmap,
416 .enable = regulator_enable_regmap,
417 .disable = regulator_disable_regmap,
418 .is_enabled = regulator_is_enabled_regmap,
419 .get_status = mcp16502_get_status,
420 .set_voltage_time_sel = mcp16502_set_voltage_time_sel,
421 .set_ramp_delay = regulator_set_ramp_delay_regmap,
422
423 .set_mode = mcp16502_set_mode,
424 .get_mode = mcp16502_get_mode,
425
426#ifdef CONFIG_SUSPEND
427 .set_suspend_voltage = mcp16502_set_suspend_voltage,
428 .set_suspend_mode = mcp16502_set_suspend_mode,
429 .set_suspend_enable = mcp16502_set_suspend_enable,
430 .set_suspend_disable = mcp16502_set_suspend_disable,
431#endif /* CONFIG_SUSPEND */
432};
433
434/*
435 * LDOs cannot change operating modes.
436 */
437static const struct regulator_ops mcp16502_ldo_ops = {
438 .list_voltage = regulator_list_voltage_linear_range,
439 .map_voltage = regulator_map_voltage_linear_range,
440 .get_voltage_sel = regulator_get_voltage_sel_regmap,
441 .set_voltage_sel = regulator_set_voltage_sel_regmap,
442 .enable = regulator_enable_regmap,
443 .disable = regulator_disable_regmap,
444 .is_enabled = regulator_is_enabled_regmap,
445 .get_status = mcp16502_get_status,
446 .set_voltage_time_sel = mcp16502_set_voltage_time_sel,
447 .set_ramp_delay = regulator_set_ramp_delay_regmap,
448
449#ifdef CONFIG_SUSPEND
450 .set_suspend_voltage = mcp16502_set_suspend_voltage,
451 .set_suspend_enable = mcp16502_set_suspend_enable,
452 .set_suspend_disable = mcp16502_set_suspend_disable,
453#endif /* CONFIG_SUSPEND */
454};
455
456static const struct of_device_id mcp16502_ids[] = {
457 { .compatible = "microchip,mcp16502", },
458 {}
459};
460MODULE_DEVICE_TABLE(of, mcp16502_ids);
461
462static const struct linear_range b1l12_ranges[] = {
463 REGULATOR_LINEAR_RANGE(1200000, VDD_LOW_SEL, VDD_HIGH_SEL, 50000),
464};
465
466static const struct linear_range b234_ranges[] = {
467 REGULATOR_LINEAR_RANGE(600000, VDD_LOW_SEL, VDD_HIGH_SEL, 25000),
468};
469
470static const struct regulator_desc mcp16502_desc[] = {
471 /* MCP16502_REGULATOR(_name, _id, _sn, _ranges, _ops, _ramp_table) */
472 MCP16502_REGULATOR("VDD_IO", BUCK1, pvin1, b1l12_ranges, mcp16502_buck_ops,
473 mcp16502_ramp_b1l12),
474 MCP16502_REGULATOR("VDD_DDR", BUCK2, pvin2, b234_ranges, mcp16502_buck_ops,
475 mcp16502_ramp_b234),
476 MCP16502_REGULATOR("VDD_CORE", BUCK3, pvin3, b234_ranges, mcp16502_buck_ops,
477 mcp16502_ramp_b234),
478 MCP16502_REGULATOR("VDD_OTHER", BUCK4, pvin4, b234_ranges, mcp16502_buck_ops,
479 mcp16502_ramp_b234),
480 MCP16502_REGULATOR("LDO1", LDO1, lvin, b1l12_ranges, mcp16502_ldo_ops,
481 mcp16502_ramp_b1l12),
482 MCP16502_REGULATOR("LDO2", LDO2, lvin, b1l12_ranges, mcp16502_ldo_ops,
483 mcp16502_ramp_b1l12)
484};
485
486static const struct regmap_range mcp16502_ranges[] = {
487 regmap_reg_range(MCP16502_MIN_REG, MCP16502_MAX_REG)
488};
489
490static const struct regmap_access_table mcp16502_yes_reg_table = {
491 .yes_ranges = mcp16502_ranges,
492 .n_yes_ranges = ARRAY_SIZE(mcp16502_ranges),
493};
494
495static const struct regmap_config mcp16502_regmap_config = {
496 .reg_bits = 8,
497 .val_bits = 8,
498 .max_register = MCP16502_MAX_REG,
499 .cache_type = REGCACHE_NONE,
500 .rd_table = &mcp16502_yes_reg_table,
501 .wr_table = &mcp16502_yes_reg_table,
502};
503
504static int mcp16502_probe(struct i2c_client *client)
505{
506 struct regulator_config config = { };
507 struct regulator_dev *rdev;
508 struct device *dev;
509 struct mcp16502 *mcp;
510 struct regmap *rmap;
511 int i, ret;
512
513 dev = &client->dev;
514 config.dev = dev;
515
516 mcp = devm_kzalloc(dev, sizeof(*mcp), GFP_KERNEL);
517 if (!mcp)
518 return -ENOMEM;
519
520 rmap = devm_regmap_init_i2c(client, &mcp16502_regmap_config);
521 if (IS_ERR(rmap)) {
522 ret = PTR_ERR(rmap);
523 dev_err(dev, "regmap init failed: %d\n", ret);
524 return ret;
525 }
526
527 i2c_set_clientdata(client, mcp);
528 config.regmap = rmap;
529 config.driver_data = mcp;
530
531 mcp->lpm = devm_gpiod_get_optional(dev, "lpm", GPIOD_OUT_LOW);
532 if (IS_ERR(mcp->lpm)) {
533 dev_err(dev, "failed to get lpm pin: %ld\n", PTR_ERR(mcp->lpm));
534 return PTR_ERR(mcp->lpm);
535 }
536
537 for (i = 0; i < NUM_REGULATORS; i++) {
538 rdev = devm_regulator_register(dev, &mcp16502_desc[i], &config);
539 if (IS_ERR(rdev)) {
540 dev_err(dev,
541 "failed to register %s regulator %ld\n",
542 mcp16502_desc[i].name, PTR_ERR(rdev));
543 return PTR_ERR(rdev);
544 }
545 }
546
547 mcp16502_gpio_set_mode(mcp, MCP16502_OPMODE_ACTIVE);
548
549 return 0;
550}
551
552#ifdef CONFIG_PM_SLEEP
553static int mcp16502_suspend_noirq(struct device *dev)
554{
555 struct i2c_client *client = to_i2c_client(dev);
556 struct mcp16502 *mcp = i2c_get_clientdata(client);
557
558 mcp16502_gpio_set_mode(mcp, MCP16502_OPMODE_LPM);
559
560 return 0;
561}
562
563static int mcp16502_resume_noirq(struct device *dev)
564{
565 struct i2c_client *client = to_i2c_client(dev);
566 struct mcp16502 *mcp = i2c_get_clientdata(client);
567
568 mcp16502_gpio_set_mode(mcp, MCP16502_OPMODE_ACTIVE);
569
570 return 0;
571}
572#endif
573
574#ifdef CONFIG_PM
575static const struct dev_pm_ops mcp16502_pm_ops = {
576 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(mcp16502_suspend_noirq,
577 mcp16502_resume_noirq)
578};
579#endif
580static const struct i2c_device_id mcp16502_i2c_id[] = {
581 { "mcp16502" },
582 { }
583};
584MODULE_DEVICE_TABLE(i2c, mcp16502_i2c_id);
585
586static struct i2c_driver mcp16502_drv = {
587 .probe = mcp16502_probe,
588 .driver = {
589 .name = "mcp16502-regulator",
590 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
591 .of_match_table = mcp16502_ids,
592#ifdef CONFIG_PM
593 .pm = &mcp16502_pm_ops,
594#endif
595 },
596 .id_table = mcp16502_i2c_id,
597};
598
599module_i2c_driver(mcp16502_drv);
600
601MODULE_LICENSE("GPL v2");
602MODULE_DESCRIPTION("MCP16502 PMIC driver");
603MODULE_AUTHOR("Andrei Stefanescu andrei.stefanescu@microchip.com");
1// SPDX-License-Identifier: GPL-2.0
2//
3// MCP16502 PMIC driver
4//
5// Copyright (C) 2018 Microchip Technology Inc. and its subsidiaries
6//
7// Author: Andrei Stefanescu <andrei.stefanescu@microchip.com>
8//
9// Inspired from tps65086-regulator.c
10
11#include <linux/i2c.h>
12#include <linux/init.h>
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/of.h>
16#include <linux/regmap.h>
17#include <linux/regulator/driver.h>
18#include <linux/suspend.h>
19#include <linux/gpio/consumer.h>
20
21#define VDD_LOW_SEL 0x0D
22#define VDD_HIGH_SEL 0x3F
23
24#define MCP16502_FLT BIT(7)
25#define MCP16502_DVSR GENMASK(3, 2)
26#define MCP16502_ENS BIT(0)
27
28/*
29 * The PMIC has four sets of registers corresponding to four power modes:
30 * Performance, Active, Low-power, Hibernate.
31 *
32 * Registers:
33 * Each regulator has a register for each power mode. To access a register
34 * for a specific regulator and mode BASE_* and OFFSET_* need to be added.
35 *
36 * Operating modes:
37 * In order for the PMIC to transition to operating modes it has to be
38 * controlled via GPIO lines called LPM and HPM.
39 *
40 * The registers are fully configurable such that you can put all regulators in
41 * a low-power state while the PMIC is in Active mode. They are supposed to be
42 * configured at startup and then simply transition to/from a global low-power
43 * state by setting the GPIO lpm pin high/low.
44 *
45 * This driver keeps the PMIC in Active mode, Low-power state is set for the
46 * regulators by enabling/disabling operating mode (FPWM or Auto PFM).
47 *
48 * The PMIC's Low-power and Hibernate modes are used during standby/suspend.
49 * To enter standby/suspend the PMIC will go to Low-power mode. From there, it
50 * will transition to Hibernate when the PWRHLD line is set to low by the MPU.
51 */
52
53/*
54 * This function is useful for iterating over all regulators and accessing their
55 * registers in a generic way or accessing a regulator device by its id.
56 */
57#define MCP16502_REG_BASE(i, r) ((((i) + 1) << 4) + MCP16502_REG_##r)
58#define MCP16502_STAT_BASE(i) ((i) + 5)
59
60#define MCP16502_OPMODE_ACTIVE REGULATOR_MODE_NORMAL
61#define MCP16502_OPMODE_LPM REGULATOR_MODE_IDLE
62#define MCP16502_OPMODE_HIB REGULATOR_MODE_STANDBY
63
64#define MCP16502_MODE_AUTO_PFM 0
65#define MCP16502_MODE_FPWM BIT(6)
66
67#define MCP16502_VSEL 0x3F
68#define MCP16502_EN BIT(7)
69#define MCP16502_MODE BIT(6)
70
71#define MCP16502_MIN_REG 0x0
72#define MCP16502_MAX_REG 0x65
73
74/**
75 * enum mcp16502_reg - MCP16502 regulators's registers
76 * @MCP16502_REG_A: active state register
77 * @MCP16502_REG_LPM: low power mode state register
78 * @MCP16502_REG_HIB: hibernate state register
79 * @MCP16502_REG_HPM: high-performance mode register
80 * @MCP16502_REG_SEQ: startup sequence register
81 * @MCP16502_REG_CFG: configuration register
82 */
83enum mcp16502_reg {
84 MCP16502_REG_A,
85 MCP16502_REG_LPM,
86 MCP16502_REG_HIB,
87 MCP16502_REG_HPM,
88 MCP16502_REG_SEQ,
89 MCP16502_REG_CFG,
90};
91
92/* Ramp delay (uV/us) for buck1, ldo1, ldo2. */
93static const unsigned int mcp16502_ramp_b1l12[] = {
94 6250, 3125, 2083, 1563
95};
96
97/* Ramp delay (uV/us) for buck2, buck3, buck4. */
98static const unsigned int mcp16502_ramp_b234[] = {
99 3125, 1563, 1042, 781
100};
101
102static unsigned int mcp16502_of_map_mode(unsigned int mode)
103{
104 if (mode == REGULATOR_MODE_NORMAL || mode == REGULATOR_MODE_IDLE)
105 return mode;
106
107 return REGULATOR_MODE_INVALID;
108}
109
110#define MCP16502_REGULATOR(_name, _id, _ranges, _ops, _ramp_table) \
111 [_id] = { \
112 .name = _name, \
113 .regulators_node = "regulators", \
114 .id = _id, \
115 .ops = &(_ops), \
116 .type = REGULATOR_VOLTAGE, \
117 .owner = THIS_MODULE, \
118 .n_voltages = MCP16502_VSEL + 1, \
119 .linear_ranges = _ranges, \
120 .linear_min_sel = VDD_LOW_SEL, \
121 .n_linear_ranges = ARRAY_SIZE(_ranges), \
122 .of_match = _name, \
123 .of_map_mode = mcp16502_of_map_mode, \
124 .vsel_reg = (((_id) + 1) << 4), \
125 .vsel_mask = MCP16502_VSEL, \
126 .enable_reg = (((_id) + 1) << 4), \
127 .enable_mask = MCP16502_EN, \
128 .ramp_reg = MCP16502_REG_BASE(_id, CFG), \
129 .ramp_mask = MCP16502_DVSR, \
130 .ramp_delay_table = _ramp_table, \
131 .n_ramp_values = ARRAY_SIZE(_ramp_table), \
132 }
133
134enum {
135 BUCK1 = 0,
136 BUCK2,
137 BUCK3,
138 BUCK4,
139 LDO1,
140 LDO2,
141 NUM_REGULATORS
142};
143
144/*
145 * struct mcp16502 - PMIC representation
146 * @lpm: LPM GPIO descriptor
147 */
148struct mcp16502 {
149 struct gpio_desc *lpm;
150};
151
152/*
153 * mcp16502_gpio_set_mode() - set the GPIO corresponding value
154 *
155 * Used to prepare transitioning into hibernate or resuming from it.
156 */
157static void mcp16502_gpio_set_mode(struct mcp16502 *mcp, int mode)
158{
159 switch (mode) {
160 case MCP16502_OPMODE_ACTIVE:
161 gpiod_set_value(mcp->lpm, 0);
162 break;
163 case MCP16502_OPMODE_LPM:
164 case MCP16502_OPMODE_HIB:
165 gpiod_set_value(mcp->lpm, 1);
166 break;
167 default:
168 pr_err("%s: %d invalid\n", __func__, mode);
169 }
170}
171
172/*
173 * mcp16502_get_reg() - get the PMIC's state configuration register for opmode
174 *
175 * @rdev: the regulator whose register we are searching
176 * @opmode: the PMIC's operating mode ACTIVE, Low-power, Hibernate
177 */
178static int mcp16502_get_state_reg(struct regulator_dev *rdev, int opmode)
179{
180 switch (opmode) {
181 case MCP16502_OPMODE_ACTIVE:
182 return MCP16502_REG_BASE(rdev_get_id(rdev), A);
183 case MCP16502_OPMODE_LPM:
184 return MCP16502_REG_BASE(rdev_get_id(rdev), LPM);
185 case MCP16502_OPMODE_HIB:
186 return MCP16502_REG_BASE(rdev_get_id(rdev), HIB);
187 default:
188 return -EINVAL;
189 }
190}
191
192/*
193 * mcp16502_get_mode() - return the current operating mode of a regulator
194 *
195 * Note: all functions that are not part of entering/exiting standby/suspend
196 * use the Active mode registers.
197 *
198 * Note: this is different from the PMIC's operatig mode, it is the
199 * MODE bit from the regulator's register.
200 */
201static unsigned int mcp16502_get_mode(struct regulator_dev *rdev)
202{
203 unsigned int val;
204 int ret, reg;
205
206 reg = mcp16502_get_state_reg(rdev, MCP16502_OPMODE_ACTIVE);
207 if (reg < 0)
208 return reg;
209
210 ret = regmap_read(rdev->regmap, reg, &val);
211 if (ret)
212 return ret;
213
214 switch (val & MCP16502_MODE) {
215 case MCP16502_MODE_FPWM:
216 return REGULATOR_MODE_NORMAL;
217 case MCP16502_MODE_AUTO_PFM:
218 return REGULATOR_MODE_IDLE;
219 default:
220 return REGULATOR_MODE_INVALID;
221 }
222}
223
224/*
225 * _mcp16502_set_mode() - helper for set_mode and set_suspend_mode
226 *
227 * @rdev: the regulator for which we are setting the mode
228 * @mode: the regulator's mode (the one from MODE bit)
229 * @opmode: the PMIC's operating mode: Active/Low-power/Hibernate
230 */
231static int _mcp16502_set_mode(struct regulator_dev *rdev, unsigned int mode,
232 unsigned int op_mode)
233{
234 int val;
235 int reg;
236
237 reg = mcp16502_get_state_reg(rdev, op_mode);
238 if (reg < 0)
239 return reg;
240
241 switch (mode) {
242 case REGULATOR_MODE_NORMAL:
243 val = MCP16502_MODE_FPWM;
244 break;
245 case REGULATOR_MODE_IDLE:
246 val = MCP16502_MODE_AUTO_PFM;
247 break;
248 default:
249 return -EINVAL;
250 }
251
252 reg = regmap_update_bits(rdev->regmap, reg, MCP16502_MODE, val);
253 return reg;
254}
255
256/*
257 * mcp16502_set_mode() - regulator_ops set_mode
258 */
259static int mcp16502_set_mode(struct regulator_dev *rdev, unsigned int mode)
260{
261 return _mcp16502_set_mode(rdev, mode, MCP16502_OPMODE_ACTIVE);
262}
263
264/*
265 * mcp16502_get_status() - regulator_ops get_status
266 */
267static int mcp16502_get_status(struct regulator_dev *rdev)
268{
269 int ret;
270 unsigned int val;
271
272 ret = regmap_read(rdev->regmap, MCP16502_STAT_BASE(rdev_get_id(rdev)),
273 &val);
274 if (ret)
275 return ret;
276
277 if (val & MCP16502_FLT)
278 return REGULATOR_STATUS_ERROR;
279 else if (val & MCP16502_ENS)
280 return REGULATOR_STATUS_ON;
281 else if (!(val & MCP16502_ENS))
282 return REGULATOR_STATUS_OFF;
283
284 return REGULATOR_STATUS_UNDEFINED;
285}
286
287static int mcp16502_set_voltage_time_sel(struct regulator_dev *rdev,
288 unsigned int old_sel,
289 unsigned int new_sel)
290{
291 static const u8 us_ramp[] = { 8, 16, 24, 32 };
292 int id = rdev_get_id(rdev);
293 unsigned int uV_delta, val;
294 int ret;
295
296 ret = regmap_read(rdev->regmap, MCP16502_REG_BASE(id, CFG), &val);
297 if (ret)
298 return ret;
299
300 val = (val & MCP16502_DVSR) >> 2;
301 uV_delta = abs(new_sel * rdev->desc->linear_ranges->step -
302 old_sel * rdev->desc->linear_ranges->step);
303 switch (id) {
304 case BUCK1:
305 case LDO1:
306 case LDO2:
307 ret = DIV_ROUND_CLOSEST(uV_delta * us_ramp[val],
308 mcp16502_ramp_b1l12[val]);
309 break;
310
311 case BUCK2:
312 case BUCK3:
313 case BUCK4:
314 ret = DIV_ROUND_CLOSEST(uV_delta * us_ramp[val],
315 mcp16502_ramp_b234[val]);
316 break;
317
318 default:
319 return -EINVAL;
320 }
321
322 return ret;
323}
324
325#ifdef CONFIG_SUSPEND
326/*
327 * mcp16502_suspend_get_target_reg() - get the reg of the target suspend PMIC
328 * mode
329 */
330static int mcp16502_suspend_get_target_reg(struct regulator_dev *rdev)
331{
332 switch (pm_suspend_target_state) {
333 case PM_SUSPEND_STANDBY:
334 return mcp16502_get_state_reg(rdev, MCP16502_OPMODE_LPM);
335 case PM_SUSPEND_ON:
336 case PM_SUSPEND_MEM:
337 return mcp16502_get_state_reg(rdev, MCP16502_OPMODE_HIB);
338 default:
339 dev_err(&rdev->dev, "invalid suspend target: %d\n",
340 pm_suspend_target_state);
341 }
342
343 return -EINVAL;
344}
345
346/*
347 * mcp16502_set_suspend_voltage() - regulator_ops set_suspend_voltage
348 */
349static int mcp16502_set_suspend_voltage(struct regulator_dev *rdev, int uV)
350{
351 int sel = regulator_map_voltage_linear_range(rdev, uV, uV);
352 int reg = mcp16502_suspend_get_target_reg(rdev);
353
354 if (sel < 0)
355 return sel;
356
357 if (reg < 0)
358 return reg;
359
360 return regmap_update_bits(rdev->regmap, reg, MCP16502_VSEL, sel);
361}
362
363/*
364 * mcp16502_set_suspend_mode() - regulator_ops set_suspend_mode
365 */
366static int mcp16502_set_suspend_mode(struct regulator_dev *rdev,
367 unsigned int mode)
368{
369 switch (pm_suspend_target_state) {
370 case PM_SUSPEND_STANDBY:
371 return _mcp16502_set_mode(rdev, mode, MCP16502_OPMODE_LPM);
372 case PM_SUSPEND_ON:
373 case PM_SUSPEND_MEM:
374 return _mcp16502_set_mode(rdev, mode, MCP16502_OPMODE_HIB);
375 default:
376 dev_err(&rdev->dev, "invalid suspend target: %d\n",
377 pm_suspend_target_state);
378 }
379
380 return -EINVAL;
381}
382
383/*
384 * mcp16502_set_suspend_enable() - regulator_ops set_suspend_enable
385 */
386static int mcp16502_set_suspend_enable(struct regulator_dev *rdev)
387{
388 int reg = mcp16502_suspend_get_target_reg(rdev);
389
390 if (reg < 0)
391 return reg;
392
393 return regmap_update_bits(rdev->regmap, reg, MCP16502_EN, MCP16502_EN);
394}
395
396/*
397 * mcp16502_set_suspend_disable() - regulator_ops set_suspend_disable
398 */
399static int mcp16502_set_suspend_disable(struct regulator_dev *rdev)
400{
401 int reg = mcp16502_suspend_get_target_reg(rdev);
402
403 if (reg < 0)
404 return reg;
405
406 return regmap_update_bits(rdev->regmap, reg, MCP16502_EN, 0);
407}
408#endif /* CONFIG_SUSPEND */
409
410static const struct regulator_ops mcp16502_buck_ops = {
411 .list_voltage = regulator_list_voltage_linear_range,
412 .map_voltage = regulator_map_voltage_linear_range,
413 .get_voltage_sel = regulator_get_voltage_sel_regmap,
414 .set_voltage_sel = regulator_set_voltage_sel_regmap,
415 .enable = regulator_enable_regmap,
416 .disable = regulator_disable_regmap,
417 .is_enabled = regulator_is_enabled_regmap,
418 .get_status = mcp16502_get_status,
419 .set_voltage_time_sel = mcp16502_set_voltage_time_sel,
420 .set_ramp_delay = regulator_set_ramp_delay_regmap,
421
422 .set_mode = mcp16502_set_mode,
423 .get_mode = mcp16502_get_mode,
424
425#ifdef CONFIG_SUSPEND
426 .set_suspend_voltage = mcp16502_set_suspend_voltage,
427 .set_suspend_mode = mcp16502_set_suspend_mode,
428 .set_suspend_enable = mcp16502_set_suspend_enable,
429 .set_suspend_disable = mcp16502_set_suspend_disable,
430#endif /* CONFIG_SUSPEND */
431};
432
433/*
434 * LDOs cannot change operating modes.
435 */
436static const struct regulator_ops mcp16502_ldo_ops = {
437 .list_voltage = regulator_list_voltage_linear_range,
438 .map_voltage = regulator_map_voltage_linear_range,
439 .get_voltage_sel = regulator_get_voltage_sel_regmap,
440 .set_voltage_sel = regulator_set_voltage_sel_regmap,
441 .enable = regulator_enable_regmap,
442 .disable = regulator_disable_regmap,
443 .is_enabled = regulator_is_enabled_regmap,
444 .get_status = mcp16502_get_status,
445 .set_voltage_time_sel = mcp16502_set_voltage_time_sel,
446 .set_ramp_delay = regulator_set_ramp_delay_regmap,
447
448#ifdef CONFIG_SUSPEND
449 .set_suspend_voltage = mcp16502_set_suspend_voltage,
450 .set_suspend_enable = mcp16502_set_suspend_enable,
451 .set_suspend_disable = mcp16502_set_suspend_disable,
452#endif /* CONFIG_SUSPEND */
453};
454
455static const struct of_device_id mcp16502_ids[] = {
456 { .compatible = "microchip,mcp16502", },
457 {}
458};
459MODULE_DEVICE_TABLE(of, mcp16502_ids);
460
461static const struct linear_range b1l12_ranges[] = {
462 REGULATOR_LINEAR_RANGE(1200000, VDD_LOW_SEL, VDD_HIGH_SEL, 50000),
463};
464
465static const struct linear_range b234_ranges[] = {
466 REGULATOR_LINEAR_RANGE(600000, VDD_LOW_SEL, VDD_HIGH_SEL, 25000),
467};
468
469static const struct regulator_desc mcp16502_desc[] = {
470 /* MCP16502_REGULATOR(_name, _id, ranges, regulator_ops, ramp_table) */
471 MCP16502_REGULATOR("VDD_IO", BUCK1, b1l12_ranges, mcp16502_buck_ops,
472 mcp16502_ramp_b1l12),
473 MCP16502_REGULATOR("VDD_DDR", BUCK2, b234_ranges, mcp16502_buck_ops,
474 mcp16502_ramp_b234),
475 MCP16502_REGULATOR("VDD_CORE", BUCK3, b234_ranges, mcp16502_buck_ops,
476 mcp16502_ramp_b234),
477 MCP16502_REGULATOR("VDD_OTHER", BUCK4, b234_ranges, mcp16502_buck_ops,
478 mcp16502_ramp_b234),
479 MCP16502_REGULATOR("LDO1", LDO1, b1l12_ranges, mcp16502_ldo_ops,
480 mcp16502_ramp_b1l12),
481 MCP16502_REGULATOR("LDO2", LDO2, b1l12_ranges, mcp16502_ldo_ops,
482 mcp16502_ramp_b1l12)
483};
484
485static const struct regmap_range mcp16502_ranges[] = {
486 regmap_reg_range(MCP16502_MIN_REG, MCP16502_MAX_REG)
487};
488
489static const struct regmap_access_table mcp16502_yes_reg_table = {
490 .yes_ranges = mcp16502_ranges,
491 .n_yes_ranges = ARRAY_SIZE(mcp16502_ranges),
492};
493
494static const struct regmap_config mcp16502_regmap_config = {
495 .reg_bits = 8,
496 .val_bits = 8,
497 .max_register = MCP16502_MAX_REG,
498 .cache_type = REGCACHE_NONE,
499 .rd_table = &mcp16502_yes_reg_table,
500 .wr_table = &mcp16502_yes_reg_table,
501};
502
503static int mcp16502_probe(struct i2c_client *client)
504{
505 struct regulator_config config = { };
506 struct regulator_dev *rdev;
507 struct device *dev;
508 struct mcp16502 *mcp;
509 struct regmap *rmap;
510 int i, ret;
511
512 dev = &client->dev;
513 config.dev = dev;
514
515 mcp = devm_kzalloc(dev, sizeof(*mcp), GFP_KERNEL);
516 if (!mcp)
517 return -ENOMEM;
518
519 rmap = devm_regmap_init_i2c(client, &mcp16502_regmap_config);
520 if (IS_ERR(rmap)) {
521 ret = PTR_ERR(rmap);
522 dev_err(dev, "regmap init failed: %d\n", ret);
523 return ret;
524 }
525
526 i2c_set_clientdata(client, mcp);
527 config.regmap = rmap;
528 config.driver_data = mcp;
529
530 mcp->lpm = devm_gpiod_get_optional(dev, "lpm", GPIOD_OUT_LOW);
531 if (IS_ERR(mcp->lpm)) {
532 dev_err(dev, "failed to get lpm pin: %ld\n", PTR_ERR(mcp->lpm));
533 return PTR_ERR(mcp->lpm);
534 }
535
536 for (i = 0; i < NUM_REGULATORS; i++) {
537 rdev = devm_regulator_register(dev, &mcp16502_desc[i], &config);
538 if (IS_ERR(rdev)) {
539 dev_err(dev,
540 "failed to register %s regulator %ld\n",
541 mcp16502_desc[i].name, PTR_ERR(rdev));
542 return PTR_ERR(rdev);
543 }
544 }
545
546 mcp16502_gpio_set_mode(mcp, MCP16502_OPMODE_ACTIVE);
547
548 return 0;
549}
550
551#ifdef CONFIG_PM_SLEEP
552static int mcp16502_suspend_noirq(struct device *dev)
553{
554 struct i2c_client *client = to_i2c_client(dev);
555 struct mcp16502 *mcp = i2c_get_clientdata(client);
556
557 mcp16502_gpio_set_mode(mcp, MCP16502_OPMODE_LPM);
558
559 return 0;
560}
561
562static int mcp16502_resume_noirq(struct device *dev)
563{
564 struct i2c_client *client = to_i2c_client(dev);
565 struct mcp16502 *mcp = i2c_get_clientdata(client);
566
567 mcp16502_gpio_set_mode(mcp, MCP16502_OPMODE_ACTIVE);
568
569 return 0;
570}
571#endif
572
573#ifdef CONFIG_PM
574static const struct dev_pm_ops mcp16502_pm_ops = {
575 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(mcp16502_suspend_noirq,
576 mcp16502_resume_noirq)
577};
578#endif
579static const struct i2c_device_id mcp16502_i2c_id[] = {
580 { "mcp16502", 0 },
581 { }
582};
583MODULE_DEVICE_TABLE(i2c, mcp16502_i2c_id);
584
585static struct i2c_driver mcp16502_drv = {
586 .probe = mcp16502_probe,
587 .driver = {
588 .name = "mcp16502-regulator",
589 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
590 .of_match_table = mcp16502_ids,
591#ifdef CONFIG_PM
592 .pm = &mcp16502_pm_ops,
593#endif
594 },
595 .id_table = mcp16502_i2c_id,
596};
597
598module_i2c_driver(mcp16502_drv);
599
600MODULE_LICENSE("GPL v2");
601MODULE_DESCRIPTION("MCP16502 PMIC driver");
602MODULE_AUTHOR("Andrei Stefanescu andrei.stefanescu@microchip.com");