blob: 3cfc9dcbe9dcd67329c722e4d2b800c1ba6bd4cd [file] [log] [blame]
Venu Byravarasu3c33be062012-03-16 11:10:19 +05301/*
2 * Core driver for TI TPS65090 PMIC family
3 *
4 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
5
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#include <linux/interrupt.h>
20#include <linux/irq.h>
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/mutex.h>
24#include <linux/slab.h>
25#include <linux/i2c.h>
26#include <linux/mfd/core.h>
27#include <linux/mfd/tps65090.h>
28#include <linux/regmap.h>
29#include <linux/err.h>
30
31#define NUM_INT_REG 2
32#define TOTAL_NUM_REG 0x18
33
34/* interrupt status registers */
35#define TPS65090_INT_STS 0x0
36#define TPS65090_INT_STS2 0x1
37
38/* interrupt mask registers */
39#define TPS65090_INT_MSK 0x2
40#define TPS65090_INT_MSK2 0x3
41
42struct tps65090_irq_data {
43 u8 mask_reg;
44 u8 mask_pos;
45};
46
47#define TPS65090_IRQ(_reg, _mask_pos) \
48 { \
49 .mask_reg = (_reg), \
50 .mask_pos = (_mask_pos), \
51 }
52
53static const struct tps65090_irq_data tps65090_irqs[] = {
54 [0] = TPS65090_IRQ(0, 0),
55 [1] = TPS65090_IRQ(0, 1),
56 [2] = TPS65090_IRQ(0, 2),
57 [3] = TPS65090_IRQ(0, 3),
58 [4] = TPS65090_IRQ(0, 4),
59 [5] = TPS65090_IRQ(0, 5),
60 [6] = TPS65090_IRQ(0, 6),
61 [7] = TPS65090_IRQ(0, 7),
62 [8] = TPS65090_IRQ(1, 0),
63 [9] = TPS65090_IRQ(1, 1),
64 [10] = TPS65090_IRQ(1, 2),
65 [11] = TPS65090_IRQ(1, 3),
66 [12] = TPS65090_IRQ(1, 4),
67 [13] = TPS65090_IRQ(1, 5),
68 [14] = TPS65090_IRQ(1, 6),
69 [15] = TPS65090_IRQ(1, 7),
70};
71
72static struct mfd_cell tps65090s[] = {
73 {
Venu Byravarasub7e53782012-07-18 18:33:42 +053074 .name = "tps65090-pmic",
Venu Byravarasu3c33be062012-03-16 11:10:19 +053075 },
76 {
Laxman Dewangane2e8ffc2012-11-20 08:44:45 +053077 .name = "tps65090-charger",
Venu Byravarasu3c33be062012-03-16 11:10:19 +053078 },
79};
80
Venu Byravarasu3c33be062012-03-16 11:10:19 +053081int tps65090_write(struct device *dev, int reg, uint8_t val)
82{
83 struct tps65090 *tps = dev_get_drvdata(dev);
84 return regmap_write(tps->rmap, reg, val);
85}
86EXPORT_SYMBOL_GPL(tps65090_write);
87
88int tps65090_read(struct device *dev, int reg, uint8_t *val)
89{
90 struct tps65090 *tps = dev_get_drvdata(dev);
91 unsigned int temp_val;
92 int ret;
93 ret = regmap_read(tps->rmap, reg, &temp_val);
94 if (!ret)
95 *val = temp_val;
96 return ret;
97}
98EXPORT_SYMBOL_GPL(tps65090_read);
99
100int tps65090_set_bits(struct device *dev, int reg, uint8_t bit_num)
101{
102 struct tps65090 *tps = dev_get_drvdata(dev);
103 return regmap_update_bits(tps->rmap, reg, BIT(bit_num), ~0u);
104}
105EXPORT_SYMBOL_GPL(tps65090_set_bits);
106
107int tps65090_clr_bits(struct device *dev, int reg, uint8_t bit_num)
108{
109 struct tps65090 *tps = dev_get_drvdata(dev);
110 return regmap_update_bits(tps->rmap, reg, BIT(bit_num), 0u);
111}
112EXPORT_SYMBOL_GPL(tps65090_clr_bits);
113
114static void tps65090_irq_lock(struct irq_data *data)
115{
116 struct tps65090 *tps65090 = irq_data_get_irq_chip_data(data);
117
118 mutex_lock(&tps65090->irq_lock);
119}
120
121static void tps65090_irq_mask(struct irq_data *irq_data)
122{
123 struct tps65090 *tps65090 = irq_data_get_irq_chip_data(irq_data);
124 unsigned int __irq = irq_data->hwirq;
125 const struct tps65090_irq_data *data = &tps65090_irqs[__irq];
126
127 tps65090_set_bits(tps65090->dev, (TPS65090_INT_MSK + data->mask_reg),
128 data->mask_pos);
129}
130
131static void tps65090_irq_unmask(struct irq_data *irq_data)
132{
133 struct tps65090 *tps65090 = irq_data_get_irq_chip_data(irq_data);
134 unsigned int __irq = irq_data->irq - tps65090->irq_base;
135 const struct tps65090_irq_data *data = &tps65090_irqs[__irq];
136
137 tps65090_clr_bits(tps65090->dev, (TPS65090_INT_MSK + data->mask_reg),
138 data->mask_pos);
139}
140
141static void tps65090_irq_sync_unlock(struct irq_data *data)
142{
143 struct tps65090 *tps65090 = irq_data_get_irq_chip_data(data);
144
145 mutex_unlock(&tps65090->irq_lock);
146}
147
148static irqreturn_t tps65090_irq(int irq, void *data)
149{
150 struct tps65090 *tps65090 = data;
151 int ret = 0;
152 u8 status, mask;
153 unsigned long int acks = 0;
154 int i;
155
156 for (i = 0; i < NUM_INT_REG; i++) {
157 ret = tps65090_read(tps65090->dev, TPS65090_INT_MSK + i, &mask);
158 if (ret < 0) {
159 dev_err(tps65090->dev,
160 "failed to read mask reg [addr:%d]\n",
161 TPS65090_INT_MSK + i);
162 return IRQ_NONE;
163 }
164 ret = tps65090_read(tps65090->dev, TPS65090_INT_STS + i,
165 &status);
166 if (ret < 0) {
167 dev_err(tps65090->dev,
168 "failed to read status reg [addr:%d]\n",
169 TPS65090_INT_STS + i);
170 return IRQ_NONE;
171 }
172 if (status) {
173 /* Ack only those interrupts which are not masked */
174 status &= (~mask);
175 ret = tps65090_write(tps65090->dev,
176 TPS65090_INT_STS + i, status);
177 if (ret < 0) {
178 dev_err(tps65090->dev,
179 "failed to write interrupt status\n");
180 return IRQ_NONE;
181 }
182 acks |= (status << (i * 8));
183 }
184 }
185
186 for_each_set_bit(i, &acks, ARRAY_SIZE(tps65090_irqs))
187 handle_nested_irq(tps65090->irq_base + i);
188 return acks ? IRQ_HANDLED : IRQ_NONE;
189}
190
191static int __devinit tps65090_irq_init(struct tps65090 *tps65090, int irq,
192 int irq_base)
193{
194 int i, ret;
195
196 if (!irq_base) {
197 dev_err(tps65090->dev, "IRQ base not set\n");
198 return -EINVAL;
199 }
200
201 mutex_init(&tps65090->irq_lock);
202
203 for (i = 0; i < NUM_INT_REG; i++)
204 tps65090_write(tps65090->dev, TPS65090_INT_MSK + i, 0xFF);
205
206 for (i = 0; i < NUM_INT_REG; i++)
207 tps65090_write(tps65090->dev, TPS65090_INT_STS + i, 0xff);
208
209 tps65090->irq_base = irq_base;
210 tps65090->irq_chip.name = "tps65090";
211 tps65090->irq_chip.irq_mask = tps65090_irq_mask;
212 tps65090->irq_chip.irq_unmask = tps65090_irq_unmask;
213 tps65090->irq_chip.irq_bus_lock = tps65090_irq_lock;
214 tps65090->irq_chip.irq_bus_sync_unlock = tps65090_irq_sync_unlock;
215
216 for (i = 0; i < ARRAY_SIZE(tps65090_irqs); i++) {
217 int __irq = i + tps65090->irq_base;
218 irq_set_chip_data(__irq, tps65090);
219 irq_set_chip_and_handler(__irq, &tps65090->irq_chip,
220 handle_simple_irq);
221 irq_set_nested_thread(__irq, 1);
222#ifdef CONFIG_ARM
223 set_irq_flags(__irq, IRQF_VALID);
224#endif
225 }
226
227 ret = request_threaded_irq(irq, NULL, tps65090_irq, IRQF_ONESHOT,
228 "tps65090", tps65090);
229 if (!ret) {
230 device_init_wakeup(tps65090->dev, 1);
231 enable_irq_wake(irq);
232 }
233
234 return ret;
235}
236
237static bool is_volatile_reg(struct device *dev, unsigned int reg)
238{
Venu Byravarasu99de1cc2012-09-17 11:00:47 +0530239 if (reg == TPS65090_INT_STS)
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530240 return true;
241 else
242 return false;
243}
244
245static const struct regmap_config tps65090_regmap_config = {
246 .reg_bits = 8,
247 .val_bits = 8,
248 .max_register = TOTAL_NUM_REG,
249 .num_reg_defaults_raw = TOTAL_NUM_REG,
250 .cache_type = REGCACHE_RBTREE,
251 .volatile_reg = is_volatile_reg,
252};
253
254static int __devinit tps65090_i2c_probe(struct i2c_client *client,
255 const struct i2c_device_id *id)
256{
257 struct tps65090_platform_data *pdata = client->dev.platform_data;
258 struct tps65090 *tps65090;
259 int ret;
260
261 if (!pdata) {
262 dev_err(&client->dev, "tps65090 requires platform data\n");
263 return -EINVAL;
264 }
265
Laxman Dewangane8e6f042012-11-20 08:44:46 +0530266 tps65090 = devm_kzalloc(&client->dev, sizeof(*tps65090), GFP_KERNEL);
267 if (!tps65090) {
268 dev_err(&client->dev, "mem alloc for tps65090 failed\n");
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530269 return -ENOMEM;
Laxman Dewangane8e6f042012-11-20 08:44:46 +0530270 }
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530271
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530272 tps65090->dev = &client->dev;
273 i2c_set_clientdata(client, tps65090);
274
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530275 if (client->irq) {
276 ret = tps65090_irq_init(tps65090, client->irq, pdata->irq_base);
277 if (ret) {
278 dev_err(&client->dev, "IRQ init failed with err: %d\n",
279 ret);
280 goto err_exit;
281 }
282 }
283
Laxman Dewangan3863db32012-11-20 08:44:47 +0530284 tps65090->rmap = devm_regmap_init_i2c(client, &tps65090_regmap_config);
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530285 if (IS_ERR(tps65090->rmap)) {
Axel Linb683a0a2012-04-25 09:30:36 +0800286 ret = PTR_ERR(tps65090->rmap);
287 dev_err(&client->dev, "regmap_init failed with err: %d\n", ret);
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530288 goto err_irq_exit;
Axel Linb683a0a2012-04-25 09:30:36 +0800289 }
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530290
291 ret = mfd_add_devices(tps65090->dev, -1, tps65090s,
Mark Brown55692af2012-09-11 15:16:36 +0800292 ARRAY_SIZE(tps65090s), NULL, 0, NULL);
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530293 if (ret) {
294 dev_err(&client->dev, "add mfd devices failed with err: %d\n",
295 ret);
Axel Lin1d88f7a2012-04-25 10:04:58 +0800296 goto err_irq_exit;
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530297 }
298
299 return 0;
300
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530301err_irq_exit:
302 if (client->irq)
303 free_irq(client->irq, tps65090);
304err_exit:
305 return ret;
306}
307
308static int __devexit tps65090_i2c_remove(struct i2c_client *client)
309{
310 struct tps65090 *tps65090 = i2c_get_clientdata(client);
311
312 mfd_remove_devices(tps65090->dev);
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530313 if (client->irq)
314 free_irq(client->irq, tps65090);
315
316 return 0;
317}
318
Mark Brown1ca55132012-05-07 10:03:17 +0100319#ifdef CONFIG_PM_SLEEP
Mark Brownb6c9eee2012-05-07 10:03:18 +0100320static int tps65090_suspend(struct device *dev)
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530321{
Mark Brownb6c9eee2012-05-07 10:03:18 +0100322 struct i2c_client *client = to_i2c_client(dev);
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530323 if (client->irq)
324 disable_irq(client->irq);
325 return 0;
326}
327
Mark Brownb6c9eee2012-05-07 10:03:18 +0100328static int tps65090_resume(struct device *dev)
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530329{
Mark Brownb6c9eee2012-05-07 10:03:18 +0100330 struct i2c_client *client = to_i2c_client(dev);
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530331 if (client->irq)
332 enable_irq(client->irq);
333 return 0;
334}
335#endif
336
Mark Brownb6c9eee2012-05-07 10:03:18 +0100337static const struct dev_pm_ops tps65090_pm_ops = {
338 SET_SYSTEM_SLEEP_PM_OPS(tps65090_suspend, tps65090_resume)
339};
340
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530341static const struct i2c_device_id tps65090_id_table[] = {
342 { "tps65090", 0 },
343 { },
344};
345MODULE_DEVICE_TABLE(i2c, tps65090_id_table);
346
347static struct i2c_driver tps65090_driver = {
348 .driver = {
349 .name = "tps65090",
350 .owner = THIS_MODULE,
Mark Brownb6c9eee2012-05-07 10:03:18 +0100351 .pm = &tps65090_pm_ops,
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530352 },
353 .probe = tps65090_i2c_probe,
354 .remove = __devexit_p(tps65090_i2c_remove),
Venu Byravarasu3c33be062012-03-16 11:10:19 +0530355 .id_table = tps65090_id_table,
356};
357
358static int __init tps65090_init(void)
359{
360 return i2c_add_driver(&tps65090_driver);
361}
362subsys_initcall(tps65090_init);
363
364static void __exit tps65090_exit(void)
365{
366 i2c_del_driver(&tps65090_driver);
367}
368module_exit(tps65090_exit);
369
370MODULE_DESCRIPTION("TPS65090 core driver");
371MODULE_AUTHOR("Venu Byravarasu <vbyravarasu@nvidia.com>");
372MODULE_LICENSE("GPL v2");