blob: 01570a789cf186ba091b0d2b7670ddec97042645 [file] [log] [blame]
Graeme Gregory27c67502011-05-02 16:19:46 -05001/*
2 * tps65910.c -- TI TPS6591x
3 *
4 * Copyright 2010 Texas Instruments Inc.
5 *
6 * Author: Graeme Gregory <gg@slimlogic.co.uk>
7 * Author: Jorge Eduardo Candelaria <jedu@slimlogic.co.uk>
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 *
14 */
15
16#include <linux/module.h>
17#include <linux/moduleparam.h>
18#include <linux/init.h>
Laxman Dewangandc9913a2012-02-21 18:21:34 +053019#include <linux/err.h>
Graeme Gregory27c67502011-05-02 16:19:46 -050020#include <linux/slab.h>
21#include <linux/i2c.h>
22#include <linux/gpio.h>
23#include <linux/mfd/core.h>
Laxman Dewangandc9913a2012-02-21 18:21:34 +053024#include <linux/regmap.h>
Graeme Gregory27c67502011-05-02 16:19:46 -050025#include <linux/mfd/tps65910.h>
Rhyland Kleincd4209c2012-05-11 11:36:26 +020026#include <linux/of_device.h>
Graeme Gregory27c67502011-05-02 16:19:46 -050027
28static struct mfd_cell tps65910s[] = {
29 {
30 .name = "tps65910-pmic",
31 },
32 {
33 .name = "tps65910-rtc",
34 },
35 {
36 .name = "tps65910-power",
37 },
38};
39
40
Laxman Dewangandc9913a2012-02-21 18:21:34 +053041static bool is_volatile_reg(struct device *dev, unsigned int reg)
42{
43 struct tps65910 *tps65910 = dev_get_drvdata(dev);
44
45 /*
46 * Caching all regulator registers.
47 * All regualator register address range is same for
48 * TPS65910 and TPS65911
49 */
50 if ((reg >= TPS65910_VIO) && (reg <= TPS65910_VDAC)) {
51 /* Check for non-existing register */
52 if (tps65910_chip_id(tps65910) == TPS65910)
53 if ((reg == TPS65911_VDDCTRL_OP) ||
54 (reg == TPS65911_VDDCTRL_SR))
55 return true;
56 return false;
57 }
58 return true;
59}
60
Laxman Dewangan39ecb032012-03-07 18:46:05 +053061static const struct regmap_config tps65910_regmap_config = {
Laxman Dewangandc9913a2012-02-21 18:21:34 +053062 .reg_bits = 8,
63 .val_bits = 8,
64 .volatile_reg = is_volatile_reg,
Laxman Dewangan3bf6bf92012-05-09 18:40:54 +053065 .max_register = TPS65910_MAX_REGISTER - 1,
Laxman Dewangandc9913a2012-02-21 18:21:34 +053066 .cache_type = REGCACHE_RBTREE,
67};
68
Mark Brown63745d42012-05-07 10:03:19 +010069static int __devinit tps65910_sleepinit(struct tps65910 *tps65910,
Laxman Dewangan201cf052012-04-18 12:13:51 +020070 struct tps65910_board *pmic_pdata)
71{
72 struct device *dev = NULL;
73 int ret = 0;
74
75 dev = tps65910->dev;
76
77 if (!pmic_pdata->en_dev_slp)
78 return 0;
79
80 /* enabling SLEEP device state */
Rhyland Klein3f7e8272012-05-08 11:42:38 -070081 ret = tps65910_reg_set_bits(tps65910, TPS65910_DEVCTRL,
Laxman Dewangan201cf052012-04-18 12:13:51 +020082 DEVCTRL_DEV_SLP_MASK);
83 if (ret < 0) {
84 dev_err(dev, "set dev_slp failed: %d\n", ret);
85 goto err_sleep_init;
86 }
87
88 /* Return if there is no sleep keepon data. */
89 if (!pmic_pdata->slp_keepon)
90 return 0;
91
92 if (pmic_pdata->slp_keepon->therm_keepon) {
Rhyland Klein3f7e8272012-05-08 11:42:38 -070093 ret = tps65910_reg_set_bits(tps65910,
94 TPS65910_SLEEP_KEEP_RES_ON,
Laxman Dewangan201cf052012-04-18 12:13:51 +020095 SLEEP_KEEP_RES_ON_THERM_KEEPON_MASK);
96 if (ret < 0) {
97 dev_err(dev, "set therm_keepon failed: %d\n", ret);
98 goto disable_dev_slp;
99 }
100 }
101
102 if (pmic_pdata->slp_keepon->clkout32k_keepon) {
Rhyland Klein3f7e8272012-05-08 11:42:38 -0700103 ret = tps65910_reg_set_bits(tps65910,
104 TPS65910_SLEEP_KEEP_RES_ON,
Laxman Dewangan201cf052012-04-18 12:13:51 +0200105 SLEEP_KEEP_RES_ON_CLKOUT32K_KEEPON_MASK);
106 if (ret < 0) {
107 dev_err(dev, "set clkout32k_keepon failed: %d\n", ret);
108 goto disable_dev_slp;
109 }
110 }
111
112 if (pmic_pdata->slp_keepon->i2chs_keepon) {
Rhyland Klein3f7e8272012-05-08 11:42:38 -0700113 ret = tps65910_reg_set_bits(tps65910,
114 TPS65910_SLEEP_KEEP_RES_ON,
Laxman Dewangan201cf052012-04-18 12:13:51 +0200115 SLEEP_KEEP_RES_ON_I2CHS_KEEPON_MASK);
116 if (ret < 0) {
117 dev_err(dev, "set i2chs_keepon failed: %d\n", ret);
118 goto disable_dev_slp;
119 }
120 }
121
122 return 0;
123
124disable_dev_slp:
Rhyland Klein3f7e8272012-05-08 11:42:38 -0700125 tps65910_reg_clear_bits(tps65910, TPS65910_DEVCTRL,
126 DEVCTRL_DEV_SLP_MASK);
Laxman Dewangan201cf052012-04-18 12:13:51 +0200127
128err_sleep_init:
129 return ret;
130}
131
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200132#ifdef CONFIG_OF
133static struct of_device_id tps65910_of_match[] = {
134 { .compatible = "ti,tps65910", .data = (void *)TPS65910},
135 { .compatible = "ti,tps65911", .data = (void *)TPS65911},
136 { },
137};
138MODULE_DEVICE_TABLE(of, tps65910_of_match);
139
140static struct tps65910_board *tps65910_parse_dt(struct i2c_client *client,
141 int *chip_id)
142{
143 struct device_node *np = client->dev.of_node;
144 struct tps65910_board *board_info;
145 unsigned int prop;
146 const struct of_device_id *match;
147 unsigned int prop_array[TPS6591X_MAX_NUM_GPIO];
148 int ret = 0;
149 int idx;
150
151 match = of_match_device(tps65910_of_match, &client->dev);
152 if (!match) {
153 dev_err(&client->dev, "Failed to find matching dt id\n");
154 return NULL;
155 }
156
157 *chip_id = (int)match->data;
158
159 board_info = devm_kzalloc(&client->dev, sizeof(*board_info),
160 GFP_KERNEL);
161 if (!board_info) {
162 dev_err(&client->dev, "Failed to allocate pdata\n");
163 return NULL;
164 }
165
166 ret = of_property_read_u32(np, "ti,vmbch-threshold", &prop);
167 if (!ret)
168 board_info->vmbch_threshold = prop;
169 else if (*chip_id == TPS65911)
170 dev_warn(&client->dev, "VMBCH-Threshold not specified");
171
172 ret = of_property_read_u32(np, "ti,vmbch2-threshold", &prop);
173 if (!ret)
174 board_info->vmbch2_threshold = prop;
175 else if (*chip_id == TPS65911)
176 dev_warn(&client->dev, "VMBCH2-Threshold not specified");
177
178 ret = of_property_read_u32_array(np, "ti,en-gpio-sleep",
179 prop_array, TPS6591X_MAX_NUM_GPIO);
180 if (!ret)
181 for (idx = 0; idx < ARRAY_SIZE(prop_array); idx++)
182 board_info->en_gpio_sleep[idx] = (prop_array[idx] != 0);
183 else if (ret != -EINVAL) {
184 dev_err(&client->dev,
185 "error reading property ti,en-gpio-sleep: %d\n.", ret);
186 return NULL;
187 }
188
189
190 board_info->irq = client->irq;
191 board_info->irq_base = -1;
192 board_info->gpio_base = -1;
193
194 return board_info;
195}
196#else
197static inline struct tps65910_board *tps65910_parse_dt(
198 struct i2c_client *client)
199{
200 return NULL;
201}
202#endif
Laxman Dewangan201cf052012-04-18 12:13:51 +0200203
Mark Brown63745d42012-05-07 10:03:19 +0100204static __devinit int tps65910_i2c_probe(struct i2c_client *i2c,
205 const struct i2c_device_id *id)
Graeme Gregory27c67502011-05-02 16:19:46 -0500206{
207 struct tps65910 *tps65910;
Graeme Gregory2537df72011-05-02 16:19:52 -0500208 struct tps65910_board *pmic_plat_data;
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500209 struct tps65910_platform_data *init_data;
Graeme Gregory27c67502011-05-02 16:19:46 -0500210 int ret = 0;
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200211 int chip_id = id->driver_data;
Graeme Gregory27c67502011-05-02 16:19:46 -0500212
Graeme Gregory2537df72011-05-02 16:19:52 -0500213 pmic_plat_data = dev_get_platdata(&i2c->dev);
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200214
215 if (!pmic_plat_data && i2c->dev.of_node)
216 pmic_plat_data = tps65910_parse_dt(i2c, &chip_id);
217
Graeme Gregory2537df72011-05-02 16:19:52 -0500218 if (!pmic_plat_data)
219 return -EINVAL;
220
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500221 init_data = kzalloc(sizeof(struct tps65910_platform_data), GFP_KERNEL);
222 if (init_data == NULL)
223 return -ENOMEM;
224
Graeme Gregory27c67502011-05-02 16:19:46 -0500225 tps65910 = kzalloc(sizeof(struct tps65910), GFP_KERNEL);
Jesper Juhldc7e4122011-07-06 00:29:07 +0200226 if (tps65910 == NULL) {
227 kfree(init_data);
Graeme Gregory27c67502011-05-02 16:19:46 -0500228 return -ENOMEM;
Jesper Juhldc7e4122011-07-06 00:29:07 +0200229 }
Graeme Gregory27c67502011-05-02 16:19:46 -0500230
231 i2c_set_clientdata(i2c, tps65910);
232 tps65910->dev = &i2c->dev;
233 tps65910->i2c_client = i2c;
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200234 tps65910->id = chip_id;
Graeme Gregory27c67502011-05-02 16:19:46 -0500235 mutex_init(&tps65910->io_mutex);
236
Laxman Dewangan39ecb032012-03-07 18:46:05 +0530237 tps65910->regmap = regmap_init_i2c(i2c, &tps65910_regmap_config);
Laxman Dewangandc9913a2012-02-21 18:21:34 +0530238 if (IS_ERR(tps65910->regmap)) {
239 ret = PTR_ERR(tps65910->regmap);
240 dev_err(&i2c->dev, "regmap initialization failed: %d\n", ret);
241 goto regmap_err;
242 }
243
Graeme Gregory27c67502011-05-02 16:19:46 -0500244 ret = mfd_add_devices(tps65910->dev, -1,
245 tps65910s, ARRAY_SIZE(tps65910s),
246 NULL, 0);
247 if (ret < 0)
248 goto err;
249
Jesper Juhlb1224cd2011-07-13 23:22:26 +0200250 init_data->irq = pmic_plat_data->irq;
Laxman Dewangan17731402012-01-18 20:19:16 +0530251 init_data->irq_base = pmic_plat_data->irq_base;
Jesper Juhlb1224cd2011-07-13 23:22:26 +0200252
Graeme Gregory2537df72011-05-02 16:19:52 -0500253 tps65910_gpio_init(tps65910, pmic_plat_data->gpio_base);
254
Afzal Mohammed1e351a92011-12-14 16:05:35 +0530255 tps65910_irq_init(tps65910, init_data->irq, init_data);
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500256
Laxman Dewangan201cf052012-04-18 12:13:51 +0200257 tps65910_sleepinit(tps65910, pmic_plat_data);
258
Jesper Juhldc7e4122011-07-06 00:29:07 +0200259 kfree(init_data);
Graeme Gregory27c67502011-05-02 16:19:46 -0500260 return ret;
261
262err:
Laxman Dewangandc9913a2012-02-21 18:21:34 +0530263 regmap_exit(tps65910->regmap);
264regmap_err:
Graeme Gregory27c67502011-05-02 16:19:46 -0500265 kfree(tps65910);
Jesper Juhldc7e4122011-07-06 00:29:07 +0200266 kfree(init_data);
Graeme Gregory27c67502011-05-02 16:19:46 -0500267 return ret;
268}
269
Mark Brown63745d42012-05-07 10:03:19 +0100270static __devexit int tps65910_i2c_remove(struct i2c_client *i2c)
Graeme Gregory27c67502011-05-02 16:19:46 -0500271{
272 struct tps65910 *tps65910 = i2c_get_clientdata(i2c);
273
Mark Brownec2328c2011-06-20 11:47:55 +0100274 tps65910_irq_exit(tps65910);
Afzal Mohammed1e351a92011-12-14 16:05:35 +0530275 mfd_remove_devices(tps65910->dev);
Laxman Dewangandc9913a2012-02-21 18:21:34 +0530276 regmap_exit(tps65910->regmap);
Graeme Gregory27c67502011-05-02 16:19:46 -0500277 kfree(tps65910);
278
279 return 0;
280}
281
282static const struct i2c_device_id tps65910_i2c_id[] = {
Jorge Eduardo Candelaria79557052011-05-16 18:34:59 -0500283 { "tps65910", TPS65910 },
284 { "tps65911", TPS65911 },
Graeme Gregory27c67502011-05-02 16:19:46 -0500285 { }
286};
287MODULE_DEVICE_TABLE(i2c, tps65910_i2c_id);
288
289
290static struct i2c_driver tps65910_i2c_driver = {
291 .driver = {
292 .name = "tps65910",
293 .owner = THIS_MODULE,
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200294 .of_match_table = of_match_ptr(tps65910_of_match),
Graeme Gregory27c67502011-05-02 16:19:46 -0500295 },
296 .probe = tps65910_i2c_probe,
Mark Brown63745d42012-05-07 10:03:19 +0100297 .remove = __devexit_p(tps65910_i2c_remove),
Graeme Gregory27c67502011-05-02 16:19:46 -0500298 .id_table = tps65910_i2c_id,
299};
300
301static int __init tps65910_i2c_init(void)
302{
303 return i2c_add_driver(&tps65910_i2c_driver);
304}
305/* init early so consumer devices can complete system boot */
306subsys_initcall(tps65910_i2c_init);
307
308static void __exit tps65910_i2c_exit(void)
309{
310 i2c_del_driver(&tps65910_i2c_driver);
311}
312module_exit(tps65910_i2c_exit);
313
314MODULE_AUTHOR("Graeme Gregory <gg@slimlogic.co.uk>");
315MODULE_AUTHOR("Jorge Eduardo Candelaria <jedu@slimlogic.co.uk>");
316MODULE_DESCRIPTION("TPS6591x chip family multi-function driver");
317MODULE_LICENSE("GPL");