blob: b6ddb03ee76230347d5302d96f7c2923eea3de51 [file] [log] [blame]
Sangbeom Kim9767ec72012-01-09 19:10:25 +09001/*
2 * s5m8767.c
3 *
4 * Copyright (c) 2011 Samsung Electronics Co., Ltd
5 * http://www.samsung.com
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
12 */
13
Sangbeom Kim9767ec72012-01-09 19:10:25 +090014#include <linux/err.h>
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -080015#include <linux/of_gpio.h>
Sangbeom Kim9767ec72012-01-09 19:10:25 +090016#include <linux/module.h>
17#include <linux/platform_device.h>
18#include <linux/regulator/driver.h>
19#include <linux/regulator/machine.h>
Sangbeom Kim54227bc2012-07-11 21:07:16 +090020#include <linux/mfd/samsung/core.h>
21#include <linux/mfd/samsung/s5m8767.h>
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -080022#include <linux/regulator/of_regulator.h>
Krzysztof Kozlowskid13733f2013-12-17 14:23:18 +010023#include <linux/regmap.h>
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -080024
25#define S5M8767_OPMODE_NORMAL_MODE 0x1
Sangbeom Kim9767ec72012-01-09 19:10:25 +090026
27struct s5m8767_info {
28 struct device *dev;
Sangbeom Kim63063bf2012-07-11 21:06:55 +090029 struct sec_pmic_dev *iodev;
Sangbeom Kim9767ec72012-01-09 19:10:25 +090030 int num_regulators;
31 struct regulator_dev **rdev;
Sangbeom Kim63063bf2012-07-11 21:06:55 +090032 struct sec_opmode_data *opmode;
Sangbeom Kim9767ec72012-01-09 19:10:25 +090033
34 int ramp_delay;
35 bool buck2_ramp;
36 bool buck3_ramp;
37 bool buck4_ramp;
38
39 bool buck2_gpiodvs;
40 bool buck3_gpiodvs;
41 bool buck4_gpiodvs;
42 u8 buck2_vol[8];
43 u8 buck3_vol[8];
44 u8 buck4_vol[8];
45 int buck_gpios[3];
Sangbeom Kimc848bc82012-06-18 09:49:20 +090046 int buck_ds[3];
Sangbeom Kim9767ec72012-01-09 19:10:25 +090047 int buck_gpioindex;
48};
49
Sangbeom Kim63063bf2012-07-11 21:06:55 +090050struct sec_voltage_desc {
Sangbeom Kim9767ec72012-01-09 19:10:25 +090051 int max;
52 int min;
53 int step;
54};
55
Sangbeom Kim63063bf2012-07-11 21:06:55 +090056static const struct sec_voltage_desc buck_voltage_val1 = {
Sangbeom Kim9767ec72012-01-09 19:10:25 +090057 .max = 2225000,
58 .min = 650000,
59 .step = 6250,
60};
61
Sangbeom Kim63063bf2012-07-11 21:06:55 +090062static const struct sec_voltage_desc buck_voltage_val2 = {
Sangbeom Kim9767ec72012-01-09 19:10:25 +090063 .max = 1600000,
64 .min = 600000,
65 .step = 6250,
66};
67
Sangbeom Kim63063bf2012-07-11 21:06:55 +090068static const struct sec_voltage_desc buck_voltage_val3 = {
Sangbeom Kim9767ec72012-01-09 19:10:25 +090069 .max = 3000000,
70 .min = 750000,
71 .step = 12500,
72};
73
Sangbeom Kim63063bf2012-07-11 21:06:55 +090074static const struct sec_voltage_desc ldo_voltage_val1 = {
Sangbeom Kim9767ec72012-01-09 19:10:25 +090075 .max = 3950000,
76 .min = 800000,
77 .step = 50000,
78};
79
Sangbeom Kim63063bf2012-07-11 21:06:55 +090080static const struct sec_voltage_desc ldo_voltage_val2 = {
Sangbeom Kim9767ec72012-01-09 19:10:25 +090081 .max = 2375000,
82 .min = 800000,
83 .step = 25000,
84};
85
Sangbeom Kim63063bf2012-07-11 21:06:55 +090086static const struct sec_voltage_desc *reg_voltage_map[] = {
Sangbeom Kim9767ec72012-01-09 19:10:25 +090087 [S5M8767_LDO1] = &ldo_voltage_val2,
88 [S5M8767_LDO2] = &ldo_voltage_val2,
89 [S5M8767_LDO3] = &ldo_voltage_val1,
90 [S5M8767_LDO4] = &ldo_voltage_val1,
91 [S5M8767_LDO5] = &ldo_voltage_val1,
92 [S5M8767_LDO6] = &ldo_voltage_val2,
93 [S5M8767_LDO7] = &ldo_voltage_val2,
94 [S5M8767_LDO8] = &ldo_voltage_val2,
95 [S5M8767_LDO9] = &ldo_voltage_val1,
96 [S5M8767_LDO10] = &ldo_voltage_val1,
97 [S5M8767_LDO11] = &ldo_voltage_val1,
98 [S5M8767_LDO12] = &ldo_voltage_val1,
99 [S5M8767_LDO13] = &ldo_voltage_val1,
100 [S5M8767_LDO14] = &ldo_voltage_val1,
101 [S5M8767_LDO15] = &ldo_voltage_val2,
102 [S5M8767_LDO16] = &ldo_voltage_val1,
103 [S5M8767_LDO17] = &ldo_voltage_val1,
104 [S5M8767_LDO18] = &ldo_voltage_val1,
105 [S5M8767_LDO19] = &ldo_voltage_val1,
106 [S5M8767_LDO20] = &ldo_voltage_val1,
107 [S5M8767_LDO21] = &ldo_voltage_val1,
108 [S5M8767_LDO22] = &ldo_voltage_val1,
109 [S5M8767_LDO23] = &ldo_voltage_val1,
110 [S5M8767_LDO24] = &ldo_voltage_val1,
111 [S5M8767_LDO25] = &ldo_voltage_val1,
112 [S5M8767_LDO26] = &ldo_voltage_val1,
113 [S5M8767_LDO27] = &ldo_voltage_val1,
114 [S5M8767_LDO28] = &ldo_voltage_val1,
115 [S5M8767_BUCK1] = &buck_voltage_val1,
116 [S5M8767_BUCK2] = &buck_voltage_val2,
117 [S5M8767_BUCK3] = &buck_voltage_val2,
118 [S5M8767_BUCK4] = &buck_voltage_val2,
119 [S5M8767_BUCK5] = &buck_voltage_val1,
120 [S5M8767_BUCK6] = &buck_voltage_val1,
Krzysztof Kozlowski463616e2013-12-10 10:09:43 +0100121 [S5M8767_BUCK7] = &buck_voltage_val3,
122 [S5M8767_BUCK8] = &buck_voltage_val3,
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900123 [S5M8767_BUCK9] = &buck_voltage_val3,
124};
125
Mark Brown5ceba7b2012-05-09 20:37:51 +0100126static unsigned int s5m8767_opmode_reg[][4] = {
Sangbeom Kim7e44bb82012-03-09 17:55:34 +0900127 /* {OFF, ON, LOWPOWER, SUSPEND} */
128 /* LDO1 ... LDO28 */
129 {0x0, 0x3, 0x2, 0x1}, /* LDO1 */
130 {0x0, 0x3, 0x2, 0x1},
131 {0x0, 0x3, 0x2, 0x1},
132 {0x0, 0x0, 0x0, 0x0},
133 {0x0, 0x3, 0x2, 0x1}, /* LDO5 */
134 {0x0, 0x3, 0x2, 0x1},
135 {0x0, 0x3, 0x2, 0x1},
136 {0x0, 0x3, 0x2, 0x1},
137 {0x0, 0x3, 0x2, 0x1},
138 {0x0, 0x3, 0x2, 0x1}, /* LDO10 */
139 {0x0, 0x3, 0x2, 0x1},
140 {0x0, 0x3, 0x2, 0x1},
141 {0x0, 0x3, 0x2, 0x1},
142 {0x0, 0x3, 0x2, 0x1},
143 {0x0, 0x3, 0x2, 0x1}, /* LDO15 */
144 {0x0, 0x3, 0x2, 0x1},
145 {0x0, 0x3, 0x2, 0x1},
146 {0x0, 0x0, 0x0, 0x0},
147 {0x0, 0x3, 0x2, 0x1},
148 {0x0, 0x3, 0x2, 0x1}, /* LDO20 */
149 {0x0, 0x3, 0x2, 0x1},
150 {0x0, 0x3, 0x2, 0x1},
151 {0x0, 0x0, 0x0, 0x0},
152 {0x0, 0x3, 0x2, 0x1},
153 {0x0, 0x3, 0x2, 0x1}, /* LDO25 */
154 {0x0, 0x3, 0x2, 0x1},
155 {0x0, 0x3, 0x2, 0x1},
156 {0x0, 0x3, 0x2, 0x1}, /* LDO28 */
157
158 /* BUCK1 ... BUCK9 */
159 {0x0, 0x3, 0x1, 0x1}, /* BUCK1 */
160 {0x0, 0x3, 0x1, 0x1},
161 {0x0, 0x3, 0x1, 0x1},
162 {0x0, 0x3, 0x1, 0x1},
163 {0x0, 0x3, 0x2, 0x1}, /* BUCK5 */
164 {0x0, 0x3, 0x1, 0x1},
165 {0x0, 0x3, 0x1, 0x1},
166 {0x0, 0x3, 0x1, 0x1},
167 {0x0, 0x3, 0x1, 0x1}, /* BUCK9 */
168};
169
Axel Lin9c4c6052014-03-21 14:54:08 +0800170static int s5m8767_get_register(struct s5m8767_info *s5m8767, int reg_id,
171 int *reg, int *enable_ctrl)
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900172{
Axel Lin9c4c6052014-03-21 14:54:08 +0800173 int i;
Sangbeom Kim7e44bb82012-03-09 17:55:34 +0900174 unsigned int mode;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900175
176 switch (reg_id) {
177 case S5M8767_LDO1 ... S5M8767_LDO2:
178 *reg = S5M8767_REG_LDO1CTRL + (reg_id - S5M8767_LDO1);
179 break;
180 case S5M8767_LDO3 ... S5M8767_LDO28:
181 *reg = S5M8767_REG_LDO3CTRL + (reg_id - S5M8767_LDO3);
182 break;
183 case S5M8767_BUCK1:
184 *reg = S5M8767_REG_BUCK1CTRL1;
185 break;
186 case S5M8767_BUCK2 ... S5M8767_BUCK4:
187 *reg = S5M8767_REG_BUCK2CTRL + (reg_id - S5M8767_BUCK2) * 9;
188 break;
189 case S5M8767_BUCK5:
190 *reg = S5M8767_REG_BUCK5CTRL1;
191 break;
192 case S5M8767_BUCK6 ... S5M8767_BUCK9:
193 *reg = S5M8767_REG_BUCK6CTRL1 + (reg_id - S5M8767_BUCK6) * 2;
194 break;
195 default:
196 return -EINVAL;
197 }
198
Amit Daniel Kachhap9bb096f2012-12-10 18:19:39 +0530199 for (i = 0; i < s5m8767->num_regulators; i++) {
200 if (s5m8767->opmode[i].id == reg_id) {
201 mode = s5m8767->opmode[i].mode;
202 break;
203 }
204 }
205
206 if (i < s5m8767->num_regulators)
207 *enable_ctrl =
208 s5m8767_opmode_reg[reg_id][mode] << S5M8767_ENCTRL_SHIFT;
209
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900210 return 0;
211}
212
Axel Lin31a932e2013-01-18 09:55:06 +0800213static int s5m8767_get_vsel_reg(int reg_id, struct s5m8767_info *s5m8767)
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900214{
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900215 int reg;
216
217 switch (reg_id) {
218 case S5M8767_LDO1 ... S5M8767_LDO2:
219 reg = S5M8767_REG_LDO1CTRL + (reg_id - S5M8767_LDO1);
220 break;
221 case S5M8767_LDO3 ... S5M8767_LDO28:
222 reg = S5M8767_REG_LDO3CTRL + (reg_id - S5M8767_LDO3);
223 break;
224 case S5M8767_BUCK1:
225 reg = S5M8767_REG_BUCK1CTRL2;
226 break;
227 case S5M8767_BUCK2:
Amit Daniel Kachhapda130ab2012-12-10 18:19:40 +0530228 reg = S5M8767_REG_BUCK2DVS1;
Axel Lin0a416852012-03-10 10:59:43 +0800229 if (s5m8767->buck2_gpiodvs)
230 reg += s5m8767->buck_gpioindex;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900231 break;
232 case S5M8767_BUCK3:
Amit Daniel Kachhapda130ab2012-12-10 18:19:40 +0530233 reg = S5M8767_REG_BUCK3DVS1;
Axel Lin0a416852012-03-10 10:59:43 +0800234 if (s5m8767->buck3_gpiodvs)
235 reg += s5m8767->buck_gpioindex;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900236 break;
237 case S5M8767_BUCK4:
Amit Daniel Kachhapda130ab2012-12-10 18:19:40 +0530238 reg = S5M8767_REG_BUCK4DVS1;
Axel Lin0a416852012-03-10 10:59:43 +0800239 if (s5m8767->buck4_gpiodvs)
240 reg += s5m8767->buck_gpioindex;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900241 break;
242 case S5M8767_BUCK5:
243 reg = S5M8767_REG_BUCK5CTRL2;
244 break;
245 case S5M8767_BUCK6 ... S5M8767_BUCK9:
246 reg = S5M8767_REG_BUCK6CTRL2 + (reg_id - S5M8767_BUCK6) * 2;
247 break;
248 default:
249 return -EINVAL;
250 }
251
Axel Lin31a932e2013-01-18 09:55:06 +0800252 return reg;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900253}
254
Axel Lin854f73e2012-12-29 09:38:50 +0800255static int s5m8767_convert_voltage_to_sel(const struct sec_voltage_desc *desc,
256 int min_vol)
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900257{
Axel Lin5b5e9772012-03-09 11:31:08 +0800258 int selector = 0;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900259
260 if (desc == NULL)
261 return -EINVAL;
262
Axel Lin854f73e2012-12-29 09:38:50 +0800263 if (min_vol > desc->max)
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900264 return -EINVAL;
265
Axel Lin94e85a32012-04-13 09:30:05 +0800266 if (min_vol < desc->min)
267 min_vol = desc->min;
268
269 selector = DIV_ROUND_UP(min_vol - desc->min, desc->step);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900270
Axel Lin854f73e2012-12-29 09:38:50 +0800271 if (desc->min + desc->step * selector > desc->max)
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900272 return -EINVAL;
273
Axel Lin5b5e9772012-03-09 11:31:08 +0800274 return selector;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900275}
276
Sangbeom Kimdf2643c2012-06-13 17:28:18 +0900277static inline int s5m8767_set_high(struct s5m8767_info *s5m8767)
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900278{
279 int temp_index = s5m8767->buck_gpioindex;
280
281 gpio_set_value(s5m8767->buck_gpios[0], (temp_index >> 2) & 0x1);
282 gpio_set_value(s5m8767->buck_gpios[1], (temp_index >> 1) & 0x1);
283 gpio_set_value(s5m8767->buck_gpios[2], temp_index & 0x1);
Sangbeom Kimdf2643c2012-06-13 17:28:18 +0900284
285 return 0;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900286}
287
Sangbeom Kimdf2643c2012-06-13 17:28:18 +0900288static inline int s5m8767_set_low(struct s5m8767_info *s5m8767)
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900289{
290 int temp_index = s5m8767->buck_gpioindex;
291
292 gpio_set_value(s5m8767->buck_gpios[2], temp_index & 0x1);
293 gpio_set_value(s5m8767->buck_gpios[1], (temp_index >> 1) & 0x1);
294 gpio_set_value(s5m8767->buck_gpios[0], (temp_index >> 2) & 0x1);
Sangbeom Kimdf2643c2012-06-13 17:28:18 +0900295
296 return 0;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900297}
298
Sangbeom Kimdf2643c2012-06-13 17:28:18 +0900299static int s5m8767_set_voltage_sel(struct regulator_dev *rdev,
300 unsigned selector)
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900301{
302 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
Axel Lin321d2ab2012-04-10 14:05:44 +0800303 int reg_id = rdev_get_id(rdev);
Axel Lin31a932e2013-01-18 09:55:06 +0800304 int old_index, index = 0;
Axel Lin321d2ab2012-04-10 14:05:44 +0800305 u8 *buck234_vol = NULL;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900306
307 switch (reg_id) {
Axel Lin321d2ab2012-04-10 14:05:44 +0800308 case S5M8767_LDO1 ... S5M8767_LDO28:
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900309 break;
Axel Lin321d2ab2012-04-10 14:05:44 +0800310 case S5M8767_BUCK1 ... S5M8767_BUCK6:
Axel Lin321d2ab2012-04-10 14:05:44 +0800311 if (reg_id == S5M8767_BUCK2 && s5m8767->buck2_gpiodvs)
312 buck234_vol = &s5m8767->buck2_vol[0];
313 else if (reg_id == S5M8767_BUCK3 && s5m8767->buck3_gpiodvs)
314 buck234_vol = &s5m8767->buck3_vol[0];
315 else if (reg_id == S5M8767_BUCK4 && s5m8767->buck4_gpiodvs)
316 buck234_vol = &s5m8767->buck4_vol[0];
317 break;
318 case S5M8767_BUCK7 ... S5M8767_BUCK8:
319 return -EINVAL;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900320 case S5M8767_BUCK9:
Axel Lin321d2ab2012-04-10 14:05:44 +0800321 break;
322 default:
323 return -EINVAL;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900324 }
325
Axel Lin321d2ab2012-04-10 14:05:44 +0800326 /* buck234_vol != NULL means to control buck234 voltage via DVS GPIO */
327 if (buck234_vol) {
Sangbeom Kimdf2643c2012-06-13 17:28:18 +0900328 while (*buck234_vol != selector) {
Axel Lin321d2ab2012-04-10 14:05:44 +0800329 buck234_vol++;
330 index++;
331 }
332 old_index = s5m8767->buck_gpioindex;
333 s5m8767->buck_gpioindex = index;
334
335 if (index > old_index)
Sangbeom Kimdf2643c2012-06-13 17:28:18 +0900336 return s5m8767_set_high(s5m8767);
Axel Lin321d2ab2012-04-10 14:05:44 +0800337 else
Sangbeom Kimdf2643c2012-06-13 17:28:18 +0900338 return s5m8767_set_low(s5m8767);
Axel Lin321d2ab2012-04-10 14:05:44 +0800339 } else {
Axel Lin31a932e2013-01-18 09:55:06 +0800340 return regulator_set_voltage_sel_regmap(rdev, selector);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900341 }
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900342}
343
344static int s5m8767_set_voltage_time_sel(struct regulator_dev *rdev,
345 unsigned int old_sel,
346 unsigned int new_sel)
347{
348 struct s5m8767_info *s5m8767 = rdev_get_drvdata(rdev);
Sangbeom Kim63063bf2012-07-11 21:06:55 +0900349 const struct sec_voltage_desc *desc;
Axel Lin20a14b82012-01-31 15:13:31 +0800350 int reg_id = rdev_get_id(rdev);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900351
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900352 desc = reg_voltage_map[reg_id];
353
Sangbeom Kim9d88fc02012-06-13 17:27:16 +0900354 if ((old_sel < new_sel) && s5m8767->ramp_delay)
Axel Lin89e0f0e2012-02-24 14:52:45 +0800355 return DIV_ROUND_UP(desc->step * (new_sel - old_sel),
Sangbeom Kim0f8b9c72012-03-09 16:28:10 +0900356 s5m8767->ramp_delay * 1000);
Axel Lin89e0f0e2012-02-24 14:52:45 +0800357 return 0;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900358}
359
Axel Lind35aad02012-04-10 14:07:15 +0800360static struct regulator_ops s5m8767_ops = {
Axel Line2eb1692012-06-18 14:25:27 +0800361 .list_voltage = regulator_list_voltage_linear,
Axel Lin9c4c6052014-03-21 14:54:08 +0800362 .is_enabled = regulator_is_enabled_regmap,
363 .enable = regulator_enable_regmap,
364 .disable = regulator_disable_regmap,
Axel Lin31a932e2013-01-18 09:55:06 +0800365 .get_voltage_sel = regulator_get_voltage_sel_regmap,
Sangbeom Kimdf2643c2012-06-13 17:28:18 +0900366 .set_voltage_sel = s5m8767_set_voltage_sel,
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900367 .set_voltage_time_sel = s5m8767_set_voltage_time_sel,
368};
369
Axel Line2eb1692012-06-18 14:25:27 +0800370static struct regulator_ops s5m8767_buck78_ops = {
Krzysztof Kozlowski463616e2013-12-10 10:09:43 +0100371 .list_voltage = regulator_list_voltage_linear,
Axel Lin9c4c6052014-03-21 14:54:08 +0800372 .is_enabled = regulator_is_enabled_regmap,
373 .enable = regulator_enable_regmap,
374 .disable = regulator_disable_regmap,
Krzysztof Kozlowski463616e2013-12-10 10:09:43 +0100375 .get_voltage_sel = regulator_get_voltage_sel_regmap,
376 .set_voltage_sel = regulator_set_voltage_sel_regmap,
Axel Line2eb1692012-06-18 14:25:27 +0800377};
378
Axel Lin65896e72012-04-10 14:08:19 +0800379#define s5m8767_regulator_desc(_name) { \
380 .name = #_name, \
381 .id = S5M8767_##_name, \
382 .ops = &s5m8767_ops, \
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900383 .type = REGULATOR_VOLTAGE, \
384 .owner = THIS_MODULE, \
385}
386
Axel Line2eb1692012-06-18 14:25:27 +0800387#define s5m8767_regulator_buck78_desc(_name) { \
388 .name = #_name, \
389 .id = S5M8767_##_name, \
390 .ops = &s5m8767_buck78_ops, \
391 .type = REGULATOR_VOLTAGE, \
392 .owner = THIS_MODULE, \
393}
394
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900395static struct regulator_desc regulators[] = {
Axel Lin65896e72012-04-10 14:08:19 +0800396 s5m8767_regulator_desc(LDO1),
397 s5m8767_regulator_desc(LDO2),
398 s5m8767_regulator_desc(LDO3),
399 s5m8767_regulator_desc(LDO4),
400 s5m8767_regulator_desc(LDO5),
401 s5m8767_regulator_desc(LDO6),
402 s5m8767_regulator_desc(LDO7),
403 s5m8767_regulator_desc(LDO8),
404 s5m8767_regulator_desc(LDO9),
405 s5m8767_regulator_desc(LDO10),
406 s5m8767_regulator_desc(LDO11),
407 s5m8767_regulator_desc(LDO12),
408 s5m8767_regulator_desc(LDO13),
409 s5m8767_regulator_desc(LDO14),
410 s5m8767_regulator_desc(LDO15),
411 s5m8767_regulator_desc(LDO16),
412 s5m8767_regulator_desc(LDO17),
413 s5m8767_regulator_desc(LDO18),
414 s5m8767_regulator_desc(LDO19),
415 s5m8767_regulator_desc(LDO20),
416 s5m8767_regulator_desc(LDO21),
417 s5m8767_regulator_desc(LDO22),
418 s5m8767_regulator_desc(LDO23),
419 s5m8767_regulator_desc(LDO24),
420 s5m8767_regulator_desc(LDO25),
421 s5m8767_regulator_desc(LDO26),
422 s5m8767_regulator_desc(LDO27),
423 s5m8767_regulator_desc(LDO28),
424 s5m8767_regulator_desc(BUCK1),
425 s5m8767_regulator_desc(BUCK2),
426 s5m8767_regulator_desc(BUCK3),
427 s5m8767_regulator_desc(BUCK4),
428 s5m8767_regulator_desc(BUCK5),
429 s5m8767_regulator_desc(BUCK6),
Axel Line2eb1692012-06-18 14:25:27 +0800430 s5m8767_regulator_buck78_desc(BUCK7),
431 s5m8767_regulator_buck78_desc(BUCK8),
Axel Lin65896e72012-04-10 14:08:19 +0800432 s5m8767_regulator_desc(BUCK9),
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900433};
434
Krzysztof Kozlowskiee1e0992014-01-24 14:37:57 +0100435/*
436 * Enable GPIO control over BUCK9 in regulator_config for that regulator.
437 */
438static void s5m8767_regulator_config_ext_control(struct s5m8767_info *s5m8767,
439 struct sec_regulator_data *rdata,
440 struct regulator_config *config)
441{
442 int i, mode = 0;
443
444 if (rdata->id != S5M8767_BUCK9)
445 return;
446
447 /* Check if opmode for regulator matches S5M8767_ENCTRL_USE_GPIO */
448 for (i = 0; i < s5m8767->num_regulators; i++) {
449 const struct sec_opmode_data *opmode = &s5m8767->opmode[i];
450 if (opmode->id == rdata->id) {
451 mode = s5m8767_opmode_reg[rdata->id][opmode->mode];
452 break;
453 }
454 }
455 if (mode != S5M8767_ENCTRL_USE_GPIO) {
456 dev_warn(s5m8767->dev,
457 "ext-control for %s: mismatched op_mode (%x), ignoring\n",
458 rdata->reg_node->name, mode);
459 return;
460 }
461
462 if (!gpio_is_valid(rdata->ext_control_gpio)) {
463 dev_warn(s5m8767->dev,
464 "ext-control for %s: GPIO not valid, ignoring\n",
465 rdata->reg_node->name);
466 return;
467 }
468
469 config->ena_gpio = rdata->ext_control_gpio;
470 config->ena_gpio_flags = GPIOF_OUT_INIT_HIGH;
471}
472
473/*
474 * Turn on GPIO control over BUCK9.
475 */
476static int s5m8767_enable_ext_control(struct s5m8767_info *s5m8767,
477 struct regulator_dev *rdev)
478{
Axel Lin9c4c6052014-03-21 14:54:08 +0800479 int id = rdev_get_id(rdev);
Krzysztof Kozlowskiee1e0992014-01-24 14:37:57 +0100480 int ret, reg, enable_ctrl;
481
Axel Lin9c4c6052014-03-21 14:54:08 +0800482 if (id != S5M8767_BUCK9)
Krzysztof Kozlowskiee1e0992014-01-24 14:37:57 +0100483 return -EINVAL;
484
Axel Lin9c4c6052014-03-21 14:54:08 +0800485 ret = s5m8767_get_register(s5m8767, id, &reg, &enable_ctrl);
Krzysztof Kozlowskiee1e0992014-01-24 14:37:57 +0100486 if (ret)
487 return ret;
488
489 return regmap_update_bits(s5m8767->iodev->regmap_pmic,
490 reg, S5M8767_ENCTRL_MASK,
491 S5M8767_ENCTRL_USE_GPIO << S5M8767_ENCTRL_SHIFT);
492}
493
494
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800495#ifdef CONFIG_OF
496static int s5m8767_pmic_dt_parse_dvs_gpio(struct sec_pmic_dev *iodev,
497 struct sec_platform_data *pdata,
498 struct device_node *pmic_np)
499{
500 int i, gpio;
501
502 for (i = 0; i < 3; i++) {
503 gpio = of_get_named_gpio(pmic_np,
504 "s5m8767,pmic-buck-dvs-gpios", i);
505 if (!gpio_is_valid(gpio)) {
506 dev_err(iodev->dev, "invalid gpio[%d]: %d\n", i, gpio);
507 return -EINVAL;
508 }
509 pdata->buck_gpios[i] = gpio;
510 }
511 return 0;
512}
513
514static int s5m8767_pmic_dt_parse_ds_gpio(struct sec_pmic_dev *iodev,
515 struct sec_platform_data *pdata,
516 struct device_node *pmic_np)
517{
518 int i, gpio;
519
520 for (i = 0; i < 3; i++) {
521 gpio = of_get_named_gpio(pmic_np,
522 "s5m8767,pmic-buck-ds-gpios", i);
523 if (!gpio_is_valid(gpio)) {
524 dev_err(iodev->dev, "invalid gpio[%d]: %d\n", i, gpio);
525 return -EINVAL;
526 }
527 pdata->buck_ds[i] = gpio;
528 }
529 return 0;
530}
531
Krzysztof Kozlowskiee1e0992014-01-24 14:37:57 +0100532static void s5m8767_pmic_dt_parse_ext_control_gpio(struct sec_pmic_dev *iodev,
533 struct sec_regulator_data *rdata,
534 struct device_node *reg_np)
535{
536 rdata->ext_control_gpio = of_get_named_gpio(reg_np,
537 "s5m8767,pmic-ext-control-gpios", 0);
538 if (!gpio_is_valid(rdata->ext_control_gpio))
539 rdata->ext_control_gpio = 0;
540}
541
Axel Lincbb0ed42013-02-13 09:29:45 +0800542static int s5m8767_pmic_dt_parse_pdata(struct platform_device *pdev,
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800543 struct sec_platform_data *pdata)
544{
Axel Lincbb0ed42013-02-13 09:29:45 +0800545 struct sec_pmic_dev *iodev = dev_get_drvdata(pdev->dev.parent);
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800546 struct device_node *pmic_np, *regulators_np, *reg_np;
547 struct sec_regulator_data *rdata;
548 struct sec_opmode_data *rmode;
Chanwoo Choi04f9f062013-10-10 10:41:36 +0900549 unsigned int i, dvs_voltage_nr = 8, ret;
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800550
551 pmic_np = iodev->dev->of_node;
552 if (!pmic_np) {
553 dev_err(iodev->dev, "could not find pmic sub-node\n");
554 return -ENODEV;
555 }
556
557 regulators_np = of_find_node_by_name(pmic_np, "regulators");
558 if (!regulators_np) {
559 dev_err(iodev->dev, "could not find regulators sub-node\n");
560 return -EINVAL;
561 }
562
563 /* count the number of regulators to be supported in pmic */
Axel Lin1f91b6f2013-02-06 10:55:05 +0800564 pdata->num_regulators = of_get_child_count(regulators_np);
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800565
Axel Lincbb0ed42013-02-13 09:29:45 +0800566 rdata = devm_kzalloc(&pdev->dev, sizeof(*rdata) *
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800567 pdata->num_regulators, GFP_KERNEL);
Sachin Kamat4754b422014-02-20 14:23:11 +0530568 if (!rdata)
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800569 return -ENOMEM;
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800570
Axel Lincbb0ed42013-02-13 09:29:45 +0800571 rmode = devm_kzalloc(&pdev->dev, sizeof(*rmode) *
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800572 pdata->num_regulators, GFP_KERNEL);
Sachin Kamat4754b422014-02-20 14:23:11 +0530573 if (!rmode)
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800574 return -ENOMEM;
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800575
576 pdata->regulators = rdata;
577 pdata->opmode = rmode;
578 for_each_child_of_node(regulators_np, reg_np) {
579 for (i = 0; i < ARRAY_SIZE(regulators); i++)
580 if (!of_node_cmp(reg_np->name, regulators[i].name))
581 break;
582
583 if (i == ARRAY_SIZE(regulators)) {
584 dev_warn(iodev->dev,
585 "don't know how to configure regulator %s\n",
586 reg_np->name);
587 continue;
588 }
589
Krzysztof Kozlowskiee1e0992014-01-24 14:37:57 +0100590 s5m8767_pmic_dt_parse_ext_control_gpio(iodev, rdata, reg_np);
591
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800592 rdata->id = i;
593 rdata->initdata = of_get_regulator_init_data(
Axel Lincbb0ed42013-02-13 09:29:45 +0800594 &pdev->dev, reg_np);
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800595 rdata->reg_node = reg_np;
596 rdata++;
597 rmode->id = i;
598 if (of_property_read_u32(reg_np, "op_mode",
599 &rmode->mode)) {
600 dev_warn(iodev->dev,
601 "no op_mode property property at %s\n",
602 reg_np->full_name);
603
604 rmode->mode = S5M8767_OPMODE_NORMAL_MODE;
605 }
606 rmode++;
607 }
608
Chanwoo Choi04f9f062013-10-10 10:41:36 +0900609 if (of_get_property(pmic_np, "s5m8767,pmic-buck2-uses-gpio-dvs", NULL)) {
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800610 pdata->buck2_gpiodvs = true;
611
Chanwoo Choi04f9f062013-10-10 10:41:36 +0900612 if (of_property_read_u32_array(pmic_np,
613 "s5m8767,pmic-buck2-dvs-voltage",
614 pdata->buck2_voltage, dvs_voltage_nr)) {
615 dev_err(iodev->dev, "buck2 voltages not specified\n");
616 return -EINVAL;
617 }
618 }
619
620 if (of_get_property(pmic_np, "s5m8767,pmic-buck3-uses-gpio-dvs", NULL)) {
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800621 pdata->buck3_gpiodvs = true;
622
Chanwoo Choi04f9f062013-10-10 10:41:36 +0900623 if (of_property_read_u32_array(pmic_np,
624 "s5m8767,pmic-buck3-dvs-voltage",
625 pdata->buck3_voltage, dvs_voltage_nr)) {
626 dev_err(iodev->dev, "buck3 voltages not specified\n");
627 return -EINVAL;
628 }
629 }
630
631 if (of_get_property(pmic_np, "s5m8767,pmic-buck4-uses-gpio-dvs", NULL)) {
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800632 pdata->buck4_gpiodvs = true;
633
Chanwoo Choi04f9f062013-10-10 10:41:36 +0900634 if (of_property_read_u32_array(pmic_np,
635 "s5m8767,pmic-buck4-dvs-voltage",
636 pdata->buck4_voltage, dvs_voltage_nr)) {
637 dev_err(iodev->dev, "buck4 voltages not specified\n");
638 return -EINVAL;
639 }
640 }
641
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800642 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs ||
643 pdata->buck4_gpiodvs) {
644 ret = s5m8767_pmic_dt_parse_dvs_gpio(iodev, pdata, pmic_np);
645 if (ret)
646 return -EINVAL;
647
648 if (of_property_read_u32(pmic_np,
649 "s5m8767,pmic-buck-default-dvs-idx",
650 &pdata->buck_default_idx)) {
651 pdata->buck_default_idx = 0;
652 } else {
653 if (pdata->buck_default_idx >= 8) {
654 pdata->buck_default_idx = 0;
655 dev_info(iodev->dev,
656 "invalid value for default dvs index, use 0\n");
657 }
658 }
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800659 }
660
661 ret = s5m8767_pmic_dt_parse_ds_gpio(iodev, pdata, pmic_np);
662 if (ret)
663 return -EINVAL;
664
Chanwoo Choi033054e2013-10-10 10:41:35 +0900665 if (of_get_property(pmic_np, "s5m8767,pmic-buck2-ramp-enable", NULL))
666 pdata->buck2_ramp_enable = true;
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800667
Chanwoo Choi033054e2013-10-10 10:41:35 +0900668 if (of_get_property(pmic_np, "s5m8767,pmic-buck3-ramp-enable", NULL))
669 pdata->buck3_ramp_enable = true;
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800670
Chanwoo Choi033054e2013-10-10 10:41:35 +0900671 if (of_get_property(pmic_np, "s5m8767,pmic-buck4-ramp-enable", NULL))
672 pdata->buck4_ramp_enable = true;
673
674 if (pdata->buck2_ramp_enable || pdata->buck3_ramp_enable
675 || pdata->buck4_ramp_enable) {
676 if (of_property_read_u32(pmic_np, "s5m8767,pmic-buck-ramp-delay",
677 &pdata->buck_ramp_delay))
678 pdata->buck_ramp_delay = 0;
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800679 }
680
681 return 0;
682}
683#else
Axel Lincbb0ed42013-02-13 09:29:45 +0800684static int s5m8767_pmic_dt_parse_pdata(struct platform_device *pdev,
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800685 struct sec_platform_data *pdata)
686{
687 return 0;
688}
689#endif /* CONFIG_OF */
690
Bill Pembertona5023572012-11-19 13:22:22 -0500691static int s5m8767_pmic_probe(struct platform_device *pdev)
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900692{
Sangbeom Kim63063bf2012-07-11 21:06:55 +0900693 struct sec_pmic_dev *iodev = dev_get_drvdata(pdev->dev.parent);
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800694 struct sec_platform_data *pdata = iodev->pdata;
Mark Brownc1727082012-04-04 00:50:22 +0100695 struct regulator_config config = { };
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900696 struct regulator_dev **rdev;
697 struct s5m8767_info *s5m8767;
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900698 int i, ret, size, buck_init;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900699
Axel Line81d7bc2013-02-13 09:31:31 +0800700 if (!pdata) {
701 dev_err(pdev->dev.parent, "Platform data not supplied\n");
702 return -ENODEV;
703 }
704
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800705 if (iodev->dev->of_node) {
Axel Lincbb0ed42013-02-13 09:29:45 +0800706 ret = s5m8767_pmic_dt_parse_pdata(pdev, pdata);
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800707 if (ret)
708 return ret;
709 }
710
Axel Lin6c4efe22012-03-10 08:43:02 +0800711 if (pdata->buck2_gpiodvs) {
712 if (pdata->buck3_gpiodvs || pdata->buck4_gpiodvs) {
713 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n");
714 return -EINVAL;
715 }
716 }
717
718 if (pdata->buck3_gpiodvs) {
719 if (pdata->buck2_gpiodvs || pdata->buck4_gpiodvs) {
720 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n");
721 return -EINVAL;
722 }
723 }
724
725 if (pdata->buck4_gpiodvs) {
726 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs) {
727 dev_err(&pdev->dev, "S5M8767 GPIO DVS NOT VALID\n");
728 return -EINVAL;
729 }
730 }
731
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900732 s5m8767 = devm_kzalloc(&pdev->dev, sizeof(struct s5m8767_info),
733 GFP_KERNEL);
734 if (!s5m8767)
735 return -ENOMEM;
736
737 size = sizeof(struct regulator_dev *) * (S5M8767_REG_MAX - 2);
738 s5m8767->rdev = devm_kzalloc(&pdev->dev, size, GFP_KERNEL);
739 if (!s5m8767->rdev)
740 return -ENOMEM;
741
742 rdev = s5m8767->rdev;
743 s5m8767->dev = &pdev->dev;
744 s5m8767->iodev = iodev;
Amit Daniel Kachhap9bb096f2012-12-10 18:19:39 +0530745 s5m8767->num_regulators = pdata->num_regulators;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900746 platform_set_drvdata(pdev, s5m8767);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900747
748 s5m8767->buck_gpioindex = pdata->buck_default_idx;
749 s5m8767->buck2_gpiodvs = pdata->buck2_gpiodvs;
750 s5m8767->buck3_gpiodvs = pdata->buck3_gpiodvs;
751 s5m8767->buck4_gpiodvs = pdata->buck4_gpiodvs;
752 s5m8767->buck_gpios[0] = pdata->buck_gpios[0];
753 s5m8767->buck_gpios[1] = pdata->buck_gpios[1];
754 s5m8767->buck_gpios[2] = pdata->buck_gpios[2];
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900755 s5m8767->buck_ds[0] = pdata->buck_ds[0];
756 s5m8767->buck_ds[1] = pdata->buck_ds[1];
757 s5m8767->buck_ds[2] = pdata->buck_ds[2];
758
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900759 s5m8767->ramp_delay = pdata->buck_ramp_delay;
760 s5m8767->buck2_ramp = pdata->buck2_ramp_enable;
761 s5m8767->buck3_ramp = pdata->buck3_ramp_enable;
762 s5m8767->buck4_ramp = pdata->buck4_ramp_enable;
Sangbeom Kim7e44bb82012-03-09 17:55:34 +0900763 s5m8767->opmode = pdata->opmode;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900764
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900765 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2,
Axel Lin854f73e2012-12-29 09:38:50 +0800766 pdata->buck2_init);
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900767
Krzysztof Kozlowskid13733f2013-12-17 14:23:18 +0100768 regmap_write(s5m8767->iodev->regmap_pmic, S5M8767_REG_BUCK2DVS2,
769 buck_init);
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900770
771 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2,
Axel Lin854f73e2012-12-29 09:38:50 +0800772 pdata->buck3_init);
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900773
Krzysztof Kozlowskid13733f2013-12-17 14:23:18 +0100774 regmap_write(s5m8767->iodev->regmap_pmic, S5M8767_REG_BUCK3DVS2,
775 buck_init);
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900776
777 buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2,
Axel Lin854f73e2012-12-29 09:38:50 +0800778 pdata->buck4_init);
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900779
Krzysztof Kozlowskid13733f2013-12-17 14:23:18 +0100780 regmap_write(s5m8767->iodev->regmap_pmic, S5M8767_REG_BUCK4DVS2,
781 buck_init);
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900782
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900783 for (i = 0; i < 8; i++) {
784 if (s5m8767->buck2_gpiodvs) {
785 s5m8767->buck2_vol[i] =
Axel Lin5b5e9772012-03-09 11:31:08 +0800786 s5m8767_convert_voltage_to_sel(
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900787 &buck_voltage_val2,
Axel Lin854f73e2012-12-29 09:38:50 +0800788 pdata->buck2_voltage[i]);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900789 }
790
791 if (s5m8767->buck3_gpiodvs) {
792 s5m8767->buck3_vol[i] =
Axel Lin5b5e9772012-03-09 11:31:08 +0800793 s5m8767_convert_voltage_to_sel(
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900794 &buck_voltage_val2,
Axel Lin854f73e2012-12-29 09:38:50 +0800795 pdata->buck3_voltage[i]);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900796 }
797
798 if (s5m8767->buck4_gpiodvs) {
799 s5m8767->buck4_vol[i] =
Axel Lin5b5e9772012-03-09 11:31:08 +0800800 s5m8767_convert_voltage_to_sel(
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900801 &buck_voltage_val2,
Axel Lin854f73e2012-12-29 09:38:50 +0800802 pdata->buck4_voltage[i]);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900803 }
804 }
805
Amit Daniel Kachhap76c854d2012-12-10 18:19:41 +0530806 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs ||
807 pdata->buck4_gpiodvs) {
808
809 if (!gpio_is_valid(pdata->buck_gpios[0]) ||
810 !gpio_is_valid(pdata->buck_gpios[1]) ||
811 !gpio_is_valid(pdata->buck_gpios[2])) {
812 dev_err(&pdev->dev, "GPIO NOT VALID\n");
813 return -EINVAL;
814 }
815
Axel Lin5febb3c2012-07-05 23:12:49 +0800816 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[0],
817 "S5M8767 SET1");
818 if (ret)
819 return ret;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900820
Axel Lin5febb3c2012-07-05 23:12:49 +0800821 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[1],
822 "S5M8767 SET2");
823 if (ret)
824 return ret;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900825
Axel Lin5febb3c2012-07-05 23:12:49 +0800826 ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[2],
827 "S5M8767 SET3");
828 if (ret)
829 return ret;
830
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900831 /* SET1 GPIO */
832 gpio_direction_output(pdata->buck_gpios[0],
833 (s5m8767->buck_gpioindex >> 2) & 0x1);
834 /* SET2 GPIO */
835 gpio_direction_output(pdata->buck_gpios[1],
836 (s5m8767->buck_gpioindex >> 1) & 0x1);
837 /* SET3 GPIO */
838 gpio_direction_output(pdata->buck_gpios[2],
839 (s5m8767->buck_gpioindex >> 0) & 0x1);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900840 }
841
Axel Lin5febb3c2012-07-05 23:12:49 +0800842 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[0], "S5M8767 DS2");
843 if (ret)
844 return ret;
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900845
Axel Lin5febb3c2012-07-05 23:12:49 +0800846 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[1], "S5M8767 DS3");
847 if (ret)
848 return ret;
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900849
Axel Lin5febb3c2012-07-05 23:12:49 +0800850 ret = devm_gpio_request(&pdev->dev, pdata->buck_ds[2], "S5M8767 DS4");
851 if (ret)
852 return ret;
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900853
854 /* DS2 GPIO */
855 gpio_direction_output(pdata->buck_ds[0], 0x0);
856 /* DS3 GPIO */
857 gpio_direction_output(pdata->buck_ds[1], 0x0);
858 /* DS4 GPIO */
859 gpio_direction_output(pdata->buck_ds[2], 0x0);
860
861 if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs ||
862 pdata->buck4_gpiodvs) {
Krzysztof Kozlowskid13733f2013-12-17 14:23:18 +0100863 regmap_update_bits(s5m8767->iodev->regmap_pmic,
864 S5M8767_REG_BUCK2CTRL, 1 << 1,
865 (pdata->buck2_gpiodvs) ? (1 << 1) : (0 << 1));
866 regmap_update_bits(s5m8767->iodev->regmap_pmic,
867 S5M8767_REG_BUCK3CTRL, 1 << 1,
868 (pdata->buck3_gpiodvs) ? (1 << 1) : (0 << 1));
869 regmap_update_bits(s5m8767->iodev->regmap_pmic,
870 S5M8767_REG_BUCK4CTRL, 1 << 1,
871 (pdata->buck4_gpiodvs) ? (1 << 1) : (0 << 1));
Sangbeom Kimc848bc82012-06-18 09:49:20 +0900872 }
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900873
874 /* Initialize GPIO DVS registers */
875 for (i = 0; i < 8; i++) {
876 if (s5m8767->buck2_gpiodvs) {
Krzysztof Kozlowskid13733f2013-12-17 14:23:18 +0100877 regmap_write(s5m8767->iodev->regmap_pmic,
878 S5M8767_REG_BUCK2DVS1 + i,
879 s5m8767->buck2_vol[i]);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900880 }
881
882 if (s5m8767->buck3_gpiodvs) {
Krzysztof Kozlowskid13733f2013-12-17 14:23:18 +0100883 regmap_write(s5m8767->iodev->regmap_pmic,
884 S5M8767_REG_BUCK3DVS1 + i,
885 s5m8767->buck3_vol[i]);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900886 }
887
888 if (s5m8767->buck4_gpiodvs) {
Krzysztof Kozlowskid13733f2013-12-17 14:23:18 +0100889 regmap_write(s5m8767->iodev->regmap_pmic,
890 S5M8767_REG_BUCK4DVS1 + i,
891 s5m8767->buck4_vol[i]);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900892 }
893 }
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900894
895 if (s5m8767->buck2_ramp)
Krzysztof Kozlowskid13733f2013-12-17 14:23:18 +0100896 regmap_update_bits(s5m8767->iodev->regmap_pmic,
897 S5M8767_REG_DVSRAMP, 0x08, 0x08);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900898
899 if (s5m8767->buck3_ramp)
Krzysztof Kozlowskid13733f2013-12-17 14:23:18 +0100900 regmap_update_bits(s5m8767->iodev->regmap_pmic,
901 S5M8767_REG_DVSRAMP, 0x04, 0x04);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900902
903 if (s5m8767->buck4_ramp)
Krzysztof Kozlowskid13733f2013-12-17 14:23:18 +0100904 regmap_update_bits(s5m8767->iodev->regmap_pmic,
905 S5M8767_REG_DVSRAMP, 0x02, 0x02);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900906
907 if (s5m8767->buck2_ramp || s5m8767->buck3_ramp
908 || s5m8767->buck4_ramp) {
Krzysztof Kozlowskif37ff6b2013-12-17 14:23:17 +0100909 unsigned int val;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900910 switch (s5m8767->ramp_delay) {
Sangbeom Kim1af142c2012-06-13 17:27:54 +0900911 case 5:
Krzysztof Kozlowskif37ff6b2013-12-17 14:23:17 +0100912 val = S5M8767_DVS_BUCK_RAMP_5;
Sangbeom Kim1af142c2012-06-13 17:27:54 +0900913 break;
914 case 10:
Krzysztof Kozlowskif37ff6b2013-12-17 14:23:17 +0100915 val = S5M8767_DVS_BUCK_RAMP_10;
Axel Lin047ec222012-01-12 14:57:09 +0800916 break;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900917 case 25:
Krzysztof Kozlowskif37ff6b2013-12-17 14:23:17 +0100918 val = S5M8767_DVS_BUCK_RAMP_25;
Axel Lin047ec222012-01-12 14:57:09 +0800919 break;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900920 case 50:
Krzysztof Kozlowskif37ff6b2013-12-17 14:23:17 +0100921 val = S5M8767_DVS_BUCK_RAMP_50;
Axel Lin047ec222012-01-12 14:57:09 +0800922 break;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900923 case 100:
Krzysztof Kozlowskif37ff6b2013-12-17 14:23:17 +0100924 val = S5M8767_DVS_BUCK_RAMP_100;
Axel Lin047ec222012-01-12 14:57:09 +0800925 break;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900926 default:
Krzysztof Kozlowskif37ff6b2013-12-17 14:23:17 +0100927 val = S5M8767_DVS_BUCK_RAMP_10;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900928 }
Krzysztof Kozlowskid13733f2013-12-17 14:23:18 +0100929 regmap_update_bits(s5m8767->iodev->regmap_pmic,
930 S5M8767_REG_DVSRAMP,
931 S5M8767_DVS_BUCK_RAMP_MASK,
932 val << S5M8767_DVS_BUCK_RAMP_SHIFT);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900933 }
934
935 for (i = 0; i < pdata->num_regulators; i++) {
Sangbeom Kim63063bf2012-07-11 21:06:55 +0900936 const struct sec_voltage_desc *desc;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900937 int id = pdata->regulators[i].id;
Axel Lin9c4c6052014-03-21 14:54:08 +0800938 int enable_reg, enable_val;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900939
940 desc = reg_voltage_map[id];
Axel Line2eb1692012-06-18 14:25:27 +0800941 if (desc) {
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900942 regulators[id].n_voltages =
943 (desc->max - desc->min) / desc->step + 1;
Axel Line2eb1692012-06-18 14:25:27 +0800944 regulators[id].min_uV = desc->min;
945 regulators[id].uV_step = desc->step;
Axel Lin31a932e2013-01-18 09:55:06 +0800946 regulators[id].vsel_reg =
947 s5m8767_get_vsel_reg(id, s5m8767);
948 if (id < S5M8767_BUCK1)
949 regulators[id].vsel_mask = 0x3f;
950 else
951 regulators[id].vsel_mask = 0xff;
Axel Lin9c4c6052014-03-21 14:54:08 +0800952
953 s5m8767_get_register(s5m8767, id, &enable_reg,
954 &enable_val);
955 regulators[id].enable_reg = enable_reg;
956 regulators[id].enable_mask = S5M8767_ENCTRL_MASK;
957 regulators[id].enable_val = enable_val;
Axel Line2eb1692012-06-18 14:25:27 +0800958 }
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900959
Mark Brownc1727082012-04-04 00:50:22 +0100960 config.dev = s5m8767->dev;
961 config.init_data = pdata->regulators[i].initdata;
962 config.driver_data = s5m8767;
Krzysztof Kozlowski3e1e4a52013-12-12 17:12:31 -0800963 config.regmap = iodev->regmap_pmic;
Amit Daniel Kachhap26aec0092013-02-03 15:49:47 -0800964 config.of_node = pdata->regulators[i].reg_node;
Krzysztof Kozlowskiee1e0992014-01-24 14:37:57 +0100965 if (pdata->regulators[i].ext_control_gpio)
966 s5m8767_regulator_config_ext_control(s5m8767,
967 &pdata->regulators[i], &config);
Mark Brownc1727082012-04-04 00:50:22 +0100968
Mark Brownf0db4752013-08-31 11:57:34 +0100969 rdev[i] = devm_regulator_register(&pdev->dev, &regulators[id],
970 &config);
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900971 if (IS_ERR(rdev[i])) {
972 ret = PTR_ERR(rdev[i]);
973 dev_err(s5m8767->dev, "regulator init failed for %d\n",
974 id);
Mark Brownf0db4752013-08-31 11:57:34 +0100975 return ret;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900976 }
Krzysztof Kozlowskiee1e0992014-01-24 14:37:57 +0100977
978 if (pdata->regulators[i].ext_control_gpio) {
979 ret = s5m8767_enable_ext_control(s5m8767, rdev[i]);
980 if (ret < 0) {
981 dev_err(s5m8767->dev,
982 "failed to enable gpio control over %s: %d\n",
983 rdev[i]->desc->name, ret);
984 return ret;
985 }
986 }
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900987 }
988
989 return 0;
Sangbeom Kim9767ec72012-01-09 19:10:25 +0900990}
991
992static const struct platform_device_id s5m8767_pmic_id[] = {
993 { "s5m8767-pmic", 0},
994 { },
995};
996MODULE_DEVICE_TABLE(platform, s5m8767_pmic_id);
997
998static struct platform_driver s5m8767_pmic_driver = {
999 .driver = {
1000 .name = "s5m8767-pmic",
1001 .owner = THIS_MODULE,
1002 },
1003 .probe = s5m8767_pmic_probe,
Sangbeom Kim9767ec72012-01-09 19:10:25 +09001004 .id_table = s5m8767_pmic_id,
1005};
1006
1007static int __init s5m8767_pmic_init(void)
1008{
1009 return platform_driver_register(&s5m8767_pmic_driver);
1010}
1011subsys_initcall(s5m8767_pmic_init);
1012
1013static void __exit s5m8767_pmic_exit(void)
1014{
1015 platform_driver_unregister(&s5m8767_pmic_driver);
1016}
1017module_exit(s5m8767_pmic_exit);
1018
1019/* Module information */
1020MODULE_AUTHOR("Sangbeom Kim <sbkim73@samsung.com>");
1021MODULE_DESCRIPTION("SAMSUNG S5M8767 Regulator Driver");
1022MODULE_LICENSE("GPL");