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