blob: 2c1228d5796acb1df61cb12c161fc4ba8ed2f1b8 [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>
Robert Jarzmik4e005172014-08-31 21:10:51 +020027#include <linux/of_device.h>
28#include <linux/regulator/of_regulator.h>
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020029
30#define MAX1586_V3_MAX_VSEL 31
31#define MAX1586_V6_MAX_VSEL 3
32
33#define MAX1586_V3_MIN_UV 700000
34#define MAX1586_V3_MAX_UV 1475000
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020035
36#define MAX1586_V6_MIN_UV 0
37#define MAX1586_V6_MAX_UV 3000000
38
39#define I2C_V3_SELECT (0 << 5)
40#define I2C_V6_SELECT (1 << 5)
41
Philipp Zabelb110a8f2009-05-28 07:15:16 +020042struct max1586_data {
43 struct i2c_client *client;
44
45 /* min/max V3 voltage */
Philipp Zabelc8f1e502009-05-28 21:00:03 +020046 unsigned int min_uV;
47 unsigned int max_uV;
Philipp Zabelb110a8f2009-05-28 07:15:16 +020048
Axel Lin4efd9df2012-11-29 13:19:43 +080049 unsigned int v3_curr_sel;
50 unsigned int v6_curr_sel;
Philipp Zabelb110a8f2009-05-28 07:15:16 +020051};
52
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020053/*
Axel Lin96d25222012-06-04 12:56:58 +080054 * V6 voltage
55 * On I2C bus, sending a "x" byte to the max1586 means :
56 * set V6 to either 0V, 1.8V, 2.5V, 3V depending on (x & 0x3)
57 * As regulator framework doesn't accept voltages to be 0V, we use 1uV.
58 */
Axel Lind67c42c2013-03-30 13:57:29 +080059static const unsigned int v6_voltages_uv[] = { 1, 1800000, 2500000, 3000000 };
Axel Lin96d25222012-06-04 12:56:58 +080060
61/*
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020062 * V3 voltage
63 * On I2C bus, sending a "x" byte to the max1586 means :
64 * set V3 to 0.700V + (x & 0x1f) * 0.025V
Philipp Zabelb110a8f2009-05-28 07:15:16 +020065 * This voltage can be increased by external resistors
66 * R24 and R25=100kOhm as described in the data sheet.
67 * The gain is approximately: 1 + R24/R25 + R24/185.5kOhm
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020068 */
Axel Lin4efd9df2012-11-29 13:19:43 +080069static int max1586_v3_get_voltage_sel(struct regulator_dev *rdev)
70{
71 struct max1586_data *max1586 = rdev_get_drvdata(rdev);
72
73 return max1586->v3_curr_sel;
74}
75
Axel Lin9b558952012-06-08 08:26:44 +080076static int max1586_v3_set_voltage_sel(struct regulator_dev *rdev,
77 unsigned selector)
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020078{
Philipp Zabelb110a8f2009-05-28 07:15:16 +020079 struct max1586_data *max1586 = rdev_get_drvdata(rdev);
80 struct i2c_client *client = max1586->client;
Axel Lin4efd9df2012-11-29 13:19:43 +080081 int ret;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020082 u8 v3_prog;
83
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020084 dev_dbg(&client->dev, "changing voltage v3 to %dmv\n",
Axel Lin9b558952012-06-08 08:26:44 +080085 regulator_list_voltage_linear(rdev, selector) / 1000);
Robert Jarzmik55f4fa42009-04-23 20:10:43 +020086
Axel Lin9b558952012-06-08 08:26:44 +080087 v3_prog = I2C_V3_SELECT | (u8) selector;
Axel Lin4efd9df2012-11-29 13:19:43 +080088 ret = i2c_smbus_write_byte(client, v3_prog);
89 if (ret)
90 return ret;
91
92 max1586->v3_curr_sel = selector;
93
94 return 0;
95}
96
97static int max1586_v6_get_voltage_sel(struct regulator_dev *rdev)
98{
99 struct max1586_data *max1586 = rdev_get_drvdata(rdev);
100
101 return max1586->v6_curr_sel;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200102}
103
Axel Lin0d032732012-06-04 12:58:24 +0800104static int max1586_v6_set_voltage_sel(struct regulator_dev *rdev,
105 unsigned int selector)
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200106{
Axel Lin4efd9df2012-11-29 13:19:43 +0800107 struct max1586_data *max1586 = rdev_get_drvdata(rdev);
108 struct i2c_client *client = max1586->client;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200109 u8 v6_prog;
Axel Lin4efd9df2012-11-29 13:19:43 +0800110 int ret;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200111
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200112 dev_dbg(&client->dev, "changing voltage v6 to %dmv\n",
Axel Lin0d032732012-06-04 12:58:24 +0800113 rdev->desc->volt_table[selector] / 1000);
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200114
Axel Lin0d032732012-06-04 12:58:24 +0800115 v6_prog = I2C_V6_SELECT | (u8) selector;
Axel Lin4efd9df2012-11-29 13:19:43 +0800116 ret = i2c_smbus_write_byte(client, v6_prog);
117 if (ret)
118 return ret;
119
120 max1586->v6_curr_sel = selector;
121
122 return 0;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200123}
124
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200125/*
126 * The Maxim 1586 controls V3 and V6 voltages, but offers no way of reading back
127 * the set up value.
128 */
129static struct regulator_ops max1586_v3_ops = {
Axel Lin4efd9df2012-11-29 13:19:43 +0800130 .get_voltage_sel = max1586_v3_get_voltage_sel,
Axel Lin9b558952012-06-08 08:26:44 +0800131 .set_voltage_sel = max1586_v3_set_voltage_sel,
Axel Lin93f5de52012-06-08 08:25:41 +0800132 .list_voltage = regulator_list_voltage_linear,
Axel Lin9b558952012-06-08 08:26:44 +0800133 .map_voltage = regulator_map_voltage_linear,
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200134};
135
136static struct regulator_ops max1586_v6_ops = {
Axel Lin4efd9df2012-11-29 13:19:43 +0800137 .get_voltage_sel = max1586_v6_get_voltage_sel,
Axel Lin0d032732012-06-04 12:58:24 +0800138 .set_voltage_sel = max1586_v6_set_voltage_sel,
Axel Lin96d25222012-06-04 12:56:58 +0800139 .list_voltage = regulator_list_voltage_table,
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200140};
141
Axel Lin93f5de52012-06-08 08:25:41 +0800142static struct regulator_desc max1586_reg[] = {
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200143 {
144 .name = "Output_V3",
145 .id = MAX1586_V3,
146 .ops = &max1586_v3_ops,
147 .type = REGULATOR_VOLTAGE,
148 .n_voltages = MAX1586_V3_MAX_VSEL + 1,
149 .owner = THIS_MODULE,
150 },
151 {
152 .name = "Output_V6",
153 .id = MAX1586_V6,
154 .ops = &max1586_v6_ops,
155 .type = REGULATOR_VOLTAGE,
156 .n_voltages = MAX1586_V6_MAX_VSEL + 1,
Axel Lin96d25222012-06-04 12:56:58 +0800157 .volt_table = v6_voltages_uv,
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200158 .owner = THIS_MODULE,
159 },
160};
161
Fengguang Wu5ccedf02014-09-01 12:55:58 +0100162static int of_get_max1586_platform_data(struct device *dev,
Robert Jarzmik4e005172014-08-31 21:10:51 +0200163 struct max1586_platform_data *pdata)
164{
165 struct max1586_subdev_data *sub;
Javier Martinez Canillasd83aef12014-11-03 15:40:40 +0100166 struct of_regulator_match rmatch[ARRAY_SIZE(max1586_reg)] = { };
Robert Jarzmik4e005172014-08-31 21:10:51 +0200167 struct device_node *np = dev->of_node;
168 int i, matched;
169
170 if (of_property_read_u32(np, "v3-gain",
171 &pdata->v3_gain) < 0) {
172 dev_err(dev, "%s has no 'v3-gain' property\n", np->full_name);
173 return -EINVAL;
174 }
175
176 np = of_get_child_by_name(np, "regulators");
177 if (!np) {
178 dev_err(dev, "missing 'regulators' subnode in DT\n");
179 return -EINVAL;
180 }
181
182 for (i = 0; i < ARRAY_SIZE(rmatch); i++)
183 rmatch[i].name = max1586_reg[i].name;
184
185 matched = of_regulator_match(dev, np, rmatch, ARRAY_SIZE(rmatch));
186 of_node_put(np);
187 /*
188 * If matched is 0, ie. neither Output_V3 nor Output_V6 have been found,
189 * return 0, which signals the normal situation where no subregulator is
190 * available. This is normal because the max1586 doesn't provide any
191 * readback support, so the subregulators can't report any status
192 * anyway. If matched < 0, return the error.
193 */
194 if (matched <= 0)
195 return matched;
196
197 pdata->subdevs = devm_kzalloc(dev, sizeof(struct max1586_subdev_data) *
198 matched, GFP_KERNEL);
199 if (!pdata->subdevs)
200 return -ENOMEM;
201
202 pdata->num_subdevs = matched;
203 sub = pdata->subdevs;
204
205 for (i = 0; i < matched; i++) {
206 sub->id = i;
207 sub->name = rmatch[i].of_node->name;
208 sub->platform_data = rmatch[i].init_data;
209 sub++;
210 }
211
212 return 0;
213}
214
215static const struct of_device_id max1586_of_match[] = {
216 { .compatible = "maxim,max1586", },
217 {},
218};
219MODULE_DEVICE_TABLE(of, max1586_of_match);
220
Bill Pembertona5023572012-11-19 13:22:22 -0500221static int max1586_pmic_probe(struct i2c_client *client,
Dmitry Torokhovbd88c9b2010-02-23 23:38:23 -0800222 const struct i2c_device_id *i2c_id)
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200223{
Robert Jarzmik4e005172014-08-31 21:10:51 +0200224 struct max1586_platform_data *pdata, pdata_of;
Mark Brownc1727082012-04-04 00:50:22 +0100225 struct regulator_config config = { };
Philipp Zabelb110a8f2009-05-28 07:15:16 +0200226 struct max1586_data *max1586;
Robert Jarzmik4e005172014-08-31 21:10:51 +0200227 int i, id, ret;
228 const struct of_device_id *match;
229
230 pdata = dev_get_platdata(&client->dev);
231 if (client->dev.of_node && !pdata) {
232 match = of_match_device(of_match_ptr(max1586_of_match),
233 &client->dev);
234 if (!match) {
235 dev_err(&client->dev, "Error: No device match found\n");
236 return -ENODEV;
237 }
238 ret = of_get_max1586_platform_data(&client->dev, &pdata_of);
239 if (ret < 0)
240 return ret;
241 pdata = &pdata_of;
242 }
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200243
Krzysztof Kozlowski2d45e782014-03-10 10:46:52 +0100244 max1586 = devm_kzalloc(&client->dev, sizeof(struct max1586_data),
Philipp Zabelb110a8f2009-05-28 07:15:16 +0200245 GFP_KERNEL);
246 if (!max1586)
Axel Linb7bd05b2012-04-11 23:06:47 +0800247 return -ENOMEM;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200248
Philipp Zabelb110a8f2009-05-28 07:15:16 +0200249 max1586->client = client;
250
Axel Linb7bd05b2012-04-11 23:06:47 +0800251 if (!pdata->v3_gain)
252 return -EINVAL;
253
Philipp Zabelc8f1e502009-05-28 21:00:03 +0200254 max1586->min_uV = MAX1586_V3_MIN_UV / 1000 * pdata->v3_gain / 1000;
255 max1586->max_uV = MAX1586_V3_MAX_UV / 1000 * pdata->v3_gain / 1000;
Philipp Zabelb110a8f2009-05-28 07:15:16 +0200256
Axel Lin4efd9df2012-11-29 13:19:43 +0800257 /* Set curr_sel to default voltage on power-up */
258 max1586->v3_curr_sel = 24; /* 1.3V */
259 max1586->v6_curr_sel = 0;
260
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200261 for (i = 0; i < pdata->num_subdevs && i <= MAX1586_V6; i++) {
Krzysztof Kozlowskiaaa46b42014-03-10 09:32:44 +0100262 struct regulator_dev *rdev;
263
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200264 id = pdata->subdevs[i].id;
265 if (!pdata->subdevs[i].platform_data)
266 continue;
267 if (id < MAX1586_V3 || id > MAX1586_V6) {
268 dev_err(&client->dev, "invalid regulator id %d\n", id);
Sachin Kamat249cc1f2013-09-04 11:07:55 +0530269 return -EINVAL;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200270 }
Mark Brownc1727082012-04-04 00:50:22 +0100271
Axel Lin93f5de52012-06-08 08:25:41 +0800272 if (id == MAX1586_V3) {
273 max1586_reg[id].min_uV = max1586->min_uV;
274 max1586_reg[id].uV_step =
275 (max1586->max_uV - max1586->min_uV) /
276 MAX1586_V3_MAX_VSEL;
277 }
278
Mark Brownc1727082012-04-04 00:50:22 +0100279 config.dev = &client->dev;
280 config.init_data = pdata->subdevs[i].platform_data;
281 config.driver_data = max1586;
282
Krzysztof Kozlowskiaaa46b42014-03-10 09:32:44 +0100283 rdev = devm_regulator_register(&client->dev,
Sachin Kamat249cc1f2013-09-04 11:07:55 +0530284 &max1586_reg[id], &config);
Krzysztof Kozlowskiaaa46b42014-03-10 09:32:44 +0100285 if (IS_ERR(rdev)) {
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200286 dev_err(&client->dev, "failed to register %s\n",
287 max1586_reg[id].name);
Krzysztof Kozlowskiaaa46b42014-03-10 09:32:44 +0100288 return PTR_ERR(rdev);
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200289 }
290 }
291
Axel Lin7c4c25e2010-08-06 13:33:15 +0800292 i2c_set_clientdata(client, max1586);
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200293 dev_info(&client->dev, "Maxim 1586 regulator driver loaded\n");
294 return 0;
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200295}
296
297static const struct i2c_device_id max1586_id[] = {
298 { "max1586", 0 },
299 { }
300};
301MODULE_DEVICE_TABLE(i2c, max1586_id);
302
303static struct i2c_driver max1586_pmic_driver = {
304 .probe = max1586_pmic_probe,
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200305 .driver = {
306 .name = "max1586",
Robert Jarzmik4e005172014-08-31 21:10:51 +0200307 .of_match_table = of_match_ptr(max1586_of_match),
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200308 },
309 .id_table = max1586_id,
310};
311
312static int __init max1586_pmic_init(void)
313{
314 return i2c_add_driver(&max1586_pmic_driver);
315}
316subsys_initcall(max1586_pmic_init);
317
318static void __exit max1586_pmic_exit(void)
319{
320 i2c_del_driver(&max1586_pmic_driver);
321}
322module_exit(max1586_pmic_exit);
323
324/* Module information */
325MODULE_DESCRIPTION("MAXIM 1586 voltage regulator driver");
326MODULE_AUTHOR("Robert Jarzmik");
327MODULE_LICENSE("GPL");