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/export.h>
32#include <linux/interrupt.h>
33#include <linux/irq.h>
34#include <linux/slab.h>
35#include <linux/of.h>
36#include <linux/irqdomain.h>
37#include <linux/i2c/twl.h>
38
39#include "twl-core.h"
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58#define TWL4030_CORE_NR_IRQS 8
59#define TWL4030_PWR_NR_IRQS 8
60
61
62#define REG_PIH_ISR_P1 0x01
63#define REG_PIH_ISR_P2 0x02
64#define REG_PIH_SIR 0x03
65
66
67static int irq_line;
68
69struct sih {
70 char name[8];
71 u8 module;
72 u8 control_offset;
73 bool set_cor;
74
75 u8 bits;
76 u8 bytes_ixr;
77
78 u8 edr_offset;
79 u8 bytes_edr;
80
81 u8 irq_lines;
82
83
84 struct sih_irq_data {
85 u8 isr_offset;
86 u8 imr_offset;
87 } mask[2];
88
89};
90
91static const struct sih *sih_modules;
92static int nr_sih_modules;
93
94#define SIH_INITIALIZER(modname, nbits) \
95 .module = TWL4030_MODULE_ ## modname, \
96 .control_offset = TWL4030_ ## modname ## _SIH_CTRL, \
97 .bits = nbits, \
98 .bytes_ixr = DIV_ROUND_UP(nbits, 8), \
99 .edr_offset = TWL4030_ ## modname ## _EDR, \
100 .bytes_edr = DIV_ROUND_UP((2*(nbits)), 8), \
101 .irq_lines = 2, \
102 .mask = { { \
103 .isr_offset = TWL4030_ ## modname ## _ISR1, \
104 .imr_offset = TWL4030_ ## modname ## _IMR1, \
105 }, \
106 { \
107 .isr_offset = TWL4030_ ## modname ## _ISR2, \
108 .imr_offset = TWL4030_ ## modname ## _IMR2, \
109 }, },
110
111
112#define TWL4030_INT_PWR_EDR TWL4030_INT_PWR_EDR1
113#define TWL4030_MODULE_KEYPAD_KEYP TWL4030_MODULE_KEYPAD
114#define TWL4030_MODULE_INT_PWR TWL4030_MODULE_INT
115
116
117
118
119
120
121
122static const struct sih sih_modules_twl4030[6] = {
123 [0] = {
124 .name = "gpio",
125 .module = TWL4030_MODULE_GPIO,
126 .control_offset = REG_GPIO_SIH_CTRL,
127 .set_cor = true,
128 .bits = TWL4030_GPIO_MAX,
129 .bytes_ixr = 3,
130
131 .edr_offset = REG_GPIO_EDR1,
132 .bytes_edr = 5,
133 .irq_lines = 2,
134 .mask = { {
135 .isr_offset = REG_GPIO_ISR1A,
136 .imr_offset = REG_GPIO_IMR1A,
137 }, {
138 .isr_offset = REG_GPIO_ISR1B,
139 .imr_offset = REG_GPIO_IMR1B,
140 }, },
141 },
142 [1] = {
143 .name = "keypad",
144 .set_cor = true,
145 SIH_INITIALIZER(KEYPAD_KEYP, 4)
146 },
147 [2] = {
148 .name = "bci",
149 .module = TWL4030_MODULE_INTERRUPTS,
150 .control_offset = TWL4030_INTERRUPTS_BCISIHCTRL,
151 .set_cor = true,
152 .bits = 12,
153 .bytes_ixr = 2,
154 .edr_offset = TWL4030_INTERRUPTS_BCIEDR1,
155
156 .bytes_edr = 3,
157 .irq_lines = 2,
158 .mask = { {
159 .isr_offset = TWL4030_INTERRUPTS_BCIISR1A,
160 .imr_offset = TWL4030_INTERRUPTS_BCIIMR1A,
161 }, {
162 .isr_offset = TWL4030_INTERRUPTS_BCIISR1B,
163 .imr_offset = TWL4030_INTERRUPTS_BCIIMR1B,
164 }, },
165 },
166 [3] = {
167 .name = "madc",
168 SIH_INITIALIZER(MADC, 4)
169 },
170 [4] = {
171
172 .name = "usb",
173 },
174 [5] = {
175 .name = "power",
176 .set_cor = true,
177 SIH_INITIALIZER(INT_PWR, 8)
178 },
179
180};
181
182static const struct sih sih_modules_twl5031[8] = {
183 [0] = {
184 .name = "gpio",
185 .module = TWL4030_MODULE_GPIO,
186 .control_offset = REG_GPIO_SIH_CTRL,
187 .set_cor = true,
188 .bits = TWL4030_GPIO_MAX,
189 .bytes_ixr = 3,
190
191 .edr_offset = REG_GPIO_EDR1,
192 .bytes_edr = 5,
193 .irq_lines = 2,
194 .mask = { {
195 .isr_offset = REG_GPIO_ISR1A,
196 .imr_offset = REG_GPIO_IMR1A,
197 }, {
198 .isr_offset = REG_GPIO_ISR1B,
199 .imr_offset = REG_GPIO_IMR1B,
200 }, },
201 },
202 [1] = {
203 .name = "keypad",
204 .set_cor = true,
205 SIH_INITIALIZER(KEYPAD_KEYP, 4)
206 },
207 [2] = {
208 .name = "bci",
209 .module = TWL5031_MODULE_INTERRUPTS,
210 .control_offset = TWL5031_INTERRUPTS_BCISIHCTRL,
211 .bits = 7,
212 .bytes_ixr = 1,
213 .edr_offset = TWL5031_INTERRUPTS_BCIEDR1,
214
215 .bytes_edr = 2,
216 .irq_lines = 2,
217 .mask = { {
218 .isr_offset = TWL5031_INTERRUPTS_BCIISR1,
219 .imr_offset = TWL5031_INTERRUPTS_BCIIMR1,
220 }, {
221 .isr_offset = TWL5031_INTERRUPTS_BCIISR2,
222 .imr_offset = TWL5031_INTERRUPTS_BCIIMR2,
223 }, },
224 },
225 [3] = {
226 .name = "madc",
227 SIH_INITIALIZER(MADC, 4)
228 },
229 [4] = {
230
231 .name = "usb",
232 },
233 [5] = {
234 .name = "power",
235 .set_cor = true,
236 SIH_INITIALIZER(INT_PWR, 8)
237 },
238 [6] = {
239
240
241
242
243
244 .name = "eci_dbi",
245 .module = TWL5031_MODULE_ACCESSORY,
246 .bits = 9,
247 .bytes_ixr = 2,
248 .irq_lines = 1,
249 .mask = { {
250 .isr_offset = TWL5031_ACIIDR_LSB,
251 .imr_offset = TWL5031_ACIIMR_LSB,
252 }, },
253
254 },
255 [7] = {
256
257 .name = "audio",
258 .module = TWL5031_MODULE_ACCESSORY,
259 .control_offset = TWL5031_ACCSIHCTRL,
260 .bits = 2,
261 .bytes_ixr = 1,
262 .edr_offset = TWL5031_ACCEDR1,
263
264 .bytes_edr = 1,
265 .irq_lines = 2,
266 .mask = { {
267 .isr_offset = TWL5031_ACCISR1,
268 .imr_offset = TWL5031_ACCIMR1,
269 }, {
270 .isr_offset = TWL5031_ACCISR2,
271 .imr_offset = TWL5031_ACCIMR2,
272 }, },
273 },
274};
275
276#undef TWL4030_MODULE_KEYPAD_KEYP
277#undef TWL4030_MODULE_INT_PWR
278#undef TWL4030_INT_PWR_EDR
279
280
281
282static unsigned twl4030_irq_base;
283
284
285
286
287
288
289
290
291
292
293static irqreturn_t handle_twl4030_pih(int irq, void *devid)
294{
295 irqreturn_t ret;
296 u8 pih_isr;
297
298 ret = twl_i2c_read_u8(TWL_MODULE_PIH, &pih_isr,
299 REG_PIH_ISR_P1);
300 if (ret) {
301 pr_warning("twl4030: I2C error %d reading PIH ISR\n", ret);
302 return IRQ_NONE;
303 }
304
305 while (pih_isr) {
306 unsigned long pending = __ffs(pih_isr);
307 unsigned int irq;
308
309 pih_isr &= ~BIT(pending);
310 irq = pending + twl4030_irq_base;
311 handle_nested_irq(irq);
312 }
313
314 return IRQ_HANDLED;
315}
316
317
318
319
320
321
322
323
324
325
326
327
328static int twl4030_init_sih_modules(unsigned line)
329{
330 const struct sih *sih;
331 u8 buf[4];
332 int i;
333 int status;
334
335
336 if (line > 1)
337 return -EINVAL;
338
339 irq_line = line;
340
341
342 memset(buf, 0xff, sizeof buf);
343 sih = sih_modules;
344 for (i = 0; i < nr_sih_modules; i++, sih++) {
345
346 if (!sih->bytes_ixr)
347 continue;
348
349
350 if (sih->irq_lines <= line)
351 continue;
352
353 status = twl_i2c_write(sih->module, buf,
354 sih->mask[line].imr_offset, sih->bytes_ixr);
355 if (status < 0)
356 pr_err("twl4030: err %d initializing %s %s\n",
357 status, sih->name, "IMR");
358
359
360
361
362
363
364
365
366
367 if (sih->set_cor) {
368 status = twl_i2c_write_u8(sih->module,
369 TWL4030_SIH_CTRL_COR_MASK,
370 sih->control_offset);
371 if (status < 0)
372 pr_err("twl4030: err %d initializing %s %s\n",
373 status, sih->name, "SIH_CTRL");
374 }
375 }
376
377 sih = sih_modules;
378 for (i = 0; i < nr_sih_modules; i++, sih++) {
379 u8 rxbuf[4];
380 int j;
381
382
383 if (!sih->bytes_ixr)
384 continue;
385
386
387 if (sih->irq_lines <= line)
388 continue;
389
390
391
392
393
394
395
396 for (j = 0; j < 2; j++) {
397 status = twl_i2c_read(sih->module, rxbuf,
398 sih->mask[line].isr_offset, sih->bytes_ixr);
399 if (status < 0)
400 pr_err("twl4030: err %d initializing %s %s\n",
401 status, sih->name, "ISR");
402
403 if (!sih->set_cor)
404 status = twl_i2c_write(sih->module, buf,
405 sih->mask[line].isr_offset,
406 sih->bytes_ixr);
407
408
409
410
411 }
412 }
413
414 return 0;
415}
416
417static inline void activate_irq(int irq)
418{
419#ifdef CONFIG_ARM
420
421
422
423
424 set_irq_flags(irq, IRQF_VALID);
425#else
426
427 irq_set_noprobe(irq);
428#endif
429}
430
431
432
433struct sih_agent {
434 int irq_base;
435 const struct sih *sih;
436
437 u32 imr;
438 bool imr_change_pending;
439
440 u32 edge_change;
441
442 struct mutex irq_lock;
443 char *irq_name;
444};
445
446
447
448
449
450
451
452
453
454
455static void twl4030_sih_mask(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 void twl4030_sih_unmask(struct irq_data *data)
464{
465 struct sih_agent *agent = irq_data_get_irq_chip_data(data);
466
467 agent->imr &= ~BIT(data->irq - agent->irq_base);
468 agent->imr_change_pending = true;
469}
470
471static int twl4030_sih_set_type(struct irq_data *data, unsigned trigger)
472{
473 struct sih_agent *agent = irq_data_get_irq_chip_data(data);
474
475 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
476 return -EINVAL;
477
478 if (irqd_get_trigger_type(data) != trigger)
479 agent->edge_change |= BIT(data->irq - agent->irq_base);
480
481 return 0;
482}
483
484static void twl4030_sih_bus_lock(struct irq_data *data)
485{
486 struct sih_agent *agent = irq_data_get_irq_chip_data(data);
487
488 mutex_lock(&agent->irq_lock);
489}
490
491static void twl4030_sih_bus_sync_unlock(struct irq_data *data)
492{
493 struct sih_agent *agent = irq_data_get_irq_chip_data(data);
494 const struct sih *sih = agent->sih;
495 int status;
496
497 if (agent->imr_change_pending) {
498 union {
499 u32 word;
500 u8 bytes[4];
501 } imr;
502
503
504 imr.word = cpu_to_le32(agent->imr);
505 agent->imr_change_pending = false;
506
507
508 status = twl_i2c_write(sih->module, imr.bytes,
509 sih->mask[irq_line].imr_offset,
510 sih->bytes_ixr);
511 if (status)
512 pr_err("twl4030: %s, %s --> %d\n", __func__,
513 "write", status);
514 }
515
516 if (agent->edge_change) {
517 u32 edge_change;
518 u8 bytes[6];
519
520 edge_change = agent->edge_change;
521 agent->edge_change = 0;
522
523
524
525
526
527
528
529 status = twl_i2c_read(sih->module, bytes,
530 sih->edr_offset, sih->bytes_edr);
531 if (status) {
532 pr_err("twl4030: %s, %s --> %d\n", __func__,
533 "read", status);
534 return;
535 }
536
537
538 while (edge_change) {
539 int i = fls(edge_change) - 1;
540 struct irq_data *idata;
541 int byte = i >> 2;
542 int off = (i & 0x3) * 2;
543 unsigned int type;
544
545 idata = irq_get_irq_data(i + agent->irq_base);
546
547 bytes[byte] &= ~(0x03 << off);
548
549 type = irqd_get_trigger_type(idata);
550 if (type & IRQ_TYPE_EDGE_RISING)
551 bytes[byte] |= BIT(off + 1);
552 if (type & IRQ_TYPE_EDGE_FALLING)
553 bytes[byte] |= BIT(off + 0);
554
555 edge_change &= ~BIT(i);
556 }
557
558
559 status = twl_i2c_write(sih->module, bytes,
560 sih->edr_offset, sih->bytes_edr);
561 if (status)
562 pr_err("twl4030: %s, %s --> %d\n", __func__,
563 "write", status);
564 }
565
566 mutex_unlock(&agent->irq_lock);
567}
568
569static struct irq_chip twl4030_sih_irq_chip = {
570 .name = "twl4030",
571 .irq_mask = twl4030_sih_mask,
572 .irq_unmask = twl4030_sih_unmask,
573 .irq_set_type = twl4030_sih_set_type,
574 .irq_bus_lock = twl4030_sih_bus_lock,
575 .irq_bus_sync_unlock = twl4030_sih_bus_sync_unlock,
576};
577
578
579
580static inline int sih_read_isr(const struct sih *sih)
581{
582 int status;
583 union {
584 u8 bytes[4];
585 u32 word;
586 } isr;
587
588
589
590 isr.word = 0;
591 status = twl_i2c_read(sih->module, isr.bytes,
592 sih->mask[irq_line].isr_offset, sih->bytes_ixr);
593
594 return (status < 0) ? status : le32_to_cpu(isr.word);
595}
596
597
598
599
600
601static irqreturn_t handle_twl4030_sih(int irq, void *data)
602{
603 struct sih_agent *agent = irq_get_handler_data(irq);
604 const struct sih *sih = agent->sih;
605 int isr;
606
607
608 isr = sih_read_isr(sih);
609
610 if (isr < 0) {
611 pr_err("twl4030: %s SIH, read ISR error %d\n",
612 sih->name, isr);
613
614 return IRQ_HANDLED;
615 }
616
617 while (isr) {
618 irq = fls(isr);
619 irq--;
620 isr &= ~BIT(irq);
621
622 if (irq < sih->bits)
623 handle_nested_irq(agent->irq_base + irq);
624 else
625 pr_err("twl4030: %s SIH, invalid ISR bit %d\n",
626 sih->name, irq);
627 }
628 return IRQ_HANDLED;
629}
630
631
632int twl4030_sih_setup(struct device *dev, int module, int irq_base)
633{
634 int sih_mod;
635 const struct sih *sih = NULL;
636 struct sih_agent *agent;
637 int i, irq;
638 int status = -EINVAL;
639
640
641 for (sih_mod = 0, sih = sih_modules; sih_mod < nr_sih_modules;
642 sih_mod++, sih++) {
643 if (sih->module == module && sih->set_cor) {
644 status = 0;
645 break;
646 }
647 }
648
649 if (status < 0)
650 return status;
651
652 agent = kzalloc(sizeof *agent, GFP_KERNEL);
653 if (!agent)
654 return -ENOMEM;
655
656 agent->irq_base = irq_base;
657 agent->sih = sih;
658 agent->imr = ~0;
659 mutex_init(&agent->irq_lock);
660
661 for (i = 0; i < sih->bits; i++) {
662 irq = irq_base + i;
663
664 irq_set_chip_data(irq, agent);
665 irq_set_chip_and_handler(irq, &twl4030_sih_irq_chip,
666 handle_edge_irq);
667 irq_set_nested_thread(irq, 1);
668 activate_irq(irq);
669 }
670
671
672 irq = sih_mod + twl4030_irq_base;
673 irq_set_handler_data(irq, agent);
674 agent->irq_name = kasprintf(GFP_KERNEL, "twl4030_%s", sih->name);
675 status = request_threaded_irq(irq, NULL, handle_twl4030_sih,
676 IRQF_EARLY_RESUME,
677 agent->irq_name ?: sih->name, NULL);
678
679 dev_info(dev, "%s (irq %d) chaining IRQs %d..%d\n", sih->name,
680 irq, irq_base, irq_base + i - 1);
681
682 return status < 0 ? status : irq_base;
683}
684
685
686
687
688
689
690#define twl_irq_line 0
691
692int twl4030_init_irq(struct device *dev, int irq_num)
693{
694 static struct irq_chip twl4030_irq_chip;
695 int status, i;
696 int irq_base, irq_end, nr_irqs;
697 struct device_node *node = dev->of_node;
698
699
700
701
702
703
704 nr_irqs = TWL4030_PWR_NR_IRQS + TWL4030_CORE_NR_IRQS;
705
706 irq_base = irq_alloc_descs(-1, 0, nr_irqs, 0);
707 if (IS_ERR_VALUE(irq_base)) {
708 dev_err(dev, "Fail to allocate IRQ descs\n");
709 return irq_base;
710 }
711
712 irq_domain_add_legacy(node, nr_irqs, irq_base, 0,
713 &irq_domain_simple_ops, NULL);
714
715 irq_end = irq_base + TWL4030_CORE_NR_IRQS;
716
717
718
719
720
721 status = twl4030_init_sih_modules(twl_irq_line);
722 if (status < 0)
723 return status;
724
725 twl4030_irq_base = irq_base;
726
727
728
729
730
731 twl4030_irq_chip = dummy_irq_chip;
732 twl4030_irq_chip.name = "twl4030";
733
734 twl4030_sih_irq_chip.irq_ack = dummy_irq_chip.irq_ack;
735
736 for (i = irq_base; i < irq_end; i++) {
737 irq_set_chip_and_handler(i, &twl4030_irq_chip,
738 handle_simple_irq);
739 irq_set_nested_thread(i, 1);
740 activate_irq(i);
741 }
742
743 dev_info(dev, "%s (irq %d) chaining IRQs %d..%d\n", "PIH",
744 irq_num, irq_base, irq_end);
745
746
747 status = twl4030_sih_setup(dev, TWL4030_MODULE_INT, irq_end);
748 if (status < 0) {
749 dev_err(dev, "sih_setup PWR INT --> %d\n", status);
750 goto fail;
751 }
752
753
754 status = request_threaded_irq(irq_num, NULL, handle_twl4030_pih,
755 IRQF_ONESHOT,
756 "TWL4030-PIH", NULL);
757 if (status < 0) {
758 dev_err(dev, "could not claim irq%d: %d\n", irq_num, status);
759 goto fail_rqirq;
760 }
761 enable_irq_wake(irq_num);
762
763 return irq_base;
764fail_rqirq:
765
766fail:
767 for (i = irq_base; i < irq_end; i++) {
768 irq_set_nested_thread(i, 0);
769 irq_set_chip_and_handler(i, NULL, NULL);
770 }
771
772 return status;
773}
774
775int twl4030_exit_irq(void)
776{
777
778 if (twl4030_irq_base) {
779 pr_err("twl4030: can't yet clean up IRQs?\n");
780 return -ENOSYS;
781 }
782 return 0;
783}
784
785int twl4030_init_chip_irq(const char *chip)
786{
787 if (!strcmp(chip, "twl5031")) {
788 sih_modules = sih_modules_twl5031;
789 nr_sih_modules = ARRAY_SIZE(sih_modules_twl5031);
790 } else {
791 sih_modules = sih_modules_twl4030;
792 nr_sih_modules = ARRAY_SIZE(sih_modules_twl4030);
793 }
794
795 return 0;
796}
797