blob: ea832b4ef643a9e7cfcf8e794e95ad6c9e3c701f [file] [log] [blame]
Robert Jarzmik55f4fa42009-04-23 20:10:43 +02001/*
2 * max1586.c -- Voltage and current regulation for the Maxim 1586
3 *
4 * Copyright (C) 2008 Robert Jarzmik
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#include <linux/module.h>
21#include <linux/err.h>
22#include <linux/i2c.h>
23#include <linux/platform_device.h>
24#include <linux/regulator/driver.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020026#include <linux/regulator/max1586.h>
27
28#define MAX1586_V3_MAX_VSEL 31
29#define MAX1586_V6_MAX_VSEL 3
30
31#define MAX1586_V3_MIN_UV 700000
32#define MAX1586_V3_MAX_UV 1475000
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020033
34#define MAX1586_V6_MIN_UV 0
35#define MAX1586_V6_MAX_UV 3000000
36
37#define I2C_V3_SELECT (0 << 5)
38#define I2C_V6_SELECT (1 << 5)
39
Philipp Zabelb110a8f2009-05-28 07:15:16 +020040struct max1586_data {
41 struct i2c_client *client;
42
43 /* min/max V3 voltage */
Philipp Zabelc8f1e502009-05-28 21:00:03 +020044 unsigned int min_uV;
45 unsigned int max_uV;
Philipp Zabelb110a8f2009-05-28 07:15:16 +020046
47 struct regulator_dev *rdev[0];
48};
49
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020050/*
51 * V3 voltage
52 * On I2C bus, sending a "x" byte to the max1586 means :
53 * set V3 to 0.700V + (x & 0x1f) * 0.025V
Philipp Zabelb110a8f2009-05-28 07:15:16 +020054 * This voltage can be increased by external resistors
55 * R24 and R25=100kOhm as described in the data sheet.
56 * The gain is approximately: 1 + R24/R25 + R24/185.5kOhm
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020057 */
Philipp Zabelb110a8f2009-05-28 07:15:16 +020058static int max1586_v3_calc_voltage(struct max1586_data *max1586,
59 unsigned selector)
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020060{
Philipp Zabelb110a8f2009-05-28 07:15:16 +020061 unsigned range_uV = max1586->max_uV - max1586->min_uV;
62
63 return max1586->min_uV + (selector * range_uV / MAX1586_V3_MAX_VSEL);
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020064}
65
Mark Brown3a93f2a2010-11-10 14:38:29 +000066static int max1586_v3_set(struct regulator_dev *rdev, int min_uV, int max_uV,
67 unsigned *selector)
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020068{
Philipp Zabelb110a8f2009-05-28 07:15:16 +020069 struct max1586_data *max1586 = rdev_get_drvdata(rdev);
70 struct i2c_client *client = max1586->client;
71 unsigned range_uV = max1586->max_uV - max1586->min_uV;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020072 u8 v3_prog;
73
Philipp Zabelb110a8f2009-05-28 07:15:16 +020074 if (min_uV > max1586->max_uV || max_uV < max1586->min_uV)
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020075 return -EINVAL;
Philipp Zabelb110a8f2009-05-28 07:15:16 +020076 if (min_uV < max1586->min_uV)
77 min_uV = max1586->min_uV;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020078
Axel Lin7d530d32012-03-02 16:22:01 +080079 *selector = DIV_ROUND_UP((min_uV - max1586->min_uV) *
80 MAX1586_V3_MAX_VSEL, range_uV);
Mark Brown3a93f2a2010-11-10 14:38:29 +000081 if (max1586_v3_calc_voltage(max1586, *selector) > max_uV)
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020082 return -EINVAL;
83
84 dev_dbg(&client->dev, "changing voltage v3 to %dmv\n",
Mark Brown3a93f2a2010-11-10 14:38:29 +000085 max1586_v3_calc_voltage(max1586, *selector) / 1000);
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020086
Mark Brown3a93f2a2010-11-10 14:38:29 +000087 v3_prog = I2C_V3_SELECT | (u8) *selector;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020088 return i2c_smbus_write_byte(client, v3_prog);
89}
90
91static int max1586_v3_list(struct regulator_dev *rdev, unsigned selector)
92{
Philipp Zabelb110a8f2009-05-28 07:15:16 +020093 struct max1586_data *max1586 = rdev_get_drvdata(rdev);
94
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020095 if (selector > MAX1586_V3_MAX_VSEL)
96 return -EINVAL;
Philipp Zabelb110a8f2009-05-28 07:15:16 +020097 return max1586_v3_calc_voltage(max1586, selector);
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020098}
99
100/*
101 * V6 voltage
102 * On I2C bus, sending a "x" byte to the max1586 means :
103 * set V6 to either 0V, 1.8V, 2.5V, 3V depending on (x & 0x3)
104 * As regulator framework doesn't accept voltages to be 0V, we use 1uV.
105 */
106static int max1586_v6_calc_voltage(unsigned selector)
107{
108 static int voltages_uv[] = { 1, 1800000, 2500000, 3000000 };
109
110 return voltages_uv[selector];
111}
112
Mark Brown3a93f2a2010-11-10 14:38:29 +0000113static int max1586_v6_set(struct regulator_dev *rdev, int min_uV, int max_uV,
114 unsigned int *selector)
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200115{
116 struct i2c_client *client = rdev_get_drvdata(rdev);
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200117 u8 v6_prog;
118
119 if (min_uV < MAX1586_V6_MIN_UV || min_uV > MAX1586_V6_MAX_UV)
120 return -EINVAL;
121 if (max_uV < MAX1586_V6_MIN_UV || max_uV > MAX1586_V6_MAX_UV)
122 return -EINVAL;
123
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200124 if (min_uV < 1800000)
Mark Brown3a93f2a2010-11-10 14:38:29 +0000125 *selector = 0;
Axel Lin3e352f92010-08-18 11:37:21 +0800126 else if (min_uV < 2500000)
Mark Brown3a93f2a2010-11-10 14:38:29 +0000127 *selector = 1;
Axel Lin3e352f92010-08-18 11:37:21 +0800128 else if (min_uV < 3000000)
Mark Brown3a93f2a2010-11-10 14:38:29 +0000129 *selector = 2;
Axel Lin3e352f92010-08-18 11:37:21 +0800130 else if (min_uV >= 3000000)
Mark Brown3a93f2a2010-11-10 14:38:29 +0000131 *selector = 3;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200132
Mark Brown3a93f2a2010-11-10 14:38:29 +0000133 if (max1586_v6_calc_voltage(*selector) > max_uV)
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200134 return -EINVAL;
135
136 dev_dbg(&client->dev, "changing voltage v6 to %dmv\n",
Mark Brown3a93f2a2010-11-10 14:38:29 +0000137 max1586_v6_calc_voltage(*selector) / 1000);
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200138
Mark Brown3a93f2a2010-11-10 14:38:29 +0000139 v6_prog = I2C_V6_SELECT | (u8) *selector;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200140 return i2c_smbus_write_byte(client, v6_prog);
141}
142
143static int max1586_v6_list(struct regulator_dev *rdev, unsigned selector)
144{
145 if (selector > MAX1586_V6_MAX_VSEL)
146 return -EINVAL;
147 return max1586_v6_calc_voltage(selector);
148}
149
150/*
151 * The Maxim 1586 controls V3 and V6 voltages, but offers no way of reading back
152 * the set up value.
153 */
154static struct regulator_ops max1586_v3_ops = {
155 .set_voltage = max1586_v3_set,
156 .list_voltage = max1586_v3_list,
157};
158
159static struct regulator_ops max1586_v6_ops = {
160 .set_voltage = max1586_v6_set,
161 .list_voltage = max1586_v6_list,
162};
163
Axel Lin0373bcf2012-04-06 08:24:27 +0800164static const struct regulator_desc max1586_reg[] = {
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200165 {
166 .name = "Output_V3",
167 .id = MAX1586_V3,
168 .ops = &max1586_v3_ops,
169 .type = REGULATOR_VOLTAGE,
170 .n_voltages = MAX1586_V3_MAX_VSEL + 1,
171 .owner = THIS_MODULE,
172 },
173 {
174 .name = "Output_V6",
175 .id = MAX1586_V6,
176 .ops = &max1586_v6_ops,
177 .type = REGULATOR_VOLTAGE,
178 .n_voltages = MAX1586_V6_MAX_VSEL + 1,
179 .owner = THIS_MODULE,
180 },
181};
182
Dmitry Torokhovbd88c9b2010-02-23 23:38:23 -0800183static int __devinit max1586_pmic_probe(struct i2c_client *client,
184 const struct i2c_device_id *i2c_id)
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200185{
186 struct regulator_dev **rdev;
187 struct max1586_platform_data *pdata = client->dev.platform_data;
Mark Brownc1727082012-04-04 00:50:22 +0100188 struct regulator_config config = { };
Philipp Zabelb110a8f2009-05-28 07:15:16 +0200189 struct max1586_data *max1586;
190 int i, id, ret = -ENOMEM;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200191
Philipp Zabelb110a8f2009-05-28 07:15:16 +0200192 max1586 = kzalloc(sizeof(struct max1586_data) +
193 sizeof(struct regulator_dev *) * (MAX1586_V6 + 1),
194 GFP_KERNEL);
195 if (!max1586)
196 goto out;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200197
Philipp Zabelb110a8f2009-05-28 07:15:16 +0200198 max1586->client = client;
199
200 if (!pdata->v3_gain) {
201 ret = -EINVAL;
202 goto out_unmap;
203 }
Philipp Zabelc8f1e502009-05-28 21:00:03 +0200204 max1586->min_uV = MAX1586_V3_MIN_UV / 1000 * pdata->v3_gain / 1000;
205 max1586->max_uV = MAX1586_V3_MAX_UV / 1000 * pdata->v3_gain / 1000;
Philipp Zabelb110a8f2009-05-28 07:15:16 +0200206
207 rdev = max1586->rdev;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200208 for (i = 0; i < pdata->num_subdevs && i <= MAX1586_V6; i++) {
209 id = pdata->subdevs[i].id;
210 if (!pdata->subdevs[i].platform_data)
211 continue;
212 if (id < MAX1586_V3 || id > MAX1586_V6) {
213 dev_err(&client->dev, "invalid regulator id %d\n", id);
214 goto err;
215 }
Mark Brownc1727082012-04-04 00:50:22 +0100216
217 config.dev = &client->dev;
218 config.init_data = pdata->subdevs[i].platform_data;
219 config.driver_data = max1586;
220
221 rdev[i] = regulator_register(&max1586_reg[id], &config);
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200222 if (IS_ERR(rdev[i])) {
223 ret = PTR_ERR(rdev[i]);
224 dev_err(&client->dev, "failed to register %s\n",
225 max1586_reg[id].name);
226 goto err;
227 }
228 }
229
Axel Lin7c4c25e2010-08-06 13:33:15 +0800230 i2c_set_clientdata(client, max1586);
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200231 dev_info(&client->dev, "Maxim 1586 regulator driver loaded\n");
232 return 0;
233
234err:
235 while (--i >= 0)
236 regulator_unregister(rdev[i]);
Philipp Zabelb110a8f2009-05-28 07:15:16 +0200237out_unmap:
238 kfree(max1586);
239out:
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200240 return ret;
241}
242
Dmitry Torokhovbd88c9b2010-02-23 23:38:23 -0800243static int __devexit max1586_pmic_remove(struct i2c_client *client)
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200244{
Axel Lin7c4c25e2010-08-06 13:33:15 +0800245 struct max1586_data *max1586 = i2c_get_clientdata(client);
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200246 int i;
247
248 for (i = 0; i <= MAX1586_V6; i++)
Axel Lin7c4c25e2010-08-06 13:33:15 +0800249 if (max1586->rdev[i])
250 regulator_unregister(max1586->rdev[i]);
251 kfree(max1586);
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200252
253 return 0;
254}
255
256static const struct i2c_device_id max1586_id[] = {
257 { "max1586", 0 },
258 { }
259};
260MODULE_DEVICE_TABLE(i2c, max1586_id);
261
262static struct i2c_driver max1586_pmic_driver = {
263 .probe = max1586_pmic_probe,
Dmitry Torokhovbd88c9b2010-02-23 23:38:23 -0800264 .remove = __devexit_p(max1586_pmic_remove),
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200265 .driver = {
266 .name = "max1586",
Dmitry Torokhovbd88c9b2010-02-23 23:38:23 -0800267 .owner = THIS_MODULE,
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200268 },
269 .id_table = max1586_id,
270};
271
272static int __init max1586_pmic_init(void)
273{
274 return i2c_add_driver(&max1586_pmic_driver);
275}
276subsys_initcall(max1586_pmic_init);
277
278static void __exit max1586_pmic_exit(void)
279{
280 i2c_del_driver(&max1586_pmic_driver);
281}
282module_exit(max1586_pmic_exit);
283
284/* Module information */
285MODULE_DESCRIPTION("MAXIM 1586 voltage regulator driver");
286MODULE_AUTHOR("Robert Jarzmik");
287MODULE_LICENSE("GPL");