blob: 41d2c04c856d11e661ce387c93c6cbace00aefc0 [file] [log] [blame]
wdenk4a9cbbe2002-08-27 09:48:53 +00001/*
2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk4a9cbbe2002-08-27 09:48:53 +00006 *
7 * Hacked for MPC8260 by Murray.Jensen@cmst.csiro.au, 22-Oct-00
8 */
9
10#include <common.h>
wdenk4a9cbbe2002-08-27 09:48:53 +000011#include <command.h>
12#include <mpc8260.h>
13#include <mpc8260_irq.h>
14#include <asm/processor.h>
15
Wolfgang Denkd87080b2006-03-31 18:32:53 +020016DECLARE_GLOBAL_DATA_PTR;
17
wdenk4a9cbbe2002-08-27 09:48:53 +000018/****************************************************************************/
19
wdenk4a9cbbe2002-08-27 09:48:53 +000020struct irq_action {
21 interrupt_handler_t *handler;
22 void *arg;
23 ulong count;
24};
25
26static struct irq_action irq_handlers[NR_IRQS];
27
28static ulong ppc_cached_irq_mask[NR_MASK_WORDS];
29
30/****************************************************************************/
Stefan Roesea47a12b2010-04-15 16:07:28 +020031/* this section was ripped out of arch/powerpc/kernel/ppc8260_pic.c in the */
wdenk4a9cbbe2002-08-27 09:48:53 +000032/* Linux/PPC 2.4.x source. There was no copyright notice in that file. */
33
34/* The 8260 internal interrupt controller. It is usually
35 * the only interrupt controller.
36 * There are two 32-bit registers (high/low) for up to 64
37 * possible interrupts.
38 *
39 * Now, the fun starts.....Interrupt Numbers DO NOT MAP
40 * in a simple arithmetic fashion to mask or pending registers.
41 * That is, interrupt 4 does not map to bit position 4.
42 * We create two tables, indexed by vector number, to indicate
43 * which register to use and which bit in the register to use.
44 */
45static u_char irq_to_siureg[] = {
46 1, 1, 1, 1, 1, 1, 1, 1,
47 1, 1, 1, 1, 1, 1, 1, 1,
48 0, 0, 0, 0, 0, 0, 0, 0,
49 0, 0, 0, 0, 0, 0, 0, 0,
50 1, 1, 1, 1, 1, 1, 1, 1,
51 1, 1, 1, 1, 1, 1, 1, 1,
52 0, 0, 0, 0, 0, 0, 0, 0,
53 0, 0, 0, 0, 0, 0, 0, 0
54};
55
56static u_char irq_to_siubit[] = {
57 31, 16, 17, 18, 19, 20, 21, 22,
58 23, 24, 25, 26, 27, 28, 29, 30,
59 29, 30, 16, 17, 18, 19, 20, 21,
60 22, 23, 24, 25, 26, 27, 28, 31,
61 0, 1, 2, 3, 4, 5, 6, 7,
62 8, 9, 10, 11, 12, 13, 14, 15,
63 15, 14, 13, 12, 11, 10, 9, 8,
64 7, 6, 5, 4, 3, 2, 1, 0
65};
66
67static void m8260_mask_irq (unsigned int irq_nr)
68{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020069 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk4a9cbbe2002-08-27 09:48:53 +000070 int bit, word;
71 volatile uint *simr;
72
73 bit = irq_to_siubit[irq_nr];
74 word = irq_to_siureg[irq_nr];
75
76 simr = &(immr->im_intctl.ic_simrh);
77 ppc_cached_irq_mask[word] &= ~(1 << (31 - bit));
78 simr[word] = ppc_cached_irq_mask[word];
79}
80
81static void m8260_unmask_irq (unsigned int irq_nr)
82{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020083 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk4a9cbbe2002-08-27 09:48:53 +000084 int bit, word;
85 volatile uint *simr;
86
87 bit = irq_to_siubit[irq_nr];
88 word = irq_to_siureg[irq_nr];
89
90 simr = &(immr->im_intctl.ic_simrh);
91 ppc_cached_irq_mask[word] |= (1 << (31 - bit));
92 simr[word] = ppc_cached_irq_mask[word];
93}
94
95static void m8260_mask_and_ack (unsigned int irq_nr)
96{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020097 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk4a9cbbe2002-08-27 09:48:53 +000098 int bit, word;
99 volatile uint *simr, *sipnr;
100
101 bit = irq_to_siubit[irq_nr];
102 word = irq_to_siureg[irq_nr];
103
104 simr = &(immr->im_intctl.ic_simrh);
105 sipnr = &(immr->im_intctl.ic_sipnrh);
106 ppc_cached_irq_mask[word] &= ~(1 << (31 - bit));
107 simr[word] = ppc_cached_irq_mask[word];
108 sipnr[word] = 1 << (31 - bit);
109}
110
111static int m8260_get_irq (struct pt_regs *regs)
112{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200113 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk4a9cbbe2002-08-27 09:48:53 +0000114 int irq;
115 unsigned long bits;
116
117 /* For MPC8260, read the SIVEC register and shift the bits down
118 * to get the irq number. */
119 bits = immr->im_intctl.ic_sivec;
120 irq = bits >> 26;
121 return irq;
122}
123
Stefan Roesea47a12b2010-04-15 16:07:28 +0200124/* end of code ripped out of arch/powerpc/kernel/ppc8260_pic.c */
wdenk4a9cbbe2002-08-27 09:48:53 +0000125/****************************************************************************/
126
wdenka8c7c702003-12-06 19:49:23 +0000127int interrupt_init_cpu (unsigned *decrementer_count)
wdenk4a9cbbe2002-08-27 09:48:53 +0000128{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200129 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk4a9cbbe2002-08-27 09:48:53 +0000130
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200131 *decrementer_count = (gd->bus_clk / 4) / CONFIG_SYS_HZ;
wdenk4a9cbbe2002-08-27 09:48:53 +0000132
133 /* Initialize the default interrupt mapping priorities */
134 immr->im_intctl.ic_sicr = 0;
135 immr->im_intctl.ic_siprr = 0x05309770;
136 immr->im_intctl.ic_scprrh = 0x05309770;
137 immr->im_intctl.ic_scprrl = 0x05309770;
138
139 /* disable all interrupts and clear all pending bits */
140 immr->im_intctl.ic_simrh = ppc_cached_irq_mask[0] = 0;
141 immr->im_intctl.ic_simrl = ppc_cached_irq_mask[1] = 0;
142 immr->im_intctl.ic_sipnrh = 0xffffffff;
143 immr->im_intctl.ic_sipnrl = 0xffffffff;
144
Marek Vasut5038d7f2014-10-22 21:34:48 +0200145 return 0;
wdenk4a9cbbe2002-08-27 09:48:53 +0000146}
147
148/****************************************************************************/
149
150/*
151 * Handle external interrupts
152 */
153void external_interrupt (struct pt_regs *regs)
154{
155 int irq, unmask = 1;
156
157 irq = m8260_get_irq (regs);
158
159 m8260_mask_and_ack (irq);
160
wdenka8c7c702003-12-06 19:49:23 +0000161 enable_interrupts ();
wdenk4a9cbbe2002-08-27 09:48:53 +0000162
163 if (irq_handlers[irq].handler != NULL)
164 (*irq_handlers[irq].handler) (irq_handlers[irq].arg);
165 else {
166 printf ("\nBogus External Interrupt IRQ %d\n", irq);
167 /*
168 * turn off the bogus interrupt, otherwise it
169 * might repeat forever
170 */
171 unmask = 0;
172 }
173
174 if (unmask)
175 m8260_unmask_irq (irq);
176}
177
178/****************************************************************************/
179
180/*
181 * Install and free an interrupt handler.
182 */
183
184void
185irq_install_handler (int irq, interrupt_handler_t * handler, void *arg)
186{
187 if (irq < 0 || irq >= NR_IRQS) {
188 printf ("irq_install_handler: bad irq number %d\n", irq);
189 return;
190 }
191
192 if (irq_handlers[irq].handler != NULL)
193 printf ("irq_install_handler: 0x%08lx replacing 0x%08lx\n",
194 (ulong) handler, (ulong) irq_handlers[irq].handler);
195
196 irq_handlers[irq].handler = handler;
197 irq_handlers[irq].arg = arg;
198
199 m8260_unmask_irq (irq);
200}
201
202void irq_free_handler (int irq)
203{
204 if (irq < 0 || irq >= NR_IRQS) {
205 printf ("irq_free_handler: bad irq number %d\n", irq);
206 return;
207 }
208
209 m8260_mask_irq (irq);
210
211 irq_handlers[irq].handler = NULL;
212 irq_handlers[irq].arg = NULL;
213}
214
215/****************************************************************************/
216
wdenka8c7c702003-12-06 19:49:23 +0000217void timer_interrupt_cpu (struct pt_regs *regs)
wdenk4a9cbbe2002-08-27 09:48:53 +0000218{
wdenka8c7c702003-12-06 19:49:23 +0000219 /* nothing to do here */
220 return;
wdenk4a9cbbe2002-08-27 09:48:53 +0000221}
222
223/****************************************************************************/
224
Jon Loeliger44312832007-07-09 19:06:00 -0500225#if defined(CONFIG_CMD_IRQ)
wdenk4a9cbbe2002-08-27 09:48:53 +0000226
227/* ripped this out of ppc4xx/interrupts.c */
228
229/*******************************************************************************
230*
231* irqinfo - print information about PCI devices
232*
233*/
234void
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200235do_irqinfo (cmd_tbl_t * cmdtp, bd_t * bd, int flag, int argc, char * const argv[])
wdenk4a9cbbe2002-08-27 09:48:53 +0000236{
237 int irq, re_enable;
238
239 re_enable = disable_interrupts ();
240
wdenk4b9206e2004-03-23 22:14:11 +0000241 puts ("\nInterrupt-Information:\n"
242 "Nr Routine Arg Count\n");
wdenk4a9cbbe2002-08-27 09:48:53 +0000243
244 for (irq = 0; irq < 32; irq++)
245 if (irq_handlers[irq].handler != NULL)
246 printf ("%02d %08lx %08lx %ld\n", irq,
247 (ulong) irq_handlers[irq].handler,
248 (ulong) irq_handlers[irq].arg,
249 irq_handlers[irq].count);
250
251 if (re_enable)
252 enable_interrupts ();
253}
254
Jon Loeliger44312832007-07-09 19:06:00 -0500255#endif