blob: 76fbe9dc7f3f56a9108c382c2988858612f733c2 [file] [log] [blame]
Graeme Russabf0cd32009-02-24 21:13:40 +11001/*
2 * (C) Copyright 2009
Graeme Russdbf71152011-04-13 19:43:26 +10003 * Graeme Russ, <graeme.russ@gmail.com>
Graeme Russabf0cd32009-02-24 21:13:40 +11004 *
5 * (C) Copyright 2007
Graeme Russdbf71152011-04-13 19:43:26 +10006 * Daniel Hellstrom, Gaisler Research, <daniel@gaisler.com>
Graeme Russabf0cd32009-02-24 21:13:40 +11007 *
8 * (C) Copyright 2006
Graeme Russdbf71152011-04-13 19:43:26 +10009 * Detlev Zundel, DENX Software Engineering, <dzu@denx.de>
Graeme Russabf0cd32009-02-24 21:13:40 +110010 *
11 * (C) Copyright -2003
Graeme Russdbf71152011-04-13 19:43:26 +100012 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
Graeme Russabf0cd32009-02-24 21:13:40 +110013 *
14 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +020015 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
Graeme Russabf0cd32009-02-24 21:13:40 +110016 *
17 * (C) Copyright 2001
Graeme Russdbf71152011-04-13 19:43:26 +100018 * Josh Huber, Mission Critical Linux, Inc, <huber@mclx.com>
Graeme Russabf0cd32009-02-24 21:13:40 +110019 *
20 * See file CREDITS for list of people who contributed to this
21 * project.
22 *
23 * This program is free software; you can redistribute it and/or
24 * modify it under the terms of the GNU General Public License as
25 * published by the Free Software Foundation; either version 2 of
26 * the License, or (at your option) any later version.
27 *
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
32 *
33 * You should have received a copy of the GNU General Public License
34 * along with this program; if not, write to the Free Software
35 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
36 * MA 02111-1307 USA
37 */
38
39/*
40 * This file contains the high-level API for the interrupt sub-system
Graeme Russdbf71152011-04-13 19:43:26 +100041 * of the x86 port of U-Boot. Most of the functionality has been
Graeme Russabf0cd32009-02-24 21:13:40 +110042 * shamelessly stolen from the leon2 / leon3 ports of U-Boot.
43 * Daniel Hellstrom, Detlev Zundel, Wolfgang Denk and Josh Huber are
44 * credited for the corresponding work on those ports. The original
Graeme Russdbf71152011-04-13 19:43:26 +100045 * interrupt handling routines for the x86 port were written by
Albert ARIBAUDfa82f872011-08-04 18:45:45 +020046 * Daniel Engström
Graeme Russabf0cd32009-02-24 21:13:40 +110047 */
48
49#include <common.h>
50#include <asm/interrupt.h>
51
52struct irq_action {
53 interrupt_handler_t *handler;
54 void *arg;
55 unsigned int count;
56};
57
58static struct irq_action irq_handlers[CONFIG_SYS_NUM_IRQS] = { {0} };
Graeme Russ83088af2011-11-08 02:33:15 +000059static int spurious_irq_cnt;
60static int spurious_irq;
Graeme Russabf0cd32009-02-24 21:13:40 +110061
62void irq_install_handler(int irq, interrupt_handler_t *handler, void *arg)
63{
64 int status;
65
66 if (irq < 0 || irq >= CONFIG_SYS_NUM_IRQS) {
67 printf("irq_install_handler: bad irq number %d\n", irq);
68 return;
69 }
70
71 if (irq_handlers[irq].handler != NULL)
72 printf("irq_install_handler: 0x%08lx replacing 0x%08lx\n",
Graeme Russ83088af2011-11-08 02:33:15 +000073 (ulong) handler,
74 (ulong) irq_handlers[irq].handler);
Graeme Russabf0cd32009-02-24 21:13:40 +110075
Graeme Russ83088af2011-11-08 02:33:15 +000076 status = disable_interrupts();
Graeme Russabf0cd32009-02-24 21:13:40 +110077
Graeme Russ1c409bc2009-11-24 20:04:21 +110078 irq_handlers[irq].handler = handler;
Graeme Russabf0cd32009-02-24 21:13:40 +110079 irq_handlers[irq].arg = arg;
80 irq_handlers[irq].count = 0;
81
82 unmask_irq(irq);
83
84 if (status)
85 enable_interrupts();
86
87 return;
88}
89
90void irq_free_handler(int irq)
91{
92 int status;
93
94 if (irq < 0 || irq >= CONFIG_SYS_NUM_IRQS) {
95 printf("irq_free_handler: bad irq number %d\n", irq);
96 return;
97 }
98
Graeme Russ83088af2011-11-08 02:33:15 +000099 status = disable_interrupts();
Graeme Russabf0cd32009-02-24 21:13:40 +1100100
101 mask_irq(irq);
102
103 irq_handlers[irq].handler = NULL;
104 irq_handlers[irq].arg = NULL;
105
106 if (status)
107 enable_interrupts();
108
109 return;
110}
111
Graeme Russ564a9982009-11-24 20:04:18 +1100112void do_irq(int hw_irq)
Graeme Russabf0cd32009-02-24 21:13:40 +1100113{
Graeme Russ564a9982009-11-24 20:04:18 +1100114 int irq = hw_irq - 0x20;
115
Graeme Russabf0cd32009-02-24 21:13:40 +1100116 if (irq < 0 || irq >= CONFIG_SYS_NUM_IRQS) {
117 printf("do_irq: bad irq number %d\n", irq);
118 return;
119 }
120
121 if (irq_handlers[irq].handler) {
122 mask_irq(irq);
123
124 irq_handlers[irq].handler(irq_handlers[irq].arg);
125 irq_handlers[irq].count++;
126
127 unmask_irq(irq);
128 specific_eoi(irq);
129
130 } else {
131 if ((irq & 7) != 7) {
132 spurious_irq_cnt++;
133 spurious_irq = irq;
134 }
135 }
136}
137
138#if defined(CONFIG_CMD_IRQ)
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200139int do_irqinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Graeme Russabf0cd32009-02-24 21:13:40 +1100140{
141 int irq;
142
143 printf("Spurious IRQ: %u, last unknown IRQ: %d\n",
Graeme Russ83088af2011-11-08 02:33:15 +0000144 spurious_irq_cnt, spurious_irq);
Graeme Russabf0cd32009-02-24 21:13:40 +1100145
Graeme Russ83088af2011-11-08 02:33:15 +0000146 printf("Interrupt-Information:\n");
147 printf("Nr Routine Arg Count\n");
Graeme Russabf0cd32009-02-24 21:13:40 +1100148
149 for (irq = 0; irq <= CONFIG_SYS_NUM_IRQS; irq++) {
150 if (irq_handlers[irq].handler != NULL) {
Graeme Russ83088af2011-11-08 02:33:15 +0000151 printf("%02d %08lx %08lx %d\n",
Graeme Russabf0cd32009-02-24 21:13:40 +1100152 irq,
153 (ulong)irq_handlers[irq].handler,
154 (ulong)irq_handlers[irq].arg,
155 irq_handlers[irq].count);
156 }
157 }
158
159 return 0;
160}
161#endif