blob: f94a04ca1d37591975a8b82911e4e95a46fed3fa [file] [log] [blame]
Balaji T Ke8deb282009-12-14 00:25:31 +01001/*
2 * twl6030-irq.c - TWL6030 irq support
3 *
4 * Copyright (C) 2005-2009 Texas Instruments, Inc.
5 *
6 * Modifications to defer interrupt handling to a kernel thread:
7 * Copyright (C) 2006 MontaVista Software, Inc.
8 *
9 * Based on tlv320aic23.c:
10 * Copyright (c) by Kai Svahn <kai.svahn@nokia.com>
11 *
12 * Code cleanup and modifications to IRQ handler.
13 * by syed khasim <x0khasim@ti.com>
14 *
15 * TWL6030 specific code and IRQ handling changes by
16 * Jagadeesh Bhaskar Pakaravoor <j-pakaravoor@ti.com>
17 * Balaji T K <balajitk@ti.com>
18 *
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 */
33
34#include <linux/init.h>
35#include <linux/interrupt.h>
36#include <linux/irq.h>
37#include <linux/kthread.h>
38#include <linux/i2c/twl.h>
kishore kadiyala72f2e2c2010-09-24 17:13:20 +000039#include <linux/platform_device.h>
Balaji T Ke8deb282009-12-14 00:25:31 +010040
G, Manjunath Kondaiahb0b4a7c2010-10-19 11:02:48 +020041#include "twl-core.h"
42
Balaji T Ke8deb282009-12-14 00:25:31 +010043/*
44 * TWL6030 (unlike its predecessors, which had two level interrupt handling)
45 * three interrupt registers INT_STS_A, INT_STS_B and INT_STS_C.
46 * It exposes status bits saying who has raised an interrupt. There are
47 * three mask registers that corresponds to these status registers, that
48 * enables/disables these interrupts.
49 *
50 * We set up IRQs starting at a platform-specified base. An interrupt map table,
51 * specifies mapping between interrupt number and the associated module.
52 *
53 */
54
55static int twl6030_interrupt_mapping[24] = {
56 PWR_INTR_OFFSET, /* Bit 0 PWRON */
57 PWR_INTR_OFFSET, /* Bit 1 RPWRON */
58 PWR_INTR_OFFSET, /* Bit 2 BAT_VLOW */
59 RTC_INTR_OFFSET, /* Bit 3 RTC_ALARM */
60 RTC_INTR_OFFSET, /* Bit 4 RTC_PERIOD */
61 HOTDIE_INTR_OFFSET, /* Bit 5 HOT_DIE */
62 SMPSLDO_INTR_OFFSET, /* Bit 6 VXXX_SHORT */
63 SMPSLDO_INTR_OFFSET, /* Bit 7 VMMC_SHORT */
64
65 SMPSLDO_INTR_OFFSET, /* Bit 8 VUSIM_SHORT */
66 BATDETECT_INTR_OFFSET, /* Bit 9 BAT */
67 SIMDETECT_INTR_OFFSET, /* Bit 10 SIM */
68 MMCDETECT_INTR_OFFSET, /* Bit 11 MMC */
69 RSV_INTR_OFFSET, /* Bit 12 Reserved */
70 MADC_INTR_OFFSET, /* Bit 13 GPADC_RT_EOC */
71 MADC_INTR_OFFSET, /* Bit 14 GPADC_SW_EOC */
72 GASGAUGE_INTR_OFFSET, /* Bit 15 CC_AUTOCAL */
73
74 USBOTG_INTR_OFFSET, /* Bit 16 ID_WKUP */
75 USBOTG_INTR_OFFSET, /* Bit 17 VBUS_WKUP */
76 USBOTG_INTR_OFFSET, /* Bit 18 ID */
Hema HK77b1d3f2010-12-10 17:55:37 +053077 USB_PRES_INTR_OFFSET, /* Bit 19 VBUS */
Balaji T Ke8deb282009-12-14 00:25:31 +010078 CHARGER_INTR_OFFSET, /* Bit 20 CHRG_CTRL */
Graeme Gregory6523b142011-05-12 14:27:56 +010079 CHARGERFAULT_INTR_OFFSET, /* Bit 21 EXT_CHRG */
80 CHARGERFAULT_INTR_OFFSET, /* Bit 22 INT_CHRG */
Balaji T Ke8deb282009-12-14 00:25:31 +010081 RSV_INTR_OFFSET, /* Bit 23 Reserved */
82};
83/*----------------------------------------------------------------------*/
84
85static unsigned twl6030_irq_base;
86
87static struct completion irq_event;
88
89/*
90 * This thread processes interrupts reported by the Primary Interrupt Handler.
91 */
92static int twl6030_irq_thread(void *data)
93{
94 long irq = (long)data;
95 static unsigned i2c_errors;
96 static const unsigned max_i2c_errors = 100;
97 int ret;
98
99 current->flags |= PF_NOFREEZE;
100
101 while (!kthread_should_stop()) {
102 int i;
103 union {
104 u8 bytes[4];
105 u32 int_sts;
106 } sts;
107
108 /* Wait for IRQ, then read PIH irq status (also blocking) */
109 wait_for_completion_interruptible(&irq_event);
110
111 /* read INT_STS_A, B and C in one shot using a burst read */
112 ret = twl_i2c_read(TWL_MODULE_PIH, sts.bytes,
113 REG_INT_STS_A, 3);
114 if (ret) {
115 pr_warning("twl6030: I2C error %d reading PIH ISR\n",
116 ret);
117 if (++i2c_errors >= max_i2c_errors) {
118 printk(KERN_ERR "Maximum I2C error count"
119 " exceeded. Terminating %s.\n",
120 __func__);
121 break;
122 }
123 complete(&irq_event);
124 continue;
125 }
126
127
128
129 sts.bytes[3] = 0; /* Only 24 bits are valid*/
130
Hema HK77b1d3f2010-12-10 17:55:37 +0530131 /*
132 * Since VBUS status bit is not reliable for VBUS disconnect
133 * use CHARGER VBUS detection status bit instead.
134 */
135 if (sts.bytes[2] & 0x10)
136 sts.bytes[2] |= 0x08;
137
Balaji T Ke8deb282009-12-14 00:25:31 +0100138 for (i = 0; sts.int_sts; sts.int_sts >>= 1, i++) {
139 local_irq_disable();
140 if (sts.int_sts & 0x1) {
141 int module_irq = twl6030_irq_base +
142 twl6030_interrupt_mapping[i];
Thomas Gleixnerc22435a32011-03-25 11:12:31 +0000143 generic_handle_irq(module_irq);
Balaji T Ke8deb282009-12-14 00:25:31 +0100144
145 }
146 local_irq_enable();
147 }
148 ret = twl_i2c_write(TWL_MODULE_PIH, sts.bytes,
149 REG_INT_STS_A, 3); /* clear INT_STS_A */
150 if (ret)
151 pr_warning("twl6030: I2C error in clearing PIH ISR\n");
152
153 enable_irq(irq);
154 }
155
156 return 0;
157}
158
159/*
160 * handle_twl6030_int() is the desc->handle method for the twl6030 interrupt.
161 * This is a chained interrupt, so there is no desc->action method for it.
162 * Now we need to query the interrupt controller in the twl6030 to determine
163 * which module is generating the interrupt request. However, we can't do i2c
164 * transactions in interrupt context, so we must defer that work to a kernel
165 * thread. All we do here is acknowledge and mask the interrupt and wakeup
166 * the kernel thread.
167 */
168static irqreturn_t handle_twl6030_pih(int irq, void *devid)
169{
170 disable_irq_nosync(irq);
171 complete(devid);
172 return IRQ_HANDLED;
173}
174
175/*----------------------------------------------------------------------*/
176
177static inline void activate_irq(int irq)
178{
179#ifdef CONFIG_ARM
180 /* ARM requires an extra step to clear IRQ_NOREQUEST, which it
181 * sets on behalf of every irq_chip. Also sets IRQ_NOPROBE.
182 */
183 set_irq_flags(irq, IRQF_VALID);
184#else
185 /* same effect on other architectures */
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000186 irq_set_noprobe(irq);
Balaji T Ke8deb282009-12-14 00:25:31 +0100187#endif
188}
189
Santosh Shilimkar49dcd072011-09-06 21:29:30 +0530190int twl6030_irq_set_wake(struct irq_data *d, unsigned int on)
191{
192 int twl_irq = (int)irq_get_chip_data(d->irq);
193
194 return irq_set_irq_wake(twl_irq, on);
195}
196
Balaji T Ke8deb282009-12-14 00:25:31 +0100197/*----------------------------------------------------------------------*/
198
199static unsigned twl6030_irq_next;
200
201/*----------------------------------------------------------------------*/
202int twl6030_interrupt_unmask(u8 bit_mask, u8 offset)
203{
204 int ret;
205 u8 unmask_value;
206 ret = twl_i2c_read_u8(TWL_MODULE_PIH, &unmask_value,
207 REG_INT_STS_A + offset);
208 unmask_value &= (~(bit_mask));
209 ret |= twl_i2c_write_u8(TWL_MODULE_PIH, unmask_value,
210 REG_INT_STS_A + offset); /* unmask INT_MSK_A/B/C */
211 return ret;
212}
213EXPORT_SYMBOL(twl6030_interrupt_unmask);
214
215int twl6030_interrupt_mask(u8 bit_mask, u8 offset)
216{
217 int ret;
218 u8 mask_value;
219 ret = twl_i2c_read_u8(TWL_MODULE_PIH, &mask_value,
220 REG_INT_STS_A + offset);
221 mask_value |= (bit_mask);
222 ret |= twl_i2c_write_u8(TWL_MODULE_PIH, mask_value,
223 REG_INT_STS_A + offset); /* mask INT_MSK_A/B/C */
224 return ret;
225}
226EXPORT_SYMBOL(twl6030_interrupt_mask);
227
kishore kadiyala72f2e2c2010-09-24 17:13:20 +0000228int twl6030_mmc_card_detect_config(void)
229{
230 int ret;
231 u8 reg_val = 0;
232
233 /* Unmasking the Card detect Interrupt line for MMC1 from Phoenix */
234 twl6030_interrupt_unmask(TWL6030_MMCDETECT_INT_MASK,
235 REG_INT_MSK_LINE_B);
236 twl6030_interrupt_unmask(TWL6030_MMCDETECT_INT_MASK,
237 REG_INT_MSK_STS_B);
238 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300239 * Initially Configuring MMC_CTRL for receiving interrupts &
kishore kadiyala72f2e2c2010-09-24 17:13:20 +0000240 * Card status on TWL6030 for MMC1
241 */
242 ret = twl_i2c_read_u8(TWL6030_MODULE_ID0, &reg_val, TWL6030_MMCCTRL);
243 if (ret < 0) {
244 pr_err("twl6030: Failed to read MMCCTRL, error %d\n", ret);
245 return ret;
246 }
247 reg_val &= ~VMMC_AUTO_OFF;
248 reg_val |= SW_FC;
249 ret = twl_i2c_write_u8(TWL6030_MODULE_ID0, reg_val, TWL6030_MMCCTRL);
250 if (ret < 0) {
251 pr_err("twl6030: Failed to write MMCCTRL, error %d\n", ret);
252 return ret;
253 }
254
255 /* Configuring PullUp-PullDown register */
256 ret = twl_i2c_read_u8(TWL6030_MODULE_ID0, &reg_val,
257 TWL6030_CFG_INPUT_PUPD3);
258 if (ret < 0) {
259 pr_err("twl6030: Failed to read CFG_INPUT_PUPD3, error %d\n",
260 ret);
261 return ret;
262 }
263 reg_val &= ~(MMC_PU | MMC_PD);
264 ret = twl_i2c_write_u8(TWL6030_MODULE_ID0, reg_val,
265 TWL6030_CFG_INPUT_PUPD3);
266 if (ret < 0) {
267 pr_err("twl6030: Failed to write CFG_INPUT_PUPD3, error %d\n",
268 ret);
269 return ret;
270 }
271 return 0;
272}
273EXPORT_SYMBOL(twl6030_mmc_card_detect_config);
274
275int twl6030_mmc_card_detect(struct device *dev, int slot)
276{
277 int ret = -EIO;
278 u8 read_reg = 0;
279 struct platform_device *pdev = to_platform_device(dev);
280
281 if (pdev->id) {
282 /* TWL6030 provide's Card detect support for
283 * only MMC1 controller.
284 */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300285 pr_err("Unknown MMC controller %d in %s\n", pdev->id, __func__);
kishore kadiyala72f2e2c2010-09-24 17:13:20 +0000286 return ret;
287 }
288 /*
289 * BIT0 of MMC_CTRL on TWL6030 provides card status for MMC1
290 * 0 - Card not present ,1 - Card present
291 */
292 ret = twl_i2c_read_u8(TWL6030_MODULE_ID0, &read_reg,
293 TWL6030_MMCCTRL);
294 if (ret >= 0)
295 ret = read_reg & STS_MMC;
296 return ret;
297}
298EXPORT_SYMBOL(twl6030_mmc_card_detect);
299
Balaji T Ke8deb282009-12-14 00:25:31 +0100300int twl6030_init_irq(int irq_num, unsigned irq_base, unsigned irq_end)
301{
302
303 int status = 0;
304 int i;
305 struct task_struct *task;
306 int ret;
307 u8 mask[4];
308
309 static struct irq_chip twl6030_irq_chip;
310 mask[1] = 0xFF;
311 mask[2] = 0xFF;
312 mask[3] = 0xFF;
313 ret = twl_i2c_write(TWL_MODULE_PIH, &mask[0],
314 REG_INT_MSK_LINE_A, 3); /* MASK ALL INT LINES */
315 ret = twl_i2c_write(TWL_MODULE_PIH, &mask[0],
316 REG_INT_MSK_STS_A, 3); /* MASK ALL INT STS */
317 ret = twl_i2c_write(TWL_MODULE_PIH, &mask[0],
318 REG_INT_STS_A, 3); /* clear INT_STS_A,B,C */
319
320 twl6030_irq_base = irq_base;
321
322 /* install an irq handler for each of the modules;
323 * clone dummy irq_chip since PIH can't *do* anything
324 */
325 twl6030_irq_chip = dummy_irq_chip;
326 twl6030_irq_chip.name = "twl6030";
Lennert Buytenhekc45c6852010-12-13 13:31:18 +0100327 twl6030_irq_chip.irq_set_type = NULL;
Santosh Shilimkar49dcd072011-09-06 21:29:30 +0530328 twl6030_irq_chip.irq_set_wake = twl6030_irq_set_wake;
Balaji T Ke8deb282009-12-14 00:25:31 +0100329
330 for (i = irq_base; i < irq_end; i++) {
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000331 irq_set_chip_and_handler(i, &twl6030_irq_chip,
332 handle_simple_irq);
Santosh Shilimkar49dcd072011-09-06 21:29:30 +0530333 irq_set_chip_data(i, (void *)irq_num);
Balaji T Ke8deb282009-12-14 00:25:31 +0100334 activate_irq(i);
335 }
336
337 twl6030_irq_next = i;
338 pr_info("twl6030: %s (irq %d) chaining IRQs %d..%d\n", "PIH",
339 irq_num, irq_base, twl6030_irq_next - 1);
340
341 /* install an irq handler to demultiplex the TWL6030 interrupt */
342 init_completion(&irq_event);
Balaji T Ke8deb282009-12-14 00:25:31 +0100343
344 status = request_irq(irq_num, handle_twl6030_pih, IRQF_DISABLED,
345 "TWL6030-PIH", &irq_event);
346 if (status < 0) {
347 pr_err("twl6030: could not claim irq%d: %d\n", irq_num, status);
348 goto fail_irq;
349 }
Axel Lin862de702011-08-11 15:21:00 +0800350
351 task = kthread_run(twl6030_irq_thread, (void *)irq_num, "twl6030-irq");
352 if (IS_ERR(task)) {
353 pr_err("twl6030: could not create irq %d thread!\n", irq_num);
354 status = PTR_ERR(task);
355 goto fail_kthread;
356 }
Balaji T Ke8deb282009-12-14 00:25:31 +0100357 return status;
Balaji T Ke8deb282009-12-14 00:25:31 +0100358
359fail_kthread:
Axel Lin862de702011-08-11 15:21:00 +0800360 free_irq(irq_num, &irq_event);
361
362fail_irq:
Balaji T Ke8deb282009-12-14 00:25:31 +0100363 for (i = irq_base; i < irq_end; i++)
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000364 irq_set_chip_and_handler(i, NULL, NULL);
Balaji T Ke8deb282009-12-14 00:25:31 +0100365 return status;
366}
367
368int twl6030_exit_irq(void)
369{
370
371 if (twl6030_irq_base) {
372 pr_err("twl6030: can't yet clean up IRQs?\n");
373 return -ENOSYS;
374 }
375 return 0;
376}
377