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