blob: e140a152f5f838d929dd139e70b2a4cdd04b4cb2 [file] [log] [blame]
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +05301/*
2 * tps6507x-regulator.c
3 *
4 * Regulator driver for TPS65073 PMIC
5 *
6 * Copyright (C) 2009 Texas Instrument Incorporated - http://www.ti.com/
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation version 2.
11 *
12 * This program is distributed "as is" WITHOUT ANY WARRANTY of any kind,
13 * whether express or implied; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 */
17
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/err.h>
22#include <linux/platform_device.h>
23#include <linux/regulator/driver.h>
24#include <linux/regulator/machine.h>
Anuj Aggarwal7d148312010-07-12 17:54:06 +053025#include <linux/regulator/tps6507x.h>
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +053026#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Todd Fischerd183fcc2010-04-05 20:23:56 -060028#include <linux/mfd/tps6507x.h>
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +053029
30/* DCDC's */
31#define TPS6507X_DCDC_1 0
32#define TPS6507X_DCDC_2 1
33#define TPS6507X_DCDC_3 2
34/* LDOs */
35#define TPS6507X_LDO_1 3
36#define TPS6507X_LDO_2 4
37
38#define TPS6507X_MAX_REG_ID TPS6507X_LDO_2
39
40/* Number of step-down converters available */
41#define TPS6507X_NUM_DCDC 3
42/* Number of LDO voltage regulators available */
43#define TPS6507X_NUM_LDO 2
44/* Number of total regulators available */
45#define TPS6507X_NUM_REGULATOR (TPS6507X_NUM_DCDC + TPS6507X_NUM_LDO)
46
47/* Supported voltage values for regulators (in milliVolts) */
48static const u16 VDCDCx_VSEL_table[] = {
49 725, 750, 775, 800,
50 825, 850, 875, 900,
51 925, 950, 975, 1000,
52 1025, 1050, 1075, 1100,
53 1125, 1150, 1175, 1200,
54 1225, 1250, 1275, 1300,
55 1325, 1350, 1375, 1400,
56 1425, 1450, 1475, 1500,
57 1550, 1600, 1650, 1700,
58 1750, 1800, 1850, 1900,
59 1950, 2000, 2050, 2100,
60 2150, 2200, 2250, 2300,
61 2350, 2400, 2450, 2500,
62 2550, 2600, 2650, 2700,
63 2750, 2800, 2850, 2900,
64 3000, 3100, 3200, 3300,
65};
66
67static const u16 LDO1_VSEL_table[] = {
68 1000, 1100, 1200, 1250,
69 1300, 1350, 1400, 1500,
70 1600, 1800, 2500, 2750,
71 2800, 3000, 3100, 3300,
72};
73
74static const u16 LDO2_VSEL_table[] = {
75 725, 750, 775, 800,
76 825, 850, 875, 900,
77 925, 950, 975, 1000,
78 1025, 1050, 1075, 1100,
79 1125, 1150, 1175, 1200,
80 1225, 1250, 1275, 1300,
81 1325, 1350, 1375, 1400,
82 1425, 1450, 1475, 1500,
83 1550, 1600, 1650, 1700,
84 1750, 1800, 1850, 1900,
85 1950, 2000, 2050, 2100,
86 2150, 2200, 2250, 2300,
87 2350, 2400, 2450, 2500,
88 2550, 2600, 2650, 2700,
89 2750, 2800, 2850, 2900,
90 3000, 3100, 3200, 3300,
91};
92
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +053093struct tps_info {
94 const char *name;
95 unsigned min_uV;
96 unsigned max_uV;
97 u8 table_len;
98 const u16 *table;
Anuj Aggarwal7d148312010-07-12 17:54:06 +053099
100 /* Does DCDC high or the low register defines output voltage? */
101 bool defdcdc_default;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530102};
103
Anuj Aggarwal7d148312010-07-12 17:54:06 +0530104static struct tps_info tps6507x_pmic_regs[] = {
Todd Fischer31dd6a22010-04-08 09:04:55 +0200105 {
106 .name = "VDCDC1",
107 .min_uV = 725000,
108 .max_uV = 3300000,
109 .table_len = ARRAY_SIZE(VDCDCx_VSEL_table),
110 .table = VDCDCx_VSEL_table,
111 },
112 {
113 .name = "VDCDC2",
114 .min_uV = 725000,
115 .max_uV = 3300000,
116 .table_len = ARRAY_SIZE(VDCDCx_VSEL_table),
117 .table = VDCDCx_VSEL_table,
118 },
119 {
120 .name = "VDCDC3",
121 .min_uV = 725000,
122 .max_uV = 3300000,
123 .table_len = ARRAY_SIZE(VDCDCx_VSEL_table),
124 .table = VDCDCx_VSEL_table,
125 },
126 {
127 .name = "LDO1",
128 .min_uV = 1000000,
129 .max_uV = 3300000,
130 .table_len = ARRAY_SIZE(LDO1_VSEL_table),
131 .table = LDO1_VSEL_table,
132 },
133 {
134 .name = "LDO2",
135 .min_uV = 725000,
136 .max_uV = 3300000,
137 .table_len = ARRAY_SIZE(LDO2_VSEL_table),
138 .table = LDO2_VSEL_table,
139 },
140};
141
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600142struct tps6507x_pmic {
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530143 struct regulator_desc desc[TPS6507X_NUM_REGULATOR];
Todd Fischer31dd6a22010-04-08 09:04:55 +0200144 struct tps6507x_dev *mfd;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530145 struct regulator_dev *rdev[TPS6507X_NUM_REGULATOR];
Anuj Aggarwal7d148312010-07-12 17:54:06 +0530146 struct tps_info *info[TPS6507X_NUM_REGULATOR];
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530147 struct mutex io_lock;
148};
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600149static inline int tps6507x_pmic_read(struct tps6507x_pmic *tps, u8 reg)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530150{
Todd Fischer31dd6a22010-04-08 09:04:55 +0200151 u8 val;
152 int err;
153
154 err = tps->mfd->read_dev(tps->mfd, reg, 1, &val);
155
156 if (err)
157 return err;
158
159 return val;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530160}
161
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600162static inline int tps6507x_pmic_write(struct tps6507x_pmic *tps, u8 reg, u8 val)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530163{
Todd Fischer31dd6a22010-04-08 09:04:55 +0200164 return tps->mfd->write_dev(tps->mfd, reg, 1, &val);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530165}
166
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600167static int tps6507x_pmic_set_bits(struct tps6507x_pmic *tps, u8 reg, u8 mask)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530168{
169 int err, data;
170
171 mutex_lock(&tps->io_lock);
172
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600173 data = tps6507x_pmic_read(tps, reg);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530174 if (data < 0) {
Todd Fischer31dd6a22010-04-08 09:04:55 +0200175 dev_err(tps->mfd->dev, "Read from reg 0x%x failed\n", reg);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530176 err = data;
177 goto out;
178 }
179
180 data |= mask;
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600181 err = tps6507x_pmic_write(tps, reg, data);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530182 if (err)
Todd Fischer31dd6a22010-04-08 09:04:55 +0200183 dev_err(tps->mfd->dev, "Write for reg 0x%x failed\n", reg);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530184
185out:
186 mutex_unlock(&tps->io_lock);
187 return err;
188}
189
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600190static int tps6507x_pmic_clear_bits(struct tps6507x_pmic *tps, u8 reg, u8 mask)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530191{
192 int err, data;
193
194 mutex_lock(&tps->io_lock);
195
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600196 data = tps6507x_pmic_read(tps, reg);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530197 if (data < 0) {
Todd Fischer31dd6a22010-04-08 09:04:55 +0200198 dev_err(tps->mfd->dev, "Read from reg 0x%x failed\n", reg);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530199 err = data;
200 goto out;
201 }
202
203 data &= ~mask;
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600204 err = tps6507x_pmic_write(tps, reg, data);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530205 if (err)
Todd Fischer31dd6a22010-04-08 09:04:55 +0200206 dev_err(tps->mfd->dev, "Write for reg 0x%x failed\n", reg);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530207
208out:
209 mutex_unlock(&tps->io_lock);
210 return err;
211}
212
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600213static int tps6507x_pmic_reg_read(struct tps6507x_pmic *tps, u8 reg)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530214{
215 int data;
216
217 mutex_lock(&tps->io_lock);
218
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600219 data = tps6507x_pmic_read(tps, reg);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530220 if (data < 0)
Todd Fischer31dd6a22010-04-08 09:04:55 +0200221 dev_err(tps->mfd->dev, "Read from reg 0x%x failed\n", reg);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530222
223 mutex_unlock(&tps->io_lock);
224 return data;
225}
226
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600227static int tps6507x_pmic_reg_write(struct tps6507x_pmic *tps, u8 reg, u8 val)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530228{
229 int err;
230
231 mutex_lock(&tps->io_lock);
232
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600233 err = tps6507x_pmic_write(tps, reg, val);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530234 if (err < 0)
Todd Fischer31dd6a22010-04-08 09:04:55 +0200235 dev_err(tps->mfd->dev, "Write for reg 0x%x failed\n", reg);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530236
237 mutex_unlock(&tps->io_lock);
238 return err;
239}
240
Axel Linf2933d32012-03-12 15:57:50 +0800241static int tps6507x_pmic_is_enabled(struct regulator_dev *dev)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530242{
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600243 struct tps6507x_pmic *tps = rdev_get_drvdata(dev);
Axel Linf2933d32012-03-12 15:57:50 +0800244 int data, rid = rdev_get_id(dev);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530245 u8 shift;
246
Axel Linf2933d32012-03-12 15:57:50 +0800247 if (rid < TPS6507X_DCDC_1 || rid > TPS6507X_LDO_2)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530248 return -EINVAL;
249
Axel Linf2933d32012-03-12 15:57:50 +0800250 shift = TPS6507X_MAX_REG_ID - rid;
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600251 data = tps6507x_pmic_reg_read(tps, TPS6507X_REG_CON_CTRL1);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530252
253 if (data < 0)
254 return data;
255 else
256 return (data & 1<<shift) ? 1 : 0;
257}
258
Axel Linf2933d32012-03-12 15:57:50 +0800259static int tps6507x_pmic_enable(struct regulator_dev *dev)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530260{
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600261 struct tps6507x_pmic *tps = rdev_get_drvdata(dev);
Axel Linf2933d32012-03-12 15:57:50 +0800262 int rid = rdev_get_id(dev);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530263 u8 shift;
264
Axel Linf2933d32012-03-12 15:57:50 +0800265 if (rid < TPS6507X_DCDC_1 || rid > TPS6507X_LDO_2)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530266 return -EINVAL;
267
Axel Linf2933d32012-03-12 15:57:50 +0800268 shift = TPS6507X_MAX_REG_ID - rid;
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600269 return tps6507x_pmic_set_bits(tps, TPS6507X_REG_CON_CTRL1, 1 << shift);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530270}
271
Axel Linf2933d32012-03-12 15:57:50 +0800272static int tps6507x_pmic_disable(struct regulator_dev *dev)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530273{
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600274 struct tps6507x_pmic *tps = rdev_get_drvdata(dev);
Axel Linf2933d32012-03-12 15:57:50 +0800275 int rid = rdev_get_id(dev);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530276 u8 shift;
277
Axel Linf2933d32012-03-12 15:57:50 +0800278 if (rid < TPS6507X_DCDC_1 || rid > TPS6507X_LDO_2)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530279 return -EINVAL;
280
Axel Linf2933d32012-03-12 15:57:50 +0800281 shift = TPS6507X_MAX_REG_ID - rid;
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600282 return tps6507x_pmic_clear_bits(tps, TPS6507X_REG_CON_CTRL1,
283 1 << shift);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530284}
285
Axel Linf2933d32012-03-12 15:57:50 +0800286static int tps6507x_pmic_get_voltage(struct regulator_dev *dev)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530287{
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600288 struct tps6507x_pmic *tps = rdev_get_drvdata(dev);
Axel Linf2933d32012-03-12 15:57:50 +0800289 int data, rid = rdev_get_id(dev);
290 u8 reg, mask;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530291
Axel Linf2933d32012-03-12 15:57:50 +0800292 switch (rid) {
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530293 case TPS6507X_DCDC_1:
294 reg = TPS6507X_REG_DEFDCDC1;
Axel Linf2933d32012-03-12 15:57:50 +0800295 mask = TPS6507X_DEFDCDCX_DCDC_MASK;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530296 break;
297 case TPS6507X_DCDC_2:
Axel Linf2933d32012-03-12 15:57:50 +0800298 if (tps->info[rid]->defdcdc_default)
Anuj Aggarwal7d148312010-07-12 17:54:06 +0530299 reg = TPS6507X_REG_DEFDCDC2_HIGH;
300 else
301 reg = TPS6507X_REG_DEFDCDC2_LOW;
Axel Linf2933d32012-03-12 15:57:50 +0800302 mask = TPS6507X_DEFDCDCX_DCDC_MASK;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530303 break;
304 case TPS6507X_DCDC_3:
Axel Linf2933d32012-03-12 15:57:50 +0800305 if (tps->info[rid]->defdcdc_default)
Anuj Aggarwal7d148312010-07-12 17:54:06 +0530306 reg = TPS6507X_REG_DEFDCDC3_HIGH;
307 else
308 reg = TPS6507X_REG_DEFDCDC3_LOW;
Axel Linf2933d32012-03-12 15:57:50 +0800309 mask = TPS6507X_DEFDCDCX_DCDC_MASK;
310 break;
311 case TPS6507X_LDO_1:
312 reg = TPS6507X_REG_LDO_CTRL1;
313 mask = TPS6507X_REG_LDO_CTRL1_LDO1_MASK;
314 break;
315 case TPS6507X_LDO_2:
316 reg = TPS6507X_REG_DEFLDO2;
317 mask = TPS6507X_REG_DEFLDO2_LDO2_MASK;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530318 break;
319 default:
320 return -EINVAL;
321 }
322
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600323 data = tps6507x_pmic_reg_read(tps, reg);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530324 if (data < 0)
325 return data;
326
Axel Linf2933d32012-03-12 15:57:50 +0800327 data &= mask;
328 return tps->info[rid]->table[data] * 1000;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530329}
330
Axel Linf2933d32012-03-12 15:57:50 +0800331static int tps6507x_pmic_set_voltage(struct regulator_dev *dev,
Mark Brown3a93f2a2010-11-10 14:38:29 +0000332 int min_uV, int max_uV,
333 unsigned *selector)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530334{
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600335 struct tps6507x_pmic *tps = rdev_get_drvdata(dev);
Axel Linf2933d32012-03-12 15:57:50 +0800336 int data, vsel, rid = rdev_get_id(dev);
337 u8 reg, mask;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530338
Axel Linf2933d32012-03-12 15:57:50 +0800339 switch (rid) {
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530340 case TPS6507X_DCDC_1:
341 reg = TPS6507X_REG_DEFDCDC1;
Axel Linf2933d32012-03-12 15:57:50 +0800342 mask = TPS6507X_DEFDCDCX_DCDC_MASK;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530343 break;
344 case TPS6507X_DCDC_2:
Axel Linf2933d32012-03-12 15:57:50 +0800345 if (tps->info[rid]->defdcdc_default)
Anuj Aggarwal7d148312010-07-12 17:54:06 +0530346 reg = TPS6507X_REG_DEFDCDC2_HIGH;
347 else
348 reg = TPS6507X_REG_DEFDCDC2_LOW;
Axel Linf2933d32012-03-12 15:57:50 +0800349 mask = TPS6507X_DEFDCDCX_DCDC_MASK;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530350 break;
351 case TPS6507X_DCDC_3:
Axel Linf2933d32012-03-12 15:57:50 +0800352 if (tps->info[rid]->defdcdc_default)
Anuj Aggarwal7d148312010-07-12 17:54:06 +0530353 reg = TPS6507X_REG_DEFDCDC3_HIGH;
354 else
355 reg = TPS6507X_REG_DEFDCDC3_LOW;
Axel Linf2933d32012-03-12 15:57:50 +0800356 mask = TPS6507X_DEFDCDCX_DCDC_MASK;
357 break;
358 case TPS6507X_LDO_1:
359 reg = TPS6507X_REG_LDO_CTRL1;
360 mask = TPS6507X_REG_LDO_CTRL1_LDO1_MASK;
361 break;
362 case TPS6507X_LDO_2:
363 reg = TPS6507X_REG_DEFLDO2;
364 mask = TPS6507X_REG_DEFLDO2_LDO2_MASK;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530365 break;
366 default:
367 return -EINVAL;
368 }
369
Axel Linf2933d32012-03-12 15:57:50 +0800370 if (min_uV < tps->info[rid]->min_uV || min_uV > tps->info[rid]->max_uV)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530371 return -EINVAL;
Axel Linf2933d32012-03-12 15:57:50 +0800372 if (max_uV < tps->info[rid]->min_uV || max_uV > tps->info[rid]->max_uV)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530373 return -EINVAL;
374
Axel Linf2933d32012-03-12 15:57:50 +0800375 for (vsel = 0; vsel < tps->info[rid]->table_len; vsel++) {
376 int mV = tps->info[rid]->table[vsel];
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530377 int uV = mV * 1000;
378
379 /* Break at the first in-range value */
380 if (min_uV <= uV && uV <= max_uV)
381 break;
382 }
383
384 /* write to the register in case we found a match */
Axel Linf2933d32012-03-12 15:57:50 +0800385 if (vsel == tps->info[rid]->table_len)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530386 return -EINVAL;
387
Mark Brown3a93f2a2010-11-10 14:38:29 +0000388 *selector = vsel;
389
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600390 data = tps6507x_pmic_reg_read(tps, reg);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530391 if (data < 0)
392 return data;
393
394 data &= ~mask;
395 data |= vsel;
396
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600397 return tps6507x_pmic_reg_write(tps, reg, data);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530398}
399
Axel Linf2933d32012-03-12 15:57:50 +0800400static int tps6507x_pmic_list_voltage(struct regulator_dev *dev,
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530401 unsigned selector)
402{
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600403 struct tps6507x_pmic *tps = rdev_get_drvdata(dev);
Axel Linf2933d32012-03-12 15:57:50 +0800404 int rid = rdev_get_id(dev);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530405
Axel Linf2933d32012-03-12 15:57:50 +0800406 if (rid < TPS6507X_DCDC_1 || rid > TPS6507X_LDO_2)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530407 return -EINVAL;
408
Axel Linf2933d32012-03-12 15:57:50 +0800409 if (selector >= tps->info[rid]->table_len)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530410 return -EINVAL;
411 else
Axel Linf2933d32012-03-12 15:57:50 +0800412 return tps->info[rid]->table[selector] * 1000;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530413}
414
Axel Linf2933d32012-03-12 15:57:50 +0800415static struct regulator_ops tps6507x_pmic_ops = {
416 .is_enabled = tps6507x_pmic_is_enabled,
417 .enable = tps6507x_pmic_enable,
418 .disable = tps6507x_pmic_disable,
419 .get_voltage = tps6507x_pmic_get_voltage,
420 .set_voltage = tps6507x_pmic_set_voltage,
421 .list_voltage = tps6507x_pmic_list_voltage,
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530422};
423
Axel Linf2933d32012-03-12 15:57:50 +0800424static __devinit int tps6507x_pmic_probe(struct platform_device *pdev)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530425{
Todd Fischer31dd6a22010-04-08 09:04:55 +0200426 struct tps6507x_dev *tps6507x_dev = dev_get_drvdata(pdev->dev.parent);
Anuj Aggarwal7d148312010-07-12 17:54:06 +0530427 struct tps_info *info = &tps6507x_pmic_regs[0];
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530428 struct regulator_init_data *init_data;
429 struct regulator_dev *rdev;
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600430 struct tps6507x_pmic *tps;
Todd Fischer0bc20bb2010-04-05 20:23:57 -0600431 struct tps6507x_board *tps_board;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530432 int i;
Dmitry Torokhov56c23492010-02-23 23:38:12 -0800433 int error;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530434
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530435 /**
Todd Fischer0bc20bb2010-04-05 20:23:57 -0600436 * tps_board points to pmic related constants
437 * coming from the board-evm file.
438 */
439
Todd Fischer31dd6a22010-04-08 09:04:55 +0200440 tps_board = dev_get_platdata(tps6507x_dev->dev);
Todd Fischer0bc20bb2010-04-05 20:23:57 -0600441 if (!tps_board)
442 return -EINVAL;
443
444 /**
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530445 * init_data points to array of regulator_init structures
446 * coming from the board-evm file.
447 */
Todd Fischer0bc20bb2010-04-05 20:23:57 -0600448 init_data = tps_board->tps6507x_pmic_init_data;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530449 if (!init_data)
Todd Fischer0bc20bb2010-04-05 20:23:57 -0600450 return -EINVAL;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530451
452 tps = kzalloc(sizeof(*tps), GFP_KERNEL);
453 if (!tps)
454 return -ENOMEM;
455
456 mutex_init(&tps->io_lock);
457
458 /* common for all regulators */
Todd Fischer31dd6a22010-04-08 09:04:55 +0200459 tps->mfd = tps6507x_dev;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530460
461 for (i = 0; i < TPS6507X_NUM_REGULATOR; i++, info++, init_data++) {
462 /* Register the regulators */
463 tps->info[i] = info;
Anuj Aggarwal7d148312010-07-12 17:54:06 +0530464 if (init_data->driver_data) {
465 struct tps6507x_reg_platform_data *data =
466 init_data->driver_data;
467 tps->info[i]->defdcdc_default = data->defdcdc_default;
468 }
469
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530470 tps->desc[i].name = info->name;
Axel Lin77fa44d2011-05-12 13:47:50 +0800471 tps->desc[i].id = i;
Axel Lin0fcdb102011-08-02 15:34:12 +0800472 tps->desc[i].n_voltages = info->table_len;
Axel Linf2933d32012-03-12 15:57:50 +0800473 tps->desc[i].ops = &tps6507x_pmic_ops;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530474 tps->desc[i].type = REGULATOR_VOLTAGE;
475 tps->desc[i].owner = THIS_MODULE;
476
477 rdev = regulator_register(&tps->desc[i],
Rajendra Nayak2c043bc2011-11-18 16:47:19 +0530478 tps6507x_dev->dev, init_data, tps, NULL);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530479 if (IS_ERR(rdev)) {
Todd Fischer31dd6a22010-04-08 09:04:55 +0200480 dev_err(tps6507x_dev->dev,
481 "failed to register %s regulator\n",
482 pdev->name);
Dmitry Torokhov56c23492010-02-23 23:38:12 -0800483 error = PTR_ERR(rdev);
484 goto fail;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530485 }
486
487 /* Save regulator for cleanup */
488 tps->rdev[i] = rdev;
489 }
490
Todd Fischer31dd6a22010-04-08 09:04:55 +0200491 tps6507x_dev->pmic = tps;
Axel Lind7399fa2010-08-09 15:51:23 +0800492 platform_set_drvdata(pdev, tps6507x_dev);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530493
494 return 0;
Dmitry Torokhov56c23492010-02-23 23:38:12 -0800495
496fail:
497 while (--i >= 0)
498 regulator_unregister(tps->rdev[i]);
499
500 kfree(tps);
501 return error;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530502}
503
Todd Fischer31dd6a22010-04-08 09:04:55 +0200504static int __devexit tps6507x_pmic_remove(struct platform_device *pdev)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530505{
Todd Fischer31dd6a22010-04-08 09:04:55 +0200506 struct tps6507x_dev *tps6507x_dev = platform_get_drvdata(pdev);
507 struct tps6507x_pmic *tps = tps6507x_dev->pmic;
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530508 int i;
509
510 for (i = 0; i < TPS6507X_NUM_REGULATOR; i++)
511 regulator_unregister(tps->rdev[i]);
512
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530513 kfree(tps);
514
515 return 0;
516}
517
Todd Fischer31dd6a22010-04-08 09:04:55 +0200518static struct platform_driver tps6507x_pmic_driver = {
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530519 .driver = {
Todd Fischer31dd6a22010-04-08 09:04:55 +0200520 .name = "tps6507x-pmic",
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530521 .owner = THIS_MODULE,
522 },
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600523 .probe = tps6507x_pmic_probe,
524 .remove = __devexit_p(tps6507x_pmic_remove),
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530525};
526
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600527static int __init tps6507x_pmic_init(void)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530528{
Todd Fischer31dd6a22010-04-08 09:04:55 +0200529 return platform_driver_register(&tps6507x_pmic_driver);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530530}
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600531subsys_initcall(tps6507x_pmic_init);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530532
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600533static void __exit tps6507x_pmic_cleanup(void)
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530534{
Todd Fischer31dd6a22010-04-08 09:04:55 +0200535 platform_driver_unregister(&tps6507x_pmic_driver);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530536}
Todd Fischer4ce5ba52010-04-05 20:23:58 -0600537module_exit(tps6507x_pmic_cleanup);
Anuj Aggarwal3fa5b8e2009-08-21 00:39:39 +0530538
539MODULE_AUTHOR("Texas Instruments");
540MODULE_DESCRIPTION("TPS6507x voltage regulator driver");
Liam Girdwood9e108d32009-08-24 10:31:34 +0100541MODULE_LICENSE("GPL v2");
Todd Fischer31dd6a22010-04-08 09:04:55 +0200542MODULE_ALIAS("platform:tps6507x-pmic");