2 * max8952.c - Voltage and current regulation for the Maxim 8952
4 * Copyright (C) 2010 Samsung Electronics
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.
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.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/module.h>
23 #include <linux/init.h>
24 #include <linux/i2c.h>
25 #include <linux/err.h>
26 #include <linux/platform_device.h>
27 #include <linux/regulator/driver.h>
28 #include <linux/regulator/max8952.h>
29 #include <linux/gpio.h>
30 #include <linux/gpio/consumer.h>
33 #include <linux/of_gpio.h>
34 #include <linux/regulator/of_regulator.h>
35 #include <linux/slab.h>
51 struct i2c_client *client;
52 struct max8952_platform_data *pdata;
58 static int max8952_read_reg(struct max8952_data *max8952, u8 reg)
60 int ret = i2c_smbus_read_byte_data(max8952->client, reg);
68 static int max8952_write_reg(struct max8952_data *max8952,
71 return i2c_smbus_write_byte_data(max8952->client, reg, value);
74 static int max8952_list_voltage(struct regulator_dev *rdev,
75 unsigned int selector)
77 struct max8952_data *max8952 = rdev_get_drvdata(rdev);
79 if (rdev_get_id(rdev) != 0)
82 return (max8952->pdata->dvs_mode[selector] * 10 + 770) * 1000;
85 static int max8952_get_voltage_sel(struct regulator_dev *rdev)
87 struct max8952_data *max8952 = rdev_get_drvdata(rdev);
98 static int max8952_set_voltage_sel(struct regulator_dev *rdev,
101 struct max8952_data *max8952 = rdev_get_drvdata(rdev);
103 if (!gpio_is_valid(max8952->pdata->gpio_vid0) ||
104 !gpio_is_valid(max8952->pdata->gpio_vid1)) {
105 /* DVS not supported */
109 max8952->vid0 = selector & 0x1;
110 max8952->vid1 = (selector >> 1) & 0x1;
111 gpio_set_value(max8952->pdata->gpio_vid0, max8952->vid0);
112 gpio_set_value(max8952->pdata->gpio_vid1, max8952->vid1);
117 static const struct regulator_ops max8952_ops = {
118 .list_voltage = max8952_list_voltage,
119 .get_voltage_sel = max8952_get_voltage_sel,
120 .set_voltage_sel = max8952_set_voltage_sel,
123 static const struct regulator_desc regulator = {
124 .name = "MAX8952_VOUT",
126 .n_voltages = MAX8952_NUM_DVS_MODE,
128 .type = REGULATOR_VOLTAGE,
129 .owner = THIS_MODULE,
133 static const struct of_device_id max8952_dt_match[] = {
134 { .compatible = "maxim,max8952" },
137 MODULE_DEVICE_TABLE(of, max8952_dt_match);
139 static struct max8952_platform_data *max8952_parse_dt(struct device *dev)
141 struct max8952_platform_data *pd;
142 struct device_node *np = dev->of_node;
146 pd = devm_kzalloc(dev, sizeof(*pd), GFP_KERNEL);
150 pd->gpio_vid0 = of_get_named_gpio(np, "max8952,vid-gpios", 0);
151 pd->gpio_vid1 = of_get_named_gpio(np, "max8952,vid-gpios", 1);
153 if (of_property_read_u32(np, "max8952,default-mode", &pd->default_mode))
154 dev_warn(dev, "Default mode not specified, assuming 0\n");
156 ret = of_property_read_u32_array(np, "max8952,dvs-mode-microvolt",
157 pd->dvs_mode, ARRAY_SIZE(pd->dvs_mode));
159 dev_err(dev, "max8952,dvs-mode-microvolt property not specified");
163 for (i = 0; i < ARRAY_SIZE(pd->dvs_mode); ++i) {
164 if (pd->dvs_mode[i] < 770000 || pd->dvs_mode[i] > 1400000) {
165 dev_err(dev, "DVS voltage %d out of range\n", i);
168 pd->dvs_mode[i] = (pd->dvs_mode[i] - 770000) / 10000;
171 if (of_property_read_u32(np, "max8952,sync-freq", &pd->sync_freq))
172 dev_warn(dev, "max8952,sync-freq property not specified, defaulting to 26MHz\n");
174 if (of_property_read_u32(np, "max8952,ramp-speed", &pd->ramp_speed))
175 dev_warn(dev, "max8952,ramp-speed property not specified, defaulting to 32mV/us\n");
177 pd->reg_data = of_get_regulator_init_data(dev, np, ®ulator);
179 dev_err(dev, "Failed to parse regulator init data\n");
186 static struct max8952_platform_data *max8952_parse_dt(struct device *dev)
192 static int max8952_pmic_probe(struct i2c_client *client,
193 const struct i2c_device_id *i2c_id)
195 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
196 struct max8952_platform_data *pdata = dev_get_platdata(&client->dev);
197 struct regulator_config config = { };
198 struct max8952_data *max8952;
199 struct regulator_dev *rdev;
200 struct gpio_desc *gpiod;
201 enum gpiod_flags gflags;
203 int ret = 0, err = 0;
205 if (client->dev.of_node)
206 pdata = max8952_parse_dt(&client->dev);
209 dev_err(&client->dev, "Require the platform data\n");
213 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
216 max8952 = devm_kzalloc(&client->dev, sizeof(struct max8952_data),
221 max8952->client = client;
222 max8952->pdata = pdata;
224 config.dev = &client->dev;
225 config.init_data = pdata->reg_data;
226 config.driver_data = max8952;
227 config.of_node = client->dev.of_node;
229 if (pdata->reg_data->constraints.boot_on)
230 gflags = GPIOD_OUT_HIGH;
232 gflags = GPIOD_OUT_LOW;
233 gflags |= GPIOD_FLAGS_BIT_NONEXCLUSIVE;
234 gpiod = devm_gpiod_get_optional(&client->dev,
238 return PTR_ERR(gpiod);
240 config.ena_gpiod = gpiod;
242 rdev = devm_regulator_register(&client->dev, ®ulator, &config);
245 dev_err(&client->dev, "regulator init failed (%d)\n", ret);
249 max8952->vid0 = pdata->default_mode & 0x1;
250 max8952->vid1 = (pdata->default_mode >> 1) & 0x1;
252 if (gpio_is_valid(pdata->gpio_vid0) &&
253 gpio_is_valid(pdata->gpio_vid1)) {
254 unsigned long gpio_flags;
256 gpio_flags = max8952->vid0 ?
257 GPIOF_OUT_INIT_HIGH : GPIOF_OUT_INIT_LOW;
258 if (devm_gpio_request_one(&client->dev, pdata->gpio_vid0,
259 gpio_flags, "MAX8952 VID0"))
262 gpio_flags = max8952->vid1 ?
263 GPIOF_OUT_INIT_HIGH : GPIOF_OUT_INIT_LOW;
264 if (devm_gpio_request_one(&client->dev, pdata->gpio_vid1,
265 gpio_flags, "MAX8952 VID1"))
271 dev_warn(&client->dev, "VID0/1 gpio invalid: "
272 "DVS not available.\n");
276 pdata->gpio_vid0 = -1;
277 pdata->gpio_vid1 = -1;
279 /* Disable Pulldown of EN only */
280 max8952_write_reg(max8952, MAX8952_REG_CONTROL, 0x60);
282 dev_err(&client->dev, "DVS modes disabled because VID0 and VID1"
283 " do not have proper controls.\n");
286 * Disable Pulldown on EN, VID0, VID1 to reduce
287 * leakage current of MAX8952 assuming that MAX8952
288 * is turned on (EN==1). Note that without having VID0/1
289 * properly connected, turning pulldown off can be
290 * problematic. Thus, turn this off only when they are
291 * controllable by GPIO.
293 max8952_write_reg(max8952, MAX8952_REG_CONTROL, 0x0);
296 max8952_write_reg(max8952, MAX8952_REG_MODE0,
297 (max8952_read_reg(max8952,
298 MAX8952_REG_MODE0) & 0xC0) |
299 (pdata->dvs_mode[0] & 0x3F));
300 max8952_write_reg(max8952, MAX8952_REG_MODE1,
301 (max8952_read_reg(max8952,
302 MAX8952_REG_MODE1) & 0xC0) |
303 (pdata->dvs_mode[1] & 0x3F));
304 max8952_write_reg(max8952, MAX8952_REG_MODE2,
305 (max8952_read_reg(max8952,
306 MAX8952_REG_MODE2) & 0xC0) |
307 (pdata->dvs_mode[2] & 0x3F));
308 max8952_write_reg(max8952, MAX8952_REG_MODE3,
309 (max8952_read_reg(max8952,
310 MAX8952_REG_MODE3) & 0xC0) |
311 (pdata->dvs_mode[3] & 0x3F));
313 max8952_write_reg(max8952, MAX8952_REG_SYNC,
314 (max8952_read_reg(max8952, MAX8952_REG_SYNC) & 0x3F) |
315 ((pdata->sync_freq & 0x3) << 6));
316 max8952_write_reg(max8952, MAX8952_REG_RAMP,
317 (max8952_read_reg(max8952, MAX8952_REG_RAMP) & 0x1F) |
318 ((pdata->ramp_speed & 0x7) << 5));
320 i2c_set_clientdata(client, max8952);
325 static const struct i2c_device_id max8952_ids[] = {
329 MODULE_DEVICE_TABLE(i2c, max8952_ids);
331 static struct i2c_driver max8952_pmic_driver = {
332 .probe = max8952_pmic_probe,
335 .of_match_table = of_match_ptr(max8952_dt_match),
337 .id_table = max8952_ids,
340 static int __init max8952_pmic_init(void)
342 return i2c_add_driver(&max8952_pmic_driver);
344 subsys_initcall(max8952_pmic_init);
346 static void __exit max8952_pmic_exit(void)
348 i2c_del_driver(&max8952_pmic_driver);
350 module_exit(max8952_pmic_exit);
352 MODULE_DESCRIPTION("MAXIM 8952 voltage regulator driver");
354 MODULE_LICENSE("GPL");