blob: 987fa34627feb5c45a7f260080977226bd44c8d5 [file] [log] [blame]
Laxman Dewangan6ffc3272012-04-04 12:44:00 +05301/*
2 * Regulator driver for RICOH RC5T583 power management chip.
3 *
4 * Copyright (c) 2011-2012, NVIDIA CORPORATION. All rights reserved.
5 * Author: Laxman dewangan <ldewangan@nvidia.com>
6 *
7 * based on code
8 * Copyright (C) 2011 RICOH COMPANY,LTD
9 *
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms and conditions of the GNU General Public License,
13 * version 2, as published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 * more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 *
23 */
24
25#include <linux/module.h>
Laxman Dewangan6ffc3272012-04-04 12:44:00 +053026#include <linux/init.h>
27#include <linux/slab.h>
28#include <linux/err.h>
29#include <linux/platform_device.h>
30#include <linux/regulator/driver.h>
31#include <linux/regulator/machine.h>
32#include <linux/gpio.h>
33#include <linux/mfd/rc5t583.h>
34
35struct rc5t583_regulator_info {
36 int deepsleep_id;
37
38 /* Regulator register address.*/
Laxman Dewangan6ffc3272012-04-04 12:44:00 +053039 uint8_t reg_disc_reg;
40 uint8_t disc_bit;
Laxman Dewangan6ffc3272012-04-04 12:44:00 +053041 uint8_t deepsleep_reg;
42
43 /* Chip constraints on regulator behavior */
Laxman Dewangan6ffc3272012-04-04 12:44:00 +053044 int max_uV;
Laxman Dewangan6ffc3272012-04-04 12:44:00 +053045
46 /* Regulator specific turn-on delay and voltage settling time*/
47 int enable_uv_per_us;
48 int change_uv_per_us;
49
50 /* Used by regulator core */
51 struct regulator_desc desc;
52};
53
54struct rc5t583_regulator {
55 struct rc5t583_regulator_info *reg_info;
56
57 /* Devices */
58 struct device *dev;
59 struct rc5t583 *mfd;
60 struct regulator_dev *rdev;
61};
62
Laxman Dewangan6ffc3272012-04-04 12:44:00 +053063static int rc5t583_regulator_enable_time(struct regulator_dev *rdev)
64{
65 struct rc5t583_regulator *reg = rdev_get_drvdata(rdev);
Axel Lin15b397d72012-04-24 09:56:43 +080066 int vsel = regulator_get_voltage_sel_regmap(rdev);
Axel Lin3209be12012-05-14 10:54:46 +080067 int curr_uV = regulator_list_voltage_linear(rdev, vsel);
Axel Lin15b397d72012-04-24 09:56:43 +080068
Laxman Dewangan6ffc3272012-04-04 12:44:00 +053069 return DIV_ROUND_UP(curr_uV, reg->reg_info->enable_uv_per_us);
70}
71
72static int rc5t583_set_voltage_time_sel(struct regulator_dev *rdev,
73 unsigned int old_selector, unsigned int new_selector)
74{
75 struct rc5t583_regulator *reg = rdev_get_drvdata(rdev);
76 int old_uV, new_uV;
Axel Lin3209be12012-05-14 10:54:46 +080077 old_uV = regulator_list_voltage_linear(rdev, old_selector);
Laxman Dewangan6ffc3272012-04-04 12:44:00 +053078
79 if (old_uV < 0)
80 return old_uV;
81
Axel Lin3209be12012-05-14 10:54:46 +080082 new_uV = regulator_list_voltage_linear(rdev, new_selector);
Laxman Dewangan6ffc3272012-04-04 12:44:00 +053083 if (new_uV < 0)
84 return new_uV;
85
86 return DIV_ROUND_UP(abs(old_uV - new_uV),
87 reg->reg_info->change_uv_per_us);
88}
89
90
91static struct regulator_ops rc5t583_ops = {
Axel Lin5bb69362012-04-17 14:11:31 +080092 .is_enabled = regulator_is_enabled_regmap,
93 .enable = regulator_enable_regmap,
94 .disable = regulator_disable_regmap,
Laxman Dewangan6ffc3272012-04-04 12:44:00 +053095 .enable_time = rc5t583_regulator_enable_time,
Axel Lin15b397d72012-04-24 09:56:43 +080096 .get_voltage_sel = regulator_get_voltage_sel_regmap,
Axel Lin70e5f642012-05-14 10:55:50 +080097 .set_voltage_sel = regulator_set_voltage_sel_regmap,
Axel Lin3209be12012-05-14 10:54:46 +080098 .list_voltage = regulator_list_voltage_linear,
Axel Lin70e5f642012-05-14 10:55:50 +080099 .map_voltage = regulator_map_voltage_linear,
Laxman Dewangan6ffc3272012-04-04 12:44:00 +0530100 .set_voltage_time_sel = rc5t583_set_voltage_time_sel,
101};
102
Axel Lin95e301b2012-04-06 08:01:36 +0800103#define RC5T583_REG(_id, _en_reg, _en_bit, _disc_reg, _disc_bit, \
104 _vout_mask, _min_mv, _max_mv, _step_uV, _enable_mv) \
Laxman Dewangan6ffc3272012-04-04 12:44:00 +0530105{ \
Laxman Dewangan6ffc3272012-04-04 12:44:00 +0530106 .reg_disc_reg = RC5T583_REG_##_disc_reg, \
107 .disc_bit = _disc_bit, \
Axel Lin95e301b2012-04-06 08:01:36 +0800108 .deepsleep_reg = RC5T583_REG_##_id##DAC_DS, \
Laxman Dewangan6ffc3272012-04-04 12:44:00 +0530109 .max_uV = _max_mv * 1000, \
Laxman Dewangan6ffc3272012-04-04 12:44:00 +0530110 .enable_uv_per_us = _enable_mv * 1000, \
111 .change_uv_per_us = 40 * 1000, \
112 .deepsleep_id = RC5T583_DS_##_id, \
113 .desc = { \
114 .name = "rc5t583-regulator-"#_id, \
115 .id = RC5T583_REGULATOR_##_id, \
Axel Line3a73842012-04-05 14:04:48 +0800116 .n_voltages = (_max_mv - _min_mv) * 1000 / _step_uV + 1, \
Laxman Dewangan6ffc3272012-04-04 12:44:00 +0530117 .ops = &rc5t583_ops, \
118 .type = REGULATOR_VOLTAGE, \
119 .owner = THIS_MODULE, \
Axel Lin15b397d72012-04-24 09:56:43 +0800120 .vsel_reg = RC5T583_REG_##_id##DAC, \
121 .vsel_mask = _vout_mask, \
Axel Lin5bb69362012-04-17 14:11:31 +0800122 .enable_reg = RC5T583_REG_##_en_reg, \
123 .enable_mask = BIT(_en_bit), \
Axel Lin3209be12012-05-14 10:54:46 +0800124 .min_uV = _min_mv * 1000, \
125 .uV_step = _step_uV, \
Laxman Dewangan6ffc3272012-04-04 12:44:00 +0530126 }, \
127}
128
129static struct rc5t583_regulator_info rc5t583_reg_info[RC5T583_REGULATOR_MAX] = {
Axel Lin95e301b2012-04-06 08:01:36 +0800130 RC5T583_REG(DC0, DC0CTL, 0, DC0CTL, 1, 0x7F, 700, 1500, 12500, 4),
131 RC5T583_REG(DC1, DC1CTL, 0, DC1CTL, 1, 0x7F, 700, 1500, 12500, 14),
132 RC5T583_REG(DC2, DC2CTL, 0, DC2CTL, 1, 0x7F, 900, 2400, 12500, 14),
133 RC5T583_REG(DC3, DC3CTL, 0, DC3CTL, 1, 0x7F, 900, 2400, 12500, 14),
134 RC5T583_REG(LDO0, LDOEN2, 0, LDODIS2, 0, 0x7F, 900, 3400, 25000, 160),
135 RC5T583_REG(LDO1, LDOEN2, 1, LDODIS2, 1, 0x7F, 900, 3400, 25000, 160),
136 RC5T583_REG(LDO2, LDOEN2, 2, LDODIS2, 2, 0x7F, 900, 3400, 25000, 160),
137 RC5T583_REG(LDO3, LDOEN2, 3, LDODIS2, 3, 0x7F, 900, 3400, 25000, 160),
138 RC5T583_REG(LDO4, LDOEN2, 4, LDODIS2, 4, 0x3F, 750, 1500, 12500, 133),
139 RC5T583_REG(LDO5, LDOEN2, 5, LDODIS2, 5, 0x7F, 900, 3400, 25000, 267),
140 RC5T583_REG(LDO6, LDOEN2, 6, LDODIS2, 6, 0x7F, 900, 3400, 25000, 133),
141 RC5T583_REG(LDO7, LDOEN2, 7, LDODIS2, 7, 0x7F, 900, 3400, 25000, 233),
142 RC5T583_REG(LDO8, LDOEN1, 0, LDODIS1, 0, 0x7F, 900, 3400, 25000, 233),
143 RC5T583_REG(LDO9, LDOEN1, 1, LDODIS1, 1, 0x7F, 900, 3400, 25000, 133),
Laxman Dewangan6ffc3272012-04-04 12:44:00 +0530144};
145
146static int __devinit rc5t583_regulator_probe(struct platform_device *pdev)
147{
148 struct rc5t583 *rc5t583 = dev_get_drvdata(pdev->dev.parent);
149 struct rc5t583_platform_data *pdata = dev_get_platdata(rc5t583->dev);
150 struct regulator_init_data *reg_data;
Mark Brownc1727082012-04-04 00:50:22 +0100151 struct regulator_config config = { };
Laxman Dewangan6ffc3272012-04-04 12:44:00 +0530152 struct rc5t583_regulator *reg = NULL;
153 struct rc5t583_regulator *regs;
154 struct regulator_dev *rdev;
155 struct rc5t583_regulator_info *ri;
156 int ret;
157 int id;
158
159 if (!pdata) {
160 dev_err(&pdev->dev, "No platform data, exiting...\n");
161 return -ENODEV;
162 }
163
164 regs = devm_kzalloc(&pdev->dev, RC5T583_REGULATOR_MAX *
165 sizeof(struct rc5t583_regulator), GFP_KERNEL);
166 if (!regs) {
167 dev_err(&pdev->dev, "Memory allocation failed exiting..\n");
168 return -ENOMEM;
169 }
170
171
172 for (id = 0; id < RC5T583_REGULATOR_MAX; ++id) {
173 reg_data = pdata->reg_init_data[id];
174
175 /* No need to register if there is no regulator data */
176 if (!reg_data)
177 continue;
178
179 reg = &regs[id];
180 ri = &rc5t583_reg_info[id];
181 reg->reg_info = ri;
182 reg->mfd = rc5t583;
183 reg->dev = &pdev->dev;
184
185 if (ri->deepsleep_id == RC5T583_DS_NONE)
186 goto skip_ext_pwr_config;
187
188 ret = rc5t583_ext_power_req_config(rc5t583->dev,
189 ri->deepsleep_id,
190 pdata->regulator_ext_pwr_control[id],
191 pdata->regulator_deepsleep_slot[id]);
192 /*
193 * Configuring external control is not a major issue,
194 * just give warning.
195 */
196 if (ret < 0)
197 dev_warn(&pdev->dev,
198 "Failed to configure ext control %d\n", id);
199
200skip_ext_pwr_config:
Mark Brownc1727082012-04-04 00:50:22 +0100201 config.dev = &pdev->dev;
202 config.init_data = reg_data;
203 config.driver_data = reg;
Axel Lin5bb69362012-04-17 14:11:31 +0800204 config.regmap = rc5t583->regmap;
Mark Brownc1727082012-04-04 00:50:22 +0100205
206 rdev = regulator_register(&ri->desc, &config);
Axel Lina69df8a2012-04-04 19:52:35 +0800207 if (IS_ERR(rdev)) {
Laxman Dewangan6ffc3272012-04-04 12:44:00 +0530208 dev_err(&pdev->dev, "Failed to register regulator %s\n",
209 ri->desc.name);
210 ret = PTR_ERR(rdev);
211 goto clean_exit;
212 }
213 reg->rdev = rdev;
214 }
215 platform_set_drvdata(pdev, regs);
216 return 0;
217
218clean_exit:
Axel Lina69df8a2012-04-04 19:52:35 +0800219 while (--id >= 0)
Laxman Dewangan6ffc3272012-04-04 12:44:00 +0530220 regulator_unregister(regs[id].rdev);
221
222 return ret;
223}
224
225static int __devexit rc5t583_regulator_remove(struct platform_device *pdev)
226{
227 struct rc5t583_regulator *regs = platform_get_drvdata(pdev);
228 int id;
229
230 for (id = 0; id < RC5T583_REGULATOR_MAX; ++id)
231 regulator_unregister(regs[id].rdev);
232 return 0;
233}
234
235static struct platform_driver rc5t583_regulator_driver = {
236 .driver = {
237 .name = "rc5t583-regulator",
238 .owner = THIS_MODULE,
239 },
240 .probe = rc5t583_regulator_probe,
241 .remove = __devexit_p(rc5t583_regulator_remove),
242};
243
244static int __init rc5t583_regulator_init(void)
245{
246 return platform_driver_register(&rc5t583_regulator_driver);
247}
248subsys_initcall(rc5t583_regulator_init);
249
250static void __exit rc5t583_regulator_exit(void)
251{
252 platform_driver_unregister(&rc5t583_regulator_driver);
253}
254module_exit(rc5t583_regulator_exit);
255
256MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
257MODULE_DESCRIPTION("RC5T583 regulator driver");
258MODULE_ALIAS("platform:rc5t583-regulator");
Laxman Dewangan4eb06452012-04-06 10:58:33 +0530259MODULE_LICENSE("GPL v2");