blob: bd91c95f73e0e0caf4d7c984f3b3fbda24e43128 [file] [log] [blame]
Ashish Jangam08bf1c02011-12-09 19:48:20 +05301/*
2* da9052-regulator.c: Regulator driver for DA9052
3*
4* Copyright(c) 2011 Dialog Semiconductor Ltd.
5*
6* Author: David Dajun Chen <dchen@diasemi.com>
7*
8* This program is free software; you can redistribute it and/or modify
9* it under the terms of the GNU General Public License as published by
10* the Free Software Foundation; either version 2 of the License, or
11* (at your option) any later version.
12*
13*/
14
15#include <linux/module.h>
16#include <linux/moduleparam.h>
17#include <linux/init.h>
18#include <linux/err.h>
19#include <linux/platform_device.h>
20#include <linux/regulator/driver.h>
21#include <linux/regulator/machine.h>
Ying-Chun Liu (PaulLiu)88c84c12012-04-13 21:37:41 +080022#ifdef CONFIG_OF
Mark Browncd22a962012-04-16 09:54:24 +010023#include <linux/of.h>
Ying-Chun Liu (PaulLiu)88c84c12012-04-13 21:37:41 +080024#include <linux/regulator/of_regulator.h>
25#endif
Ashish Jangam08bf1c02011-12-09 19:48:20 +053026
27#include <linux/mfd/da9052/da9052.h>
28#include <linux/mfd/da9052/reg.h>
29#include <linux/mfd/da9052/pdata.h>
30
31/* Buck step size */
32#define DA9052_BUCK_PERI_3uV_STEP 100000
33#define DA9052_BUCK_PERI_REG_MAP_UPTO_3uV 24
34#define DA9052_CONST_3uV 3000000
35
36#define DA9052_MIN_UA 0
37#define DA9052_MAX_UA 3
38#define DA9052_CURRENT_RANGE 4
39
40/* Bit masks */
41#define DA9052_BUCK_ILIM_MASK_EVEN 0x0c
42#define DA9052_BUCK_ILIM_MASK_ODD 0xc0
43
Axel Lin9210f052012-03-15 19:58:39 +080044/* DA9052 REGULATOR IDs */
45#define DA9052_ID_BUCK1 0
46#define DA9052_ID_BUCK2 1
47#define DA9052_ID_BUCK3 2
48#define DA9052_ID_BUCK4 3
49#define DA9052_ID_LDO1 4
50#define DA9052_ID_LDO2 5
51#define DA9052_ID_LDO3 6
52#define DA9052_ID_LDO4 7
53#define DA9052_ID_LDO5 8
54#define DA9052_ID_LDO6 9
55#define DA9052_ID_LDO7 10
56#define DA9052_ID_LDO8 11
57#define DA9052_ID_LDO9 12
58#define DA9052_ID_LDO10 13
59
Ashish Jangam08bf1c02011-12-09 19:48:20 +053060static const u32 da9052_current_limits[3][4] = {
61 {700000, 800000, 1000000, 1200000}, /* DA9052-BC BUCKs */
62 {1600000, 2000000, 2400000, 3000000}, /* DA9053-AA/Bx BUCK-CORE */
63 {800000, 1000000, 1200000, 1500000}, /* DA9053-AA/Bx BUCK-PRO,
64 * BUCK-MEM and BUCK-PERI
65 */
66};
67
68struct da9052_regulator_info {
69 struct regulator_desc reg_desc;
70 int step_uV;
71 int min_uV;
72 int max_uV;
Axel Lind706b1e2013-10-16 17:33:59 +080073 unsigned char activate_bit;
Ashish Jangam08bf1c02011-12-09 19:48:20 +053074};
75
76struct da9052_regulator {
77 struct da9052 *da9052;
78 struct da9052_regulator_info *info;
79 struct regulator_dev *rdev;
80};
81
82static int verify_range(struct da9052_regulator_info *info,
83 int min_uV, int max_uV)
84{
85 if (min_uV > info->max_uV || max_uV < info->min_uV)
86 return -EINVAL;
87
88 return 0;
89}
90
Ashish Jangam08bf1c02011-12-09 19:48:20 +053091static int da9052_dcdc_get_current_limit(struct regulator_dev *rdev)
92{
93 struct da9052_regulator *regulator = rdev_get_drvdata(rdev);
94 int offset = rdev_get_id(rdev);
95 int ret, row = 2;
96
97 ret = da9052_reg_read(regulator->da9052, DA9052_BUCKA_REG + offset/2);
98 if (ret < 0)
99 return ret;
100
101 /* Determine the even or odd position of the buck current limit
102 * register field
103 */
104 if (offset % 2 == 0)
105 ret = (ret & DA9052_BUCK_ILIM_MASK_EVEN) >> 2;
106 else
107 ret = (ret & DA9052_BUCK_ILIM_MASK_ODD) >> 6;
108
109 /* Select the appropriate current limit range */
110 if (regulator->da9052->chip_id == DA9052)
111 row = 0;
112 else if (offset == 0)
113 row = 1;
114
115 return da9052_current_limits[row][ret];
116}
117
118static int da9052_dcdc_set_current_limit(struct regulator_dev *rdev, int min_uA,
119 int max_uA)
120{
121 struct da9052_regulator *regulator = rdev_get_drvdata(rdev);
122 int offset = rdev_get_id(rdev);
123 int reg_val = 0;
124 int i, row = 2;
125
126 /* Select the appropriate current limit range */
127 if (regulator->da9052->chip_id == DA9052)
128 row = 0;
129 else if (offset == 0)
130 row = 1;
131
Axel Lin19d23c22012-08-08 20:23:54 +0800132 for (i = DA9052_CURRENT_RANGE - 1; i >= 0; i--) {
Axel Lin1e369bc2012-11-26 15:23:38 +0800133 if ((min_uA <= da9052_current_limits[row][i]) &&
134 (da9052_current_limits[row][i] <= max_uA)) {
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530135 reg_val = i;
136 break;
137 }
138 }
139
Axel Lin1e369bc2012-11-26 15:23:38 +0800140 if (i < 0)
141 return -EINVAL;
142
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530143 /* Determine the even or odd position of the buck current limit
144 * register field
145 */
146 if (offset % 2 == 0)
147 return da9052_reg_update(regulator->da9052,
148 DA9052_BUCKA_REG + offset/2,
149 DA9052_BUCK_ILIM_MASK_EVEN,
150 reg_val << 2);
151 else
152 return da9052_reg_update(regulator->da9052,
153 DA9052_BUCKA_REG + offset/2,
154 DA9052_BUCK_ILIM_MASK_ODD,
155 reg_val << 6);
156}
157
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530158static int da9052_list_voltage(struct regulator_dev *rdev,
159 unsigned int selector)
160{
161 struct da9052_regulator *regulator = rdev_get_drvdata(rdev);
162 struct da9052_regulator_info *info = regulator->info;
Axel Lin0ec446e2012-03-15 20:00:07 +0800163 int id = rdev_get_id(rdev);
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530164 int volt_uV;
165
Axel Lin0ec446e2012-03-15 20:00:07 +0800166 if ((id == DA9052_ID_BUCK4) && (regulator->da9052->chip_id == DA9052)
167 && (selector >= DA9052_BUCK_PERI_REG_MAP_UPTO_3uV)) {
168 volt_uV = ((DA9052_BUCK_PERI_REG_MAP_UPTO_3uV * info->step_uV)
169 + info->min_uV);
170 volt_uV += (selector - DA9052_BUCK_PERI_REG_MAP_UPTO_3uV)
171 * (DA9052_BUCK_PERI_3uV_STEP);
172 } else {
173 volt_uV = (selector * info->step_uV) + info->min_uV;
174 }
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530175
176 if (volt_uV > info->max_uV)
177 return -EINVAL;
178
179 return volt_uV;
180}
181
Axel Lin4923b48b2012-05-16 13:12:35 +0800182static int da9052_map_voltage(struct regulator_dev *rdev,
183 int min_uV, int max_uV)
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530184{
185 struct da9052_regulator *regulator = rdev_get_drvdata(rdev);
186 struct da9052_regulator_info *info = regulator->info;
Axel Lin0ec446e2012-03-15 20:00:07 +0800187 int id = rdev_get_id(rdev);
Axel Lin4923b48b2012-05-16 13:12:35 +0800188 int ret, sel;
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530189
190 ret = verify_range(info, min_uV, max_uV);
191 if (ret < 0)
192 return ret;
193
194 if (min_uV < info->min_uV)
195 min_uV = info->min_uV;
196
Axel Lin0ec446e2012-03-15 20:00:07 +0800197 if ((id == DA9052_ID_BUCK4) && (regulator->da9052->chip_id == DA9052)
198 && (min_uV >= DA9052_CONST_3uV)) {
Axel Lin4923b48b2012-05-16 13:12:35 +0800199 sel = DA9052_BUCK_PERI_REG_MAP_UPTO_3uV +
200 DIV_ROUND_UP(min_uV - DA9052_CONST_3uV,
201 DA9052_BUCK_PERI_3uV_STEP);
Axel Lin0ec446e2012-03-15 20:00:07 +0800202 } else {
Axel Lin4923b48b2012-05-16 13:12:35 +0800203 sel = DIV_ROUND_UP(min_uV - info->min_uV, info->step_uV);
Axel Lin0ec446e2012-03-15 20:00:07 +0800204 }
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530205
Axel Lin4923b48b2012-05-16 13:12:35 +0800206 ret = da9052_list_voltage(rdev, sel);
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530207 if (ret < 0)
208 return ret;
209
Axel Lin4923b48b2012-05-16 13:12:35 +0800210 return sel;
211}
212
Axel Lind706b1e2013-10-16 17:33:59 +0800213static int da9052_regulator_set_voltage_sel(struct regulator_dev *rdev,
214 unsigned int selector)
215{
216 struct da9052_regulator *regulator = rdev_get_drvdata(rdev);
217 struct da9052_regulator_info *info = regulator->info;
218 int id = rdev_get_id(rdev);
219 int ret;
220
221 ret = da9052_reg_update(regulator->da9052, rdev->desc->vsel_reg,
222 rdev->desc->vsel_mask, selector);
223 if (ret < 0)
224 return ret;
225
226 /* Some LDOs and DCDCs are DVC controlled which requires enabling of
227 * the activate bit to implment the changes on the output.
228 */
229 switch (id) {
230 case DA9052_ID_BUCK1:
231 case DA9052_ID_BUCK2:
232 case DA9052_ID_BUCK3:
233 case DA9052_ID_LDO2:
234 case DA9052_ID_LDO3:
235 ret = da9052_reg_update(regulator->da9052, DA9052_SUPPLY_REG,
236 info->activate_bit, info->activate_bit);
237 break;
238 }
239
240 return ret;
241}
242
Philipp Zabel5c99a7b2014-02-06 15:35:21 +0100243static int da9052_regulator_set_voltage_time_sel(struct regulator_dev *rdev,
244 unsigned int old_sel,
245 unsigned int new_sel)
246{
247 struct da9052_regulator *regulator = rdev_get_drvdata(rdev);
248 struct da9052_regulator_info *info = regulator->info;
249 int id = rdev_get_id(rdev);
250 int ret = 0;
251
252 /* The DVC controlled LDOs and DCDCs ramp with 6.25mV/µs after enabling
253 * the activate bit.
254 */
255 switch (id) {
256 case DA9052_ID_BUCK1:
257 case DA9052_ID_BUCK2:
258 case DA9052_ID_BUCK3:
259 case DA9052_ID_LDO2:
260 case DA9052_ID_LDO3:
Axel Lin00d11b32021-06-18 22:14:11 +0800261 ret = DIV_ROUND_UP(abs(new_sel - old_sel) * info->step_uV,
262 6250);
Philipp Zabel5c99a7b2014-02-06 15:35:21 +0100263 break;
264 }
265
266 return ret;
267}
268
Julia Lawall71242b42015-12-19 16:07:09 +0100269static const struct regulator_ops da9052_dcdc_ops = {
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530270 .get_current_limit = da9052_dcdc_get_current_limit,
271 .set_current_limit = da9052_dcdc_set_current_limit,
272
273 .list_voltage = da9052_list_voltage,
Axel Lin4923b48b2012-05-16 13:12:35 +0800274 .map_voltage = da9052_map_voltage,
Axel Lin09812bc2012-04-24 09:54:38 +0800275 .get_voltage_sel = regulator_get_voltage_sel_regmap,
Axel Lind706b1e2013-10-16 17:33:59 +0800276 .set_voltage_sel = da9052_regulator_set_voltage_sel,
Philipp Zabel5c99a7b2014-02-06 15:35:21 +0100277 .set_voltage_time_sel = da9052_regulator_set_voltage_time_sel,
Axel Lin0d481f72012-04-17 11:34:32 +0800278 .is_enabled = regulator_is_enabled_regmap,
279 .enable = regulator_enable_regmap,
280 .disable = regulator_disable_regmap,
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530281};
282
Julia Lawall71242b42015-12-19 16:07:09 +0100283static const struct regulator_ops da9052_ldo_ops = {
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530284 .list_voltage = da9052_list_voltage,
Axel Lin4923b48b2012-05-16 13:12:35 +0800285 .map_voltage = da9052_map_voltage,
Axel Lin09812bc2012-04-24 09:54:38 +0800286 .get_voltage_sel = regulator_get_voltage_sel_regmap,
Axel Lind706b1e2013-10-16 17:33:59 +0800287 .set_voltage_sel = da9052_regulator_set_voltage_sel,
Philipp Zabel5c99a7b2014-02-06 15:35:21 +0100288 .set_voltage_time_sel = da9052_regulator_set_voltage_time_sel,
Axel Lin0d481f72012-04-17 11:34:32 +0800289 .is_enabled = regulator_is_enabled_regmap,
290 .enable = regulator_enable_regmap,
291 .disable = regulator_disable_regmap,
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530292};
293
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530294#define DA9052_LDO(_id, step, min, max, sbits, ebits, abits) \
295{\
296 .reg_desc = {\
Axel Lin9210f052012-03-15 19:58:39 +0800297 .name = #_id,\
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530298 .ops = &da9052_ldo_ops,\
299 .type = REGULATOR_VOLTAGE,\
Axel Lin9210f052012-03-15 19:58:39 +0800300 .id = DA9052_ID_##_id,\
Axel Lin7b957652012-03-05 20:04:32 +0800301 .n_voltages = (max - min) / step + 1, \
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530302 .owner = THIS_MODULE,\
Axel Lin09812bc2012-04-24 09:54:38 +0800303 .vsel_reg = DA9052_BUCKCORE_REG + DA9052_ID_##_id, \
304 .vsel_mask = (1 << (sbits)) - 1,\
Axel Lin0d481f72012-04-17 11:34:32 +0800305 .enable_reg = DA9052_BUCKCORE_REG + DA9052_ID_##_id, \
306 .enable_mask = 1 << (ebits),\
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530307 },\
308 .min_uV = (min) * 1000,\
309 .max_uV = (max) * 1000,\
310 .step_uV = (step) * 1000,\
Axel Lind706b1e2013-10-16 17:33:59 +0800311 .activate_bit = (abits),\
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530312}
313
314#define DA9052_DCDC(_id, step, min, max, sbits, ebits, abits) \
315{\
316 .reg_desc = {\
Axel Lin9210f052012-03-15 19:58:39 +0800317 .name = #_id,\
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530318 .ops = &da9052_dcdc_ops,\
319 .type = REGULATOR_VOLTAGE,\
Axel Lin9210f052012-03-15 19:58:39 +0800320 .id = DA9052_ID_##_id,\
Axel Lin7b957652012-03-05 20:04:32 +0800321 .n_voltages = (max - min) / step + 1, \
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530322 .owner = THIS_MODULE,\
Axel Lin09812bc2012-04-24 09:54:38 +0800323 .vsel_reg = DA9052_BUCKCORE_REG + DA9052_ID_##_id, \
324 .vsel_mask = (1 << (sbits)) - 1,\
Axel Lin0d481f72012-04-17 11:34:32 +0800325 .enable_reg = DA9052_BUCKCORE_REG + DA9052_ID_##_id, \
326 .enable_mask = 1 << (ebits),\
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530327 },\
328 .min_uV = (min) * 1000,\
329 .max_uV = (max) * 1000,\
330 .step_uV = (step) * 1000,\
Axel Lind706b1e2013-10-16 17:33:59 +0800331 .activate_bit = (abits),\
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530332}
333
Axel Lin6242eae2011-12-20 17:12:00 +0800334static struct da9052_regulator_info da9052_regulator_info[] = {
Axel Lin9210f052012-03-15 19:58:39 +0800335 DA9052_DCDC(BUCK1, 25, 500, 2075, 6, 6, DA9052_SUPPLY_VBCOREGO),
336 DA9052_DCDC(BUCK2, 25, 500, 2075, 6, 6, DA9052_SUPPLY_VBPROGO),
Steve Twiss707319b2016-07-20 15:53:58 +0100337 DA9052_DCDC(BUCK3, 25, 950, 2525, 6, 6, DA9052_SUPPLY_VBMEMGO),
Axel Lin0ec446e2012-03-15 20:00:07 +0800338 DA9052_DCDC(BUCK4, 50, 1800, 3600, 5, 6, 0),
Axel Lin9210f052012-03-15 19:58:39 +0800339 DA9052_LDO(LDO1, 50, 600, 1800, 5, 6, 0),
Axel Lin0ec446e2012-03-15 20:00:07 +0800340 DA9052_LDO(LDO2, 25, 600, 1800, 6, 6, DA9052_SUPPLY_VLDO2GO),
341 DA9052_LDO(LDO3, 25, 1725, 3300, 6, 6, DA9052_SUPPLY_VLDO3GO),
Axel Lin9210f052012-03-15 19:58:39 +0800342 DA9052_LDO(LDO4, 25, 1725, 3300, 6, 6, 0),
343 DA9052_LDO(LDO5, 50, 1200, 3600, 6, 6, 0),
344 DA9052_LDO(LDO6, 50, 1200, 3600, 6, 6, 0),
345 DA9052_LDO(LDO7, 50, 1200, 3600, 6, 6, 0),
346 DA9052_LDO(LDO8, 50, 1200, 3600, 6, 6, 0),
347 DA9052_LDO(LDO9, 50, 1250, 3650, 6, 6, 0),
348 DA9052_LDO(LDO10, 50, 1200, 3600, 6, 6, 0),
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530349};
350
Axel Lin6242eae2011-12-20 17:12:00 +0800351static struct da9052_regulator_info da9053_regulator_info[] = {
Axel Lin9210f052012-03-15 19:58:39 +0800352 DA9052_DCDC(BUCK1, 25, 500, 2075, 6, 6, DA9052_SUPPLY_VBCOREGO),
353 DA9052_DCDC(BUCK2, 25, 500, 2075, 6, 6, DA9052_SUPPLY_VBPROGO),
Steve Twiss707319b2016-07-20 15:53:58 +0100354 DA9052_DCDC(BUCK3, 25, 950, 2525, 6, 6, DA9052_SUPPLY_VBMEMGO),
355 DA9052_DCDC(BUCK4, 25, 950, 2525, 6, 6, 0),
Axel Lin9210f052012-03-15 19:58:39 +0800356 DA9052_LDO(LDO1, 50, 600, 1800, 5, 6, 0),
Axel Lin0ec446e2012-03-15 20:00:07 +0800357 DA9052_LDO(LDO2, 25, 600, 1800, 6, 6, DA9052_SUPPLY_VLDO2GO),
358 DA9052_LDO(LDO3, 25, 1725, 3300, 6, 6, DA9052_SUPPLY_VLDO3GO),
Axel Lin9210f052012-03-15 19:58:39 +0800359 DA9052_LDO(LDO4, 25, 1725, 3300, 6, 6, 0),
360 DA9052_LDO(LDO5, 50, 1200, 3600, 6, 6, 0),
361 DA9052_LDO(LDO6, 50, 1200, 3600, 6, 6, 0),
362 DA9052_LDO(LDO7, 50, 1200, 3600, 6, 6, 0),
363 DA9052_LDO(LDO8, 50, 1200, 3600, 6, 6, 0),
364 DA9052_LDO(LDO9, 50, 1250, 3650, 6, 6, 0),
365 DA9052_LDO(LDO10, 50, 1200, 3600, 6, 6, 0),
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530366};
367
368static inline struct da9052_regulator_info *find_regulator_info(u8 chip_id,
369 int id)
370{
371 struct da9052_regulator_info *info;
372 int i;
373
Ashish Jangam984b5a62011-12-15 18:59:53 +0530374 switch (chip_id) {
375 case DA9052:
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530376 for (i = 0; i < ARRAY_SIZE(da9052_regulator_info); i++) {
377 info = &da9052_regulator_info[i];
378 if (info->reg_desc.id == id)
379 return info;
380 }
Ashish Jangam984b5a62011-12-15 18:59:53 +0530381 break;
382 case DA9053_AA:
383 case DA9053_BA:
384 case DA9053_BB:
Steve Twiss8b708142015-10-16 09:55:54 +0100385 case DA9053_BC:
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530386 for (i = 0; i < ARRAY_SIZE(da9053_regulator_info); i++) {
387 info = &da9053_regulator_info[i];
388 if (info->reg_desc.id == id)
389 return info;
390 }
Ashish Jangam984b5a62011-12-15 18:59:53 +0530391 break;
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530392 }
393
394 return NULL;
395}
396
Bill Pembertona5023572012-11-19 13:22:22 -0500397static int da9052_regulator_probe(struct platform_device *pdev)
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530398{
Johan Hovolde0c21532015-05-15 16:27:40 +0200399 const struct mfd_cell *cell = mfd_get_cell(pdev);
Mark Brownc1727082012-04-04 00:50:22 +0100400 struct regulator_config config = { };
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530401 struct da9052_regulator *regulator;
402 struct da9052 *da9052;
403 struct da9052_pdata *pdata;
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530404
Ashish Jangam984b5a62011-12-15 18:59:53 +0530405 regulator = devm_kzalloc(&pdev->dev, sizeof(struct da9052_regulator),
406 GFP_KERNEL);
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530407 if (!regulator)
408 return -ENOMEM;
409
410 da9052 = dev_get_drvdata(pdev->dev.parent);
Jingoo Handff91d02013-07-30 17:20:47 +0900411 pdata = dev_get_platdata(da9052->dev);
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530412 regulator->da9052 = da9052;
413
414 regulator->info = find_regulator_info(regulator->da9052->chip_id,
Johan Hovolde0c21532015-05-15 16:27:40 +0200415 cell->id);
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530416 if (regulator->info == NULL) {
417 dev_err(&pdev->dev, "invalid regulator ID specified\n");
Axel Lin7eb64442012-04-05 12:08:58 +0800418 return -EINVAL;
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530419 }
Mark Brownc1727082012-04-04 00:50:22 +0100420
421 config.dev = &pdev->dev;
Mark Brownc1727082012-04-04 00:50:22 +0100422 config.driver_data = regulator;
Axel Lin0d481f72012-04-17 11:34:32 +0800423 config.regmap = da9052->regmap;
Ying-Chun Liu (PaulLiu)88c84c12012-04-13 21:37:41 +0800424 if (pdata && pdata->regulators) {
Johan Hovolde0c21532015-05-15 16:27:40 +0200425 config.init_data = pdata->regulators[cell->id];
Ying-Chun Liu (PaulLiu)88c84c12012-04-13 21:37:41 +0800426 } else {
427#ifdef CONFIG_OF
Guodong Xub8b27a42014-09-10 11:50:39 +0800428 struct device_node *nproot = da9052->dev->of_node;
429 struct device_node *np;
Ying-Chun Liu (PaulLiu)88c84c12012-04-13 21:37:41 +0800430
431 if (!nproot)
432 return -ENODEV;
433
Sachin Kamatb327bcc2014-02-14 17:19:56 +0530434 nproot = of_get_child_by_name(nproot, "regulators");
Ying-Chun Liu (PaulLiu)88c84c12012-04-13 21:37:41 +0800435 if (!nproot)
436 return -ENODEV;
437
Axel Linb86bbdd2012-07-07 09:46:45 +0800438 for_each_child_of_node(nproot, np) {
Ying-Chun Liu (PaulLiu)88c84c12012-04-13 21:37:41 +0800439 if (!of_node_cmp(np->name,
440 regulator->info->reg_desc.name)) {
441 config.init_data = of_get_regulator_init_data(
Javier Martinez Canillas072e78b2014-11-10 14:43:53 +0100442 &pdev->dev, np,
443 &regulator->info->reg_desc);
Axel Line76b9cc2012-07-12 22:23:25 +0800444 config.of_node = np;
Ying-Chun Liu (PaulLiu)88c84c12012-04-13 21:37:41 +0800445 break;
446 }
447 }
Axel Linc92f5dd2013-01-27 21:16:56 +0800448 of_node_put(nproot);
Ying-Chun Liu (PaulLiu)88c84c12012-04-13 21:37:41 +0800449#endif
450 }
Mark Brownc1727082012-04-04 00:50:22 +0100451
Axel Linea49a5e2013-09-03 14:24:46 +0800452 regulator->rdev = devm_regulator_register(&pdev->dev,
453 &regulator->info->reg_desc,
454 &config);
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530455 if (IS_ERR(regulator->rdev)) {
456 dev_err(&pdev->dev, "failed to register regulator %s\n",
457 regulator->info->reg_desc.name);
Axel Lin7eb64442012-04-05 12:08:58 +0800458 return PTR_ERR(regulator->rdev);
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530459 }
460
461 platform_set_drvdata(pdev, regulator);
462
463 return 0;
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530464}
465
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530466static struct platform_driver da9052_regulator_driver = {
467 .probe = da9052_regulator_probe,
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530468 .driver = {
469 .name = "da9052-regulator",
Ashish Jangam08bf1c02011-12-09 19:48:20 +0530470 },
471};
472
473static int __init da9052_regulator_init(void)
474{
475 return platform_driver_register(&da9052_regulator_driver);
476}
477subsys_initcall(da9052_regulator_init);
478
479static void __exit da9052_regulator_exit(void)
480{
481 platform_driver_unregister(&da9052_regulator_driver);
482}
483module_exit(da9052_regulator_exit);
484
485MODULE_AUTHOR("David Dajun Chen <dchen@diasemi.com>");
486MODULE_DESCRIPTION("Power Regulator driver for Dialog DA9052 PMIC");
487MODULE_LICENSE("GPL");
488MODULE_ALIAS("platform:da9052-regulator");