]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/mfd/twl4030-irq.c
62c90a1e2c43ac0f2bfcc1011b4b989d3cbda9a8
[linux-2.6-omap-h63xx.git] / drivers / mfd / twl4030-irq.c
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>
34
35 #include <linux/i2c/twl4030.h>
36
37
38 /*
39  * TWL4030 IRQ handling has two stages in hardware, and thus in software.
40  * The Primary Interrupt Handler (PIH) stage exposes status bits saying
41  * which Secondary Interrupt Handler (SIH) stage is raising an interrupt.
42  * SIH modules are more traditional IRQ components, which support per-IRQ
43  * enable/disable and trigger controls; they do most of the work.
44  *
45  * These chips are designed to support IRQ handling from two different
46  * I2C masters.  Each has a dedicated IRQ line, and dedicated IRQ status
47  * and mask registers in the PIH and SIH modules.
48  *
49  * We set up IRQs starting at a platform-specified base, always starting
50  * with PIH and the SIH for PWR_INT and then usually adding GPIO:
51  *      base + 0  .. base + 7   PIH
52  *      base + 8  .. base + 15  SIH for PWR_INT
53  *      base + 16 .. base + 33  SIH for GPIO
54  */
55
56 /* PIH register offsets */
57 #define REG_PIH_ISR_P1                  0x01
58 #define REG_PIH_ISR_P2                  0x02
59 #define REG_PIH_SIR                     0x03    /* for testing */
60
61
62 /* Linux could (eventually) use either IRQ line */
63 static int irq_line;
64
65 struct sih {
66         char    name[8];
67         u8      module;                 /* module id */
68         u8      control_offset;         /* for SIH_CTRL */
69         bool    set_cor;
70
71         u8      bits;                   /* valid in isr/imr */
72         u8      bytes_ixr;              /* bytelen of ISR/IMR/SIR */
73
74         u8      edr_offset;
75         u8      bytes_edr;              /* bytelen of EDR */
76
77         /* SIR ignored -- set interrupt, for testing only */
78         struct irq_data {
79                 u8      isr_offset;
80                 u8      imr_offset;
81         } mask[2];
82         /* + 2 bytes padding */
83 };
84
85 #define SIH_INITIALIZER(modname, nbits) \
86         .module         = TWL4030_MODULE_ ## modname, \
87         .control_offset = TWL4030_ ## modname ## _SIH_CTRL, \
88         .bits           = nbits, \
89         .bytes_ixr      = DIV_ROUND_UP(nbits, 8), \
90         .edr_offset     = TWL4030_ ## modname ## _EDR, \
91         .bytes_edr      = DIV_ROUND_UP((2*(nbits)), 8), \
92         .mask = { { \
93                 .isr_offset     = TWL4030_ ## modname ## _ISR1, \
94                 .imr_offset     = TWL4030_ ## modname ## _IMR1, \
95         }, \
96         { \
97                 .isr_offset     = TWL4030_ ## modname ## _ISR2, \
98                 .imr_offset     = TWL4030_ ## modname ## _IMR2, \
99         }, },
100
101 /* register naming policies are inconsistent ... */
102 #define TWL4030_INT_PWR_EDR             TWL4030_INT_PWR_EDR1
103 #define TWL4030_MODULE_KEYPAD_KEYP      TWL4030_MODULE_KEYPAD
104 #define TWL4030_MODULE_INT_PWR          TWL4030_MODULE_INT
105
106
107 /* Order in this table matches order in PIH_ISR.  That is,
108  * BIT(n) in PIH_ISR is sih_modules[n].
109  */
110 static const struct sih sih_modules[6] = {
111         [0] = {
112                 .name           = "gpio",
113                 .module         = TWL4030_MODULE_GPIO,
114                 .control_offset = REG_GPIO_SIH_CTRL,
115                 .set_cor        = true,
116                 .bits           = TWL4030_GPIO_MAX,
117                 .bytes_ixr      = 3,
118                 /* Note: *all* of these IRQs default to no-trigger */
119                 .edr_offset     = REG_GPIO_EDR1,
120                 .bytes_edr      = 5,
121                 .mask = { {
122                         .isr_offset     = REG_GPIO_ISR1A,
123                         .imr_offset     = REG_GPIO_IMR1A,
124                 }, {
125                         .isr_offset     = REG_GPIO_ISR1B,
126                         .imr_offset     = REG_GPIO_IMR1B,
127                 }, },
128         },
129         [1] = {
130                 .name           = "keypad",
131                 .set_cor        = true,
132                 SIH_INITIALIZER(KEYPAD_KEYP, 4)
133         },
134         [2] = {
135                 .name           = "bci",
136                 .module         = TWL4030_MODULE_INTERRUPTS,
137                 .control_offset = TWL4030_INTERRUPTS_BCISIHCTRL,
138                 .bits           = 12,
139                 .bytes_ixr      = 2,
140                 .edr_offset     = TWL4030_INTERRUPTS_BCIEDR1,
141                 /* Note: most of these IRQs default to no-trigger */
142                 .bytes_edr      = 3,
143                 .mask = { {
144                         .isr_offset     = TWL4030_INTERRUPTS_BCIISR1A,
145                         .imr_offset     = TWL4030_INTERRUPTS_BCIIMR1A,
146                 }, {
147                         .isr_offset     = TWL4030_INTERRUPTS_BCIISR1B,
148                         .imr_offset     = TWL4030_INTERRUPTS_BCIIMR1B,
149                 }, },
150         },
151         [3] = {
152                 .name           = "madc",
153                 SIH_INITIALIZER(MADC, 4)
154         },
155         [4] = {
156                 /* USB doesn't use the same SIH organization */
157                 .name           = "usb",
158         },
159         [5] = {
160                 .name           = "power",
161                 .set_cor        = true,
162                 SIH_INITIALIZER(INT_PWR, 8)
163         },
164                 /* there are no SIH modules #6 or #7 ... */
165 };
166
167 #undef TWL4030_MODULE_KEYPAD_KEYP
168 #undef TWL4030_MODULE_INT_PWR
169 #undef TWL4030_INT_PWR_EDR
170
171 /*----------------------------------------------------------------------*/
172
173 static unsigned twl4030_irq_base;
174
175 static struct completion irq_event;
176
177 /*
178  * This thread processes interrupts reported by the Primary Interrupt Handler.
179  */
180 static int twl4030_irq_thread(void *data)
181 {
182         long irq = (long)data;
183         irq_desc_t *desc = irq_desc + irq;
184         static unsigned i2c_errors;
185         const static unsigned max_i2c_errors = 100;
186
187         current->flags |= PF_NOFREEZE;
188
189         while (!kthread_should_stop()) {
190                 int ret;
191                 int module_irq;
192                 u8 pih_isr;
193
194                 /* Wait for IRQ, then read PIH irq status (also blocking) */
195                 wait_for_completion_interruptible(&irq_event);
196
197                 ret = twl4030_i2c_read_u8(TWL4030_MODULE_PIH, &pih_isr,
198                                           REG_PIH_ISR_P1);
199                 if (ret) {
200                         pr_warning("twl4030: I2C error %d reading PIH ISR\n",
201                                         ret);
202                         if (++i2c_errors >= max_i2c_errors) {
203                                 printk(KERN_ERR "Maximum I2C error count"
204                                                 " exceeded.  Terminating %s.\n",
205                                                 __func__);
206                                 break;
207                         }
208                         complete(&irq_event);
209                         continue;
210                 }
211
212                 /* these handlers deal with the relevant SIH irq status */
213                 local_irq_disable();
214                 for (module_irq = twl4030_irq_base;
215                                 pih_isr;
216                                 pih_isr >>= 1, module_irq++) {
217                         if (pih_isr & 0x1) {
218                                 irq_desc_t *d = irq_desc + module_irq;
219
220                                 /* These can't be masked ... always warn
221                                  * if we get any surprises.
222                                  */
223                                 if (d->status & IRQ_DISABLED)
224                                         note_interrupt(module_irq, d,
225                                                         IRQ_NONE);
226                                 else
227                                         d->handle_irq(module_irq, d);
228                         }
229                 }
230                 local_irq_enable();
231
232                 desc->chip->unmask(irq);
233         }
234
235         return 0;
236 }
237
238 /*
239  * handle_twl4030_pih() is the desc->handle method for the twl4030 interrupt.
240  * This is a chained interrupt, so there is no desc->action method for it.
241  * Now we need to query the interrupt controller in the twl4030 to determine
242  * which module is generating the interrupt request.  However, we can't do i2c
243  * transactions in interrupt context, so we must defer that work to a kernel
244  * thread.  All we do here is acknowledge and mask the interrupt and wakeup
245  * the kernel thread.
246  */
247 static void handle_twl4030_pih(unsigned int irq, irq_desc_t *desc)
248 {
249         /* Acknowledge, clear *AND* mask the interrupt... */
250         desc->chip->ack(irq);
251         complete(&irq_event);
252 }
253
254 static struct task_struct *start_twl4030_irq_thread(long irq)
255 {
256         struct task_struct *thread;
257
258         init_completion(&irq_event);
259         thread = kthread_run(twl4030_irq_thread, (void *)irq, "twl4030-irq");
260         if (!thread)
261                 pr_err("twl4030: could not create irq %ld thread!\n", irq);
262
263         return thread;
264 }
265
266 /*----------------------------------------------------------------------*/
267
268 /*
269  * twl4030_init_sih_modules() ... start from a known state where no
270  * IRQs will be coming in, and where we can quickly enable them then
271  * handle them as they arrive.  Mask all IRQs: maybe init SIH_CTRL.
272  *
273  * NOTE:  we don't touch EDR registers here; they stay with hardware
274  * defaults or whatever the last value was.  Note that when both EDR
275  * bits for an IRQ are clear, that's as if its IMR bit is set...
276  */
277 static int twl4030_init_sih_modules(unsigned line)
278 {
279         const struct sih *sih;
280         u8 buf[4];
281         int i;
282         int status;
283
284         /* line 0 == int1_n signal; line 1 == int2_n signal */
285         if (line > 1)
286                 return -EINVAL;
287
288         irq_line = line;
289
290         /* disable all interrupts on our line */
291         memset(buf, 0xff, sizeof buf);
292         sih = sih_modules;
293         for (i = 0; i < ARRAY_SIZE(sih_modules); i++, sih++) {
294
295                 /* skip USB -- it's funky */
296                 if (!sih->bytes_ixr)
297                         continue;
298
299                 status = twl4030_i2c_write(sih->module, buf,
300                                 sih->mask[line].imr_offset, sih->bytes_ixr);
301                 if (status < 0)
302                         pr_err("twl4030: err %d initializing %s %s\n",
303                                         status, sih->name, "IMR");
304
305                 /* Maybe disable "exclusive" mode; buffer second pending irq;
306                  * set Clear-On-Read (COR) bit.
307                  *
308                  * NOTE that sometimes COR polarity is documented as being
309                  * inverted:  for MADC and BCI, COR=1 means "clear on write".
310                  * And for PWR_INT it's not documented...
311                  */
312                 if (sih->set_cor) {
313                         status = twl4030_i2c_write_u8(sih->module,
314                                         TWL4030_SIH_CTRL_COR_MASK,
315                                         sih->control_offset);
316                         if (status < 0)
317                                 pr_err("twl4030: err %d initializing %s %s\n",
318                                                 status, sih->name, "SIH_CTRL");
319                 }
320         }
321
322         sih = sih_modules;
323         for (i = 0; i < ARRAY_SIZE(sih_modules); i++, sih++) {
324                 u8 rxbuf[4];
325                 int j;
326
327                 /* skip USB */
328                 if (!sih->bytes_ixr)
329                         continue;
330
331                 /* Clear pending interrupt status.  Either the read was
332                  * enough, or we need to write those bits.  Repeat, in
333                  * case an IRQ is pending (PENDDIS=0) ... that's not
334                  * uncommon with PWR_INT.PWRON.
335                  */
336                 for (j = 0; j < 2; j++) {
337                         status = twl4030_i2c_read(sih->module, rxbuf,
338                                 sih->mask[line].isr_offset, sih->bytes_ixr);
339                         if (status < 0)
340                                 pr_err("twl4030: err %d initializing %s %s\n",
341                                         status, sih->name, "ISR");
342
343                         if (!sih->set_cor)
344                                 status = twl4030_i2c_write(sih->module, buf,
345                                         sih->mask[line].isr_offset,
346                                         sih->bytes_ixr);
347                         /* else COR=1 means read sufficed.
348                          * (for most SIH modules...)
349                          */
350                 }
351         }
352
353         return 0;
354 }
355
356 static inline void activate_irq(int irq)
357 {
358 #ifdef CONFIG_ARM
359         /* ARM requires an extra step to clear IRQ_NOREQUEST, which it
360          * sets on behalf of every irq_chip.  Also sets IRQ_NOPROBE.
361          */
362         set_irq_flags(irq, IRQF_VALID);
363 #else
364         /* same effect on other architectures */
365         set_irq_noprobe(irq);
366 #endif
367 }
368
369 /* FIXME pass in which interrupt line we'll use ... */
370 #define twl_irq_line    0
371
372 int twl_init_irq(int irq_num, unsigned irq_base, unsigned irq_end)
373 {
374         static struct irq_chip  twl4030_irq_chip;
375
376         int                     status;
377         int                     i;
378
379         /*
380          * Mask and clear all TWL4030 interrupts since initially we do
381          * not have any TWL4030 module interrupt handlers present
382          */
383         status = twl4030_init_sih_modules(twl_irq_line);
384         if (status < 0)
385                 return status;
386
387         twl4030_irq_base = irq_base;
388
389         /* install an irq handler for each of the SIH modules;
390          * clone dummy irq_chip since PIH can't *do* anything
391          */
392         twl4030_irq_chip = dummy_irq_chip;
393         twl4030_irq_chip.name = "twl4030";
394
395         for (i = irq_base; i < irq_end; i++) {
396                 set_irq_chip_and_handler(i, &twl4030_irq_chip,
397                                 handle_simple_irq);
398                 activate_irq(i);
399         }
400
401         /* install an irq handler to demultiplex the TWL4030 interrupt */
402         set_irq_data(irq_num, start_twl4030_irq_thread(irq_num));
403         set_irq_chained_handler(irq_num, handle_twl4030_pih);
404
405         return status;
406 }
407
408 int twl_exit_irq(void)
409 {
410         /* FIXME undo twl_init_irq() */
411         if (twl4030_irq_base) {
412                 pr_err("twl4030: can't yet clean up IRQs?\n");
413                 return -ENOSYS;
414         }
415         return 0;
416 }