regulator: max8998 BUCK1/2 voltage change with use of GPIOs
[deliverable/linux.git] / drivers / mfd / twl4030-irq.c
CommitLineData
a30d46c0
DB
1/*
2 * twl4030-irq.c - TWL4030/TPS659x0 irq support
3 *
4 * Copyright (C) 2005-2006 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 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 */
29
30#include <linux/init.h>
31#include <linux/interrupt.h>
32#include <linux/irq.h>
33#include <linux/kthread.h>
5a0e3ad6 34#include <linux/slab.h>
a30d46c0 35
b07682b6 36#include <linux/i2c/twl.h>
a30d46c0
DB
37
38
39/*
40 * TWL4030 IRQ handling has two stages in hardware, and thus in software.
41 * The Primary Interrupt Handler (PIH) stage exposes status bits saying
42 * which Secondary Interrupt Handler (SIH) stage is raising an interrupt.
43 * SIH modules are more traditional IRQ components, which support per-IRQ
44 * enable/disable and trigger controls; they do most of the work.
45 *
46 * These chips are designed to support IRQ handling from two different
47 * I2C masters. Each has a dedicated IRQ line, and dedicated IRQ status
48 * and mask registers in the PIH and SIH modules.
49 *
50 * We set up IRQs starting at a platform-specified base, always starting
51 * with PIH and the SIH for PWR_INT and then usually adding GPIO:
52 * base + 0 .. base + 7 PIH
53 * base + 8 .. base + 15 SIH for PWR_INT
54 * base + 16 .. base + 33 SIH for GPIO
55 */
56
57/* PIH register offsets */
58#define REG_PIH_ISR_P1 0x01
59#define REG_PIH_ISR_P2 0x02
60#define REG_PIH_SIR 0x03 /* for testing */
61
62
63/* Linux could (eventually) use either IRQ line */
64static int irq_line;
65
66struct sih {
67 char name[8];
68 u8 module; /* module id */
69 u8 control_offset; /* for SIH_CTRL */
70 bool set_cor;
71
72 u8 bits; /* valid in isr/imr */
73 u8 bytes_ixr; /* bytelen of ISR/IMR/SIR */
74
75 u8 edr_offset;
76 u8 bytes_edr; /* bytelen of EDR */
77
1920a61e
IK
78 u8 irq_lines; /* number of supported irq lines */
79
a30d46c0 80 /* SIR ignored -- set interrupt, for testing only */
35a27e8e 81 struct sih_irq_data {
a30d46c0
DB
82 u8 isr_offset;
83 u8 imr_offset;
84 } mask[2];
85 /* + 2 bytes padding */
86};
87
1920a61e
IK
88static const struct sih *sih_modules;
89static int nr_sih_modules;
90
a30d46c0
DB
91#define SIH_INITIALIZER(modname, nbits) \
92 .module = TWL4030_MODULE_ ## modname, \
93 .control_offset = TWL4030_ ## modname ## _SIH_CTRL, \
94 .bits = nbits, \
95 .bytes_ixr = DIV_ROUND_UP(nbits, 8), \
96 .edr_offset = TWL4030_ ## modname ## _EDR, \
97 .bytes_edr = DIV_ROUND_UP((2*(nbits)), 8), \
1920a61e 98 .irq_lines = 2, \
a30d46c0
DB
99 .mask = { { \
100 .isr_offset = TWL4030_ ## modname ## _ISR1, \
101 .imr_offset = TWL4030_ ## modname ## _IMR1, \
102 }, \
103 { \
104 .isr_offset = TWL4030_ ## modname ## _ISR2, \
105 .imr_offset = TWL4030_ ## modname ## _IMR2, \
106 }, },
107
108/* register naming policies are inconsistent ... */
109#define TWL4030_INT_PWR_EDR TWL4030_INT_PWR_EDR1
110#define TWL4030_MODULE_KEYPAD_KEYP TWL4030_MODULE_KEYPAD
111#define TWL4030_MODULE_INT_PWR TWL4030_MODULE_INT
112
113
114/* Order in this table matches order in PIH_ISR. That is,
115 * BIT(n) in PIH_ISR is sih_modules[n].
116 */
1920a61e
IK
117/* sih_modules_twl4030 is used both in twl4030 and twl5030 */
118static const struct sih sih_modules_twl4030[6] = {
a30d46c0
DB
119 [0] = {
120 .name = "gpio",
121 .module = TWL4030_MODULE_GPIO,
122 .control_offset = REG_GPIO_SIH_CTRL,
123 .set_cor = true,
124 .bits = TWL4030_GPIO_MAX,
125 .bytes_ixr = 3,
126 /* Note: *all* of these IRQs default to no-trigger */
127 .edr_offset = REG_GPIO_EDR1,
128 .bytes_edr = 5,
1920a61e 129 .irq_lines = 2,
a30d46c0
DB
130 .mask = { {
131 .isr_offset = REG_GPIO_ISR1A,
132 .imr_offset = REG_GPIO_IMR1A,
133 }, {
134 .isr_offset = REG_GPIO_ISR1B,
135 .imr_offset = REG_GPIO_IMR1B,
136 }, },
137 },
138 [1] = {
139 .name = "keypad",
140 .set_cor = true,
141 SIH_INITIALIZER(KEYPAD_KEYP, 4)
142 },
143 [2] = {
144 .name = "bci",
145 .module = TWL4030_MODULE_INTERRUPTS,
146 .control_offset = TWL4030_INTERRUPTS_BCISIHCTRL,
8e52e279 147 .set_cor = true,
a30d46c0
DB
148 .bits = 12,
149 .bytes_ixr = 2,
150 .edr_offset = TWL4030_INTERRUPTS_BCIEDR1,
151 /* Note: most of these IRQs default to no-trigger */
152 .bytes_edr = 3,
1920a61e 153 .irq_lines = 2,
a30d46c0
DB
154 .mask = { {
155 .isr_offset = TWL4030_INTERRUPTS_BCIISR1A,
156 .imr_offset = TWL4030_INTERRUPTS_BCIIMR1A,
157 }, {
158 .isr_offset = TWL4030_INTERRUPTS_BCIISR1B,
159 .imr_offset = TWL4030_INTERRUPTS_BCIIMR1B,
160 }, },
161 },
162 [3] = {
163 .name = "madc",
164 SIH_INITIALIZER(MADC, 4)
165 },
166 [4] = {
167 /* USB doesn't use the same SIH organization */
168 .name = "usb",
169 },
170 [5] = {
171 .name = "power",
172 .set_cor = true,
173 SIH_INITIALIZER(INT_PWR, 8)
174 },
175 /* there are no SIH modules #6 or #7 ... */
176};
177
1920a61e
IK
178static const struct sih sih_modules_twl5031[8] = {
179 [0] = {
180 .name = "gpio",
181 .module = TWL4030_MODULE_GPIO,
182 .control_offset = REG_GPIO_SIH_CTRL,
183 .set_cor = true,
184 .bits = TWL4030_GPIO_MAX,
185 .bytes_ixr = 3,
186 /* Note: *all* of these IRQs default to no-trigger */
187 .edr_offset = REG_GPIO_EDR1,
188 .bytes_edr = 5,
189 .irq_lines = 2,
190 .mask = { {
191 .isr_offset = REG_GPIO_ISR1A,
192 .imr_offset = REG_GPIO_IMR1A,
193 }, {
194 .isr_offset = REG_GPIO_ISR1B,
195 .imr_offset = REG_GPIO_IMR1B,
196 }, },
197 },
198 [1] = {
199 .name = "keypad",
200 .set_cor = true,
201 SIH_INITIALIZER(KEYPAD_KEYP, 4)
202 },
203 [2] = {
204 .name = "bci",
205 .module = TWL5031_MODULE_INTERRUPTS,
206 .control_offset = TWL5031_INTERRUPTS_BCISIHCTRL,
207 .bits = 7,
208 .bytes_ixr = 1,
209 .edr_offset = TWL5031_INTERRUPTS_BCIEDR1,
210 /* Note: most of these IRQs default to no-trigger */
211 .bytes_edr = 2,
212 .irq_lines = 2,
213 .mask = { {
214 .isr_offset = TWL5031_INTERRUPTS_BCIISR1,
215 .imr_offset = TWL5031_INTERRUPTS_BCIIMR1,
216 }, {
217 .isr_offset = TWL5031_INTERRUPTS_BCIISR2,
218 .imr_offset = TWL5031_INTERRUPTS_BCIIMR2,
219 }, },
220 },
221 [3] = {
222 .name = "madc",
223 SIH_INITIALIZER(MADC, 4)
224 },
225 [4] = {
226 /* USB doesn't use the same SIH organization */
227 .name = "usb",
228 },
229 [5] = {
230 .name = "power",
231 .set_cor = true,
232 SIH_INITIALIZER(INT_PWR, 8)
233 },
234 [6] = {
235 /*
191211f5
IK
236 * ECI/DBI doesn't use the same SIH organization.
237 * For example, it supports only one interrupt output line.
238 * That is, the interrupts are seen on both INT1 and INT2 lines.
1920a61e 239 */
191211f5 240 .name = "eci_dbi",
1920a61e
IK
241 .module = TWL5031_MODULE_ACCESSORY,
242 .bits = 9,
243 .bytes_ixr = 2,
244 .irq_lines = 1,
245 .mask = { {
246 .isr_offset = TWL5031_ACIIDR_LSB,
247 .imr_offset = TWL5031_ACIIMR_LSB,
248 }, },
249
250 },
251 [7] = {
191211f5
IK
252 /* Audio accessory */
253 .name = "audio",
1920a61e
IK
254 .module = TWL5031_MODULE_ACCESSORY,
255 .control_offset = TWL5031_ACCSIHCTRL,
256 .bits = 2,
257 .bytes_ixr = 1,
258 .edr_offset = TWL5031_ACCEDR1,
259 /* Note: most of these IRQs default to no-trigger */
260 .bytes_edr = 1,
261 .irq_lines = 2,
262 .mask = { {
263 .isr_offset = TWL5031_ACCISR1,
264 .imr_offset = TWL5031_ACCIMR1,
265 }, {
266 .isr_offset = TWL5031_ACCISR2,
267 .imr_offset = TWL5031_ACCIMR2,
268 }, },
269 },
270};
271
a30d46c0
DB
272#undef TWL4030_MODULE_KEYPAD_KEYP
273#undef TWL4030_MODULE_INT_PWR
274#undef TWL4030_INT_PWR_EDR
275
276/*----------------------------------------------------------------------*/
277
278static unsigned twl4030_irq_base;
279
280static struct completion irq_event;
281
282/*
283 * This thread processes interrupts reported by the Primary Interrupt Handler.
284 */
285static int twl4030_irq_thread(void *data)
286{
287 long irq = (long)data;
a30d46c0 288 static unsigned i2c_errors;
3446d4bb 289 static const unsigned max_i2c_errors = 100;
a30d46c0 290
94964f96 291
a30d46c0
DB
292 current->flags |= PF_NOFREEZE;
293
294 while (!kthread_should_stop()) {
295 int ret;
296 int module_irq;
297 u8 pih_isr;
298
299 /* Wait for IRQ, then read PIH irq status (also blocking) */
300 wait_for_completion_interruptible(&irq_event);
301
fc7b92fc 302 ret = twl_i2c_read_u8(TWL4030_MODULE_PIH, &pih_isr,
a30d46c0
DB
303 REG_PIH_ISR_P1);
304 if (ret) {
305 pr_warning("twl4030: I2C error %d reading PIH ISR\n",
306 ret);
307 if (++i2c_errors >= max_i2c_errors) {
308 printk(KERN_ERR "Maximum I2C error count"
309 " exceeded. Terminating %s.\n",
310 __func__);
311 break;
312 }
313 complete(&irq_event);
314 continue;
315 }
316
317 /* these handlers deal with the relevant SIH irq status */
318 local_irq_disable();
319 for (module_irq = twl4030_irq_base;
320 pih_isr;
321 pih_isr >>= 1, module_irq++) {
322 if (pih_isr & 0x1) {
94964f96
SO
323 struct irq_desc *d = irq_to_desc(module_irq);
324
325 if (!d) {
326 pr_err("twl4030: Invalid SIH IRQ: %d\n",
327 module_irq);
328 return -EINVAL;
329 }
a30d46c0
DB
330
331 /* These can't be masked ... always warn
332 * if we get any surprises.
333 */
334 if (d->status & IRQ_DISABLED)
335 note_interrupt(module_irq, d,
336 IRQ_NONE);
337 else
338 d->handle_irq(module_irq, d);
339 }
340 }
341 local_irq_enable();
342
1cef8e41 343 enable_irq(irq);
a30d46c0
DB
344 }
345
346 return 0;
347}
348
349/*
350 * handle_twl4030_pih() is the desc->handle method for the twl4030 interrupt.
351 * This is a chained interrupt, so there is no desc->action method for it.
352 * Now we need to query the interrupt controller in the twl4030 to determine
353 * which module is generating the interrupt request. However, we can't do i2c
354 * transactions in interrupt context, so we must defer that work to a kernel
355 * thread. All we do here is acknowledge and mask the interrupt and wakeup
356 * the kernel thread.
357 */
1cef8e41 358static irqreturn_t handle_twl4030_pih(int irq, void *devid)
a30d46c0
DB
359{
360 /* Acknowledge, clear *AND* mask the interrupt... */
1cef8e41
RK
361 disable_irq_nosync(irq);
362 complete(devid);
363 return IRQ_HANDLED;
a30d46c0 364}
a30d46c0
DB
365/*----------------------------------------------------------------------*/
366
367/*
368 * twl4030_init_sih_modules() ... start from a known state where no
369 * IRQs will be coming in, and where we can quickly enable them then
370 * handle them as they arrive. Mask all IRQs: maybe init SIH_CTRL.
371 *
372 * NOTE: we don't touch EDR registers here; they stay with hardware
373 * defaults or whatever the last value was. Note that when both EDR
374 * bits for an IRQ are clear, that's as if its IMR bit is set...
375 */
376static int twl4030_init_sih_modules(unsigned line)
377{
378 const struct sih *sih;
379 u8 buf[4];
380 int i;
381 int status;
382
383 /* line 0 == int1_n signal; line 1 == int2_n signal */
384 if (line > 1)
385 return -EINVAL;
386
387 irq_line = line;
388
389 /* disable all interrupts on our line */
390 memset(buf, 0xff, sizeof buf);
391 sih = sih_modules;
1920a61e 392 for (i = 0; i < nr_sih_modules; i++, sih++) {
a30d46c0
DB
393
394 /* skip USB -- it's funky */
395 if (!sih->bytes_ixr)
396 continue;
397
1920a61e
IK
398 /* Not all the SIH modules support multiple interrupt lines */
399 if (sih->irq_lines <= line)
400 continue;
401
fc7b92fc 402 status = twl_i2c_write(sih->module, buf,
a30d46c0
DB
403 sih->mask[line].imr_offset, sih->bytes_ixr);
404 if (status < 0)
405 pr_err("twl4030: err %d initializing %s %s\n",
406 status, sih->name, "IMR");
407
408 /* Maybe disable "exclusive" mode; buffer second pending irq;
409 * set Clear-On-Read (COR) bit.
410 *
411 * NOTE that sometimes COR polarity is documented as being
8e52e279 412 * inverted: for MADC, COR=1 means "clear on write".
a30d46c0
DB
413 * And for PWR_INT it's not documented...
414 */
415 if (sih->set_cor) {
fc7b92fc 416 status = twl_i2c_write_u8(sih->module,
a30d46c0
DB
417 TWL4030_SIH_CTRL_COR_MASK,
418 sih->control_offset);
419 if (status < 0)
420 pr_err("twl4030: err %d initializing %s %s\n",
421 status, sih->name, "SIH_CTRL");
422 }
423 }
424
425 sih = sih_modules;
1920a61e 426 for (i = 0; i < nr_sih_modules; i++, sih++) {
a30d46c0
DB
427 u8 rxbuf[4];
428 int j;
429
430 /* skip USB */
431 if (!sih->bytes_ixr)
432 continue;
433
1920a61e
IK
434 /* Not all the SIH modules support multiple interrupt lines */
435 if (sih->irq_lines <= line)
436 continue;
437
a30d46c0
DB
438 /* Clear pending interrupt status. Either the read was
439 * enough, or we need to write those bits. Repeat, in
440 * case an IRQ is pending (PENDDIS=0) ... that's not
441 * uncommon with PWR_INT.PWRON.
442 */
443 for (j = 0; j < 2; j++) {
fc7b92fc 444 status = twl_i2c_read(sih->module, rxbuf,
a30d46c0
DB
445 sih->mask[line].isr_offset, sih->bytes_ixr);
446 if (status < 0)
447 pr_err("twl4030: err %d initializing %s %s\n",
448 status, sih->name, "ISR");
449
450 if (!sih->set_cor)
fc7b92fc 451 status = twl_i2c_write(sih->module, buf,
a30d46c0
DB
452 sih->mask[line].isr_offset,
453 sih->bytes_ixr);
454 /* else COR=1 means read sufficed.
455 * (for most SIH modules...)
456 */
457 }
458 }
459
460 return 0;
461}
462
463static inline void activate_irq(int irq)
464{
465#ifdef CONFIG_ARM
466 /* ARM requires an extra step to clear IRQ_NOREQUEST, which it
467 * sets on behalf of every irq_chip. Also sets IRQ_NOPROBE.
468 */
469 set_irq_flags(irq, IRQF_VALID);
470#else
471 /* same effect on other architectures */
472 set_irq_noprobe(irq);
473#endif
474}
475
476/*----------------------------------------------------------------------*/
477
478static DEFINE_SPINLOCK(sih_agent_lock);
479
480static struct workqueue_struct *wq;
481
482struct sih_agent {
483 int irq_base;
484 const struct sih *sih;
485
486 u32 imr;
487 bool imr_change_pending;
488 struct work_struct mask_work;
489
490 u32 edge_change;
491 struct work_struct edge_work;
492};
493
494static void twl4030_sih_do_mask(struct work_struct *work)
495{
496 struct sih_agent *agent;
497 const struct sih *sih;
498 union {
499 u8 bytes[4];
500 u32 word;
501 } imr;
502 int status;
503
504 agent = container_of(work, struct sih_agent, mask_work);
505
506 /* see what work we have */
507 spin_lock_irq(&sih_agent_lock);
508 if (agent->imr_change_pending) {
509 sih = agent->sih;
510 /* byte[0] gets overwritten as we write ... */
511 imr.word = cpu_to_le32(agent->imr << 8);
512 agent->imr_change_pending = false;
513 } else
514 sih = NULL;
515 spin_unlock_irq(&sih_agent_lock);
516 if (!sih)
517 return;
518
519 /* write the whole mask ... simpler than subsetting it */
fc7b92fc 520 status = twl_i2c_write(sih->module, imr.bytes,
a30d46c0
DB
521 sih->mask[irq_line].imr_offset, sih->bytes_ixr);
522 if (status)
523 pr_err("twl4030: %s, %s --> %d\n", __func__,
524 "write", status);
525}
526
527static void twl4030_sih_do_edge(struct work_struct *work)
528{
529 struct sih_agent *agent;
530 const struct sih *sih;
531 u8 bytes[6];
532 u32 edge_change;
533 int status;
534
535 agent = container_of(work, struct sih_agent, edge_work);
536
537 /* see what work we have */
538 spin_lock_irq(&sih_agent_lock);
539 edge_change = agent->edge_change;
df10d646 540 agent->edge_change = 0;
a30d46c0
DB
541 sih = edge_change ? agent->sih : NULL;
542 spin_unlock_irq(&sih_agent_lock);
543 if (!sih)
544 return;
545
546 /* Read, reserving first byte for write scratch. Yes, this
547 * could be cached for some speedup ... but be careful about
548 * any processor on the other IRQ line, EDR registers are
549 * shared.
550 */
fc7b92fc 551 status = twl_i2c_read(sih->module, bytes + 1,
a30d46c0
DB
552 sih->edr_offset, sih->bytes_edr);
553 if (status) {
554 pr_err("twl4030: %s, %s --> %d\n", __func__,
555 "read", status);
556 return;
557 }
558
559 /* Modify only the bits we know must change */
560 while (edge_change) {
561 int i = fls(edge_change) - 1;
94964f96 562 struct irq_desc *d = irq_to_desc(i + agent->irq_base);
a30d46c0
DB
563 int byte = 1 + (i >> 2);
564 int off = (i & 0x3) * 2;
565
94964f96
SO
566 if (!d) {
567 pr_err("twl4030: Invalid IRQ: %d\n",
568 i + agent->irq_base);
569 return;
570 }
571
a30d46c0
DB
572 bytes[byte] &= ~(0x03 << off);
573
cd6e125c 574 raw_spin_lock_irq(&d->lock);
a30d46c0
DB
575 if (d->status & IRQ_TYPE_EDGE_RISING)
576 bytes[byte] |= BIT(off + 1);
577 if (d->status & IRQ_TYPE_EDGE_FALLING)
578 bytes[byte] |= BIT(off + 0);
cd6e125c 579 raw_spin_unlock_irq(&d->lock);
a30d46c0
DB
580
581 edge_change &= ~BIT(i);
582 }
583
584 /* Write */
fc7b92fc 585 status = twl_i2c_write(sih->module, bytes,
a30d46c0
DB
586 sih->edr_offset, sih->bytes_edr);
587 if (status)
588 pr_err("twl4030: %s, %s --> %d\n", __func__,
589 "write", status);
590}
591
592/*----------------------------------------------------------------------*/
593
594/*
595 * All irq_chip methods get issued from code holding irq_desc[irq].lock,
596 * which can't perform the underlying I2C operations (because they sleep).
597 * So we must hand them off to a thread (workqueue) and cope with asynch
598 * completion, potentially including some re-ordering, of these requests.
599 */
600
601static void twl4030_sih_mask(unsigned irq)
602{
603 struct sih_agent *sih = get_irq_chip_data(irq);
604 unsigned long flags;
605
606 spin_lock_irqsave(&sih_agent_lock, flags);
607 sih->imr |= BIT(irq - sih->irq_base);
608 sih->imr_change_pending = true;
609 queue_work(wq, &sih->mask_work);
610 spin_unlock_irqrestore(&sih_agent_lock, flags);
611}
612
613static void twl4030_sih_unmask(unsigned irq)
614{
615 struct sih_agent *sih = get_irq_chip_data(irq);
616 unsigned long flags;
617
618 spin_lock_irqsave(&sih_agent_lock, flags);
619 sih->imr &= ~BIT(irq - sih->irq_base);
620 sih->imr_change_pending = true;
621 queue_work(wq, &sih->mask_work);
622 spin_unlock_irqrestore(&sih_agent_lock, flags);
623}
624
625static int twl4030_sih_set_type(unsigned irq, unsigned trigger)
626{
627 struct sih_agent *sih = get_irq_chip_data(irq);
94964f96 628 struct irq_desc *desc = irq_to_desc(irq);
a30d46c0
DB
629 unsigned long flags;
630
94964f96
SO
631 if (!desc) {
632 pr_err("twl4030: Invalid IRQ: %d\n", irq);
633 return -EINVAL;
634 }
635
a30d46c0
DB
636 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
637 return -EINVAL;
638
639 spin_lock_irqsave(&sih_agent_lock, flags);
640 if ((desc->status & IRQ_TYPE_SENSE_MASK) != trigger) {
641 desc->status &= ~IRQ_TYPE_SENSE_MASK;
642 desc->status |= trigger;
643 sih->edge_change |= BIT(irq - sih->irq_base);
644 queue_work(wq, &sih->edge_work);
645 }
646 spin_unlock_irqrestore(&sih_agent_lock, flags);
647 return 0;
648}
649
650static struct irq_chip twl4030_sih_irq_chip = {
651 .name = "twl4030",
652 .mask = twl4030_sih_mask,
653 .unmask = twl4030_sih_unmask,
654 .set_type = twl4030_sih_set_type,
655};
656
657/*----------------------------------------------------------------------*/
658
659static inline int sih_read_isr(const struct sih *sih)
660{
661 int status;
662 union {
663 u8 bytes[4];
664 u32 word;
665 } isr;
666
667 /* FIXME need retry-on-error ... */
668
669 isr.word = 0;
fc7b92fc 670 status = twl_i2c_read(sih->module, isr.bytes,
a30d46c0
DB
671 sih->mask[irq_line].isr_offset, sih->bytes_ixr);
672
673 return (status < 0) ? status : le32_to_cpu(isr.word);
674}
675
676/*
677 * Generic handler for SIH interrupts ... we "know" this is called
678 * in task context, with IRQs enabled.
679 */
680static void handle_twl4030_sih(unsigned irq, struct irq_desc *desc)
681{
682 struct sih_agent *agent = get_irq_data(irq);
683 const struct sih *sih = agent->sih;
684 int isr;
685
686 /* reading ISR acks the IRQs, using clear-on-read mode */
687 local_irq_enable();
688 isr = sih_read_isr(sih);
689 local_irq_disable();
690
691 if (isr < 0) {
692 pr_err("twl4030: %s SIH, read ISR error %d\n",
693 sih->name, isr);
694 /* REVISIT: recover; eventually mask it all, etc */
695 return;
696 }
697
698 while (isr) {
699 irq = fls(isr);
700 irq--;
701 isr &= ~BIT(irq);
702
703 if (irq < sih->bits)
704 generic_handle_irq(agent->irq_base + irq);
705 else
706 pr_err("twl4030: %s SIH, invalid ISR bit %d\n",
707 sih->name, irq);
708 }
709}
710
711static unsigned twl4030_irq_next;
712
713/* returns the first IRQ used by this SIH bank,
714 * or negative errno
715 */
716int twl4030_sih_setup(int module)
717{
718 int sih_mod;
719 const struct sih *sih = NULL;
720 struct sih_agent *agent;
721 int i, irq;
722 int status = -EINVAL;
723 unsigned irq_base = twl4030_irq_next;
724
725 /* only support modules with standard clear-on-read for now */
726 for (sih_mod = 0, sih = sih_modules;
1920a61e 727 sih_mod < nr_sih_modules;
a30d46c0
DB
728 sih_mod++, sih++) {
729 if (sih->module == module && sih->set_cor) {
730 if (!WARN((irq_base + sih->bits) > NR_IRQS,
731 "irq %d for %s too big\n",
732 irq_base + sih->bits,
733 sih->name))
734 status = 0;
735 break;
736 }
737 }
738 if (status < 0)
739 return status;
740
741 agent = kzalloc(sizeof *agent, GFP_KERNEL);
742 if (!agent)
743 return -ENOMEM;
744
745 status = 0;
746
747 agent->irq_base = irq_base;
748 agent->sih = sih;
749 agent->imr = ~0;
750 INIT_WORK(&agent->mask_work, twl4030_sih_do_mask);
751 INIT_WORK(&agent->edge_work, twl4030_sih_do_edge);
752
753 for (i = 0; i < sih->bits; i++) {
754 irq = irq_base + i;
755
756 set_irq_chip_and_handler(irq, &twl4030_sih_irq_chip,
757 handle_edge_irq);
758 set_irq_chip_data(irq, agent);
759 activate_irq(irq);
760 }
761
762 status = irq_base;
763 twl4030_irq_next += i;
764
765 /* replace generic PIH handler (handle_simple_irq) */
766 irq = sih_mod + twl4030_irq_base;
767 set_irq_data(irq, agent);
768 set_irq_chained_handler(irq, handle_twl4030_sih);
769
770 pr_info("twl4030: %s (irq %d) chaining IRQs %d..%d\n", sih->name,
771 irq, irq_base, twl4030_irq_next - 1);
772
773 return status;
774}
775
776/* FIXME need a call to reverse twl4030_sih_setup() ... */
777
778
779/*----------------------------------------------------------------------*/
780
781/* FIXME pass in which interrupt line we'll use ... */
782#define twl_irq_line 0
783
e8deb28c 784int twl4030_init_irq(int irq_num, unsigned irq_base, unsigned irq_end)
a30d46c0
DB
785{
786 static struct irq_chip twl4030_irq_chip;
787
788 int status;
789 int i;
790 struct task_struct *task;
791
792 /*
793 * Mask and clear all TWL4030 interrupts since initially we do
794 * not have any TWL4030 module interrupt handlers present
795 */
796 status = twl4030_init_sih_modules(twl_irq_line);
797 if (status < 0)
798 return status;
799
800 wq = create_singlethread_workqueue("twl4030-irqchip");
801 if (!wq) {
802 pr_err("twl4030: workqueue FAIL\n");
803 return -ESRCH;
804 }
805
806 twl4030_irq_base = irq_base;
807
808 /* install an irq handler for each of the SIH modules;
809 * clone dummy irq_chip since PIH can't *do* anything
810 */
811 twl4030_irq_chip = dummy_irq_chip;
812 twl4030_irq_chip.name = "twl4030";
813
fe212213 814 twl4030_sih_irq_chip.irq_ack = dummy_irq_chip.irq_ack;
a30d46c0
DB
815
816 for (i = irq_base; i < irq_end; i++) {
817 set_irq_chip_and_handler(i, &twl4030_irq_chip,
818 handle_simple_irq);
819 activate_irq(i);
820 }
821 twl4030_irq_next = i;
822 pr_info("twl4030: %s (irq %d) chaining IRQs %d..%d\n", "PIH",
823 irq_num, irq_base, twl4030_irq_next - 1);
824
825 /* ... and the PWR_INT module ... */
826 status = twl4030_sih_setup(TWL4030_MODULE_INT);
827 if (status < 0) {
828 pr_err("twl4030: sih_setup PWR INT --> %d\n", status);
829 goto fail;
830 }
831
832 /* install an irq handler to demultiplex the TWL4030 interrupt */
a30d46c0 833
a30d46c0 834
1cef8e41 835 init_completion(&irq_event);
a30d46c0 836
1cef8e41
RK
837 status = request_irq(irq_num, handle_twl4030_pih, IRQF_DISABLED,
838 "TWL4030-PIH", &irq_event);
839 if (status < 0) {
840 pr_err("twl4030: could not claim irq%d: %d\n", irq_num, status);
841 goto fail_rqirq;
842 }
843
89f5f9f7
AC
844 task = kthread_run(twl4030_irq_thread, (void *)(long)irq_num,
845 "twl4030-irq");
1cef8e41
RK
846 if (IS_ERR(task)) {
847 pr_err("twl4030: could not create irq %d thread!\n", irq_num);
848 status = PTR_ERR(task);
849 goto fail_kthread;
850 }
851 return status;
852fail_kthread:
853 free_irq(irq_num, &irq_event);
854fail_rqirq:
855 /* clean up twl4030_sih_setup */
a30d46c0
DB
856fail:
857 for (i = irq_base; i < irq_end; i++)
858 set_irq_chip_and_handler(i, NULL, NULL);
859 destroy_workqueue(wq);
860 wq = NULL;
861 return status;
862}
863
e8deb28c 864int twl4030_exit_irq(void)
a30d46c0
DB
865{
866 /* FIXME undo twl_init_irq() */
867 if (twl4030_irq_base) {
868 pr_err("twl4030: can't yet clean up IRQs?\n");
869 return -ENOSYS;
870 }
871 return 0;
872}
1920a61e 873
e8deb28c 874int twl4030_init_chip_irq(const char *chip)
1920a61e
IK
875{
876 if (!strcmp(chip, "twl5031")) {
877 sih_modules = sih_modules_twl5031;
878 nr_sih_modules = ARRAY_SIZE(sih_modules_twl5031);
879 } else {
880 sih_modules = sih_modules_twl4030;
881 nr_sih_modules = ARRAY_SIZE(sih_modules_twl4030);
882 }
883
884 return 0;
885}
This page took 0.210326 seconds and 5 git commands to generate.