Linux Audio

Check our new training course

Linux kernel drivers training

May 6-19, 2025
Register
Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0+
  2//
  3// max77802.c - Regulator driver for the Maxim 77802
  4//
  5// Copyright (C) 2013-2014 Google, Inc
  6// Simon Glass <sjg@chromium.org>
  7//
  8// Copyright (C) 2012 Samsung Electronics
  9// Chiwoong Byun <woong.byun@samsung.com>
 10// Jonghwa Lee <jonghwa3.lee@samsung.com>
 11//
 12// This driver is based on max8997.c
 
 
 
 
 
 
 
 
 
 
 13
 14#include <linux/kernel.h>
 15#include <linux/bug.h>
 16#include <linux/err.h>
 
 17#include <linux/slab.h>
 
 18#include <linux/module.h>
 19#include <linux/platform_device.h>
 20#include <linux/regulator/driver.h>
 21#include <linux/regulator/machine.h>
 22#include <linux/regulator/of_regulator.h>
 23#include <linux/mfd/max77686.h>
 24#include <linux/mfd/max77686-private.h>
 25#include <dt-bindings/regulator/maxim,max77802.h>
 26
 27/* Default ramp delay in case it is not manually set */
 28#define MAX77802_RAMP_DELAY		100000		/* uV/us */
 29
 30#define MAX77802_OPMODE_SHIFT_LDO	6
 31#define MAX77802_OPMODE_BUCK234_SHIFT	4
 32#define MAX77802_OPMODE_MASK		0x3
 33
 34#define MAX77802_VSEL_MASK		0x3F
 35#define MAX77802_DVS_VSEL_MASK		0xFF
 36
 37#define MAX77802_RAMP_RATE_MASK_2BIT	0xC0
 38#define MAX77802_RAMP_RATE_SHIFT_2BIT	6
 39#define MAX77802_RAMP_RATE_MASK_4BIT	0xF0
 40#define MAX77802_RAMP_RATE_SHIFT_4BIT	4
 41
 42#define MAX77802_STATUS_OFF		0x0
 43#define MAX77802_OFF_PWRREQ		0x1
 44#define MAX77802_LP_PWRREQ		0x2
 45
 46static const unsigned int max77802_buck234_ramp_table[] = {
 
 47	12500,
 48	25000,
 49	50000,
 50	100000,
 51};
 52
 53static const unsigned int max77802_buck16_ramp_table[] = {
 54	1000,	2000,	3030,	4000,
 55	5000,	5880,	7140,	8330,
 56	9090,	10000,	11110,	12500,
 57	16670,	25000,	50000,	100000,
 58};
 59
 60struct max77802_regulator_prv {
 61	/* Array indexed by regulator id */
 62	unsigned int opmode[MAX77802_REG_MAX];
 63};
 64
 65static inline unsigned int max77802_map_mode(unsigned int mode)
 66{
 67	return mode == MAX77802_OPMODE_NORMAL ?
 68		REGULATOR_MODE_NORMAL : REGULATOR_MODE_STANDBY;
 69}
 70
 71static int max77802_get_opmode_shift(int id)
 72{
 73	if (id == MAX77802_BUCK1 || (id >= MAX77802_BUCK5 &&
 74				     id <= MAX77802_BUCK10))
 75		return 0;
 76
 77	if (id >= MAX77802_BUCK2 && id <= MAX77802_BUCK4)
 78		return MAX77802_OPMODE_BUCK234_SHIFT;
 79
 80	if (id >= MAX77802_LDO1 && id <= MAX77802_LDO35)
 81		return MAX77802_OPMODE_SHIFT_LDO;
 82
 83	return -EINVAL;
 84}
 85
 86/**
 87 * max77802_set_suspend_disable - Disable the regulator during system suspend
 88 * @rdev: regulator to mark as disabled
 89 *
 90 * All regulators expect LDO 1, 3, 20 and 21 support OFF by PWRREQ.
 91 * Configure the regulator so the PMIC will turn it OFF during system suspend.
 92 */
 93static int max77802_set_suspend_disable(struct regulator_dev *rdev)
 94{
 95	unsigned int val = MAX77802_OFF_PWRREQ;
 96	struct max77802_regulator_prv *max77802 = rdev_get_drvdata(rdev);
 97	unsigned int id = rdev_get_id(rdev);
 98	int shift = max77802_get_opmode_shift(id);
 99
100	if (WARN_ON_ONCE(id >= ARRAY_SIZE(max77802->opmode)))
101		return -EINVAL;
102	max77802->opmode[id] = val;
103	return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
104				  rdev->desc->enable_mask, val << shift);
105}
106
107/*
108 * Some LDOs support Low Power Mode while the system is running.
109 *
110 * LDOs 1, 3, 20, 21.
111 */
112static int max77802_set_mode(struct regulator_dev *rdev, unsigned int mode)
113{
114	struct max77802_regulator_prv *max77802 = rdev_get_drvdata(rdev);
115	unsigned int id = rdev_get_id(rdev);
116	unsigned int val;
117	int shift = max77802_get_opmode_shift(id);
118
119	switch (mode) {
120	case REGULATOR_MODE_STANDBY:
121		val = MAX77802_OPMODE_LP;	/* ON in Low Power Mode */
122		break;
123	case REGULATOR_MODE_NORMAL:
124		val = MAX77802_OPMODE_NORMAL;	/* ON in Normal Mode */
125		break;
126	default:
127		dev_warn(&rdev->dev, "%s: regulator mode: 0x%x not supported\n",
128			 rdev->desc->name, mode);
129		return -EINVAL;
130	}
131
132	if (WARN_ON_ONCE(id >= ARRAY_SIZE(max77802->opmode)))
133		return -EINVAL;
134
135	max77802->opmode[id] = val;
136	return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
137				  rdev->desc->enable_mask, val << shift);
138}
139
140static unsigned max77802_get_mode(struct regulator_dev *rdev)
141{
142	struct max77802_regulator_prv *max77802 = rdev_get_drvdata(rdev);
143	unsigned int id = rdev_get_id(rdev);
144
145	if (WARN_ON_ONCE(id >= ARRAY_SIZE(max77802->opmode)))
146		return -EINVAL;
147	return max77802_map_mode(max77802->opmode[id]);
148}
149
150/**
151 * max77802_set_suspend_mode - set regulator opmode when the system is suspended
152 * @rdev: regulator to change mode
153 * @mode: operating mode to be set
154 *
155 * Will set the operating mode for the regulators during system suspend.
156 * This function is valid for the three different enable control logics:
157 *
158 * Enable Control Logic1 by PWRREQ (BUCK 2-4 and LDOs 2, 4-19, 22-35)
159 * Enable Control Logic2 by PWRREQ (LDOs 1, 20, 21)
160 * Enable Control Logic3 by PWRREQ (LDO 3)
161 *
162 * If setting the regulator mode fails, the function only warns but does
163 * not return a negative error number to avoid the regulator core to stop
164 * setting the operating mode for the remaining regulators.
165 */
166static int max77802_set_suspend_mode(struct regulator_dev *rdev,
167				     unsigned int mode)
168{
169	struct max77802_regulator_prv *max77802 = rdev_get_drvdata(rdev);
170	unsigned int id = rdev_get_id(rdev);
171	unsigned int val;
172	int shift = max77802_get_opmode_shift(id);
173
174	if (WARN_ON_ONCE(id >= ARRAY_SIZE(max77802->opmode)))
175		return -EINVAL;
176
177	/*
178	 * If the regulator has been disabled for suspend
179	 * then is invalid to try setting a suspend mode.
180	 */
181	if (max77802->opmode[id] == MAX77802_OFF_PWRREQ) {
182		dev_warn(&rdev->dev, "%s: is disabled, mode: 0x%x not set\n",
183			 rdev->desc->name, mode);
184		return 0;
185	}
186
187	switch (mode) {
188	case REGULATOR_MODE_STANDBY:
189		/*
190		 * If the regulator opmode is normal then enable
191		 * ON in Low Power Mode by PWRREQ. If the mode is
192		 * already Low Power then no action is required.
193		 */
194		if (max77802->opmode[id] == MAX77802_OPMODE_NORMAL)
195			val = MAX77802_LP_PWRREQ;
196		else
197			return 0;
198		break;
199	case REGULATOR_MODE_NORMAL:
200		/*
201		 * If the regulator operating mode is Low Power then
202		 * normal is not a valid opmode in suspend. If the
203		 * mode is already normal then no action is required.
204		 */
205		if (max77802->opmode[id] == MAX77802_OPMODE_LP)
206			dev_warn(&rdev->dev, "%s: in Low Power: 0x%x invalid\n",
207				 rdev->desc->name, mode);
208		return 0;
209	default:
210		dev_warn(&rdev->dev, "%s: regulator mode: 0x%x not supported\n",
211			 rdev->desc->name, mode);
212		return -EINVAL;
213	}
214
215	return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
216				  rdev->desc->enable_mask, val << shift);
217}
218
219static int max77802_enable(struct regulator_dev *rdev)
220{
221	struct max77802_regulator_prv *max77802 = rdev_get_drvdata(rdev);
222	unsigned int id = rdev_get_id(rdev);
223	int shift = max77802_get_opmode_shift(id);
224
225	if (WARN_ON_ONCE(id >= ARRAY_SIZE(max77802->opmode)))
226		return -EINVAL;
227	if (max77802->opmode[id] == MAX77802_OFF_PWRREQ)
228		max77802->opmode[id] = MAX77802_OPMODE_NORMAL;
229
230	return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
231				  rdev->desc->enable_mask,
232				  max77802->opmode[id] << shift);
233}
234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
235/*
236 * LDOs 2, 4-19, 22-35
237 */
238static const struct regulator_ops max77802_ldo_ops_logic1 = {
239	.list_voltage		= regulator_list_voltage_linear,
240	.map_voltage		= regulator_map_voltage_linear,
241	.is_enabled		= regulator_is_enabled_regmap,
242	.enable			= max77802_enable,
243	.disable		= regulator_disable_regmap,
244	.get_voltage_sel	= regulator_get_voltage_sel_regmap,
245	.set_voltage_sel	= regulator_set_voltage_sel_regmap,
246	.set_voltage_time_sel	= regulator_set_voltage_time_sel,
247	.set_suspend_disable	= max77802_set_suspend_disable,
248	.set_suspend_mode	= max77802_set_suspend_mode,
249};
250
251/*
252 * LDOs 1, 20, 21, 3
253 */
254static const struct regulator_ops max77802_ldo_ops_logic2 = {
255	.list_voltage		= regulator_list_voltage_linear,
256	.map_voltage		= regulator_map_voltage_linear,
257	.is_enabled		= regulator_is_enabled_regmap,
258	.enable			= max77802_enable,
259	.disable		= regulator_disable_regmap,
260	.get_voltage_sel	= regulator_get_voltage_sel_regmap,
261	.set_voltage_sel	= regulator_set_voltage_sel_regmap,
262	.set_voltage_time_sel	= regulator_set_voltage_time_sel,
263	.set_mode		= max77802_set_mode,
264	.get_mode		= max77802_get_mode,
265	.set_suspend_mode	= max77802_set_suspend_mode,
266};
267
268/* BUCKS 1, 6 */
269static const struct regulator_ops max77802_buck_16_dvs_ops = {
270	.list_voltage		= regulator_list_voltage_linear,
271	.map_voltage		= regulator_map_voltage_linear,
272	.is_enabled		= regulator_is_enabled_regmap,
273	.enable			= max77802_enable,
274	.disable		= regulator_disable_regmap,
275	.get_voltage_sel	= regulator_get_voltage_sel_regmap,
276	.set_voltage_sel	= regulator_set_voltage_sel_regmap,
277	.set_voltage_time_sel	= regulator_set_voltage_time_sel,
278	.set_ramp_delay		= regulator_set_ramp_delay_regmap,
279	.set_suspend_disable	= max77802_set_suspend_disable,
280};
281
282/* BUCKs 2-4 */
283static const struct regulator_ops max77802_buck_234_ops = {
284	.list_voltage		= regulator_list_voltage_linear,
285	.map_voltage		= regulator_map_voltage_linear,
286	.is_enabled		= regulator_is_enabled_regmap,
287	.enable			= max77802_enable,
288	.disable		= regulator_disable_regmap,
289	.get_voltage_sel	= regulator_get_voltage_sel_regmap,
290	.set_voltage_sel	= regulator_set_voltage_sel_regmap,
291	.set_voltage_time_sel	= regulator_set_voltage_time_sel,
292	.set_ramp_delay		= regulator_set_ramp_delay_regmap,
293	.set_suspend_disable	= max77802_set_suspend_disable,
294	.set_suspend_mode	= max77802_set_suspend_mode,
295};
296
297/* BUCKs 5, 7-10 */
298static const struct regulator_ops max77802_buck_dvs_ops = {
299	.list_voltage		= regulator_list_voltage_linear,
300	.map_voltage		= regulator_map_voltage_linear,
301	.is_enabled		= regulator_is_enabled_regmap,
302	.enable			= max77802_enable,
303	.disable		= regulator_disable_regmap,
304	.get_voltage_sel	= regulator_get_voltage_sel_regmap,
305	.set_voltage_sel	= regulator_set_voltage_sel_regmap,
306	.set_voltage_time_sel	= regulator_set_voltage_time_sel,
 
307	.set_suspend_disable	= max77802_set_suspend_disable,
308};
309
310/* LDOs 3-7, 9-14, 18-26, 28, 29, 32-34 */
311#define regulator_77802_desc_p_ldo(num, supply, log)	{		\
312	.name		= "LDO"#num,					\
313	.of_match	= of_match_ptr("LDO"#num),			\
314	.regulators_node	= of_match_ptr("regulators"),		\
315	.id		= MAX77802_LDO##num,				\
316	.supply_name	= "inl"#supply,					\
317	.ops		= &max77802_ldo_ops_logic##log,			\
318	.type		= REGULATOR_VOLTAGE,				\
319	.owner		= THIS_MODULE,					\
320	.min_uV		= 800000,					\
321	.uV_step	= 50000,					\
322	.ramp_delay	= MAX77802_RAMP_DELAY,				\
323	.n_voltages	= 1 << 6,					\
324	.vsel_reg	= MAX77802_REG_LDO1CTRL1 + num - 1,		\
325	.vsel_mask	= MAX77802_VSEL_MASK,				\
326	.enable_reg	= MAX77802_REG_LDO1CTRL1 + num - 1,		\
327	.enable_mask	= MAX77802_OPMODE_MASK << MAX77802_OPMODE_SHIFT_LDO, \
328	.of_map_mode	= max77802_map_mode,				\
329}
330
331/* LDOs 1, 2, 8, 15, 17, 27, 30, 35 */
332#define regulator_77802_desc_n_ldo(num, supply, log)   {		\
333	.name		= "LDO"#num,					\
334	.of_match	= of_match_ptr("LDO"#num),			\
335	.regulators_node	= of_match_ptr("regulators"),		\
336	.id		= MAX77802_LDO##num,				\
337	.supply_name	= "inl"#supply,					\
338	.ops		= &max77802_ldo_ops_logic##log,			\
339	.type		= REGULATOR_VOLTAGE,				\
340	.owner		= THIS_MODULE,					\
341	.min_uV		= 800000,					\
342	.uV_step	= 25000,					\
343	.ramp_delay	= MAX77802_RAMP_DELAY,				\
344	.n_voltages	= 1 << 6,					\
345	.vsel_reg	= MAX77802_REG_LDO1CTRL1 + num - 1,		\
346	.vsel_mask	= MAX77802_VSEL_MASK,				\
347	.enable_reg	= MAX77802_REG_LDO1CTRL1 + num - 1,		\
348	.enable_mask	= MAX77802_OPMODE_MASK << MAX77802_OPMODE_SHIFT_LDO, \
349	.of_map_mode	= max77802_map_mode,				\
350}
351
352/* BUCKs 1, 6 */
353#define regulator_77802_desc_16_buck(num)	{		\
354	.name		= "BUCK"#num,					\
355	.of_match	= of_match_ptr("BUCK"#num),			\
356	.regulators_node	= of_match_ptr("regulators"),		\
357	.id		= MAX77802_BUCK##num,				\
358	.supply_name	= "inb"#num,					\
359	.ops		= &max77802_buck_16_dvs_ops,			\
360	.type		= REGULATOR_VOLTAGE,				\
361	.owner		= THIS_MODULE,					\
362	.min_uV		= 612500,					\
363	.uV_step	= 6250,						\
364	.ramp_delay	= MAX77802_RAMP_DELAY,				\
365	.n_voltages	= 1 << 8,					\
366	.vsel_reg	= MAX77802_REG_BUCK ## num ## DVS1,		\
367	.vsel_mask	= MAX77802_DVS_VSEL_MASK,			\
368	.enable_reg	= MAX77802_REG_BUCK ## num ## CTRL,		\
369	.enable_mask	= MAX77802_OPMODE_MASK,				\
370	.ramp_reg	= MAX77802_REG_BUCK ## num ## CTRL,		\
371	.ramp_mask	= MAX77802_RAMP_RATE_MASK_4BIT,			\
372	.ramp_delay_table = max77802_buck16_ramp_table,			\
373	.n_ramp_values	= ARRAY_SIZE(max77802_buck16_ramp_table),	\
374	.of_map_mode	= max77802_map_mode,				\
375}
376
377/* BUCKS 2-4 */
378#define regulator_77802_desc_234_buck(num)	{		\
379	.name		= "BUCK"#num,					\
380	.of_match	= of_match_ptr("BUCK"#num),			\
381	.regulators_node	= of_match_ptr("regulators"),		\
382	.id		= MAX77802_BUCK##num,				\
383	.supply_name	= "inb"#num,					\
384	.ops		= &max77802_buck_234_ops,			\
385	.type		= REGULATOR_VOLTAGE,				\
386	.owner		= THIS_MODULE,					\
387	.min_uV		= 600000,					\
388	.uV_step	= 6250,						\
389	.ramp_delay	= MAX77802_RAMP_DELAY,				\
390	.n_voltages	= 0x91,						\
391	.vsel_reg	= MAX77802_REG_BUCK ## num ## DVS1,		\
392	.vsel_mask	= MAX77802_DVS_VSEL_MASK,			\
393	.enable_reg	= MAX77802_REG_BUCK ## num ## CTRL1,		\
394	.enable_mask	= MAX77802_OPMODE_MASK <<			\
395				MAX77802_OPMODE_BUCK234_SHIFT,		\
396	.ramp_reg	= MAX77802_REG_BUCK ## num ## CTRL1,		\
397	.ramp_mask	= MAX77802_RAMP_RATE_MASK_2BIT,			\
398	.ramp_delay_table = max77802_buck234_ramp_table,		\
399	.n_ramp_values	= ARRAY_SIZE(max77802_buck234_ramp_table),	\
400	.of_map_mode	= max77802_map_mode,				\
401}
402
403/* BUCK 5 */
404#define regulator_77802_desc_buck5(num)		{		\
405	.name		= "BUCK"#num,					\
406	.of_match	= of_match_ptr("BUCK"#num),			\
407	.regulators_node	= of_match_ptr("regulators"),		\
408	.id		= MAX77802_BUCK##num,				\
409	.supply_name	= "inb"#num,					\
410	.ops		= &max77802_buck_dvs_ops,			\
411	.type		= REGULATOR_VOLTAGE,				\
412	.owner		= THIS_MODULE,					\
413	.min_uV		= 750000,					\
414	.uV_step	= 50000,					\
415	.ramp_delay	= MAX77802_RAMP_DELAY,				\
416	.n_voltages	= 1 << 6,					\
417	.vsel_reg	= MAX77802_REG_BUCK5OUT,			\
418	.vsel_mask	= MAX77802_VSEL_MASK,				\
419	.enable_reg	= MAX77802_REG_BUCK5CTRL,			\
420	.enable_mask	= MAX77802_OPMODE_MASK,				\
421	.of_map_mode	= max77802_map_mode,				\
422}
423
424/* BUCKs 7-10 */
425#define regulator_77802_desc_buck7_10(num)	{		\
426	.name		= "BUCK"#num,					\
427	.of_match	= of_match_ptr("BUCK"#num),			\
428	.regulators_node	= of_match_ptr("regulators"),		\
429	.id		= MAX77802_BUCK##num,				\
430	.supply_name	= "inb"#num,					\
431	.ops		= &max77802_buck_dvs_ops,			\
432	.type		= REGULATOR_VOLTAGE,				\
433	.owner		= THIS_MODULE,					\
434	.min_uV		= 750000,					\
435	.uV_step	= 50000,					\
436	.ramp_delay	= MAX77802_RAMP_DELAY,				\
437	.n_voltages	= 1 << 6,					\
438	.vsel_reg	= MAX77802_REG_BUCK7OUT + (num - 7) * 3,	\
439	.vsel_mask	= MAX77802_VSEL_MASK,				\
440	.enable_reg	= MAX77802_REG_BUCK7CTRL + (num - 7) * 3,	\
441	.enable_mask	= MAX77802_OPMODE_MASK,				\
442	.of_map_mode	= max77802_map_mode,				\
443}
444
445static const struct regulator_desc regulators[] = {
446	regulator_77802_desc_16_buck(1),
447	regulator_77802_desc_234_buck(2),
448	regulator_77802_desc_234_buck(3),
449	regulator_77802_desc_234_buck(4),
450	regulator_77802_desc_buck5(5),
451	regulator_77802_desc_16_buck(6),
452	regulator_77802_desc_buck7_10(7),
453	regulator_77802_desc_buck7_10(8),
454	regulator_77802_desc_buck7_10(9),
455	regulator_77802_desc_buck7_10(10),
456	regulator_77802_desc_n_ldo(1, 10, 2),
457	regulator_77802_desc_n_ldo(2, 10, 1),
458	regulator_77802_desc_p_ldo(3, 3, 2),
459	regulator_77802_desc_p_ldo(4, 6, 1),
460	regulator_77802_desc_p_ldo(5, 3, 1),
461	regulator_77802_desc_p_ldo(6, 3, 1),
462	regulator_77802_desc_p_ldo(7, 3, 1),
463	regulator_77802_desc_n_ldo(8, 1, 1),
464	regulator_77802_desc_p_ldo(9, 5, 1),
465	regulator_77802_desc_p_ldo(10, 4, 1),
466	regulator_77802_desc_p_ldo(11, 4, 1),
467	regulator_77802_desc_p_ldo(12, 9, 1),
468	regulator_77802_desc_p_ldo(13, 4, 1),
469	regulator_77802_desc_p_ldo(14, 4, 1),
470	regulator_77802_desc_n_ldo(15, 1, 1),
471	regulator_77802_desc_n_ldo(17, 2, 1),
472	regulator_77802_desc_p_ldo(18, 7, 1),
473	regulator_77802_desc_p_ldo(19, 5, 1),
474	regulator_77802_desc_p_ldo(20, 7, 2),
475	regulator_77802_desc_p_ldo(21, 6, 2),
476	regulator_77802_desc_p_ldo(23, 9, 1),
477	regulator_77802_desc_p_ldo(24, 6, 1),
478	regulator_77802_desc_p_ldo(25, 9, 1),
479	regulator_77802_desc_p_ldo(26, 9, 1),
480	regulator_77802_desc_n_ldo(27, 2, 1),
481	regulator_77802_desc_p_ldo(28, 7, 1),
482	regulator_77802_desc_p_ldo(29, 7, 1),
483	regulator_77802_desc_n_ldo(30, 2, 1),
484	regulator_77802_desc_p_ldo(32, 9, 1),
485	regulator_77802_desc_p_ldo(33, 6, 1),
486	regulator_77802_desc_p_ldo(34, 9, 1),
487	regulator_77802_desc_n_ldo(35, 2, 1),
488};
489
490static int max77802_pmic_probe(struct platform_device *pdev)
491{
492	struct max77686_dev *iodev = dev_get_drvdata(pdev->dev.parent);
493	struct max77802_regulator_prv *max77802;
494	int i, val;
495	struct regulator_config config = { };
496
497	max77802 = devm_kzalloc(&pdev->dev,
498				sizeof(struct max77802_regulator_prv),
499				GFP_KERNEL);
500	if (!max77802)
501		return -ENOMEM;
502
503	config.dev = iodev->dev;
504	config.regmap = iodev->regmap;
505	config.driver_data = max77802;
506	platform_set_drvdata(pdev, max77802);
507
508	for (i = 0; i < MAX77802_REG_MAX; i++) {
509		struct regulator_dev *rdev;
510		unsigned int id = regulators[i].id;
511		int shift = max77802_get_opmode_shift(id);
512		int ret;
513
514		ret = regmap_read(iodev->regmap, regulators[i].enable_reg, &val);
515		if (ret < 0) {
516			dev_warn(&pdev->dev,
517				"cannot read current mode for %d\n", i);
518			val = MAX77802_OPMODE_NORMAL;
519		} else {
520			val = val >> shift & MAX77802_OPMODE_MASK;
521		}
522
523		/*
524		 * If the regulator is disabled and the system warm rebooted,
525		 * the hardware reports OFF as the regulator operating mode.
526		 * Default to operating mode NORMAL in that case.
527		 */
528		if (id < ARRAY_SIZE(max77802->opmode)) {
529			if (val == MAX77802_STATUS_OFF)
530				max77802->opmode[id] = MAX77802_OPMODE_NORMAL;
531			else
532				max77802->opmode[id] = val;
533		}
534
535		rdev = devm_regulator_register(&pdev->dev,
536					       &regulators[i], &config);
537		if (IS_ERR(rdev)) {
538			ret = PTR_ERR(rdev);
539			dev_err(&pdev->dev,
540				"regulator init failed for %d: %d\n", i, ret);
541			return ret;
542		}
543	}
544
545	return 0;
546}
547
548static const struct platform_device_id max77802_pmic_id[] = {
549	{"max77802-pmic", 0},
550	{ },
551};
552MODULE_DEVICE_TABLE(platform, max77802_pmic_id);
553
554static struct platform_driver max77802_pmic_driver = {
555	.driver = {
556		.name = "max77802-pmic",
557		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
558	},
559	.probe = max77802_pmic_probe,
560	.id_table = max77802_pmic_id,
561};
562
563module_platform_driver(max77802_pmic_driver);
564
565MODULE_DESCRIPTION("MAXIM 77802 Regulator Driver");
566MODULE_AUTHOR("Simon Glass <sjg@chromium.org>");
567MODULE_LICENSE("GPL");
v4.10.11
  1/*
  2 * max77802.c - Regulator driver for the Maxim 77802
  3 *
  4 * Copyright (C) 2013-2014 Google, Inc
  5 * Simon Glass <sjg@chromium.org>
  6 *
  7 * Copyright (C) 2012 Samsung Electronics
  8 * Chiwoong Byun <woong.byun@samsung.com>
  9 * Jonghwa Lee <jonghwa3.lee@samsung.com>
 10 *
 11 * This program is free software; you can redistribute it and/or modify
 12 * it under the terms of the GNU General Public License as published by
 13 * the Free Software Foundation; either version 2 of the License, or
 14 * (at your option) any later version.
 15 *
 16 * This program is distributed in the hope that it will be useful,
 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 19 * GNU General Public License for more details.
 20 *
 21 * This driver is based on max8997.c
 22 */
 23
 24#include <linux/kernel.h>
 25#include <linux/bug.h>
 26#include <linux/err.h>
 27#include <linux/gpio.h>
 28#include <linux/slab.h>
 29#include <linux/gpio/consumer.h>
 30#include <linux/module.h>
 31#include <linux/platform_device.h>
 32#include <linux/regulator/driver.h>
 33#include <linux/regulator/machine.h>
 34#include <linux/regulator/of_regulator.h>
 35#include <linux/mfd/max77686.h>
 36#include <linux/mfd/max77686-private.h>
 37#include <dt-bindings/regulator/maxim,max77802.h>
 38
 39/* Default ramp delay in case it is not manually set */
 40#define MAX77802_RAMP_DELAY		100000		/* uV/us */
 41
 42#define MAX77802_OPMODE_SHIFT_LDO	6
 43#define MAX77802_OPMODE_BUCK234_SHIFT	4
 44#define MAX77802_OPMODE_MASK		0x3
 45
 46#define MAX77802_VSEL_MASK		0x3F
 47#define MAX77802_DVS_VSEL_MASK		0xFF
 48
 49#define MAX77802_RAMP_RATE_MASK_2BIT	0xC0
 50#define MAX77802_RAMP_RATE_SHIFT_2BIT	6
 51#define MAX77802_RAMP_RATE_MASK_4BIT	0xF0
 52#define MAX77802_RAMP_RATE_SHIFT_4BIT	4
 53
 54#define MAX77802_STATUS_OFF		0x0
 55#define MAX77802_OFF_PWRREQ		0x1
 56#define MAX77802_LP_PWRREQ		0x2
 57
 58/* MAX77802 has two register formats: 2-bit and 4-bit */
 59static const unsigned int ramp_table_77802_2bit[] = {
 60	12500,
 61	25000,
 62	50000,
 63	100000,
 64};
 65
 66static unsigned int ramp_table_77802_4bit[] = {
 67	1000,	2000,	3030,	4000,
 68	5000,	5880,	7140,	8330,
 69	9090,	10000,	11110,	12500,
 70	16670,	25000,	50000,	100000,
 71};
 72
 73struct max77802_regulator_prv {
 74	/* Array indexed by regulator id */
 75	unsigned int opmode[MAX77802_REG_MAX];
 76};
 77
 78static inline unsigned int max77802_map_mode(unsigned int mode)
 79{
 80	return mode == MAX77802_OPMODE_NORMAL ?
 81		REGULATOR_MODE_NORMAL : REGULATOR_MODE_STANDBY;
 82}
 83
 84static int max77802_get_opmode_shift(int id)
 85{
 86	if (id == MAX77802_BUCK1 || (id >= MAX77802_BUCK5 &&
 87				     id <= MAX77802_BUCK10))
 88		return 0;
 89
 90	if (id >= MAX77802_BUCK2 && id <= MAX77802_BUCK4)
 91		return MAX77802_OPMODE_BUCK234_SHIFT;
 92
 93	if (id >= MAX77802_LDO1 && id <= MAX77802_LDO35)
 94		return MAX77802_OPMODE_SHIFT_LDO;
 95
 96	return -EINVAL;
 97}
 98
 99/**
100 * max77802_set_suspend_disable - Disable the regulator during system suspend
101 * @rdev: regulator to mark as disabled
102 *
103 * All regulators expect LDO 1, 3, 20 and 21 support OFF by PWRREQ.
104 * Configure the regulator so the PMIC will turn it OFF during system suspend.
105 */
106static int max77802_set_suspend_disable(struct regulator_dev *rdev)
107{
108	unsigned int val = MAX77802_OFF_PWRREQ;
109	struct max77802_regulator_prv *max77802 = rdev_get_drvdata(rdev);
110	int id = rdev_get_id(rdev);
111	int shift = max77802_get_opmode_shift(id);
112
 
 
113	max77802->opmode[id] = val;
114	return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
115				  rdev->desc->enable_mask, val << shift);
116}
117
118/*
119 * Some LDOs support Low Power Mode while the system is running.
120 *
121 * LDOs 1, 3, 20, 21.
122 */
123static int max77802_set_mode(struct regulator_dev *rdev, unsigned int mode)
124{
125	struct max77802_regulator_prv *max77802 = rdev_get_drvdata(rdev);
126	int id = rdev_get_id(rdev);
127	unsigned int val;
128	int shift = max77802_get_opmode_shift(id);
129
130	switch (mode) {
131	case REGULATOR_MODE_STANDBY:
132		val = MAX77802_OPMODE_LP;	/* ON in Low Power Mode */
133		break;
134	case REGULATOR_MODE_NORMAL:
135		val = MAX77802_OPMODE_NORMAL;	/* ON in Normal Mode */
136		break;
137	default:
138		dev_warn(&rdev->dev, "%s: regulator mode: 0x%x not supported\n",
139			 rdev->desc->name, mode);
140		return -EINVAL;
141	}
142
 
 
 
143	max77802->opmode[id] = val;
144	return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
145				  rdev->desc->enable_mask, val << shift);
146}
147
148static unsigned max77802_get_mode(struct regulator_dev *rdev)
149{
150	struct max77802_regulator_prv *max77802 = rdev_get_drvdata(rdev);
151	int id = rdev_get_id(rdev);
152
 
 
153	return max77802_map_mode(max77802->opmode[id]);
154}
155
156/**
157 * max77802_set_suspend_mode - set regulator opmode when the system is suspended
158 * @rdev: regulator to change mode
159 * @mode: operating mode to be set
160 *
161 * Will set the operating mode for the regulators during system suspend.
162 * This function is valid for the three different enable control logics:
163 *
164 * Enable Control Logic1 by PWRREQ (BUCK 2-4 and LDOs 2, 4-19, 22-35)
165 * Enable Control Logic2 by PWRREQ (LDOs 1, 20, 21)
166 * Enable Control Logic3 by PWRREQ (LDO 3)
167 *
168 * If setting the regulator mode fails, the function only warns but does
169 * not return an error code to avoid the regulator core to stop setting
170 * the operating mode for the remaining regulators.
171 */
172static int max77802_set_suspend_mode(struct regulator_dev *rdev,
173				     unsigned int mode)
174{
175	struct max77802_regulator_prv *max77802 = rdev_get_drvdata(rdev);
176	int id = rdev_get_id(rdev);
177	unsigned int val;
178	int shift = max77802_get_opmode_shift(id);
179
 
 
 
180	/*
181	 * If the regulator has been disabled for suspend
182	 * then is invalid to try setting a suspend mode.
183	 */
184	if (max77802->opmode[id] == MAX77802_OFF_PWRREQ) {
185		dev_warn(&rdev->dev, "%s: is disabled, mode: 0x%x not set\n",
186			 rdev->desc->name, mode);
187		return 0;
188	}
189
190	switch (mode) {
191	case REGULATOR_MODE_STANDBY:
192		/*
193		 * If the regulator opmode is normal then enable
194		 * ON in Low Power Mode by PWRREQ. If the mode is
195		 * already Low Power then no action is required.
196		 */
197		if (max77802->opmode[id] == MAX77802_OPMODE_NORMAL)
198			val = MAX77802_LP_PWRREQ;
199		else
200			return 0;
201		break;
202	case REGULATOR_MODE_NORMAL:
203		/*
204		 * If the regulator operating mode is Low Power then
205		 * normal is not a valid opmode in suspend. If the
206		 * mode is already normal then no action is required.
207		 */
208		if (max77802->opmode[id] == MAX77802_OPMODE_LP)
209			dev_warn(&rdev->dev, "%s: in Low Power: 0x%x invalid\n",
210				 rdev->desc->name, mode);
211		return 0;
212	default:
213		dev_warn(&rdev->dev, "%s: regulator mode: 0x%x not supported\n",
214			 rdev->desc->name, mode);
215		return -EINVAL;
216	}
217
218	return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
219				  rdev->desc->enable_mask, val << shift);
220}
221
222static int max77802_enable(struct regulator_dev *rdev)
223{
224	struct max77802_regulator_prv *max77802 = rdev_get_drvdata(rdev);
225	int id = rdev_get_id(rdev);
226	int shift = max77802_get_opmode_shift(id);
227
 
 
228	if (max77802->opmode[id] == MAX77802_OFF_PWRREQ)
229		max77802->opmode[id] = MAX77802_OPMODE_NORMAL;
230
231	return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
232				  rdev->desc->enable_mask,
233				  max77802->opmode[id] << shift);
234}
235
236static int max77802_find_ramp_value(struct regulator_dev *rdev,
237				    const unsigned int limits[], int size,
238				    unsigned int ramp_delay)
239{
240	int i;
241
242	for (i = 0; i < size; i++) {
243		if (ramp_delay <= limits[i])
244			return i;
245	}
246
247	/* Use maximum value for no ramp control */
248	dev_warn(&rdev->dev, "%s: ramp_delay: %d not supported, setting 100000\n",
249		 rdev->desc->name, ramp_delay);
250	return size - 1;
251}
252
253/* Used for BUCKs 2-4 */
254static int max77802_set_ramp_delay_2bit(struct regulator_dev *rdev,
255					int ramp_delay)
256{
257	int id = rdev_get_id(rdev);
258	unsigned int ramp_value;
259
260	if (id > MAX77802_BUCK4) {
261			dev_warn(&rdev->dev,
262				 "%s: regulator: ramp delay not supported\n",
263				 rdev->desc->name);
264		return -EINVAL;
265	}
266	ramp_value = max77802_find_ramp_value(rdev, ramp_table_77802_2bit,
267				ARRAY_SIZE(ramp_table_77802_2bit), ramp_delay);
268
269	return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
270				  MAX77802_RAMP_RATE_MASK_2BIT,
271				  ramp_value << MAX77802_RAMP_RATE_SHIFT_2BIT);
272}
273
274/* For BUCK1, 6 */
275static int max77802_set_ramp_delay_4bit(struct regulator_dev *rdev,
276					    int ramp_delay)
277{
278	unsigned int ramp_value;
279
280	ramp_value = max77802_find_ramp_value(rdev, ramp_table_77802_4bit,
281				ARRAY_SIZE(ramp_table_77802_4bit), ramp_delay);
282
283	return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
284				  MAX77802_RAMP_RATE_MASK_4BIT,
285				  ramp_value << MAX77802_RAMP_RATE_SHIFT_4BIT);
286}
287
288/*
289 * LDOs 2, 4-19, 22-35
290 */
291static struct regulator_ops max77802_ldo_ops_logic1 = {
292	.list_voltage		= regulator_list_voltage_linear,
293	.map_voltage		= regulator_map_voltage_linear,
294	.is_enabled		= regulator_is_enabled_regmap,
295	.enable			= max77802_enable,
296	.disable		= regulator_disable_regmap,
297	.get_voltage_sel	= regulator_get_voltage_sel_regmap,
298	.set_voltage_sel	= regulator_set_voltage_sel_regmap,
299	.set_voltage_time_sel	= regulator_set_voltage_time_sel,
300	.set_suspend_disable	= max77802_set_suspend_disable,
301	.set_suspend_mode	= max77802_set_suspend_mode,
302};
303
304/*
305 * LDOs 1, 20, 21, 3
306 */
307static struct regulator_ops max77802_ldo_ops_logic2 = {
308	.list_voltage		= regulator_list_voltage_linear,
309	.map_voltage		= regulator_map_voltage_linear,
310	.is_enabled		= regulator_is_enabled_regmap,
311	.enable			= max77802_enable,
312	.disable		= regulator_disable_regmap,
313	.get_voltage_sel	= regulator_get_voltage_sel_regmap,
314	.set_voltage_sel	= regulator_set_voltage_sel_regmap,
315	.set_voltage_time_sel	= regulator_set_voltage_time_sel,
316	.set_mode		= max77802_set_mode,
317	.get_mode		= max77802_get_mode,
318	.set_suspend_mode	= max77802_set_suspend_mode,
319};
320
321/* BUCKS 1, 6 */
322static struct regulator_ops max77802_buck_16_dvs_ops = {
323	.list_voltage		= regulator_list_voltage_linear,
324	.map_voltage		= regulator_map_voltage_linear,
325	.is_enabled		= regulator_is_enabled_regmap,
326	.enable			= max77802_enable,
327	.disable		= regulator_disable_regmap,
328	.get_voltage_sel	= regulator_get_voltage_sel_regmap,
329	.set_voltage_sel	= regulator_set_voltage_sel_regmap,
330	.set_voltage_time_sel	= regulator_set_voltage_time_sel,
331	.set_ramp_delay		= max77802_set_ramp_delay_4bit,
332	.set_suspend_disable	= max77802_set_suspend_disable,
333};
334
335/* BUCKs 2-4 */
336static struct regulator_ops max77802_buck_234_ops = {
337	.list_voltage		= regulator_list_voltage_linear,
338	.map_voltage		= regulator_map_voltage_linear,
339	.is_enabled		= regulator_is_enabled_regmap,
340	.enable			= max77802_enable,
341	.disable		= regulator_disable_regmap,
342	.get_voltage_sel	= regulator_get_voltage_sel_regmap,
343	.set_voltage_sel	= regulator_set_voltage_sel_regmap,
344	.set_voltage_time_sel	= regulator_set_voltage_time_sel,
345	.set_ramp_delay		= max77802_set_ramp_delay_2bit,
346	.set_suspend_disable	= max77802_set_suspend_disable,
347	.set_suspend_mode	= max77802_set_suspend_mode,
348};
349
350/* BUCKs 5, 7-10 */
351static struct regulator_ops max77802_buck_dvs_ops = {
352	.list_voltage		= regulator_list_voltage_linear,
353	.map_voltage		= regulator_map_voltage_linear,
354	.is_enabled		= regulator_is_enabled_regmap,
355	.enable			= max77802_enable,
356	.disable		= regulator_disable_regmap,
357	.get_voltage_sel	= regulator_get_voltage_sel_regmap,
358	.set_voltage_sel	= regulator_set_voltage_sel_regmap,
359	.set_voltage_time_sel	= regulator_set_voltage_time_sel,
360	.set_ramp_delay		= max77802_set_ramp_delay_2bit,
361	.set_suspend_disable	= max77802_set_suspend_disable,
362};
363
364/* LDOs 3-7, 9-14, 18-26, 28, 29, 32-34 */
365#define regulator_77802_desc_p_ldo(num, supply, log)	{		\
366	.name		= "LDO"#num,					\
367	.of_match	= of_match_ptr("LDO"#num),			\
368	.regulators_node	= of_match_ptr("regulators"),		\
369	.id		= MAX77802_LDO##num,				\
370	.supply_name	= "inl"#supply,					\
371	.ops		= &max77802_ldo_ops_logic##log,			\
372	.type		= REGULATOR_VOLTAGE,				\
373	.owner		= THIS_MODULE,					\
374	.min_uV		= 800000,					\
375	.uV_step	= 50000,					\
376	.ramp_delay	= MAX77802_RAMP_DELAY,				\
377	.n_voltages	= 1 << 6,					\
378	.vsel_reg	= MAX77802_REG_LDO1CTRL1 + num - 1,		\
379	.vsel_mask	= MAX77802_VSEL_MASK,				\
380	.enable_reg	= MAX77802_REG_LDO1CTRL1 + num - 1,		\
381	.enable_mask	= MAX77802_OPMODE_MASK << MAX77802_OPMODE_SHIFT_LDO, \
382	.of_map_mode	= max77802_map_mode,				\
383}
384
385/* LDOs 1, 2, 8, 15, 17, 27, 30, 35 */
386#define regulator_77802_desc_n_ldo(num, supply, log)   {		\
387	.name		= "LDO"#num,					\
388	.of_match	= of_match_ptr("LDO"#num),			\
389	.regulators_node	= of_match_ptr("regulators"),		\
390	.id		= MAX77802_LDO##num,				\
391	.supply_name	= "inl"#supply,					\
392	.ops		= &max77802_ldo_ops_logic##log,			\
393	.type		= REGULATOR_VOLTAGE,				\
394	.owner		= THIS_MODULE,					\
395	.min_uV		= 800000,					\
396	.uV_step	= 25000,					\
397	.ramp_delay	= MAX77802_RAMP_DELAY,				\
398	.n_voltages	= 1 << 6,					\
399	.vsel_reg	= MAX77802_REG_LDO1CTRL1 + num - 1,		\
400	.vsel_mask	= MAX77802_VSEL_MASK,				\
401	.enable_reg	= MAX77802_REG_LDO1CTRL1 + num - 1,		\
402	.enable_mask	= MAX77802_OPMODE_MASK << MAX77802_OPMODE_SHIFT_LDO, \
403	.of_map_mode	= max77802_map_mode,				\
404}
405
406/* BUCKs 1, 6 */
407#define regulator_77802_desc_16_buck(num)	{		\
408	.name		= "BUCK"#num,					\
409	.of_match	= of_match_ptr("BUCK"#num),			\
410	.regulators_node	= of_match_ptr("regulators"),		\
411	.id		= MAX77802_BUCK##num,				\
412	.supply_name	= "inb"#num,					\
413	.ops		= &max77802_buck_16_dvs_ops,			\
414	.type		= REGULATOR_VOLTAGE,				\
415	.owner		= THIS_MODULE,					\
416	.min_uV		= 612500,					\
417	.uV_step	= 6250,						\
418	.ramp_delay	= MAX77802_RAMP_DELAY,				\
419	.n_voltages	= 1 << 8,					\
420	.vsel_reg	= MAX77802_REG_BUCK ## num ## DVS1,		\
421	.vsel_mask	= MAX77802_DVS_VSEL_MASK,			\
422	.enable_reg	= MAX77802_REG_BUCK ## num ## CTRL,		\
423	.enable_mask	= MAX77802_OPMODE_MASK,				\
 
 
 
 
424	.of_map_mode	= max77802_map_mode,				\
425}
426
427/* BUCKS 2-4 */
428#define regulator_77802_desc_234_buck(num)	{		\
429	.name		= "BUCK"#num,					\
430	.of_match	= of_match_ptr("BUCK"#num),			\
431	.regulators_node	= of_match_ptr("regulators"),		\
432	.id		= MAX77802_BUCK##num,				\
433	.supply_name	= "inb"#num,					\
434	.ops		= &max77802_buck_234_ops,			\
435	.type		= REGULATOR_VOLTAGE,				\
436	.owner		= THIS_MODULE,					\
437	.min_uV		= 600000,					\
438	.uV_step	= 6250,						\
439	.ramp_delay	= MAX77802_RAMP_DELAY,				\
440	.n_voltages	= 0x91,						\
441	.vsel_reg	= MAX77802_REG_BUCK ## num ## DVS1,		\
442	.vsel_mask	= MAX77802_DVS_VSEL_MASK,			\
443	.enable_reg	= MAX77802_REG_BUCK ## num ## CTRL1,		\
444	.enable_mask	= MAX77802_OPMODE_MASK <<			\
445				MAX77802_OPMODE_BUCK234_SHIFT,		\
 
 
 
 
446	.of_map_mode	= max77802_map_mode,				\
447}
448
449/* BUCK 5 */
450#define regulator_77802_desc_buck5(num)		{		\
451	.name		= "BUCK"#num,					\
452	.of_match	= of_match_ptr("BUCK"#num),			\
453	.regulators_node	= of_match_ptr("regulators"),		\
454	.id		= MAX77802_BUCK##num,				\
455	.supply_name	= "inb"#num,					\
456	.ops		= &max77802_buck_dvs_ops,			\
457	.type		= REGULATOR_VOLTAGE,				\
458	.owner		= THIS_MODULE,					\
459	.min_uV		= 750000,					\
460	.uV_step	= 50000,					\
461	.ramp_delay	= MAX77802_RAMP_DELAY,				\
462	.n_voltages	= 1 << 6,					\
463	.vsel_reg	= MAX77802_REG_BUCK5OUT,			\
464	.vsel_mask	= MAX77802_VSEL_MASK,				\
465	.enable_reg	= MAX77802_REG_BUCK5CTRL,			\
466	.enable_mask	= MAX77802_OPMODE_MASK,				\
467	.of_map_mode	= max77802_map_mode,				\
468}
469
470/* BUCKs 7-10 */
471#define regulator_77802_desc_buck7_10(num)	{		\
472	.name		= "BUCK"#num,					\
473	.of_match	= of_match_ptr("BUCK"#num),			\
474	.regulators_node	= of_match_ptr("regulators"),		\
475	.id		= MAX77802_BUCK##num,				\
476	.supply_name	= "inb"#num,					\
477	.ops		= &max77802_buck_dvs_ops,			\
478	.type		= REGULATOR_VOLTAGE,				\
479	.owner		= THIS_MODULE,					\
480	.min_uV		= 750000,					\
481	.uV_step	= 50000,					\
482	.ramp_delay	= MAX77802_RAMP_DELAY,				\
483	.n_voltages	= 1 << 6,					\
484	.vsel_reg	= MAX77802_REG_BUCK7OUT + (num - 7) * 3,	\
485	.vsel_mask	= MAX77802_VSEL_MASK,				\
486	.enable_reg	= MAX77802_REG_BUCK7CTRL + (num - 7) * 3,	\
487	.enable_mask	= MAX77802_OPMODE_MASK,				\
488	.of_map_mode	= max77802_map_mode,				\
489}
490
491static const struct regulator_desc regulators[] = {
492	regulator_77802_desc_16_buck(1),
493	regulator_77802_desc_234_buck(2),
494	regulator_77802_desc_234_buck(3),
495	regulator_77802_desc_234_buck(4),
496	regulator_77802_desc_buck5(5),
497	regulator_77802_desc_16_buck(6),
498	regulator_77802_desc_buck7_10(7),
499	regulator_77802_desc_buck7_10(8),
500	regulator_77802_desc_buck7_10(9),
501	regulator_77802_desc_buck7_10(10),
502	regulator_77802_desc_n_ldo(1, 10, 2),
503	regulator_77802_desc_n_ldo(2, 10, 1),
504	regulator_77802_desc_p_ldo(3, 3, 2),
505	regulator_77802_desc_p_ldo(4, 6, 1),
506	regulator_77802_desc_p_ldo(5, 3, 1),
507	regulator_77802_desc_p_ldo(6, 3, 1),
508	regulator_77802_desc_p_ldo(7, 3, 1),
509	regulator_77802_desc_n_ldo(8, 1, 1),
510	regulator_77802_desc_p_ldo(9, 5, 1),
511	regulator_77802_desc_p_ldo(10, 4, 1),
512	regulator_77802_desc_p_ldo(11, 4, 1),
513	regulator_77802_desc_p_ldo(12, 9, 1),
514	regulator_77802_desc_p_ldo(13, 4, 1),
515	regulator_77802_desc_p_ldo(14, 4, 1),
516	regulator_77802_desc_n_ldo(15, 1, 1),
517	regulator_77802_desc_n_ldo(17, 2, 1),
518	regulator_77802_desc_p_ldo(18, 7, 1),
519	regulator_77802_desc_p_ldo(19, 5, 1),
520	regulator_77802_desc_p_ldo(20, 7, 2),
521	regulator_77802_desc_p_ldo(21, 6, 2),
522	regulator_77802_desc_p_ldo(23, 9, 1),
523	regulator_77802_desc_p_ldo(24, 6, 1),
524	regulator_77802_desc_p_ldo(25, 9, 1),
525	regulator_77802_desc_p_ldo(26, 9, 1),
526	regulator_77802_desc_n_ldo(27, 2, 1),
527	regulator_77802_desc_p_ldo(28, 7, 1),
528	regulator_77802_desc_p_ldo(29, 7, 1),
529	regulator_77802_desc_n_ldo(30, 2, 1),
530	regulator_77802_desc_p_ldo(32, 9, 1),
531	regulator_77802_desc_p_ldo(33, 6, 1),
532	regulator_77802_desc_p_ldo(34, 9, 1),
533	regulator_77802_desc_n_ldo(35, 2, 1),
534};
535
536static int max77802_pmic_probe(struct platform_device *pdev)
537{
538	struct max77686_dev *iodev = dev_get_drvdata(pdev->dev.parent);
539	struct max77802_regulator_prv *max77802;
540	int i, val;
541	struct regulator_config config = { };
542
543	max77802 = devm_kzalloc(&pdev->dev,
544				sizeof(struct max77802_regulator_prv),
545				GFP_KERNEL);
546	if (!max77802)
547		return -ENOMEM;
548
549	config.dev = iodev->dev;
550	config.regmap = iodev->regmap;
551	config.driver_data = max77802;
552	platform_set_drvdata(pdev, max77802);
553
554	for (i = 0; i < MAX77802_REG_MAX; i++) {
555		struct regulator_dev *rdev;
556		int id = regulators[i].id;
557		int shift = max77802_get_opmode_shift(id);
558		int ret;
559
560		ret = regmap_read(iodev->regmap, regulators[i].enable_reg, &val);
561		if (ret < 0) {
562			dev_warn(&pdev->dev,
563				"cannot read current mode for %d\n", i);
564			val = MAX77802_OPMODE_NORMAL;
565		} else {
566			val = val >> shift & MAX77802_OPMODE_MASK;
567		}
568
569		/*
570		 * If the regulator is disabled and the system warm rebooted,
571		 * the hardware reports OFF as the regulator operating mode.
572		 * Default to operating mode NORMAL in that case.
573		 */
574		if (val == MAX77802_STATUS_OFF)
575			max77802->opmode[id] = MAX77802_OPMODE_NORMAL;
576		else
577			max77802->opmode[id] = val;
 
 
578
579		rdev = devm_regulator_register(&pdev->dev,
580					       &regulators[i], &config);
581		if (IS_ERR(rdev)) {
582			ret = PTR_ERR(rdev);
583			dev_err(&pdev->dev,
584				"regulator init failed for %d: %d\n", i, ret);
585			return ret;
586		}
587	}
588
589	return 0;
590}
591
592static const struct platform_device_id max77802_pmic_id[] = {
593	{"max77802-pmic", 0},
594	{ },
595};
596MODULE_DEVICE_TABLE(platform, max77802_pmic_id);
597
598static struct platform_driver max77802_pmic_driver = {
599	.driver = {
600		.name = "max77802-pmic",
 
601	},
602	.probe = max77802_pmic_probe,
603	.id_table = max77802_pmic_id,
604};
605
606module_platform_driver(max77802_pmic_driver);
607
608MODULE_DESCRIPTION("MAXIM 77802 Regulator Driver");
609MODULE_AUTHOR("Simon Glass <sjg@chromium.org>");
610MODULE_LICENSE("GPL");