blob: a014ec489e68bd6ab76f439b3451aa83985d01c7 [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>
Todd Poynorab2b9262011-10-04 11:52:29 +020040#include <linux/suspend.h>
Balaji T Ke8deb282009-12-14 00:25:31 +010041
G, Manjunath Kondaiahb0b4a7c2010-10-19 11:02:48 +020042#include "twl-core.h"
43
Balaji T Ke8deb282009-12-14 00:25:31 +010044/*
45 * TWL6030 (unlike its predecessors, which had two level interrupt handling)
46 * three interrupt registers INT_STS_A, INT_STS_B and INT_STS_C.
47 * It exposes status bits saying who has raised an interrupt. There are
48 * three mask registers that corresponds to these status registers, that
49 * enables/disables these interrupts.
50 *
51 * We set up IRQs starting at a platform-specified base. An interrupt map table,
52 * specifies mapping between interrupt number and the associated module.
53 *
54 */
55
56static int twl6030_interrupt_mapping[24] = {
57 PWR_INTR_OFFSET, /* Bit 0 PWRON */
58 PWR_INTR_OFFSET, /* Bit 1 RPWRON */
59 PWR_INTR_OFFSET, /* Bit 2 BAT_VLOW */
60 RTC_INTR_OFFSET, /* Bit 3 RTC_ALARM */
61 RTC_INTR_OFFSET, /* Bit 4 RTC_PERIOD */
62 HOTDIE_INTR_OFFSET, /* Bit 5 HOT_DIE */
63 SMPSLDO_INTR_OFFSET, /* Bit 6 VXXX_SHORT */
64 SMPSLDO_INTR_OFFSET, /* Bit 7 VMMC_SHORT */
65
66 SMPSLDO_INTR_OFFSET, /* Bit 8 VUSIM_SHORT */
67 BATDETECT_INTR_OFFSET, /* Bit 9 BAT */
68 SIMDETECT_INTR_OFFSET, /* Bit 10 SIM */
69 MMCDETECT_INTR_OFFSET, /* Bit 11 MMC */
70 RSV_INTR_OFFSET, /* Bit 12 Reserved */
71 MADC_INTR_OFFSET, /* Bit 13 GPADC_RT_EOC */
72 MADC_INTR_OFFSET, /* Bit 14 GPADC_SW_EOC */
73 GASGAUGE_INTR_OFFSET, /* Bit 15 CC_AUTOCAL */
74
75 USBOTG_INTR_OFFSET, /* Bit 16 ID_WKUP */
76 USBOTG_INTR_OFFSET, /* Bit 17 VBUS_WKUP */
77 USBOTG_INTR_OFFSET, /* Bit 18 ID */
Hema HK77b1d3f2010-12-10 17:55:37 +053078 USB_PRES_INTR_OFFSET, /* Bit 19 VBUS */
Balaji T Ke8deb282009-12-14 00:25:31 +010079 CHARGER_INTR_OFFSET, /* Bit 20 CHRG_CTRL */
Graeme Gregory6523b142011-05-12 14:27:56 +010080 CHARGERFAULT_INTR_OFFSET, /* Bit 21 EXT_CHRG */
81 CHARGERFAULT_INTR_OFFSET, /* Bit 22 INT_CHRG */
Balaji T Ke8deb282009-12-14 00:25:31 +010082 RSV_INTR_OFFSET, /* Bit 23 Reserved */
83};
84/*----------------------------------------------------------------------*/
85
86static unsigned twl6030_irq_base;
Todd Poynorab2b9262011-10-04 11:52:29 +020087static int twl_irq;
88static bool twl_irq_wake_enabled;
Balaji T Ke8deb282009-12-14 00:25:31 +010089
90static struct completion irq_event;
Todd Poynorab2b9262011-10-04 11:52:29 +020091static atomic_t twl6030_wakeirqs = ATOMIC_INIT(0);
92
93static int twl6030_irq_pm_notifier(struct notifier_block *notifier,
94 unsigned long pm_event, void *unused)
95{
96 int chained_wakeups;
97
98 switch (pm_event) {
99 case PM_SUSPEND_PREPARE:
100 chained_wakeups = atomic_read(&twl6030_wakeirqs);
101
102 if (chained_wakeups && !twl_irq_wake_enabled) {
103 if (enable_irq_wake(twl_irq))
104 pr_err("twl6030 IRQ wake enable failed\n");
105 else
106 twl_irq_wake_enabled = true;
107 } else if (!chained_wakeups && twl_irq_wake_enabled) {
108 disable_irq_wake(twl_irq);
109 twl_irq_wake_enabled = false;
110 }
111
112 break;
113 default:
114 break;
115 }
116
117 return NOTIFY_DONE;
118}
119
120static struct notifier_block twl6030_irq_pm_notifier_block = {
121 .notifier_call = twl6030_irq_pm_notifier,
122};
Balaji T Ke8deb282009-12-14 00:25:31 +0100123
124/*
125 * This thread processes interrupts reported by the Primary Interrupt Handler.
126 */
127static int twl6030_irq_thread(void *data)
128{
129 long irq = (long)data;
130 static unsigned i2c_errors;
131 static const unsigned max_i2c_errors = 100;
132 int ret;
133
134 current->flags |= PF_NOFREEZE;
135
136 while (!kthread_should_stop()) {
137 int i;
138 union {
139 u8 bytes[4];
140 u32 int_sts;
141 } sts;
142
143 /* Wait for IRQ, then read PIH irq status (also blocking) */
144 wait_for_completion_interruptible(&irq_event);
145
146 /* read INT_STS_A, B and C in one shot using a burst read */
147 ret = twl_i2c_read(TWL_MODULE_PIH, sts.bytes,
148 REG_INT_STS_A, 3);
149 if (ret) {
150 pr_warning("twl6030: I2C error %d reading PIH ISR\n",
151 ret);
152 if (++i2c_errors >= max_i2c_errors) {
153 printk(KERN_ERR "Maximum I2C error count"
154 " exceeded. Terminating %s.\n",
155 __func__);
156 break;
157 }
158 complete(&irq_event);
159 continue;
160 }
161
162
163
164 sts.bytes[3] = 0; /* Only 24 bits are valid*/
165
Hema HK77b1d3f2010-12-10 17:55:37 +0530166 /*
167 * Since VBUS status bit is not reliable for VBUS disconnect
168 * use CHARGER VBUS detection status bit instead.
169 */
170 if (sts.bytes[2] & 0x10)
171 sts.bytes[2] |= 0x08;
172
Balaji T Ke8deb282009-12-14 00:25:31 +0100173 for (i = 0; sts.int_sts; sts.int_sts >>= 1, i++) {
174 local_irq_disable();
175 if (sts.int_sts & 0x1) {
176 int module_irq = twl6030_irq_base +
177 twl6030_interrupt_mapping[i];
Thomas Gleixnerc22435a32011-03-25 11:12:31 +0000178 generic_handle_irq(module_irq);
Balaji T Ke8deb282009-12-14 00:25:31 +0100179
180 }
181 local_irq_enable();
182 }
183 ret = twl_i2c_write(TWL_MODULE_PIH, sts.bytes,
184 REG_INT_STS_A, 3); /* clear INT_STS_A */
185 if (ret)
186 pr_warning("twl6030: I2C error in clearing PIH ISR\n");
187
188 enable_irq(irq);
189 }
190
191 return 0;
192}
193
194/*
195 * handle_twl6030_int() is the desc->handle method for the twl6030 interrupt.
196 * This is a chained interrupt, so there is no desc->action method for it.
197 * Now we need to query the interrupt controller in the twl6030 to determine
198 * which module is generating the interrupt request. However, we can't do i2c
199 * transactions in interrupt context, so we must defer that work to a kernel
200 * thread. All we do here is acknowledge and mask the interrupt and wakeup
201 * the kernel thread.
202 */
203static irqreturn_t handle_twl6030_pih(int irq, void *devid)
204{
205 disable_irq_nosync(irq);
206 complete(devid);
207 return IRQ_HANDLED;
208}
209
210/*----------------------------------------------------------------------*/
211
212static inline void activate_irq(int irq)
213{
214#ifdef CONFIG_ARM
215 /* ARM requires an extra step to clear IRQ_NOREQUEST, which it
216 * sets on behalf of every irq_chip. Also sets IRQ_NOPROBE.
217 */
218 set_irq_flags(irq, IRQF_VALID);
219#else
220 /* same effect on other architectures */
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000221 irq_set_noprobe(irq);
Balaji T Ke8deb282009-12-14 00:25:31 +0100222#endif
223}
224
Santosh Shilimkar49dcd072011-09-06 21:29:30 +0530225int twl6030_irq_set_wake(struct irq_data *d, unsigned int on)
226{
Todd Poynorab2b9262011-10-04 11:52:29 +0200227 if (on)
228 atomic_inc(&twl6030_wakeirqs);
229 else
230 atomic_dec(&twl6030_wakeirqs);
Santosh Shilimkar49dcd072011-09-06 21:29:30 +0530231
Todd Poynorab2b9262011-10-04 11:52:29 +0200232 return 0;
Santosh Shilimkar49dcd072011-09-06 21:29:30 +0530233}
234
Balaji T Ke8deb282009-12-14 00:25:31 +0100235/*----------------------------------------------------------------------*/
236
237static unsigned twl6030_irq_next;
238
239/*----------------------------------------------------------------------*/
240int twl6030_interrupt_unmask(u8 bit_mask, u8 offset)
241{
242 int ret;
243 u8 unmask_value;
244 ret = twl_i2c_read_u8(TWL_MODULE_PIH, &unmask_value,
245 REG_INT_STS_A + offset);
246 unmask_value &= (~(bit_mask));
247 ret |= twl_i2c_write_u8(TWL_MODULE_PIH, unmask_value,
248 REG_INT_STS_A + offset); /* unmask INT_MSK_A/B/C */
249 return ret;
250}
251EXPORT_SYMBOL(twl6030_interrupt_unmask);
252
253int twl6030_interrupt_mask(u8 bit_mask, u8 offset)
254{
255 int ret;
256 u8 mask_value;
257 ret = twl_i2c_read_u8(TWL_MODULE_PIH, &mask_value,
258 REG_INT_STS_A + offset);
259 mask_value |= (bit_mask);
260 ret |= twl_i2c_write_u8(TWL_MODULE_PIH, mask_value,
261 REG_INT_STS_A + offset); /* mask INT_MSK_A/B/C */
262 return ret;
263}
264EXPORT_SYMBOL(twl6030_interrupt_mask);
265
kishore kadiyala72f2e2c2010-09-24 17:13:20 +0000266int twl6030_mmc_card_detect_config(void)
267{
268 int ret;
269 u8 reg_val = 0;
270
271 /* Unmasking the Card detect Interrupt line for MMC1 from Phoenix */
272 twl6030_interrupt_unmask(TWL6030_MMCDETECT_INT_MASK,
273 REG_INT_MSK_LINE_B);
274 twl6030_interrupt_unmask(TWL6030_MMCDETECT_INT_MASK,
275 REG_INT_MSK_STS_B);
276 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300277 * Initially Configuring MMC_CTRL for receiving interrupts &
kishore kadiyala72f2e2c2010-09-24 17:13:20 +0000278 * Card status on TWL6030 for MMC1
279 */
280 ret = twl_i2c_read_u8(TWL6030_MODULE_ID0, &reg_val, TWL6030_MMCCTRL);
281 if (ret < 0) {
282 pr_err("twl6030: Failed to read MMCCTRL, error %d\n", ret);
283 return ret;
284 }
285 reg_val &= ~VMMC_AUTO_OFF;
286 reg_val |= SW_FC;
287 ret = twl_i2c_write_u8(TWL6030_MODULE_ID0, reg_val, TWL6030_MMCCTRL);
288 if (ret < 0) {
289 pr_err("twl6030: Failed to write MMCCTRL, error %d\n", ret);
290 return ret;
291 }
292
293 /* Configuring PullUp-PullDown register */
294 ret = twl_i2c_read_u8(TWL6030_MODULE_ID0, &reg_val,
295 TWL6030_CFG_INPUT_PUPD3);
296 if (ret < 0) {
297 pr_err("twl6030: Failed to read CFG_INPUT_PUPD3, error %d\n",
298 ret);
299 return ret;
300 }
301 reg_val &= ~(MMC_PU | MMC_PD);
302 ret = twl_i2c_write_u8(TWL6030_MODULE_ID0, reg_val,
303 TWL6030_CFG_INPUT_PUPD3);
304 if (ret < 0) {
305 pr_err("twl6030: Failed to write CFG_INPUT_PUPD3, error %d\n",
306 ret);
307 return ret;
308 }
309 return 0;
310}
311EXPORT_SYMBOL(twl6030_mmc_card_detect_config);
312
313int twl6030_mmc_card_detect(struct device *dev, int slot)
314{
315 int ret = -EIO;
316 u8 read_reg = 0;
317 struct platform_device *pdev = to_platform_device(dev);
318
319 if (pdev->id) {
320 /* TWL6030 provide's Card detect support for
321 * only MMC1 controller.
322 */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300323 pr_err("Unknown MMC controller %d in %s\n", pdev->id, __func__);
kishore kadiyala72f2e2c2010-09-24 17:13:20 +0000324 return ret;
325 }
326 /*
327 * BIT0 of MMC_CTRL on TWL6030 provides card status for MMC1
328 * 0 - Card not present ,1 - Card present
329 */
330 ret = twl_i2c_read_u8(TWL6030_MODULE_ID0, &read_reg,
331 TWL6030_MMCCTRL);
332 if (ret >= 0)
333 ret = read_reg & STS_MMC;
334 return ret;
335}
336EXPORT_SYMBOL(twl6030_mmc_card_detect);
337
Balaji T Ke8deb282009-12-14 00:25:31 +0100338int twl6030_init_irq(int irq_num, unsigned irq_base, unsigned irq_end)
339{
340
341 int status = 0;
342 int i;
343 struct task_struct *task;
344 int ret;
345 u8 mask[4];
346
347 static struct irq_chip twl6030_irq_chip;
348 mask[1] = 0xFF;
349 mask[2] = 0xFF;
350 mask[3] = 0xFF;
351 ret = twl_i2c_write(TWL_MODULE_PIH, &mask[0],
352 REG_INT_MSK_LINE_A, 3); /* MASK ALL INT LINES */
353 ret = twl_i2c_write(TWL_MODULE_PIH, &mask[0],
354 REG_INT_MSK_STS_A, 3); /* MASK ALL INT STS */
355 ret = twl_i2c_write(TWL_MODULE_PIH, &mask[0],
356 REG_INT_STS_A, 3); /* clear INT_STS_A,B,C */
357
358 twl6030_irq_base = irq_base;
359
360 /* install an irq handler for each of the modules;
361 * clone dummy irq_chip since PIH can't *do* anything
362 */
363 twl6030_irq_chip = dummy_irq_chip;
364 twl6030_irq_chip.name = "twl6030";
Lennert Buytenhekc45c6852010-12-13 13:31:18 +0100365 twl6030_irq_chip.irq_set_type = NULL;
Santosh Shilimkar49dcd072011-09-06 21:29:30 +0530366 twl6030_irq_chip.irq_set_wake = twl6030_irq_set_wake;
Balaji T Ke8deb282009-12-14 00:25:31 +0100367
368 for (i = irq_base; i < irq_end; i++) {
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000369 irq_set_chip_and_handler(i, &twl6030_irq_chip,
370 handle_simple_irq);
Santosh Shilimkar49dcd072011-09-06 21:29:30 +0530371 irq_set_chip_data(i, (void *)irq_num);
Balaji T Ke8deb282009-12-14 00:25:31 +0100372 activate_irq(i);
373 }
374
375 twl6030_irq_next = i;
376 pr_info("twl6030: %s (irq %d) chaining IRQs %d..%d\n", "PIH",
377 irq_num, irq_base, twl6030_irq_next - 1);
378
379 /* install an irq handler to demultiplex the TWL6030 interrupt */
380 init_completion(&irq_event);
Balaji T Ke8deb282009-12-14 00:25:31 +0100381
Yong Zhangf742b962011-09-15 21:52:09 +0200382 status = request_irq(irq_num, handle_twl6030_pih, 0,
Balaji T Ke8deb282009-12-14 00:25:31 +0100383 "TWL6030-PIH", &irq_event);
384 if (status < 0) {
385 pr_err("twl6030: could not claim irq%d: %d\n", irq_num, status);
386 goto fail_irq;
387 }
Axel Lin862de702011-08-11 15:21:00 +0800388
389 task = kthread_run(twl6030_irq_thread, (void *)irq_num, "twl6030-irq");
390 if (IS_ERR(task)) {
391 pr_err("twl6030: could not create irq %d thread!\n", irq_num);
392 status = PTR_ERR(task);
393 goto fail_kthread;
394 }
Todd Poynorab2b9262011-10-04 11:52:29 +0200395
396 twl_irq = irq_num;
397 register_pm_notifier(&twl6030_irq_pm_notifier_block);
Balaji T Ke8deb282009-12-14 00:25:31 +0100398 return status;
Balaji T Ke8deb282009-12-14 00:25:31 +0100399
400fail_kthread:
Axel Lin862de702011-08-11 15:21:00 +0800401 free_irq(irq_num, &irq_event);
402
403fail_irq:
Balaji T Ke8deb282009-12-14 00:25:31 +0100404 for (i = irq_base; i < irq_end; i++)
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000405 irq_set_chip_and_handler(i, NULL, NULL);
Balaji T Ke8deb282009-12-14 00:25:31 +0100406 return status;
407}
408
409int twl6030_exit_irq(void)
410{
Todd Poynorab2b9262011-10-04 11:52:29 +0200411 unregister_pm_notifier(&twl6030_irq_pm_notifier_block);
Balaji T Ke8deb282009-12-14 00:25:31 +0100412
413 if (twl6030_irq_base) {
414 pr_err("twl6030: can't yet clean up IRQs?\n");
415 return -ENOSYS;
416 }
417 return 0;
418}
419