blob: f07be3647985f5ac6e790ea844e9d4c58b6a9fec [file] [log] [blame]
Wenyou Yang33036f42013-12-24 10:34:28 +08001/*
2 * act8865-regulator.c - Voltage regulation for the active-semi ACT8865
3 * http://www.active-semi.com/sheets/ACT8865_Datasheet.pdf
4 *
5 * Copyright (C) 2013 Atmel Corporation
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
18#include <linux/module.h>
19#include <linux/init.h>
20#include <linux/i2c.h>
21#include <linux/err.h>
22#include <linux/platform_device.h>
23#include <linux/regulator/driver.h>
24#include <linux/regulator/act8865.h>
25#include <linux/of.h>
26#include <linux/of_device.h>
27#include <linux/regulator/of_regulator.h>
28#include <linux/regmap.h>
29
30/*
31 * ACT8865 Global Register Map.
32 */
33#define ACT8865_SYS_MODE 0x00
34#define ACT8865_SYS_CTRL 0x01
35#define ACT8865_DCDC1_VSET1 0x20
36#define ACT8865_DCDC1_VSET2 0x21
37#define ACT8865_DCDC1_CTRL 0x22
38#define ACT8865_DCDC2_VSET1 0x30
39#define ACT8865_DCDC2_VSET2 0x31
40#define ACT8865_DCDC2_CTRL 0x32
41#define ACT8865_DCDC3_VSET1 0x40
42#define ACT8865_DCDC3_VSET2 0x41
43#define ACT8865_DCDC3_CTRL 0x42
44#define ACT8865_LDO1_VSET 0x50
45#define ACT8865_LDO1_CTRL 0x51
46#define ACT8865_LDO2_VSET 0x54
47#define ACT8865_LDO2_CTRL 0x55
48#define ACT8865_LDO3_VSET 0x60
49#define ACT8865_LDO3_CTRL 0x61
50#define ACT8865_LDO4_VSET 0x64
51#define ACT8865_LDO4_CTRL 0x65
52
53/*
54 * Field Definitions.
55 */
56#define ACT8865_ENA 0x80 /* ON - [7] */
57#define ACT8865_VSEL_MASK 0x3F /* VSET - [5:0] */
58
59/*
60 * ACT8865 voltage number
61 */
62#define ACT8865_VOLTAGE_NUM 64
63
64struct act8865 {
Wenyou Yang33036f42013-12-24 10:34:28 +080065 struct regmap *regmap;
66};
67
68static const struct regmap_config act8865_regmap_config = {
69 .reg_bits = 8,
70 .val_bits = 8,
71};
72
73static const struct regulator_linear_range act8865_volatge_ranges[] = {
74 REGULATOR_LINEAR_RANGE(600000, 0, 23, 25000),
75 REGULATOR_LINEAR_RANGE(1200000, 24, 47, 50000),
76 REGULATOR_LINEAR_RANGE(2400000, 48, 63, 100000),
77};
78
79static struct regulator_ops act8865_ops = {
80 .list_voltage = regulator_list_voltage_linear_range,
81 .map_voltage = regulator_map_voltage_linear_range,
82 .get_voltage_sel = regulator_get_voltage_sel_regmap,
83 .set_voltage_sel = regulator_set_voltage_sel_regmap,
84 .enable = regulator_enable_regmap,
85 .disable = regulator_disable_regmap,
86 .is_enabled = regulator_is_enabled_regmap,
Wenyou Yang33036f42013-12-24 10:34:28 +080087};
88
89static const struct regulator_desc act8865_reg[] = {
90 {
91 .name = "DCDC_REG1",
92 .id = ACT8865_ID_DCDC1,
93 .ops = &act8865_ops,
94 .type = REGULATOR_VOLTAGE,
95 .n_voltages = ACT8865_VOLTAGE_NUM,
96 .linear_ranges = act8865_volatge_ranges,
97 .n_linear_ranges = ARRAY_SIZE(act8865_volatge_ranges),
98 .vsel_reg = ACT8865_DCDC1_VSET1,
99 .vsel_mask = ACT8865_VSEL_MASK,
100 .enable_reg = ACT8865_DCDC1_CTRL,
101 .enable_mask = ACT8865_ENA,
102 .owner = THIS_MODULE,
103 },
104 {
105 .name = "DCDC_REG2",
106 .id = ACT8865_ID_DCDC2,
107 .ops = &act8865_ops,
108 .type = REGULATOR_VOLTAGE,
109 .n_voltages = ACT8865_VOLTAGE_NUM,
110 .linear_ranges = act8865_volatge_ranges,
111 .n_linear_ranges = ARRAY_SIZE(act8865_volatge_ranges),
112 .vsel_reg = ACT8865_DCDC2_VSET1,
113 .vsel_mask = ACT8865_VSEL_MASK,
114 .enable_reg = ACT8865_DCDC2_CTRL,
115 .enable_mask = ACT8865_ENA,
116 .owner = THIS_MODULE,
117 },
118 {
119 .name = "DCDC_REG3",
120 .id = ACT8865_ID_DCDC3,
121 .ops = &act8865_ops,
122 .type = REGULATOR_VOLTAGE,
123 .n_voltages = ACT8865_VOLTAGE_NUM,
124 .linear_ranges = act8865_volatge_ranges,
125 .n_linear_ranges = ARRAY_SIZE(act8865_volatge_ranges),
126 .vsel_reg = ACT8865_DCDC3_VSET1,
127 .vsel_mask = ACT8865_VSEL_MASK,
128 .enable_reg = ACT8865_DCDC3_CTRL,
129 .enable_mask = ACT8865_ENA,
130 .owner = THIS_MODULE,
131 },
132 {
133 .name = "LDO_REG1",
134 .id = ACT8865_ID_LDO1,
135 .ops = &act8865_ops,
136 .type = REGULATOR_VOLTAGE,
137 .n_voltages = ACT8865_VOLTAGE_NUM,
138 .linear_ranges = act8865_volatge_ranges,
139 .n_linear_ranges = ARRAY_SIZE(act8865_volatge_ranges),
140 .vsel_reg = ACT8865_LDO1_VSET,
141 .vsel_mask = ACT8865_VSEL_MASK,
142 .enable_reg = ACT8865_LDO1_CTRL,
143 .enable_mask = ACT8865_ENA,
144 .owner = THIS_MODULE,
145 },
146 {
147 .name = "LDO_REG2",
148 .id = ACT8865_ID_LDO2,
149 .ops = &act8865_ops,
150 .type = REGULATOR_VOLTAGE,
151 .n_voltages = ACT8865_VOLTAGE_NUM,
152 .linear_ranges = act8865_volatge_ranges,
153 .n_linear_ranges = ARRAY_SIZE(act8865_volatge_ranges),
154 .vsel_reg = ACT8865_LDO2_VSET,
155 .vsel_mask = ACT8865_VSEL_MASK,
156 .enable_reg = ACT8865_LDO2_CTRL,
157 .enable_mask = ACT8865_ENA,
158 .owner = THIS_MODULE,
159 },
160 {
161 .name = "LDO_REG3",
162 .id = ACT8865_ID_LDO3,
163 .ops = &act8865_ops,
164 .type = REGULATOR_VOLTAGE,
165 .n_voltages = ACT8865_VOLTAGE_NUM,
166 .linear_ranges = act8865_volatge_ranges,
167 .n_linear_ranges = ARRAY_SIZE(act8865_volatge_ranges),
168 .vsel_reg = ACT8865_LDO3_VSET,
169 .vsel_mask = ACT8865_VSEL_MASK,
170 .enable_reg = ACT8865_LDO3_CTRL,
171 .enable_mask = ACT8865_ENA,
172 .owner = THIS_MODULE,
173 },
174 {
175 .name = "LDO_REG4",
176 .id = ACT8865_ID_LDO4,
177 .ops = &act8865_ops,
178 .type = REGULATOR_VOLTAGE,
179 .n_voltages = ACT8865_VOLTAGE_NUM,
180 .linear_ranges = act8865_volatge_ranges,
181 .n_linear_ranges = ARRAY_SIZE(act8865_volatge_ranges),
182 .vsel_reg = ACT8865_LDO4_VSET,
183 .vsel_mask = ACT8865_VSEL_MASK,
184 .enable_reg = ACT8865_LDO4_CTRL,
185 .enable_mask = ACT8865_ENA,
186 .owner = THIS_MODULE,
187 },
188};
189
190#ifdef CONFIG_OF
191static const struct of_device_id act8865_dt_ids[] = {
192 { .compatible = "active-semi,act8865" },
193 { }
194};
195MODULE_DEVICE_TABLE(of, act8865_dt_ids);
196
197static struct of_regulator_match act8865_matches[] = {
198 [ACT8865_ID_DCDC1] = { .name = "DCDC_REG1"},
199 [ACT8865_ID_DCDC2] = { .name = "DCDC_REG2"},
200 [ACT8865_ID_DCDC3] = { .name = "DCDC_REG3"},
201 [ACT8865_ID_LDO1] = { .name = "LDO_REG1"},
202 [ACT8865_ID_LDO2] = { .name = "LDO_REG2"},
203 [ACT8865_ID_LDO3] = { .name = "LDO_REG3"},
204 [ACT8865_ID_LDO4] = { .name = "LDO_REG4"},
205};
206
207static int act8865_pdata_from_dt(struct device *dev,
208 struct device_node **of_node,
209 struct act8865_platform_data *pdata)
210{
211 int matched, i;
212 struct device_node *np;
213 struct act8865_regulator_data *regulator;
214
Sachin Kamat6ea970a2014-02-14 17:19:54 +0530215 np = of_get_child_by_name(dev->of_node, "regulators");
Wenyou Yang33036f42013-12-24 10:34:28 +0800216 if (!np) {
217 dev_err(dev, "missing 'regulators' subnode in DT\n");
218 return -EINVAL;
219 }
220
221 matched = of_regulator_match(dev, np,
222 act8865_matches, ARRAY_SIZE(act8865_matches));
Sachin Kamat0079eb52014-02-17 14:33:29 +0530223 of_node_put(np);
Wenyou Yang33036f42013-12-24 10:34:28 +0800224 if (matched <= 0)
225 return matched;
226
227 pdata->regulators = devm_kzalloc(dev,
Wenyou Yangd04b7552013-12-31 09:27:52 +0800228 sizeof(struct act8865_regulator_data) *
229 ARRAY_SIZE(act8865_matches), GFP_KERNEL);
Sachin Kamat5ee77ef2014-02-18 16:11:08 +0530230 if (!pdata->regulators)
Wenyou Yang33036f42013-12-24 10:34:28 +0800231 return -ENOMEM;
Wenyou Yang33036f42013-12-24 10:34:28 +0800232
233 pdata->num_regulators = matched;
234 regulator = pdata->regulators;
235
Wenyou Yangd04b7552013-12-31 09:27:52 +0800236 for (i = 0; i < ARRAY_SIZE(act8865_matches); i++) {
Wenyou Yang33036f42013-12-24 10:34:28 +0800237 regulator->id = i;
238 regulator->name = act8865_matches[i].name;
239 regulator->platform_data = act8865_matches[i].init_data;
240 of_node[i] = act8865_matches[i].of_node;
241 regulator++;
242 }
243
244 return 0;
245}
246#else
247static inline int act8865_pdata_from_dt(struct device *dev,
248 struct device_node **of_node,
249 struct act8865_platform_data *pdata)
250{
251 return 0;
252}
253#endif
254
Beniamino Galvani48a1e1b2014-06-22 17:31:41 +0200255static struct regulator_init_data
256*act8865_get_init_data(int id, struct act8865_platform_data *pdata)
257{
258 int i;
259
260 if (!pdata)
261 return NULL;
262
263 for (i = 0; i < pdata->num_regulators; i++) {
264 if (pdata->regulators[i].id == id)
265 return pdata->regulators[i].platform_data;
266 }
267
268 return NULL;
269}
270
Wenyou Yang33036f42013-12-24 10:34:28 +0800271static int act8865_pmic_probe(struct i2c_client *client,
272 const struct i2c_device_id *i2c_id)
273{
Axel Linfb8eb452014-03-08 21:19:07 +0800274 struct regulator_dev *rdev;
Wenyou Yang33036f42013-12-24 10:34:28 +0800275 struct device *dev = &client->dev;
276 struct act8865_platform_data *pdata = dev_get_platdata(dev);
277 struct regulator_config config = { };
278 struct act8865 *act8865;
279 struct device_node *of_node[ACT8865_REG_NUM];
Beniamino Galvani48a1e1b2014-06-22 17:31:41 +0200280 int i;
Axel Lin40d3bc12014-06-30 15:32:09 +0800281 int ret;
Wenyou Yang33036f42013-12-24 10:34:28 +0800282
283 if (dev->of_node && !pdata) {
284 const struct of_device_id *id;
285 struct act8865_platform_data pdata_of;
286
287 id = of_match_device(of_match_ptr(act8865_dt_ids), dev);
288 if (!id)
289 return -ENODEV;
290
291 ret = act8865_pdata_from_dt(dev, of_node, &pdata_of);
292 if (ret < 0)
293 return ret;
294
295 pdata = &pdata_of;
296 }
297
298 if (pdata->num_regulators > ACT8865_REG_NUM) {
299 dev_err(dev, "Too many regulators found!\n");
300 return -EINVAL;
301 }
302
Wenyou Yangf1de2c22013-12-26 14:52:43 +0800303 act8865 = devm_kzalloc(dev, sizeof(struct act8865), GFP_KERNEL);
Wenyou Yang33036f42013-12-24 10:34:28 +0800304 if (!act8865)
305 return -ENOMEM;
306
Wenyou Yang33036f42013-12-24 10:34:28 +0800307 act8865->regmap = devm_regmap_init_i2c(client, &act8865_regmap_config);
308 if (IS_ERR(act8865->regmap)) {
Axel Lin40d3bc12014-06-30 15:32:09 +0800309 ret = PTR_ERR(act8865->regmap);
Wenyou Yang33036f42013-12-24 10:34:28 +0800310 dev_err(&client->dev, "Failed to allocate register map: %d\n",
Axel Lin40d3bc12014-06-30 15:32:09 +0800311 ret);
312 return ret;
Wenyou Yang33036f42013-12-24 10:34:28 +0800313 }
314
315 /* Finally register devices */
Axel Lina8659ba2014-01-06 15:42:53 +0800316 for (i = 0; i < ACT8865_REG_NUM; i++) {
Beniamino Galvani48a1e1b2014-06-22 17:31:41 +0200317 const struct regulator_desc *desc = &act8865_reg[i];
Wenyou Yang33036f42013-12-24 10:34:28 +0800318
319 config.dev = dev;
Beniamino Galvani48a1e1b2014-06-22 17:31:41 +0200320 config.init_data = act8865_get_init_data(desc->id, pdata);
Wenyou Yang33036f42013-12-24 10:34:28 +0800321 config.of_node = of_node[i];
322 config.driver_data = act8865;
323 config.regmap = act8865->regmap;
324
Beniamino Galvani48a1e1b2014-06-22 17:31:41 +0200325 rdev = devm_regulator_register(&client->dev, desc, &config);
Axel Linfb8eb452014-03-08 21:19:07 +0800326 if (IS_ERR(rdev)) {
Beniamino Galvani48a1e1b2014-06-22 17:31:41 +0200327 dev_err(dev, "failed to register %s\n", desc->name);
Axel Linfb8eb452014-03-08 21:19:07 +0800328 return PTR_ERR(rdev);
Wenyou Yang33036f42013-12-24 10:34:28 +0800329 }
330 }
331
332 i2c_set_clientdata(client, act8865);
333
334 return 0;
335}
336
Wenyou Yang33036f42013-12-24 10:34:28 +0800337static const struct i2c_device_id act8865_ids[] = {
338 { "act8865", 0 },
339 { },
340};
341MODULE_DEVICE_TABLE(i2c, act8865_ids);
342
343static struct i2c_driver act8865_pmic_driver = {
344 .driver = {
345 .name = "act8865",
346 .owner = THIS_MODULE,
347 },
348 .probe = act8865_pmic_probe,
Wenyou Yang33036f42013-12-24 10:34:28 +0800349 .id_table = act8865_ids,
350};
351
352module_i2c_driver(act8865_pmic_driver);
353
354MODULE_DESCRIPTION("active-semi act8865 voltage regulator driver");
355MODULE_AUTHOR("Wenyou Yang <wenyou.yang@atmel.com>");
356MODULE_LICENSE("GPL v2");