blob: 18b30cf45e5b2b82196414dcdbca73ed6d698db7 [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>
Graeme Gregory27c67502011-05-02 16:19:46 -050022#include <linux/mfd/core.h>
Laxman Dewangandc9913a2012-02-21 18:21:34 +053023#include <linux/regmap.h>
Graeme Gregory27c67502011-05-02 16:19:46 -050024#include <linux/mfd/tps65910.h>
Rhyland Kleincd4209c2012-05-11 11:36:26 +020025#include <linux/of_device.h>
Graeme Gregory27c67502011-05-02 16:19:46 -050026
27static struct mfd_cell tps65910s[] = {
28 {
Laxman Dewangan32df9862012-05-11 15:07:44 +020029 .name = "tps65910-gpio",
30 },
31 {
Graeme Gregory27c67502011-05-02 16:19:46 -050032 .name = "tps65910-pmic",
33 },
34 {
35 .name = "tps65910-rtc",
36 },
37 {
38 .name = "tps65910-power",
39 },
40};
41
42
Laxman Dewangandc9913a2012-02-21 18:21:34 +053043static bool is_volatile_reg(struct device *dev, unsigned int reg)
44{
45 struct tps65910 *tps65910 = dev_get_drvdata(dev);
46
47 /*
48 * Caching all regulator registers.
49 * All regualator register address range is same for
50 * TPS65910 and TPS65911
51 */
52 if ((reg >= TPS65910_VIO) && (reg <= TPS65910_VDAC)) {
53 /* Check for non-existing register */
54 if (tps65910_chip_id(tps65910) == TPS65910)
55 if ((reg == TPS65911_VDDCTRL_OP) ||
56 (reg == TPS65911_VDDCTRL_SR))
57 return true;
58 return false;
59 }
60 return true;
61}
62
Laxman Dewangan39ecb032012-03-07 18:46:05 +053063static const struct regmap_config tps65910_regmap_config = {
Laxman Dewangandc9913a2012-02-21 18:21:34 +053064 .reg_bits = 8,
65 .val_bits = 8,
66 .volatile_reg = is_volatile_reg,
Laxman Dewangan3bf6bf92012-05-09 18:40:54 +053067 .max_register = TPS65910_MAX_REGISTER - 1,
Laxman Dewangandc9913a2012-02-21 18:21:34 +053068 .cache_type = REGCACHE_RBTREE,
69};
70
Mark Brown63745d42012-05-07 10:03:19 +010071static int __devinit tps65910_sleepinit(struct tps65910 *tps65910,
Laxman Dewangan201cf052012-04-18 12:13:51 +020072 struct tps65910_board *pmic_pdata)
73{
74 struct device *dev = NULL;
75 int ret = 0;
76
77 dev = tps65910->dev;
78
79 if (!pmic_pdata->en_dev_slp)
80 return 0;
81
82 /* enabling SLEEP device state */
Rhyland Klein3f7e8272012-05-08 11:42:38 -070083 ret = tps65910_reg_set_bits(tps65910, TPS65910_DEVCTRL,
Laxman Dewangan201cf052012-04-18 12:13:51 +020084 DEVCTRL_DEV_SLP_MASK);
85 if (ret < 0) {
86 dev_err(dev, "set dev_slp failed: %d\n", ret);
87 goto err_sleep_init;
88 }
89
90 /* Return if there is no sleep keepon data. */
91 if (!pmic_pdata->slp_keepon)
92 return 0;
93
94 if (pmic_pdata->slp_keepon->therm_keepon) {
Rhyland Klein3f7e8272012-05-08 11:42:38 -070095 ret = tps65910_reg_set_bits(tps65910,
96 TPS65910_SLEEP_KEEP_RES_ON,
Laxman Dewangan201cf052012-04-18 12:13:51 +020097 SLEEP_KEEP_RES_ON_THERM_KEEPON_MASK);
98 if (ret < 0) {
99 dev_err(dev, "set therm_keepon failed: %d\n", ret);
100 goto disable_dev_slp;
101 }
102 }
103
104 if (pmic_pdata->slp_keepon->clkout32k_keepon) {
Rhyland Klein3f7e8272012-05-08 11:42:38 -0700105 ret = tps65910_reg_set_bits(tps65910,
106 TPS65910_SLEEP_KEEP_RES_ON,
Laxman Dewangan201cf052012-04-18 12:13:51 +0200107 SLEEP_KEEP_RES_ON_CLKOUT32K_KEEPON_MASK);
108 if (ret < 0) {
109 dev_err(dev, "set clkout32k_keepon failed: %d\n", ret);
110 goto disable_dev_slp;
111 }
112 }
113
114 if (pmic_pdata->slp_keepon->i2chs_keepon) {
Rhyland Klein3f7e8272012-05-08 11:42:38 -0700115 ret = tps65910_reg_set_bits(tps65910,
116 TPS65910_SLEEP_KEEP_RES_ON,
Laxman Dewangan201cf052012-04-18 12:13:51 +0200117 SLEEP_KEEP_RES_ON_I2CHS_KEEPON_MASK);
118 if (ret < 0) {
119 dev_err(dev, "set i2chs_keepon failed: %d\n", ret);
120 goto disable_dev_slp;
121 }
122 }
123
124 return 0;
125
126disable_dev_slp:
Rhyland Klein3f7e8272012-05-08 11:42:38 -0700127 tps65910_reg_clear_bits(tps65910, TPS65910_DEVCTRL,
128 DEVCTRL_DEV_SLP_MASK);
Laxman Dewangan201cf052012-04-18 12:13:51 +0200129
130err_sleep_init:
131 return ret;
132}
133
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200134#ifdef CONFIG_OF
135static struct of_device_id tps65910_of_match[] = {
136 { .compatible = "ti,tps65910", .data = (void *)TPS65910},
137 { .compatible = "ti,tps65911", .data = (void *)TPS65911},
138 { },
139};
140MODULE_DEVICE_TABLE(of, tps65910_of_match);
141
142static struct tps65910_board *tps65910_parse_dt(struct i2c_client *client,
143 int *chip_id)
144{
145 struct device_node *np = client->dev.of_node;
146 struct tps65910_board *board_info;
147 unsigned int prop;
148 const struct of_device_id *match;
149 unsigned int prop_array[TPS6591X_MAX_NUM_GPIO];
150 int ret = 0;
151 int idx;
152
153 match = of_match_device(tps65910_of_match, &client->dev);
154 if (!match) {
155 dev_err(&client->dev, "Failed to find matching dt id\n");
156 return NULL;
157 }
158
159 *chip_id = (int)match->data;
160
161 board_info = devm_kzalloc(&client->dev, sizeof(*board_info),
162 GFP_KERNEL);
163 if (!board_info) {
164 dev_err(&client->dev, "Failed to allocate pdata\n");
165 return NULL;
166 }
167
168 ret = of_property_read_u32(np, "ti,vmbch-threshold", &prop);
169 if (!ret)
170 board_info->vmbch_threshold = prop;
171 else if (*chip_id == TPS65911)
172 dev_warn(&client->dev, "VMBCH-Threshold not specified");
173
174 ret = of_property_read_u32(np, "ti,vmbch2-threshold", &prop);
175 if (!ret)
176 board_info->vmbch2_threshold = prop;
177 else if (*chip_id == TPS65911)
178 dev_warn(&client->dev, "VMBCH2-Threshold not specified");
179
180 ret = of_property_read_u32_array(np, "ti,en-gpio-sleep",
181 prop_array, TPS6591X_MAX_NUM_GPIO);
182 if (!ret)
183 for (idx = 0; idx < ARRAY_SIZE(prop_array); idx++)
184 board_info->en_gpio_sleep[idx] = (prop_array[idx] != 0);
185 else if (ret != -EINVAL) {
186 dev_err(&client->dev,
187 "error reading property ti,en-gpio-sleep: %d\n.", ret);
188 return NULL;
189 }
190
191
192 board_info->irq = client->irq;
193 board_info->irq_base = -1;
194 board_info->gpio_base = -1;
195
196 return board_info;
197}
198#else
Samuel Ortiz7f65f742012-05-11 15:10:28 +0200199static inline
200struct tps65910_board *tps65910_parse_dt(struct i2c_client *client,
201 int *chip_id)
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200202{
203 return NULL;
204}
205#endif
Laxman Dewangan201cf052012-04-18 12:13:51 +0200206
Mark Brown63745d42012-05-07 10:03:19 +0100207static __devinit int tps65910_i2c_probe(struct i2c_client *i2c,
208 const struct i2c_device_id *id)
Graeme Gregory27c67502011-05-02 16:19:46 -0500209{
210 struct tps65910 *tps65910;
Graeme Gregory2537df72011-05-02 16:19:52 -0500211 struct tps65910_board *pmic_plat_data;
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500212 struct tps65910_platform_data *init_data;
Graeme Gregory27c67502011-05-02 16:19:46 -0500213 int ret = 0;
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200214 int chip_id = id->driver_data;
Graeme Gregory27c67502011-05-02 16:19:46 -0500215
Graeme Gregory2537df72011-05-02 16:19:52 -0500216 pmic_plat_data = dev_get_platdata(&i2c->dev);
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200217
218 if (!pmic_plat_data && i2c->dev.of_node)
219 pmic_plat_data = tps65910_parse_dt(i2c, &chip_id);
220
Graeme Gregory2537df72011-05-02 16:19:52 -0500221 if (!pmic_plat_data)
222 return -EINVAL;
223
Laxman Dewangan63fe7de2012-05-11 12:36:57 +0200224 init_data = devm_kzalloc(&i2c->dev, sizeof(*init_data), GFP_KERNEL);
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500225 if (init_data == NULL)
226 return -ENOMEM;
227
Laxman Dewangan63fe7de2012-05-11 12:36:57 +0200228 tps65910 = devm_kzalloc(&i2c->dev, sizeof(*tps65910), GFP_KERNEL);
229 if (tps65910 == NULL)
Graeme Gregory27c67502011-05-02 16:19:46 -0500230 return -ENOMEM;
231
232 i2c_set_clientdata(i2c, tps65910);
233 tps65910->dev = &i2c->dev;
234 tps65910->i2c_client = i2c;
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200235 tps65910->id = chip_id;
Graeme Gregory27c67502011-05-02 16:19:46 -0500236 mutex_init(&tps65910->io_mutex);
237
Laxman Dewangan63fe7de2012-05-11 12:36:57 +0200238 tps65910->regmap = devm_regmap_init_i2c(i2c, &tps65910_regmap_config);
Laxman Dewangandc9913a2012-02-21 18:21:34 +0530239 if (IS_ERR(tps65910->regmap)) {
240 ret = PTR_ERR(tps65910->regmap);
241 dev_err(&i2c->dev, "regmap initialization failed: %d\n", ret);
Laxman Dewangan63fe7de2012-05-11 12:36:57 +0200242 return ret;
Laxman Dewangandc9913a2012-02-21 18:21:34 +0530243 }
244
Graeme Gregory27c67502011-05-02 16:19:46 -0500245 ret = mfd_add_devices(tps65910->dev, -1,
246 tps65910s, ARRAY_SIZE(tps65910s),
247 NULL, 0);
Laxman Dewangan63fe7de2012-05-11 12:36:57 +0200248 if (ret < 0) {
249 dev_err(&i2c->dev, "mfd_add_devices failed: %d\n", ret);
250 return ret;
251 }
Graeme Gregory27c67502011-05-02 16:19:46 -0500252
Jesper Juhlb1224cd2011-07-13 23:22:26 +0200253 init_data->irq = pmic_plat_data->irq;
Laxman Dewangan17731402012-01-18 20:19:16 +0530254 init_data->irq_base = pmic_plat_data->irq_base;
Jesper Juhlb1224cd2011-07-13 23:22:26 +0200255
Afzal Mohammed1e351a92011-12-14 16:05:35 +0530256 tps65910_irq_init(tps65910, init_data->irq, init_data);
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500257
Laxman Dewangan201cf052012-04-18 12:13:51 +0200258 tps65910_sleepinit(tps65910, pmic_plat_data);
259
Graeme Gregory27c67502011-05-02 16:19:46 -0500260 return ret;
261}
262
Mark Brown63745d42012-05-07 10:03:19 +0100263static __devexit int tps65910_i2c_remove(struct i2c_client *i2c)
Graeme Gregory27c67502011-05-02 16:19:46 -0500264{
265 struct tps65910 *tps65910 = i2c_get_clientdata(i2c);
266
Mark Brownec2328c2011-06-20 11:47:55 +0100267 tps65910_irq_exit(tps65910);
Afzal Mohammed1e351a92011-12-14 16:05:35 +0530268 mfd_remove_devices(tps65910->dev);
Graeme Gregory27c67502011-05-02 16:19:46 -0500269
270 return 0;
271}
272
273static const struct i2c_device_id tps65910_i2c_id[] = {
Jorge Eduardo Candelaria79557052011-05-16 18:34:59 -0500274 { "tps65910", TPS65910 },
275 { "tps65911", TPS65911 },
Graeme Gregory27c67502011-05-02 16:19:46 -0500276 { }
277};
278MODULE_DEVICE_TABLE(i2c, tps65910_i2c_id);
279
280
281static struct i2c_driver tps65910_i2c_driver = {
282 .driver = {
283 .name = "tps65910",
284 .owner = THIS_MODULE,
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200285 .of_match_table = of_match_ptr(tps65910_of_match),
Graeme Gregory27c67502011-05-02 16:19:46 -0500286 },
287 .probe = tps65910_i2c_probe,
Mark Brown63745d42012-05-07 10:03:19 +0100288 .remove = __devexit_p(tps65910_i2c_remove),
Graeme Gregory27c67502011-05-02 16:19:46 -0500289 .id_table = tps65910_i2c_id,
290};
291
292static int __init tps65910_i2c_init(void)
293{
294 return i2c_add_driver(&tps65910_i2c_driver);
295}
296/* init early so consumer devices can complete system boot */
297subsys_initcall(tps65910_i2c_init);
298
299static void __exit tps65910_i2c_exit(void)
300{
301 i2c_del_driver(&tps65910_i2c_driver);
302}
303module_exit(tps65910_i2c_exit);
304
305MODULE_AUTHOR("Graeme Gregory <gg@slimlogic.co.uk>");
306MODULE_AUTHOR("Jorge Eduardo Candelaria <jedu@slimlogic.co.uk>");
307MODULE_DESCRIPTION("TPS6591x chip family multi-function driver");
308MODULE_LICENSE("GPL");