2 * Copyright (C) 2011-2013 Freescale Semiconductor, Inc. All Rights Reserved.
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.
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.
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
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/err.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>
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
39 #define PFUZE100_DEVICEID 0x0
40 #define PFUZE100_REVID 0x3
41 #define PFUZE100_FABID 0x4
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
59 enum chips
{ PFUZE100
, PFUZE200
};
61 struct pfuze_regulator
{
62 struct regulator_desc desc
;
63 unsigned char stby_reg
;
64 unsigned char stby_mask
;
69 struct regmap
*regmap
;
71 struct pfuze_regulator regulator_descs
[PFUZE100_MAX_REGULATOR
];
72 struct regulator_dev
*regulators
[PFUZE100_MAX_REGULATOR
];
75 static const int pfuze100_swbst
[] = {
76 5000000, 5050000, 5100000, 5150000,
79 static const int pfuze100_vsnvs
[] = {
80 1000000, 1100000, 1200000, 1300000, 1500000, 1800000, 3000000,
83 static const struct i2c_device_id pfuze_device_id
[] = {
84 {.name
= "pfuze100", .driver_data
= PFUZE100
},
85 {.name
= "pfuze200", .driver_data
= PFUZE200
},
88 MODULE_DEVICE_TABLE(i2c
, pfuze_device_id
);
90 static const struct of_device_id pfuze_dt_ids
[] = {
91 { .compatible
= "fsl,pfuze100", .data
= (void *)PFUZE100
},
92 { .compatible
= "fsl,pfuze200", .data
= (void *)PFUZE200
},
95 MODULE_DEVICE_TABLE(of
, pfuze_dt_ids
);
97 static int pfuze100_set_ramp_delay(struct regulator_dev
*rdev
, int ramp_delay
)
99 struct pfuze_chip
*pfuze100
= rdev_get_drvdata(rdev
);
100 int id
= rdev_get_id(rdev
);
101 unsigned int ramp_bits
;
104 if (id
< PFUZE100_SWBST
) {
105 ramp_delay
= 12500 / ramp_delay
;
106 ramp_bits
= (ramp_delay
>> 1) - (ramp_delay
>> 3);
107 ret
= regmap_update_bits(pfuze100
->regmap
,
108 rdev
->desc
->vsel_reg
+ 4,
109 0xc0, ramp_bits
<< 6);
111 dev_err(pfuze100
->dev
, "ramp failed, err %d\n", ret
);
118 static 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
,
127 static struct regulator_ops pfuze100_fixed_regulator_ops
= {
128 .enable
= regulator_enable_regmap
,
129 .disable
= regulator_disable_regmap
,
130 .is_enabled
= regulator_is_enabled_regmap
,
131 .list_voltage
= regulator_list_voltage_linear
,
134 static struct regulator_ops pfuze100_sw_regulator_ops
= {
135 .list_voltage
= regulator_list_voltage_linear
,
136 .set_voltage_sel
= regulator_set_voltage_sel_regmap
,
137 .get_voltage_sel
= regulator_get_voltage_sel_regmap
,
138 .set_voltage_time_sel
= regulator_set_voltage_time_sel
,
139 .set_ramp_delay
= pfuze100_set_ramp_delay
,
142 static struct regulator_ops pfuze100_swb_regulator_ops
= {
143 .enable
= regulator_enable_regmap
,
144 .disable
= regulator_disable_regmap
,
145 .list_voltage
= regulator_list_voltage_table
,
146 .map_voltage
= regulator_map_voltage_ascend
,
147 .set_voltage_sel
= regulator_set_voltage_sel_regmap
,
148 .get_voltage_sel
= regulator_get_voltage_sel_regmap
,
152 #define PFUZE100_FIXED_REG(_chip, _name, base, voltage) \
153 [_chip ## _ ## _name] = { \
157 .ops = &pfuze100_fixed_regulator_ops, \
158 .type = REGULATOR_VOLTAGE, \
159 .id = _chip ## _ ## _name, \
160 .owner = THIS_MODULE, \
161 .min_uV = (voltage), \
162 .enable_reg = (base), \
163 .enable_mask = 0x10, \
167 #define PFUZE100_SW_REG(_chip, _name, base, min, max, step) \
168 [_chip ## _ ## _name] = { \
171 .n_voltages = ((max) - (min)) / (step) + 1, \
172 .ops = &pfuze100_sw_regulator_ops, \
173 .type = REGULATOR_VOLTAGE, \
174 .id = _chip ## _ ## _name, \
175 .owner = THIS_MODULE, \
178 .vsel_reg = (base) + PFUZE100_VOL_OFFSET, \
181 .stby_reg = (base) + PFUZE100_STANDBY_OFFSET, \
185 #define PFUZE100_SWB_REG(_chip, _name, base, mask, voltages) \
186 [_chip ## _ ## _name] = { \
189 .n_voltages = ARRAY_SIZE(voltages), \
190 .ops = &pfuze100_swb_regulator_ops, \
191 .type = REGULATOR_VOLTAGE, \
192 .id = _chip ## _ ## _name, \
193 .owner = THIS_MODULE, \
194 .volt_table = voltages, \
195 .vsel_reg = (base), \
196 .vsel_mask = (mask), \
197 .enable_reg = (base), \
198 .enable_mask = 0x48, \
202 #define PFUZE100_VGEN_REG(_chip, _name, base, min, max, step) \
203 [_chip ## _ ## _name] = { \
206 .n_voltages = ((max) - (min)) / (step) + 1, \
207 .ops = &pfuze100_ldo_regulator_ops, \
208 .type = REGULATOR_VOLTAGE, \
209 .id = _chip ## _ ## _name, \
210 .owner = THIS_MODULE, \
213 .vsel_reg = (base), \
215 .enable_reg = (base), \
216 .enable_mask = 0x10, \
218 .stby_reg = (base), \
223 static struct pfuze_regulator pfuze100_regulators
[] = {
224 PFUZE100_SW_REG(PFUZE100
, SW1AB
, PFUZE100_SW1ABVOL
, 300000, 1875000, 25000),
225 PFUZE100_SW_REG(PFUZE100
, SW1C
, PFUZE100_SW1CVOL
, 300000, 1875000, 25000),
226 PFUZE100_SW_REG(PFUZE100
, SW2
, PFUZE100_SW2VOL
, 400000, 1975000, 25000),
227 PFUZE100_SW_REG(PFUZE100
, SW3A
, PFUZE100_SW3AVOL
, 400000, 1975000, 25000),
228 PFUZE100_SW_REG(PFUZE100
, SW3B
, PFUZE100_SW3BVOL
, 400000, 1975000, 25000),
229 PFUZE100_SW_REG(PFUZE100
, SW4
, PFUZE100_SW4VOL
, 400000, 1975000, 25000),
230 PFUZE100_SWB_REG(PFUZE100
, SWBST
, PFUZE100_SWBSTCON1
, 0x3 , pfuze100_swbst
),
231 PFUZE100_SWB_REG(PFUZE100
, VSNVS
, PFUZE100_VSNVSVOL
, 0x7, pfuze100_vsnvs
),
232 PFUZE100_FIXED_REG(PFUZE100
, VREFDDR
, PFUZE100_VREFDDRCON
, 750000),
233 PFUZE100_VGEN_REG(PFUZE100
, VGEN1
, PFUZE100_VGEN1VOL
, 800000, 1550000, 50000),
234 PFUZE100_VGEN_REG(PFUZE100
, VGEN2
, PFUZE100_VGEN2VOL
, 800000, 1550000, 50000),
235 PFUZE100_VGEN_REG(PFUZE100
, VGEN3
, PFUZE100_VGEN3VOL
, 1800000, 3300000, 100000),
236 PFUZE100_VGEN_REG(PFUZE100
, VGEN4
, PFUZE100_VGEN4VOL
, 1800000, 3300000, 100000),
237 PFUZE100_VGEN_REG(PFUZE100
, VGEN5
, PFUZE100_VGEN5VOL
, 1800000, 3300000, 100000),
238 PFUZE100_VGEN_REG(PFUZE100
, VGEN6
, PFUZE100_VGEN6VOL
, 1800000, 3300000, 100000),
241 static struct pfuze_regulator pfuze200_regulators
[] = {
242 PFUZE100_SW_REG(PFUZE200
, SW1AB
, PFUZE100_SW1ABVOL
, 300000, 1875000, 25000),
243 PFUZE100_SW_REG(PFUZE200
, SW2
, PFUZE100_SW2VOL
, 400000, 1975000, 25000),
244 PFUZE100_SW_REG(PFUZE200
, SW3A
, PFUZE100_SW3AVOL
, 400000, 1975000, 25000),
245 PFUZE100_SW_REG(PFUZE200
, SW3B
, PFUZE100_SW3BVOL
, 400000, 1975000, 25000),
246 PFUZE100_SWB_REG(PFUZE200
, SWBST
, PFUZE100_SWBSTCON1
, 0x3 , pfuze100_swbst
),
247 PFUZE100_SWB_REG(PFUZE200
, VSNVS
, PFUZE100_VSNVSVOL
, 0x7, pfuze100_vsnvs
),
248 PFUZE100_FIXED_REG(PFUZE200
, VREFDDR
, PFUZE100_VREFDDRCON
, 750000),
249 PFUZE100_VGEN_REG(PFUZE200
, VGEN1
, PFUZE100_VGEN1VOL
, 800000, 1550000, 50000),
250 PFUZE100_VGEN_REG(PFUZE200
, VGEN2
, PFUZE100_VGEN2VOL
, 800000, 1550000, 50000),
251 PFUZE100_VGEN_REG(PFUZE200
, VGEN3
, PFUZE100_VGEN3VOL
, 1800000, 3300000, 100000),
252 PFUZE100_VGEN_REG(PFUZE200
, VGEN4
, PFUZE100_VGEN4VOL
, 1800000, 3300000, 100000),
253 PFUZE100_VGEN_REG(PFUZE200
, VGEN5
, PFUZE100_VGEN5VOL
, 1800000, 3300000, 100000),
254 PFUZE100_VGEN_REG(PFUZE200
, VGEN6
, PFUZE100_VGEN6VOL
, 1800000, 3300000, 100000),
257 static struct pfuze_regulator
*pfuze_regulators
;
261 static struct of_regulator_match pfuze100_matches
[] = {
262 { .name
= "sw1ab", },
268 { .name
= "swbst", },
269 { .name
= "vsnvs", },
270 { .name
= "vrefddr", },
271 { .name
= "vgen1", },
272 { .name
= "vgen2", },
273 { .name
= "vgen3", },
274 { .name
= "vgen4", },
275 { .name
= "vgen5", },
276 { .name
= "vgen6", },
280 static struct of_regulator_match pfuze200_matches
[] = {
282 { .name
= "sw1ab", },
286 { .name
= "swbst", },
287 { .name
= "vsnvs", },
288 { .name
= "vrefddr", },
289 { .name
= "vgen1", },
290 { .name
= "vgen2", },
291 { .name
= "vgen3", },
292 { .name
= "vgen4", },
293 { .name
= "vgen5", },
294 { .name
= "vgen6", },
297 static struct of_regulator_match
*pfuze_matches
;
299 static int pfuze_parse_regulators_dt(struct pfuze_chip
*chip
)
301 struct device
*dev
= chip
->dev
;
302 struct device_node
*np
, *parent
;
305 np
= of_node_get(dev
->of_node
);
309 parent
= of_get_child_by_name(np
, "regulators");
311 dev_err(dev
, "regulators node not found\n");
315 switch (chip
->chip_id
) {
317 pfuze_matches
= pfuze200_matches
;
318 ret
= of_regulator_match(dev
, parent
, pfuze200_matches
,
319 ARRAY_SIZE(pfuze200_matches
));
324 pfuze_matches
= pfuze100_matches
;
325 ret
= of_regulator_match(dev
, parent
, pfuze100_matches
,
326 ARRAY_SIZE(pfuze100_matches
));
332 dev_err(dev
, "Error parsing regulator init data: %d\n",
340 static inline struct regulator_init_data
*match_init_data(int index
)
342 return pfuze_matches
[index
].init_data
;
345 static inline struct device_node
*match_of_node(int index
)
347 return pfuze_matches
[index
].of_node
;
350 static int pfuze_parse_regulators_dt(struct pfuze_chip
*chip
)
355 static inline struct regulator_init_data
*match_init_data(int index
)
360 static inline struct device_node
*match_of_node(int index
)
366 static int pfuze_identify(struct pfuze_chip
*pfuze_chip
)
371 ret
= regmap_read(pfuze_chip
->regmap
, PFUZE100_DEVICEID
, &value
);
375 if (((value
& 0x0f) == 0x8) && (pfuze_chip
->chip_id
== PFUZE100
)) {
377 * Freescale misprogrammed 1-3% of parts prior to week 8 of 2013
378 * as ID=8 in PFUZE100
380 dev_info(pfuze_chip
->dev
, "Assuming misprogrammed ID=0x8");
381 } else if ((value
& 0x0f) != pfuze_chip
->chip_id
) {
382 /* device id NOT match with your setting */
383 dev_warn(pfuze_chip
->dev
, "Illegal ID: %x\n", value
);
387 ret
= regmap_read(pfuze_chip
->regmap
, PFUZE100_REVID
, &value
);
390 dev_info(pfuze_chip
->dev
,
391 "Full layer: %x, Metal layer: %x\n",
392 (value
& 0xf0) >> 4, value
& 0x0f);
394 ret
= regmap_read(pfuze_chip
->regmap
, PFUZE100_FABID
, &value
);
397 dev_info(pfuze_chip
->dev
, "FAB: %x, FIN: %x\n",
398 (value
& 0xc) >> 2, value
& 0x3);
403 static const struct regmap_config pfuze_regmap_config
= {
406 .max_register
= PFUZE_NUMREGS
- 1,
407 .cache_type
= REGCACHE_RBTREE
,
410 static int pfuze100_regulator_probe(struct i2c_client
*client
,
411 const struct i2c_device_id
*id
)
413 struct pfuze_chip
*pfuze_chip
;
414 struct pfuze_regulator_platform_data
*pdata
=
415 dev_get_platdata(&client
->dev
);
416 struct regulator_config config
= { };
418 const struct of_device_id
*match
;
420 u32 sw_check_start
, sw_check_end
;
422 pfuze_chip
= devm_kzalloc(&client
->dev
, sizeof(*pfuze_chip
),
427 if (client
->dev
.of_node
) {
428 match
= of_match_device(of_match_ptr(pfuze_dt_ids
),
431 dev_err(&client
->dev
, "Error: No device match found\n");
434 pfuze_chip
->chip_id
= (int)(long)match
->data
;
436 pfuze_chip
->chip_id
= id
->driver_data
;
438 dev_err(&client
->dev
, "No dts match or id table match found\n");
442 i2c_set_clientdata(client
, pfuze_chip
);
443 pfuze_chip
->dev
= &client
->dev
;
445 pfuze_chip
->regmap
= devm_regmap_init_i2c(client
, &pfuze_regmap_config
);
446 if (IS_ERR(pfuze_chip
->regmap
)) {
447 ret
= PTR_ERR(pfuze_chip
->regmap
);
448 dev_err(&client
->dev
,
449 "regmap allocation failed with err %d\n", ret
);
453 ret
= pfuze_identify(pfuze_chip
);
455 dev_err(&client
->dev
, "unrecognized pfuze chip ID!\n");
459 /* use the right regulators after identify the right device */
460 switch (pfuze_chip
->chip_id
) {
462 pfuze_regulators
= pfuze200_regulators
;
463 regulator_num
= ARRAY_SIZE(pfuze200_regulators
);
464 sw_check_start
= PFUZE200_SW2
;
465 sw_check_end
= PFUZE200_SW3B
;
470 pfuze_regulators
= pfuze100_regulators
;
471 regulator_num
= ARRAY_SIZE(pfuze100_regulators
);
472 sw_check_start
= PFUZE100_SW2
;
473 sw_check_end
= PFUZE100_SW4
;
476 dev_info(&client
->dev
, "pfuze%s found.\n",
477 (pfuze_chip
->chip_id
== PFUZE100
) ? "100" : "200");
479 memcpy(pfuze_chip
->regulator_descs
, pfuze_regulators
,
480 sizeof(pfuze_chip
->regulator_descs
));
482 ret
= pfuze_parse_regulators_dt(pfuze_chip
);
486 for (i
= 0; i
< regulator_num
; i
++) {
487 struct regulator_init_data
*init_data
;
488 struct regulator_desc
*desc
;
491 desc
= &pfuze_chip
->regulator_descs
[i
].desc
;
494 init_data
= pdata
->init_data
[i
];
496 init_data
= match_init_data(i
);
498 /* SW2~SW4 high bit check and modify the voltage value table */
499 if (i
>= sw_check_start
&& i
<= sw_check_end
) {
500 regmap_read(pfuze_chip
->regmap
, desc
->vsel_reg
, &val
);
502 desc
->min_uV
= 800000;
503 desc
->uV_step
= 50000;
504 desc
->n_voltages
= 51;
508 config
.dev
= &client
->dev
;
509 config
.init_data
= init_data
;
510 config
.driver_data
= pfuze_chip
;
511 config
.of_node
= match_of_node(i
);
512 config
.ena_gpio
= -EINVAL
;
514 pfuze_chip
->regulators
[i
] =
515 devm_regulator_register(&client
->dev
, desc
, &config
);
516 if (IS_ERR(pfuze_chip
->regulators
[i
])) {
517 dev_err(&client
->dev
, "register regulator%s failed\n",
518 pfuze_regulators
[i
].desc
.name
);
519 return PTR_ERR(pfuze_chip
->regulators
[i
]);
526 static struct i2c_driver pfuze_driver
= {
527 .id_table
= pfuze_device_id
,
529 .name
= "pfuze100-regulator",
530 .owner
= THIS_MODULE
,
531 .of_match_table
= pfuze_dt_ids
,
533 .probe
= pfuze100_regulator_probe
,
535 module_i2c_driver(pfuze_driver
);
537 MODULE_AUTHOR("Robin Gong <b38343@freescale.com>");
538 MODULE_DESCRIPTION("Regulator Driver for Freescale PFUZE100/PFUZE200 PMIC");
539 MODULE_LICENSE("GPL v2");
540 MODULE_ALIAS("i2c:pfuze100-regulator");