diff options
Diffstat (limited to 'arch/m68knommu/platform/coldfire/intc-simr.c')
-rw-r--r-- | arch/m68knommu/platform/coldfire/intc-simr.c | 165 |
1 files changed, 139 insertions, 26 deletions
diff --git a/arch/m68knommu/platform/coldfire/intc-simr.c b/arch/m68knommu/platform/coldfire/intc-simr.c index bb7048636140..e642b24ab729 100644 --- a/arch/m68knommu/platform/coldfire/intc-simr.c +++ b/arch/m68knommu/platform/coldfire/intc-simr.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Interrupt controller code for the ColdFire 5208, 5207 & 532x parts. | 4 | * Interrupt controller code for the ColdFire 5208, 5207 & 532x parts. |
5 | * | 5 | * |
6 | * (C) Copyright 2009, Greg Ungerer <gerg@snapgear.com> | 6 | * (C) Copyright 2009-2011, Greg Ungerer <gerg@snapgear.com> |
7 | * | 7 | * |
8 | * This file is subject to the terms and conditions of the GNU General Public | 8 | * This file is subject to the terms and conditions of the GNU General Public |
9 | * License. See the file COPYING in the main directory of this archive | 9 | * License. See the file COPYING in the main directory of this archive |
@@ -20,47 +20,156 @@ | |||
20 | #include <asm/mcfsim.h> | 20 | #include <asm/mcfsim.h> |
21 | #include <asm/traps.h> | 21 | #include <asm/traps.h> |
22 | 22 | ||
23 | static void intc_irq_mask(unsigned int irq) | 23 | /* |
24 | * The EDGE Port interrupts are the fixed 7 external interrupts. | ||
25 | * They need some special treatment, for example they need to be acked. | ||
26 | */ | ||
27 | #ifdef CONFIG_M520x | ||
28 | /* | ||
29 | * The 520x parts only support a limited range of these external | ||
30 | * interrupts, only 1, 4 and 7 (as interrupts 65, 66 and 67). | ||
31 | */ | ||
32 | #define EINT0 64 /* Is not actually used, but spot reserved for it */ | ||
33 | #define EINT1 65 /* EDGE Port interrupt 1 */ | ||
34 | #define EINT4 66 /* EDGE Port interrupt 4 */ | ||
35 | #define EINT7 67 /* EDGE Port interrupt 7 */ | ||
36 | |||
37 | static unsigned int irqebitmap[] = { 0, 1, 4, 7 }; | ||
38 | static unsigned int inline irq2ebit(unsigned int irq) | ||
24 | { | 39 | { |
25 | if (irq >= MCFINT_VECBASE) { | 40 | return irqebitmap[irq - EINT0]; |
26 | if (irq < MCFINT_VECBASE + 64) | 41 | } |
27 | __raw_writeb(irq - MCFINT_VECBASE, MCFINTC0_SIMR); | 42 | |
28 | else if ((irq < MCFINT_VECBASE + 128) && MCFINTC1_SIMR) | 43 | #else |
29 | __raw_writeb(irq - MCFINT_VECBASE - 64, MCFINTC1_SIMR); | 44 | |
30 | } | 45 | /* |
46 | * Most of the ColdFire parts with the EDGE Port module just have | ||
47 | * a strait direct mapping of the 7 external interrupts. Although | ||
48 | * there is a bit reserved for 0, it is not used. | ||
49 | */ | ||
50 | #define EINT0 64 /* Is not actually used, but spot reserved for it */ | ||
51 | #define EINT1 65 /* EDGE Port interrupt 1 */ | ||
52 | #define EINT7 71 /* EDGE Port interrupt 7 */ | ||
53 | |||
54 | static unsigned int inline irq2ebit(unsigned int irq) | ||
55 | { | ||
56 | return irq - EINT0; | ||
57 | } | ||
58 | |||
59 | #endif | ||
60 | |||
61 | /* | ||
62 | * There maybe one or two interrupt control units, each has 64 | ||
63 | * interrupts. If there is no second unit then MCFINTC1_* defines | ||
64 | * will be 0 (and code for them optimized away). | ||
65 | */ | ||
66 | |||
67 | static void intc_irq_mask(struct irq_data *d) | ||
68 | { | ||
69 | unsigned int irq = d->irq - MCFINT_VECBASE; | ||
70 | |||
71 | if (MCFINTC1_SIMR && (irq > 64)) | ||
72 | __raw_writeb(irq - 64, MCFINTC1_SIMR); | ||
73 | else | ||
74 | __raw_writeb(irq, MCFINTC0_SIMR); | ||
31 | } | 75 | } |
32 | 76 | ||
33 | static void intc_irq_unmask(unsigned int irq) | 77 | static void intc_irq_unmask(struct irq_data *d) |
34 | { | 78 | { |
35 | if (irq >= MCFINT_VECBASE) { | 79 | unsigned int irq = d->irq - MCFINT_VECBASE; |
36 | if (irq < MCFINT_VECBASE + 64) | 80 | |
37 | __raw_writeb(irq - MCFINT_VECBASE, MCFINTC0_CIMR); | 81 | if (MCFINTC1_CIMR && (irq > 64)) |
38 | else if ((irq < MCFINT_VECBASE + 128) && MCFINTC1_CIMR) | 82 | __raw_writeb(irq - 64, MCFINTC1_CIMR); |
39 | __raw_writeb(irq - MCFINT_VECBASE - 64, MCFINTC1_CIMR); | 83 | else |
84 | __raw_writeb(irq, MCFINTC0_CIMR); | ||
85 | } | ||
86 | |||
87 | static void intc_irq_ack(struct irq_data *d) | ||
88 | { | ||
89 | unsigned int ebit = irq2ebit(d->irq); | ||
90 | |||
91 | __raw_writeb(0x1 << ebit, MCFEPORT_EPFR); | ||
92 | } | ||
93 | |||
94 | static unsigned int intc_irq_startup(struct irq_data *d) | ||
95 | { | ||
96 | unsigned int irq = d->irq; | ||
97 | |||
98 | if ((irq >= EINT1) && (irq <= EINT7)) { | ||
99 | unsigned int ebit = irq2ebit(irq); | ||
100 | u8 v; | ||
101 | |||
102 | /* Set EPORT line as input */ | ||
103 | v = __raw_readb(MCFEPORT_EPDDR); | ||
104 | __raw_writeb(v & ~(0x1 << ebit), MCFEPORT_EPDDR); | ||
105 | |||
106 | /* Set EPORT line as interrupt source */ | ||
107 | v = __raw_readb(MCFEPORT_EPIER); | ||
108 | __raw_writeb(v | (0x1 << ebit), MCFEPORT_EPIER); | ||
40 | } | 109 | } |
110 | |||
111 | irq -= MCFINT_VECBASE; | ||
112 | if (MCFINTC1_ICR0 && (irq > 64)) | ||
113 | __raw_writeb(5, MCFINTC1_ICR0 + irq - 64); | ||
114 | else | ||
115 | __raw_writeb(5, MCFINTC0_ICR0 + irq); | ||
116 | |||
117 | |||
118 | intc_irq_unmask(d); | ||
119 | return 0; | ||
41 | } | 120 | } |
42 | 121 | ||
43 | static int intc_irq_set_type(unsigned int irq, unsigned int type) | 122 | static int intc_irq_set_type(struct irq_data *d, unsigned int type) |
44 | { | 123 | { |
45 | if (irq >= MCFINT_VECBASE) { | 124 | unsigned int ebit, irq = d->irq; |
46 | if (irq < MCFINT_VECBASE + 64) | 125 | u16 pa, tb; |
47 | __raw_writeb(5, MCFINTC0_ICR0 + irq - MCFINT_VECBASE); | 126 | |
48 | else if ((irq < MCFINT_VECBASE) && MCFINTC1_ICR0) | 127 | switch (type) { |
49 | __raw_writeb(5, MCFINTC1_ICR0 + irq - MCFINT_VECBASE - 64); | 128 | case IRQ_TYPE_EDGE_RISING: |
129 | tb = 0x1; | ||
130 | break; | ||
131 | case IRQ_TYPE_EDGE_FALLING: | ||
132 | tb = 0x2; | ||
133 | break; | ||
134 | case IRQ_TYPE_EDGE_BOTH: | ||
135 | tb = 0x3; | ||
136 | break; | ||
137 | default: | ||
138 | /* Level triggered */ | ||
139 | tb = 0; | ||
140 | break; | ||
50 | } | 141 | } |
142 | |||
143 | if (tb) | ||
144 | set_irq_handler(irq, handle_edge_irq); | ||
145 | |||
146 | ebit = irq2ebit(irq) * 2; | ||
147 | pa = __raw_readw(MCFEPORT_EPPAR); | ||
148 | pa = (pa & ~(0x3 << ebit)) | (tb << ebit); | ||
149 | __raw_writew(pa, MCFEPORT_EPPAR); | ||
150 | |||
51 | return 0; | 151 | return 0; |
52 | } | 152 | } |
53 | 153 | ||
54 | static struct irq_chip intc_irq_chip = { | 154 | static struct irq_chip intc_irq_chip = { |
55 | .name = "CF-INTC", | 155 | .name = "CF-INTC", |
56 | .mask = intc_irq_mask, | 156 | .irq_startup = intc_irq_startup, |
57 | .unmask = intc_irq_unmask, | 157 | .irq_mask = intc_irq_mask, |
58 | .set_type = intc_irq_set_type, | 158 | .irq_unmask = intc_irq_unmask, |
159 | }; | ||
160 | |||
161 | static struct irq_chip intc_irq_chip_edge_port = { | ||
162 | .name = "CF-INTC-EP", | ||
163 | .irq_startup = intc_irq_startup, | ||
164 | .irq_mask = intc_irq_mask, | ||
165 | .irq_unmask = intc_irq_unmask, | ||
166 | .irq_ack = intc_irq_ack, | ||
167 | .irq_set_type = intc_irq_set_type, | ||
59 | }; | 168 | }; |
60 | 169 | ||
61 | void __init init_IRQ(void) | 170 | void __init init_IRQ(void) |
62 | { | 171 | { |
63 | int irq; | 172 | int irq, eirq; |
64 | 173 | ||
65 | init_vectors(); | 174 | init_vectors(); |
66 | 175 | ||
@@ -69,8 +178,12 @@ void __init init_IRQ(void) | |||
69 | if (MCFINTC1_SIMR) | 178 | if (MCFINTC1_SIMR) |
70 | __raw_writeb(0xff, MCFINTC1_SIMR); | 179 | __raw_writeb(0xff, MCFINTC1_SIMR); |
71 | 180 | ||
72 | for (irq = 0; (irq < NR_IRQS); irq++) { | 181 | eirq = MCFINT_VECBASE + 64 + (MCFINTC1_ICR0 ? 64 : 0); |
73 | set_irq_chip(irq, &intc_irq_chip); | 182 | for (irq = MCFINT_VECBASE; (irq < eirq); irq++) { |
183 | if ((irq >= EINT1) && (irq <= EINT7)) | ||
184 | set_irq_chip(irq, &intc_irq_chip_edge_port); | ||
185 | else | ||
186 | set_irq_chip(irq, &intc_irq_chip); | ||
74 | set_irq_type(irq, IRQ_TYPE_LEVEL_HIGH); | 187 | set_irq_type(irq, IRQ_TYPE_LEVEL_HIGH); |
75 | set_irq_handler(irq, handle_level_irq); | 188 | set_irq_handler(irq, handle_level_irq); |
76 | } | 189 | } |