1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2000-2002
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
10 #include <mpc8xx_irq.h>
12 #include <asm/cpm_8xx.h>
13 #include <asm/processor.h>
16 /************************************************************************/
19 * CPM interrupt vector functions.
21 struct interrupt_action {
22 interrupt_handler_t *handler;
26 static struct interrupt_action cpm_vecs[CPMVEC_NR];
27 static struct interrupt_action irq_vecs[NR_IRQS];
29 static void cpm_interrupt_init(void);
30 static void cpm_interrupt(void *regs);
32 /************************************************************************/
34 void interrupt_init_cpu(unsigned *decrementer_count)
36 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
38 *decrementer_count = get_tbclk() / CONFIG_SYS_HZ;
40 /* disable all interrupts */
41 out_be32(&immr->im_siu_conf.sc_simask, 0);
43 /* Configure CPM interrupts */
47 /************************************************************************/
50 * Handle external interrupts
52 void external_interrupt(struct pt_regs *regs)
54 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
60 * read the SIVEC register and shift the bits down
61 * to get the irq number
63 vec = in_be32(&immr->im_siu_conf.sc_sivec);
65 v_bit = 0x80000000UL >> irq;
68 * Read Interrupt Mask Register and Mask Interrupts
70 simask = in_be32(&immr->im_siu_conf.sc_simask);
71 clrbits_be32(&immr->im_siu_conf.sc_simask, 0xFFFF0000 >> irq);
73 if (!(irq & 0x1)) { /* External Interrupt ? */
77 * Read Interrupt Edge/Level Register
79 siel = in_be32(&immr->im_siu_conf.sc_siel);
81 if (siel & v_bit) { /* edge triggered interrupt ? */
83 * Rewrite SIPEND Register to clear interrupt
85 out_be32(&immr->im_siu_conf.sc_sipend, v_bit);
89 if (irq_vecs[irq].handler != NULL) {
90 irq_vecs[irq].handler(irq_vecs[irq].arg);
92 printf("\nBogus External Interrupt IRQ %d Vector %ld\n",
94 /* turn off the bogus interrupt to avoid it from now */
98 * Re-Enable old Interrupt Mask
100 out_be32(&immr->im_siu_conf.sc_simask, simask);
103 /************************************************************************/
106 * CPM interrupt handler
108 static void cpm_interrupt(void *regs)
110 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
114 * Get the vector by setting the ACK bit
115 * and then reading the register.
117 out_be16(&immr->im_cpic.cpic_civr, 1);
118 vec = in_be16(&immr->im_cpic.cpic_civr);
121 if (cpm_vecs[vec].handler != NULL) {
122 (*cpm_vecs[vec].handler) (cpm_vecs[vec].arg);
124 clrbits_be32(&immr->im_cpic.cpic_cimr, 1 << vec);
125 printf("Masking bogus CPM interrupt vector 0x%x\n", vec);
128 * After servicing the interrupt,
129 * we have to remove the status indicator.
131 setbits_be32(&immr->im_cpic.cpic_cisr, 1 << vec);
135 * The CPM can generate the error interrupt when there is a race
136 * condition between generating and masking interrupts. All we have
137 * to do is ACK it and return. This is a no-op function so we don't
138 * need any special tests in the interrupt handler.
140 static void cpm_error_interrupt(void *dummy)
144 /************************************************************************/
146 * Install and free an interrupt handler
148 void irq_install_handler(int vec, interrupt_handler_t *handler, void *arg)
150 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
152 if ((vec & CPMVEC_OFFSET) != 0) {
155 if (cpm_vecs[vec].handler != NULL)
156 printf("CPM interrupt 0x%x replacing 0x%x\n",
157 (uint)handler, (uint)cpm_vecs[vec].handler);
158 cpm_vecs[vec].handler = handler;
159 cpm_vecs[vec].arg = arg;
160 setbits_be32(&immr->im_cpic.cpic_cimr, 1 << vec);
163 if (irq_vecs[vec].handler != NULL)
164 printf("SIU interrupt %d 0x%x replacing 0x%x\n",
165 vec, (uint)handler, (uint)cpm_vecs[vec].handler);
166 irq_vecs[vec].handler = handler;
167 irq_vecs[vec].arg = arg;
168 setbits_be32(&immr->im_siu_conf.sc_simask, 1 << (31 - vec));
172 void irq_free_handler(int vec)
174 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
176 if ((vec & CPMVEC_OFFSET) != 0) {
179 clrbits_be32(&immr->im_cpic.cpic_cimr, 1 << vec);
180 cpm_vecs[vec].handler = NULL;
181 cpm_vecs[vec].arg = NULL;
184 clrbits_be32(&immr->im_siu_conf.sc_simask, 1 << (31 - vec));
185 irq_vecs[vec].handler = NULL;
186 irq_vecs[vec].arg = NULL;
190 /************************************************************************/
192 static void cpm_interrupt_init(void)
194 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
198 * Initialize the CPM interrupt controller.
201 cicr = CICR_SCD_SCC4 | CICR_SCC_SCC3 | CICR_SCB_SCC2 | CICR_SCA_SCC1 |
202 ((CPM_INTERRUPT / 2) << 13) | CICR_HP_MASK;
204 out_be32(&immr->im_cpic.cpic_cicr, cicr);
205 out_be32(&immr->im_cpic.cpic_cimr, 0);
208 * Install the error handler.
210 irq_install_handler(CPMVEC_ERROR, cpm_error_interrupt, NULL);
212 setbits_be32(&immr->im_cpic.cpic_cicr, CICR_IEN);
215 * Install the cpm interrupt handler
217 irq_install_handler(CPM_INTERRUPT, cpm_interrupt, NULL);
220 /************************************************************************/
223 * timer_interrupt - gets called when the decrementer overflows,
224 * with interrupts disabled.
225 * Trivial implementation - no need to be really accurate.
227 void timer_interrupt_cpu(struct pt_regs *regs)
229 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
231 /* Reset Timer Expired and Timers Interrupt Status */
232 out_be32(&immr->im_clkrstk.cark_plprcrk, KAPWR_KEY);
235 Clear TEXPS (and TMIST on older chips). SPLSS (on older
236 chips) is cleared too.
238 Bitwise OR is a read-modify-write operation so ALL bits
239 which are cleared by writing `1' would be cleared by
242 immr->im_clkrst.car_plprcr |= PLPRCR_TEXPS;
244 The same can be achieved by simple writing of the PLPRCR
245 to itself. If a bit value should be preserved, read the
246 register, ZERO the bit and write, not OR, the result back.
248 setbits_be32(&immr->im_clkrst.car_plprcr, 0);
251 /************************************************************************/