blob: 930eb137427d6ff9dd6e6cd41c9327a75104ffe6 [file] [log] [blame]
Robin Gong3784b6d2013-07-25 11:33:18 +08001/*
2 * Copyright (C) 2011-2013 Freescale Semiconductor, Inc. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/err.h>
22#include <linux/of.h>
23#include <linux/of_device.h>
24#include <linux/regulator/of_regulator.h>
25#include <linux/platform_device.h>
26#include <linux/regulator/driver.h>
27#include <linux/regulator/machine.h>
28#include <linux/regulator/pfuze100.h>
29#include <linux/i2c.h>
30#include <linux/slab.h>
31#include <linux/regmap.h>
32
33#define PFUZE_NUMREGS 128
34#define PFUZE100_VOL_OFFSET 0
35#define PFUZE100_STANDBY_OFFSET 1
36#define PFUZE100_MODE_OFFSET 3
37#define PFUZE100_CONF_OFFSET 4
38
39#define PFUZE100_DEVICEID 0x0
40#define PFUZE100_REVID 0x3
Axel Lina1b6fa82013-12-09 15:24:19 +080041#define PFUZE100_FABID 0x4
Robin Gong3784b6d2013-07-25 11:33:18 +080042
43#define PFUZE100_SW1ABVOL 0x20
44#define PFUZE100_SW1CVOL 0x2e
45#define PFUZE100_SW2VOL 0x35
46#define PFUZE100_SW3AVOL 0x3c
47#define PFUZE100_SW3BVOL 0x43
48#define PFUZE100_SW4VOL 0x4a
49#define PFUZE100_SWBSTCON1 0x66
50#define PFUZE100_VREFDDRCON 0x6a
51#define PFUZE100_VSNVSVOL 0x6b
52#define PFUZE100_VGEN1VOL 0x6c
53#define PFUZE100_VGEN2VOL 0x6d
54#define PFUZE100_VGEN3VOL 0x6e
55#define PFUZE100_VGEN4VOL 0x6f
56#define PFUZE100_VGEN5VOL 0x70
57#define PFUZE100_VGEN6VOL 0x71
58
Axel Line6c4c332014-03-04 18:20:14 +080059enum chips { PFUZE100, PFUZE200 };
Robin Gongf2518482014-03-04 17:40:36 +080060
Robin Gong3784b6d2013-07-25 11:33:18 +080061struct pfuze_regulator {
62 struct regulator_desc desc;
63 unsigned char stby_reg;
64 unsigned char stby_mask;
65};
66
67struct pfuze_chip {
Robin Gongf2518482014-03-04 17:40:36 +080068 int chip_id;
Robin Gong3784b6d2013-07-25 11:33:18 +080069 struct regmap *regmap;
70 struct device *dev;
71 struct pfuze_regulator regulator_descs[PFUZE100_MAX_REGULATOR];
72 struct regulator_dev *regulators[PFUZE100_MAX_REGULATOR];
73};
74
75static const int pfuze100_swbst[] = {
76 5000000, 5050000, 5100000, 5150000,
77};
78
79static const int pfuze100_vsnvs[] = {
80 1000000, 1100000, 1200000, 1300000, 1500000, 1800000, 3000000,
81};
82
83static const struct i2c_device_id pfuze_device_id[] = {
Robin Gongf2518482014-03-04 17:40:36 +080084 {.name = "pfuze100", .driver_data = PFUZE100},
85 {.name = "pfuze200", .driver_data = PFUZE200},
Axel Line6c4c332014-03-04 18:20:14 +080086 { }
Robin Gong3784b6d2013-07-25 11:33:18 +080087};
88MODULE_DEVICE_TABLE(i2c, pfuze_device_id);
89
90static const struct of_device_id pfuze_dt_ids[] = {
Robin Gongf2518482014-03-04 17:40:36 +080091 { .compatible = "fsl,pfuze100", .data = (void *)PFUZE100},
92 { .compatible = "fsl,pfuze200", .data = (void *)PFUZE200},
Axel Line6c4c332014-03-04 18:20:14 +080093 { }
Robin Gong3784b6d2013-07-25 11:33:18 +080094};
95MODULE_DEVICE_TABLE(of, pfuze_dt_ids);
96
97static int pfuze100_set_ramp_delay(struct regulator_dev *rdev, int ramp_delay)
98{
99 struct pfuze_chip *pfuze100 = rdev_get_drvdata(rdev);
Thiago Farinad55efa42014-01-26 21:57:12 -0200100 int id = rdev_get_id(rdev);
Axel Line5656662013-07-30 22:47:44 +0800101 unsigned int ramp_bits;
Robin Gong3784b6d2013-07-25 11:33:18 +0800102 int ret;
103
104 if (id < PFUZE100_SWBST) {
Axel Line5656662013-07-30 22:47:44 +0800105 ramp_delay = 12500 / ramp_delay;
Robin Gong3784b6d2013-07-25 11:33:18 +0800106 ramp_bits = (ramp_delay >> 1) - (ramp_delay >> 3);
Axel Line5656662013-07-30 22:47:44 +0800107 ret = regmap_update_bits(pfuze100->regmap,
108 rdev->desc->vsel_reg + 4,
109 0xc0, ramp_bits << 6);
Robin Gong3784b6d2013-07-25 11:33:18 +0800110 if (ret < 0)
111 dev_err(pfuze100->dev, "ramp failed, err %d\n", ret);
112 } else
113 ret = -EACCES;
114
115 return ret;
116}
117
118static struct regulator_ops pfuze100_ldo_regulator_ops = {
119 .enable = regulator_enable_regmap,
120 .disable = regulator_disable_regmap,
121 .is_enabled = regulator_is_enabled_regmap,
122 .list_voltage = regulator_list_voltage_linear,
123 .set_voltage_sel = regulator_set_voltage_sel_regmap,
124 .get_voltage_sel = regulator_get_voltage_sel_regmap,
125};
126
127static struct regulator_ops pfuze100_fixed_regulator_ops = {
128 .list_voltage = regulator_list_voltage_linear,
129};
130
131static struct regulator_ops pfuze100_sw_regulator_ops = {
132 .list_voltage = regulator_list_voltage_linear,
133 .set_voltage_sel = regulator_set_voltage_sel_regmap,
134 .get_voltage_sel = regulator_get_voltage_sel_regmap,
135 .set_voltage_time_sel = regulator_set_voltage_time_sel,
136 .set_ramp_delay = pfuze100_set_ramp_delay,
137};
138
139static struct regulator_ops pfuze100_swb_regulator_ops = {
Sean Crossa6dcf972014-05-26 16:45:40 +0800140 .enable = regulator_enable_regmap,
141 .disable = regulator_disable_regmap,
Robin Gong3784b6d2013-07-25 11:33:18 +0800142 .list_voltage = regulator_list_voltage_table,
Axel Lin2e04cc42013-07-29 15:38:58 +0800143 .map_voltage = regulator_map_voltage_ascend,
Robin Gong3784b6d2013-07-25 11:33:18 +0800144 .set_voltage_sel = regulator_set_voltage_sel_regmap,
145 .get_voltage_sel = regulator_get_voltage_sel_regmap,
146
147};
148
Robin Gongf2518482014-03-04 17:40:36 +0800149#define PFUZE100_FIXED_REG(_chip, _name, base, voltage) \
150 [_chip ## _ ## _name] = { \
Robin Gong3784b6d2013-07-25 11:33:18 +0800151 .desc = { \
152 .name = #_name, \
153 .n_voltages = 1, \
154 .ops = &pfuze100_fixed_regulator_ops, \
155 .type = REGULATOR_VOLTAGE, \
Robin Gongf2518482014-03-04 17:40:36 +0800156 .id = _chip ## _ ## _name, \
Robin Gong3784b6d2013-07-25 11:33:18 +0800157 .owner = THIS_MODULE, \
158 .min_uV = (voltage), \
159 .enable_reg = (base), \
160 .enable_mask = 0x10, \
161 }, \
162 }
163
Robin Gongf2518482014-03-04 17:40:36 +0800164#define PFUZE100_SW_REG(_chip, _name, base, min, max, step) \
165 [_chip ## _ ## _name] = { \
Robin Gong3784b6d2013-07-25 11:33:18 +0800166 .desc = { \
167 .name = #_name,\
168 .n_voltages = ((max) - (min)) / (step) + 1, \
169 .ops = &pfuze100_sw_regulator_ops, \
170 .type = REGULATOR_VOLTAGE, \
Robin Gongf2518482014-03-04 17:40:36 +0800171 .id = _chip ## _ ## _name, \
Robin Gong3784b6d2013-07-25 11:33:18 +0800172 .owner = THIS_MODULE, \
173 .min_uV = (min), \
174 .uV_step = (step), \
175 .vsel_reg = (base) + PFUZE100_VOL_OFFSET, \
176 .vsel_mask = 0x3f, \
177 }, \
178 .stby_reg = (base) + PFUZE100_STANDBY_OFFSET, \
179 .stby_mask = 0x3f, \
180 }
181
Robin Gongf2518482014-03-04 17:40:36 +0800182#define PFUZE100_SWB_REG(_chip, _name, base, mask, voltages) \
183 [_chip ## _ ## _name] = { \
Robin Gong3784b6d2013-07-25 11:33:18 +0800184 .desc = { \
185 .name = #_name, \
186 .n_voltages = ARRAY_SIZE(voltages), \
187 .ops = &pfuze100_swb_regulator_ops, \
188 .type = REGULATOR_VOLTAGE, \
Robin Gongf2518482014-03-04 17:40:36 +0800189 .id = _chip ## _ ## _name, \
Robin Gong3784b6d2013-07-25 11:33:18 +0800190 .owner = THIS_MODULE, \
191 .volt_table = voltages, \
192 .vsel_reg = (base), \
193 .vsel_mask = (mask), \
Sean Crossa6dcf972014-05-26 16:45:40 +0800194 .enable_reg = (base), \
195 .enable_mask = 0x48, \
Robin Gong3784b6d2013-07-25 11:33:18 +0800196 }, \
197 }
198
Robin Gongf2518482014-03-04 17:40:36 +0800199#define PFUZE100_VGEN_REG(_chip, _name, base, min, max, step) \
200 [_chip ## _ ## _name] = { \
Robin Gong3784b6d2013-07-25 11:33:18 +0800201 .desc = { \
202 .name = #_name, \
203 .n_voltages = ((max) - (min)) / (step) + 1, \
204 .ops = &pfuze100_ldo_regulator_ops, \
205 .type = REGULATOR_VOLTAGE, \
Robin Gongf2518482014-03-04 17:40:36 +0800206 .id = _chip ## _ ## _name, \
Robin Gong3784b6d2013-07-25 11:33:18 +0800207 .owner = THIS_MODULE, \
208 .min_uV = (min), \
209 .uV_step = (step), \
210 .vsel_reg = (base), \
211 .vsel_mask = 0xf, \
212 .enable_reg = (base), \
213 .enable_mask = 0x10, \
214 }, \
215 .stby_reg = (base), \
216 .stby_mask = 0x20, \
217 }
218
Robin Gongf2518482014-03-04 17:40:36 +0800219/* PFUZE100 */
Robin Gong3784b6d2013-07-25 11:33:18 +0800220static struct pfuze_regulator pfuze100_regulators[] = {
Robin Gongf2518482014-03-04 17:40:36 +0800221 PFUZE100_SW_REG(PFUZE100, SW1AB, PFUZE100_SW1ABVOL, 300000, 1875000, 25000),
222 PFUZE100_SW_REG(PFUZE100, SW1C, PFUZE100_SW1CVOL, 300000, 1875000, 25000),
223 PFUZE100_SW_REG(PFUZE100, SW2, PFUZE100_SW2VOL, 400000, 1975000, 25000),
224 PFUZE100_SW_REG(PFUZE100, SW3A, PFUZE100_SW3AVOL, 400000, 1975000, 25000),
225 PFUZE100_SW_REG(PFUZE100, SW3B, PFUZE100_SW3BVOL, 400000, 1975000, 25000),
226 PFUZE100_SW_REG(PFUZE100, SW4, PFUZE100_SW4VOL, 400000, 1975000, 25000),
227 PFUZE100_SWB_REG(PFUZE100, SWBST, PFUZE100_SWBSTCON1, 0x3 , pfuze100_swbst),
228 PFUZE100_SWB_REG(PFUZE100, VSNVS, PFUZE100_VSNVSVOL, 0x7, pfuze100_vsnvs),
229 PFUZE100_FIXED_REG(PFUZE100, VREFDDR, PFUZE100_VREFDDRCON, 750000),
230 PFUZE100_VGEN_REG(PFUZE100, VGEN1, PFUZE100_VGEN1VOL, 800000, 1550000, 50000),
231 PFUZE100_VGEN_REG(PFUZE100, VGEN2, PFUZE100_VGEN2VOL, 800000, 1550000, 50000),
232 PFUZE100_VGEN_REG(PFUZE100, VGEN3, PFUZE100_VGEN3VOL, 1800000, 3300000, 100000),
233 PFUZE100_VGEN_REG(PFUZE100, VGEN4, PFUZE100_VGEN4VOL, 1800000, 3300000, 100000),
234 PFUZE100_VGEN_REG(PFUZE100, VGEN5, PFUZE100_VGEN5VOL, 1800000, 3300000, 100000),
235 PFUZE100_VGEN_REG(PFUZE100, VGEN6, PFUZE100_VGEN6VOL, 1800000, 3300000, 100000),
Robin Gong3784b6d2013-07-25 11:33:18 +0800236};
237
Robin Gongf2518482014-03-04 17:40:36 +0800238static struct pfuze_regulator pfuze200_regulators[] = {
239 PFUZE100_SW_REG(PFUZE200, SW1AB, PFUZE100_SW1ABVOL, 300000, 1875000, 25000),
240 PFUZE100_SW_REG(PFUZE200, SW2, PFUZE100_SW2VOL, 400000, 1975000, 25000),
241 PFUZE100_SW_REG(PFUZE200, SW3A, PFUZE100_SW3AVOL, 400000, 1975000, 25000),
242 PFUZE100_SW_REG(PFUZE200, SW3B, PFUZE100_SW3BVOL, 400000, 1975000, 25000),
243 PFUZE100_SWB_REG(PFUZE200, SWBST, PFUZE100_SWBSTCON1, 0x3 , pfuze100_swbst),
244 PFUZE100_SWB_REG(PFUZE200, VSNVS, PFUZE100_VSNVSVOL, 0x7, pfuze100_vsnvs),
245 PFUZE100_FIXED_REG(PFUZE200, VREFDDR, PFUZE100_VREFDDRCON, 750000),
246 PFUZE100_VGEN_REG(PFUZE200, VGEN1, PFUZE100_VGEN1VOL, 800000, 1550000, 50000),
247 PFUZE100_VGEN_REG(PFUZE200, VGEN2, PFUZE100_VGEN2VOL, 800000, 1550000, 50000),
248 PFUZE100_VGEN_REG(PFUZE200, VGEN3, PFUZE100_VGEN3VOL, 1800000, 3300000, 100000),
249 PFUZE100_VGEN_REG(PFUZE200, VGEN4, PFUZE100_VGEN4VOL, 1800000, 3300000, 100000),
250 PFUZE100_VGEN_REG(PFUZE200, VGEN5, PFUZE100_VGEN5VOL, 1800000, 3300000, 100000),
251 PFUZE100_VGEN_REG(PFUZE200, VGEN6, PFUZE100_VGEN6VOL, 1800000, 3300000, 100000),
252};
253
254static struct pfuze_regulator *pfuze_regulators;
255
Robin Gong3784b6d2013-07-25 11:33:18 +0800256#ifdef CONFIG_OF
Robin Gongf2518482014-03-04 17:40:36 +0800257/* PFUZE100 */
Robin Gong3784b6d2013-07-25 11:33:18 +0800258static struct of_regulator_match pfuze100_matches[] = {
259 { .name = "sw1ab", },
260 { .name = "sw1c", },
261 { .name = "sw2", },
262 { .name = "sw3a", },
263 { .name = "sw3b", },
264 { .name = "sw4", },
265 { .name = "swbst", },
266 { .name = "vsnvs", },
267 { .name = "vrefddr", },
268 { .name = "vgen1", },
269 { .name = "vgen2", },
270 { .name = "vgen3", },
271 { .name = "vgen4", },
272 { .name = "vgen5", },
273 { .name = "vgen6", },
274};
275
Robin Gongf2518482014-03-04 17:40:36 +0800276/* PFUZE200 */
277static struct of_regulator_match pfuze200_matches[] = {
278
279 { .name = "sw1ab", },
280 { .name = "sw2", },
281 { .name = "sw3a", },
282 { .name = "sw3b", },
283 { .name = "swbst", },
284 { .name = "vsnvs", },
285 { .name = "vrefddr", },
286 { .name = "vgen1", },
287 { .name = "vgen2", },
288 { .name = "vgen3", },
289 { .name = "vgen4", },
290 { .name = "vgen5", },
291 { .name = "vgen6", },
292};
293
294static struct of_regulator_match *pfuze_matches;
295
Robin Gong3784b6d2013-07-25 11:33:18 +0800296static int pfuze_parse_regulators_dt(struct pfuze_chip *chip)
297{
298 struct device *dev = chip->dev;
299 struct device_node *np, *parent;
300 int ret;
301
Fabio Estevam3e01c752014-02-18 23:46:14 -0300302 np = of_node_get(dev->of_node);
Robin Gong3784b6d2013-07-25 11:33:18 +0800303 if (!np)
Fabio Estevam64287892014-02-20 13:47:02 -0300304 return -EINVAL;
Robin Gong3784b6d2013-07-25 11:33:18 +0800305
Sachin Kamatd7857c42014-02-14 17:20:00 +0530306 parent = of_get_child_by_name(np, "regulators");
Robin Gong3784b6d2013-07-25 11:33:18 +0800307 if (!parent) {
308 dev_err(dev, "regulators node not found\n");
309 return -EINVAL;
310 }
311
Robin Gongf2518482014-03-04 17:40:36 +0800312 switch (chip->chip_id) {
313 case PFUZE200:
314 pfuze_matches = pfuze200_matches;
315 ret = of_regulator_match(dev, parent, pfuze200_matches,
316 ARRAY_SIZE(pfuze200_matches));
317 break;
318
319 case PFUZE100:
320 default:
321 pfuze_matches = pfuze100_matches;
322 ret = of_regulator_match(dev, parent, pfuze100_matches,
323 ARRAY_SIZE(pfuze100_matches));
324 break;
325 }
Robin Gong3784b6d2013-07-25 11:33:18 +0800326
327 of_node_put(parent);
328 if (ret < 0) {
329 dev_err(dev, "Error parsing regulator init data: %d\n",
330 ret);
331 return ret;
332 }
333
334 return 0;
335}
336
337static inline struct regulator_init_data *match_init_data(int index)
338{
Robin Gongf2518482014-03-04 17:40:36 +0800339 return pfuze_matches[index].init_data;
Robin Gong3784b6d2013-07-25 11:33:18 +0800340}
341
342static inline struct device_node *match_of_node(int index)
343{
Robin Gongf2518482014-03-04 17:40:36 +0800344 return pfuze_matches[index].of_node;
Robin Gong3784b6d2013-07-25 11:33:18 +0800345}
346#else
347static int pfuze_parse_regulators_dt(struct pfuze_chip *chip)
348{
Robin Gong205c97b2013-07-26 10:27:18 +0800349 return 0;
Robin Gong3784b6d2013-07-25 11:33:18 +0800350}
351
352static inline struct regulator_init_data *match_init_data(int index)
353{
354 return NULL;
355}
356
357static inline struct device_node *match_of_node(int index)
358{
359 return NULL;
360}
361#endif
362
363static int pfuze_identify(struct pfuze_chip *pfuze_chip)
364{
365 unsigned int value;
366 int ret;
367
368 ret = regmap_read(pfuze_chip->regmap, PFUZE100_DEVICEID, &value);
369 if (ret)
370 return ret;
371
Robin Gongf2518482014-03-04 17:40:36 +0800372 if (((value & 0x0f) == 0x8) && (pfuze_chip->chip_id == PFUZE100)) {
373 /*
374 * Freescale misprogrammed 1-3% of parts prior to week 8 of 2013
375 * as ID=8 in PFUZE100
376 */
Fabio Estevam62b38912014-01-15 00:52:45 -0200377 dev_info(pfuze_chip->dev, "Assuming misprogrammed ID=0x8");
Robin Gongf2518482014-03-04 17:40:36 +0800378 } else if ((value & 0x0f) != pfuze_chip->chip_id) {
379 /* device id NOT match with your setting */
Robin Gong3784b6d2013-07-25 11:33:18 +0800380 dev_warn(pfuze_chip->dev, "Illegal ID: %x\n", value);
381 return -ENODEV;
382 }
383
384 ret = regmap_read(pfuze_chip->regmap, PFUZE100_REVID, &value);
385 if (ret)
386 return ret;
387 dev_info(pfuze_chip->dev,
Fabio Estevamf2694382014-01-20 18:53:56 -0200388 "Full layer: %x, Metal layer: %x\n",
Robin Gong3784b6d2013-07-25 11:33:18 +0800389 (value & 0xf0) >> 4, value & 0x0f);
390
391 ret = regmap_read(pfuze_chip->regmap, PFUZE100_FABID, &value);
392 if (ret)
393 return ret;
394 dev_info(pfuze_chip->dev, "FAB: %x, FIN: %x\n",
395 (value & 0xc) >> 2, value & 0x3);
396
397 return 0;
398}
399
400static const struct regmap_config pfuze_regmap_config = {
401 .reg_bits = 8,
402 .val_bits = 8,
Axel Lin6b8430c2013-08-01 19:59:56 +0800403 .max_register = PFUZE_NUMREGS - 1,
Robin Gong3784b6d2013-07-25 11:33:18 +0800404 .cache_type = REGCACHE_RBTREE,
405};
406
407static int pfuze100_regulator_probe(struct i2c_client *client,
408 const struct i2c_device_id *id)
409{
410 struct pfuze_chip *pfuze_chip;
411 struct pfuze_regulator_platform_data *pdata =
412 dev_get_platdata(&client->dev);
413 struct regulator_config config = { };
414 int i, ret;
Robin Gongf2518482014-03-04 17:40:36 +0800415 const struct of_device_id *match;
416 u32 regulator_num;
417 u32 sw_check_start, sw_check_end;
Robin Gong3784b6d2013-07-25 11:33:18 +0800418
419 pfuze_chip = devm_kzalloc(&client->dev, sizeof(*pfuze_chip),
420 GFP_KERNEL);
421 if (!pfuze_chip)
422 return -ENOMEM;
423
Robin Gongf2518482014-03-04 17:40:36 +0800424 if (client->dev.of_node) {
425 match = of_match_device(of_match_ptr(pfuze_dt_ids),
426 &client->dev);
427 if (!match) {
428 dev_err(&client->dev, "Error: No device match found\n");
429 return -ENODEV;
430 }
431 pfuze_chip->chip_id = (int)(long)match->data;
432 } else if (id) {
433 pfuze_chip->chip_id = id->driver_data;
434 } else {
435 dev_err(&client->dev, "No dts match or id table match found\n");
436 return -ENODEV;
437 }
438
Axel Lin8c86ab22013-07-29 12:09:12 +0800439 i2c_set_clientdata(client, pfuze_chip);
Robin Gong3784b6d2013-07-25 11:33:18 +0800440 pfuze_chip->dev = &client->dev;
441
442 pfuze_chip->regmap = devm_regmap_init_i2c(client, &pfuze_regmap_config);
443 if (IS_ERR(pfuze_chip->regmap)) {
444 ret = PTR_ERR(pfuze_chip->regmap);
445 dev_err(&client->dev,
446 "regmap allocation failed with err %d\n", ret);
447 return ret;
448 }
449
450 ret = pfuze_identify(pfuze_chip);
451 if (ret) {
452 dev_err(&client->dev, "unrecognized pfuze chip ID!\n");
453 return ret;
454 }
455
Robin Gongf2518482014-03-04 17:40:36 +0800456 /* use the right regulators after identify the right device */
457 switch (pfuze_chip->chip_id) {
458 case PFUZE200:
459 pfuze_regulators = pfuze200_regulators;
460 regulator_num = ARRAY_SIZE(pfuze200_regulators);
461 sw_check_start = PFUZE200_SW2;
462 sw_check_end = PFUZE200_SW3B;
463 break;
464
465 case PFUZE100:
466 default:
467 pfuze_regulators = pfuze100_regulators;
468 regulator_num = ARRAY_SIZE(pfuze100_regulators);
469 sw_check_start = PFUZE100_SW2;
470 sw_check_end = PFUZE100_SW4;
471 break;
472 }
473 dev_info(&client->dev, "pfuze%s found.\n",
474 (pfuze_chip->chip_id == PFUZE100) ? "100" : "200");
475
476 memcpy(pfuze_chip->regulator_descs, pfuze_regulators,
477 sizeof(pfuze_chip->regulator_descs));
478
Robin Gong3784b6d2013-07-25 11:33:18 +0800479 ret = pfuze_parse_regulators_dt(pfuze_chip);
480 if (ret)
481 return ret;
482
Robin Gongf2518482014-03-04 17:40:36 +0800483 for (i = 0; i < regulator_num; i++) {
Robin Gong3784b6d2013-07-25 11:33:18 +0800484 struct regulator_init_data *init_data;
Axel Lind9493232013-07-30 10:46:28 +0800485 struct regulator_desc *desc;
Robin Gong3784b6d2013-07-25 11:33:18 +0800486 int val;
487
Axel Lind9493232013-07-30 10:46:28 +0800488 desc = &pfuze_chip->regulator_descs[i].desc;
489
Robin Gong3784b6d2013-07-25 11:33:18 +0800490 if (pdata)
491 init_data = pdata->init_data[i];
492 else
493 init_data = match_init_data(i);
494
495 /* SW2~SW4 high bit check and modify the voltage value table */
Robin Gongf2518482014-03-04 17:40:36 +0800496 if (i >= sw_check_start && i <= sw_check_end) {
Axel Lind9493232013-07-30 10:46:28 +0800497 regmap_read(pfuze_chip->regmap, desc->vsel_reg, &val);
Robin Gong3784b6d2013-07-25 11:33:18 +0800498 if (val & 0x40) {
Axel Lind9493232013-07-30 10:46:28 +0800499 desc->min_uV = 800000;
500 desc->uV_step = 50000;
501 desc->n_voltages = 51;
Robin Gong3784b6d2013-07-25 11:33:18 +0800502 }
503 }
504
505 config.dev = &client->dev;
506 config.init_data = init_data;
507 config.driver_data = pfuze_chip;
508 config.of_node = match_of_node(i);
Sean Crossfe788b02014-05-26 16:45:41 +0800509 config.ena_gpio = -EINVAL;
Robin Gong3784b6d2013-07-25 11:33:18 +0800510
Jingoo Hanf5247b42013-12-06 16:11:58 +0900511 pfuze_chip->regulators[i] =
512 devm_regulator_register(&client->dev, desc, &config);
Robin Gong3784b6d2013-07-25 11:33:18 +0800513 if (IS_ERR(pfuze_chip->regulators[i])) {
514 dev_err(&client->dev, "register regulator%s failed\n",
Robin Gongf2518482014-03-04 17:40:36 +0800515 pfuze_regulators[i].desc.name);
Jingoo Hanf5247b42013-12-06 16:11:58 +0900516 return PTR_ERR(pfuze_chip->regulators[i]);
Robin Gong3784b6d2013-07-25 11:33:18 +0800517 }
518 }
519
520 return 0;
521}
522
Robin Gong3784b6d2013-07-25 11:33:18 +0800523static struct i2c_driver pfuze_driver = {
524 .id_table = pfuze_device_id,
525 .driver = {
526 .name = "pfuze100-regulator",
527 .owner = THIS_MODULE,
528 .of_match_table = pfuze_dt_ids,
529 },
530 .probe = pfuze100_regulator_probe,
Robin Gong3784b6d2013-07-25 11:33:18 +0800531};
532module_i2c_driver(pfuze_driver);
533
534MODULE_AUTHOR("Robin Gong <b38343@freescale.com>");
Axel Lin2cee2122014-03-05 18:02:43 +0800535MODULE_DESCRIPTION("Regulator Driver for Freescale PFUZE100/PFUZE200 PMIC");
Robin Gong12d20fc22013-07-29 11:40:11 +0800536MODULE_LICENSE("GPL v2");
Axel Lin40839bf2013-07-29 12:19:29 +0800537MODULE_ALIAS("i2c:pfuze100-regulator");