1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30#include <linux/init.h>
31#include <linux/interrupt.h>
32#include <linux/irq.h>
33#include <linux/slab.h>
34
35#include <linux/i2c/twl.h>
36
37#include "twl-core.h"
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58#define REG_PIH_ISR_P1 0x01
59#define REG_PIH_ISR_P2 0x02
60#define REG_PIH_SIR 0x03
61
62
63
64static int irq_line;
65
66struct sih {
67 char name[8];
68 u8 module;
69 u8 control_offset;
70 bool set_cor;
71
72 u8 bits;
73 u8 bytes_ixr;
74
75 u8 edr_offset;
76 u8 bytes_edr;
77
78 u8 irq_lines;
79
80
81 struct sih_irq_data {
82 u8 isr_offset;
83 u8 imr_offset;
84 } mask[2];
85
86};
87
88static const struct sih *sih_modules;
89static int nr_sih_modules;
90
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), \
98 .irq_lines = 2, \
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
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
115
116
117
118static const struct sih sih_modules_twl4030[6] = {
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
127 .edr_offset = REG_GPIO_EDR1,
128 .bytes_edr = 5,
129 .irq_lines = 2,
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,
147 .set_cor = true,
148 .bits = 12,
149 .bytes_ixr = 2,
150 .edr_offset = TWL4030_INTERRUPTS_BCIEDR1,
151
152 .bytes_edr = 3,
153 .irq_lines = 2,
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
168 .name = "usb",
169 },
170 [5] = {
171 .name = "power",
172 .set_cor = true,
173 SIH_INITIALIZER(INT_PWR, 8)
174 },
175
176};
177
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
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
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
227 .name = "usb",
228 },
229 [5] = {
230 .name = "power",
231 .set_cor = true,
232 SIH_INITIALIZER(INT_PWR, 8)
233 },
234 [6] = {
235
236
237
238
239
240 .name = "eci_dbi",
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] = {
252
253 .name = "audio",
254 .module = TWL5031_MODULE_ACCESSORY,
255 .control_offset = TWL5031_ACCSIHCTRL,
256 .bits = 2,
257 .bytes_ixr = 1,
258 .edr_offset = TWL5031_ACCEDR1,
259
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
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
280
281
282
283
284
285
286
287
288
289static irqreturn_t handle_twl4030_pih(int irq, void *devid)
290{
291 int module_irq;
292 irqreturn_t ret;
293 u8 pih_isr;
294
295 ret = twl_i2c_read_u8(TWL4030_MODULE_PIH, &pih_isr,
296 REG_PIH_ISR_P1);
297 if (ret) {
298 pr_warning("twl4030: I2C error %d reading PIH ISR\n", ret);
299 return IRQ_NONE;
300 }
301
302
303 for (module_irq = twl4030_irq_base;
304 pih_isr;
305 pih_isr >>= 1, module_irq++) {
306 if (pih_isr & 0x1)
307 handle_nested_irq(module_irq);
308 }
309
310 return IRQ_HANDLED;
311}
312
313
314
315
316
317
318
319
320
321
322
323static int twl4030_init_sih_modules(unsigned line)
324{
325 const struct sih *sih;
326 u8 buf[4];
327 int i;
328 int status;
329
330
331 if (line > 1)
332 return -EINVAL;
333
334 irq_line = line;
335
336
337 memset(buf, 0xff, sizeof buf);
338 sih = sih_modules;
339 for (i = 0; i < nr_sih_modules; i++, sih++) {
340
341
342 if (!sih->bytes_ixr)
343 continue;
344
345
346 if (sih->irq_lines <= line)
347 continue;
348
349 status = twl_i2c_write(sih->module, buf,
350 sih->mask[line].imr_offset, sih->bytes_ixr);
351 if (status < 0)
352 pr_err("twl4030: err %d initializing %s %s\n",
353 status, sih->name, "IMR");
354
355
356
357
358
359
360
361
362 if (sih->set_cor) {
363 status = twl_i2c_write_u8(sih->module,
364 TWL4030_SIH_CTRL_COR_MASK,
365 sih->control_offset);
366 if (status < 0)
367 pr_err("twl4030: err %d initializing %s %s\n",
368 status, sih->name, "SIH_CTRL");
369 }
370 }
371
372 sih = sih_modules;
373 for (i = 0; i < nr_sih_modules; i++, sih++) {
374 u8 rxbuf[4];
375 int j;
376
377
378 if (!sih->bytes_ixr)
379 continue;
380
381
382 if (sih->irq_lines <= line)
383 continue;
384
385
386
387
388
389
390 for (j = 0; j < 2; j++) {
391 status = twl_i2c_read(sih->module, rxbuf,
392 sih->mask[line].isr_offset, sih->bytes_ixr);
393 if (status < 0)
394 pr_err("twl4030: err %d initializing %s %s\n",
395 status, sih->name, "ISR");
396
397 if (!sih->set_cor)
398 status = twl_i2c_write(sih->module, buf,
399 sih->mask[line].isr_offset,
400 sih->bytes_ixr);
401
402
403
404 }
405 }
406
407 return 0;
408}
409
410static inline void activate_irq(int irq)
411{
412#ifdef CONFIG_ARM
413
414
415
416 set_irq_flags(irq, IRQF_VALID);
417#else
418
419 irq_set_noprobe(irq);
420#endif
421}
422
423
424
425struct sih_agent {
426 int irq_base;
427 const struct sih *sih;
428
429 u32 imr;
430 bool imr_change_pending;
431
432 u32 edge_change;
433
434 struct mutex irq_lock;
435 char *irq_name;
436};
437
438
439
440
441
442
443
444
445
446
447static void twl4030_sih_mask(struct irq_data *data)
448{
449 struct sih_agent *agent = irq_data_get_irq_chip_data(data);
450
451 agent->imr |= BIT(data->irq - agent->irq_base);
452 agent->imr_change_pending = true;
453}
454
455static void twl4030_sih_unmask(struct irq_data *data)
456{
457 struct sih_agent *agent = irq_data_get_irq_chip_data(data);
458
459 agent->imr &= ~BIT(data->irq - agent->irq_base);
460 agent->imr_change_pending = true;
461}
462
463static int twl4030_sih_set_type(struct irq_data *data, unsigned trigger)
464{
465 struct sih_agent *agent = irq_data_get_irq_chip_data(data);
466
467 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
468 return -EINVAL;
469
470 if (irqd_get_trigger_type(data) != trigger)
471 agent->edge_change |= BIT(data->irq - agent->irq_base);
472
473 return 0;
474}
475
476static void twl4030_sih_bus_lock(struct irq_data *data)
477{
478 struct sih_agent *agent = irq_data_get_irq_chip_data(data);
479
480 mutex_lock(&agent->irq_lock);
481}
482
483static void twl4030_sih_bus_sync_unlock(struct irq_data *data)
484{
485 struct sih_agent *agent = irq_data_get_irq_chip_data(data);
486 const struct sih *sih = agent->sih;
487 int status;
488
489 if (agent->imr_change_pending) {
490 union {
491 u32 word;
492 u8 bytes[4];
493 } imr;
494
495
496 imr.word = cpu_to_le32(agent->imr << 8);
497 agent->imr_change_pending = false;
498
499
500 status = twl_i2c_write(sih->module, imr.bytes,
501 sih->mask[irq_line].imr_offset,
502 sih->bytes_ixr);
503 if (status)
504 pr_err("twl4030: %s, %s --> %d\n", __func__,
505 "write", status);
506 }
507
508 if (agent->edge_change) {
509 u32 edge_change;
510 u8 bytes[6];
511
512 edge_change = agent->edge_change;
513 agent->edge_change = 0;
514
515
516
517
518
519
520
521 status = twl_i2c_read(sih->module, bytes + 1,
522 sih->edr_offset, sih->bytes_edr);
523 if (status) {
524 pr_err("twl4030: %s, %s --> %d\n", __func__,
525 "read", status);
526 return;
527 }
528
529
530 while (edge_change) {
531 int i = fls(edge_change) - 1;
532 struct irq_data *idata;
533 int byte = 1 + (i >> 2);
534 int off = (i & 0x3) * 2;
535 unsigned int type;
536
537 idata = irq_get_irq_data(i + agent->irq_base);
538
539 bytes[byte] &= ~(0x03 << off);
540
541 type = irqd_get_trigger_type(idata);
542 if (type & IRQ_TYPE_EDGE_RISING)
543 bytes[byte] |= BIT(off + 1);
544 if (type & IRQ_TYPE_EDGE_FALLING)
545 bytes[byte] |= BIT(off + 0);
546
547 edge_change &= ~BIT(i);
548 }
549
550
551 status = twl_i2c_write(sih->module, bytes,
552 sih->edr_offset, sih->bytes_edr);
553 if (status)
554 pr_err("twl4030: %s, %s --> %d\n", __func__,
555 "write", status);
556 }
557
558 mutex_unlock(&agent->irq_lock);
559}
560
561static struct irq_chip twl4030_sih_irq_chip = {
562 .name = "twl4030",
563 .irq_mask = twl4030_sih_mask,
564 .irq_unmask = twl4030_sih_unmask,
565 .irq_set_type = twl4030_sih_set_type,
566 .irq_bus_lock = twl4030_sih_bus_lock,
567 .irq_bus_sync_unlock = twl4030_sih_bus_sync_unlock,
568};
569
570
571
572static inline int sih_read_isr(const struct sih *sih)
573{
574 int status;
575 union {
576 u8 bytes[4];
577 u32 word;
578 } isr;
579
580
581
582 isr.word = 0;
583 status = twl_i2c_read(sih->module, isr.bytes,
584 sih->mask[irq_line].isr_offset, sih->bytes_ixr);
585
586 return (status < 0) ? status : le32_to_cpu(isr.word);
587}
588
589
590
591
592
593static irqreturn_t handle_twl4030_sih(int irq, void *data)
594{
595 struct sih_agent *agent = irq_get_handler_data(irq);
596 const struct sih *sih = agent->sih;
597 int isr;
598
599
600 isr = sih_read_isr(sih);
601
602 if (isr < 0) {
603 pr_err("twl4030: %s SIH, read ISR error %d\n",
604 sih->name, isr);
605
606 return IRQ_HANDLED;
607 }
608
609 while (isr) {
610 irq = fls(isr);
611 irq--;
612 isr &= ~BIT(irq);
613
614 if (irq < sih->bits)
615 handle_nested_irq(agent->irq_base + irq);
616 else
617 pr_err("twl4030: %s SIH, invalid ISR bit %d\n",
618 sih->name, irq);
619 }
620 return IRQ_HANDLED;
621}
622
623static unsigned twl4030_irq_next;
624
625
626
627
628int twl4030_sih_setup(int module)
629{
630 int sih_mod;
631 const struct sih *sih = NULL;
632 struct sih_agent *agent;
633 int i, irq;
634 int status = -EINVAL;
635 unsigned irq_base = twl4030_irq_next;
636
637
638 for (sih_mod = 0, sih = sih_modules;
639 sih_mod < nr_sih_modules;
640 sih_mod++, sih++) {
641 if (sih->module == module && sih->set_cor) {
642 if (!WARN((irq_base + sih->bits) > NR_IRQS,
643 "irq %d for %s too big\n",
644 irq_base + sih->bits,
645 sih->name))
646 status = 0;
647 break;
648 }
649 }
650 if (status < 0)
651 return status;
652
653 agent = kzalloc(sizeof *agent, GFP_KERNEL);
654 if (!agent)
655 return -ENOMEM;
656
657 status = 0;
658
659 agent->irq_base = irq_base;
660 agent->sih = sih;
661 agent->imr = ~0;
662 mutex_init(&agent->irq_lock);
663
664 for (i = 0; i < sih->bits; i++) {
665 irq = irq_base + i;
666
667 irq_set_chip_data(irq, agent);
668 irq_set_chip_and_handler(irq, &twl4030_sih_irq_chip,
669 handle_edge_irq);
670 irq_set_nested_thread(irq, 1);
671 activate_irq(irq);
672 }
673
674 twl4030_irq_next += i;
675
676
677 irq = sih_mod + twl4030_irq_base;
678 irq_set_handler_data(irq, agent);
679 agent->irq_name = kasprintf(GFP_KERNEL, "twl4030_%s", sih->name);
680 status = request_threaded_irq(irq, NULL, handle_twl4030_sih, 0,
681 agent->irq_name ?: sih->name, NULL);
682
683 pr_info("twl4030: %s (irq %d) chaining IRQs %d..%d\n", sih->name,
684 irq, irq_base, twl4030_irq_next - 1);
685
686 return status < 0 ? status : irq_base;
687}
688
689
690
691
692
693
694
695#define twl_irq_line 0
696
697int twl4030_init_irq(int irq_num, unsigned irq_base, unsigned irq_end)
698{
699 static struct irq_chip twl4030_irq_chip;
700
701 int status;
702 int i;
703
704
705
706
707
708 status = twl4030_init_sih_modules(twl_irq_line);
709 if (status < 0)
710 return status;
711
712 twl4030_irq_base = irq_base;
713
714
715
716
717 twl4030_irq_chip = dummy_irq_chip;
718 twl4030_irq_chip.name = "twl4030";
719
720 twl4030_sih_irq_chip.irq_ack = dummy_irq_chip.irq_ack;
721
722 for (i = irq_base; i < irq_end; i++) {
723 irq_set_chip_and_handler(i, &twl4030_irq_chip,
724 handle_simple_irq);
725 irq_set_nested_thread(i, 1);
726 activate_irq(i);
727 }
728 twl4030_irq_next = i;
729 pr_info("twl4030: %s (irq %d) chaining IRQs %d..%d\n", "PIH",
730 irq_num, irq_base, twl4030_irq_next - 1);
731
732
733 status = twl4030_sih_setup(TWL4030_MODULE_INT);
734 if (status < 0) {
735 pr_err("twl4030: sih_setup PWR INT --> %d\n", status);
736 goto fail;
737 }
738
739
740 status = request_threaded_irq(irq_num, NULL, handle_twl4030_pih,
741 IRQF_ONESHOT,
742 "TWL4030-PIH", NULL);
743 if (status < 0) {
744 pr_err("twl4030: could not claim irq%d: %d\n", irq_num, status);
745 goto fail_rqirq;
746 }
747
748 return status;
749fail_rqirq:
750
751fail:
752 for (i = irq_base; i < irq_end; i++) {
753 irq_set_nested_thread(i, 0);
754 irq_set_chip_and_handler(i, NULL, NULL);
755 }
756
757 return status;
758}
759
760int twl4030_exit_irq(void)
761{
762
763 if (twl4030_irq_base) {
764 pr_err("twl4030: can't yet clean up IRQs?\n");
765 return -ENOSYS;
766 }
767 return 0;
768}
769
770int twl4030_init_chip_irq(const char *chip)
771{
772 if (!strcmp(chip, "twl5031")) {
773 sih_modules = sih_modules_twl5031;
774 nr_sih_modules = ARRAY_SIZE(sih_modules_twl5031);
775 } else {
776 sih_modules = sih_modules_twl4030;
777 nr_sih_modules = ARRAY_SIZE(sih_modules_twl4030);
778 }
779
780 return 0;
781}
782