2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2009-02-24 10:13:40 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2009
|
2011-04-13 09:43:26 +00:00
|
|
|
* Graeme Russ, <graeme.russ@gmail.com>
|
2009-02-24 10:13:40 +00:00
|
|
|
*
|
|
|
|
* (C) Copyright 2007
|
2011-04-13 09:43:26 +00:00
|
|
|
* Daniel Hellstrom, Gaisler Research, <daniel@gaisler.com>
|
2009-02-24 10:13:40 +00:00
|
|
|
*
|
|
|
|
* (C) Copyright 2006
|
2011-04-13 09:43:26 +00:00
|
|
|
* Detlev Zundel, DENX Software Engineering, <dzu@denx.de>
|
2009-02-24 10:13:40 +00:00
|
|
|
*
|
|
|
|
* (C) Copyright -2003
|
2011-04-13 09:43:26 +00:00
|
|
|
* Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
|
2009-02-24 10:13:40 +00:00
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
2011-08-04 16:45:45 +00:00
|
|
|
* Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
|
2009-02-24 10:13:40 +00:00
|
|
|
*
|
|
|
|
* (C) Copyright 2001
|
2011-04-13 09:43:26 +00:00
|
|
|
* Josh Huber, Mission Critical Linux, Inc, <huber@mclx.com>
|
2009-02-24 10:13:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file contains the high-level API for the interrupt sub-system
|
2011-04-13 09:43:26 +00:00
|
|
|
* of the x86 port of U-Boot. Most of the functionality has been
|
2009-02-24 10:13:40 +00:00
|
|
|
* shamelessly stolen from the leon2 / leon3 ports of U-Boot.
|
|
|
|
* Daniel Hellstrom, Detlev Zundel, Wolfgang Denk and Josh Huber are
|
|
|
|
* credited for the corresponding work on those ports. The original
|
2011-04-13 09:43:26 +00:00
|
|
|
* interrupt handling routines for the x86 port were written by
|
2011-08-04 16:45:45 +00:00
|
|
|
* Daniel Engström
|
2009-02-24 10:13:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <command.h>
|
2019-11-14 19:57:41 +00:00
|
|
|
#include <irq_func.h>
|
2009-02-24 10:13:40 +00:00
|
|
|
#include <asm/interrupt.h>
|
|
|
|
|
2017-01-16 14:04:14 +00:00
|
|
|
#if !CONFIG_IS_ENABLED(X86_64)
|
|
|
|
|
2009-02-24 10:13:40 +00:00
|
|
|
struct irq_action {
|
|
|
|
interrupt_handler_t *handler;
|
|
|
|
void *arg;
|
|
|
|
unsigned int count;
|
|
|
|
};
|
|
|
|
|
2015-10-23 02:13:26 +00:00
|
|
|
static struct irq_action irq_handlers[SYS_NUM_IRQS] = { {0} };
|
2011-11-08 02:33:15 +00:00
|
|
|
static int spurious_irq_cnt;
|
|
|
|
static int spurious_irq;
|
2009-02-24 10:13:40 +00:00
|
|
|
|
|
|
|
void irq_install_handler(int irq, interrupt_handler_t *handler, void *arg)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
2015-10-23 02:13:26 +00:00
|
|
|
if (irq < 0 || irq >= SYS_NUM_IRQS) {
|
2009-02-24 10:13:40 +00:00
|
|
|
printf("irq_install_handler: bad irq number %d\n", irq);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (irq_handlers[irq].handler != NULL)
|
|
|
|
printf("irq_install_handler: 0x%08lx replacing 0x%08lx\n",
|
2011-11-08 02:33:15 +00:00
|
|
|
(ulong) handler,
|
|
|
|
(ulong) irq_handlers[irq].handler);
|
2009-02-24 10:13:40 +00:00
|
|
|
|
2011-11-08 02:33:15 +00:00
|
|
|
status = disable_interrupts();
|
2009-02-24 10:13:40 +00:00
|
|
|
|
2009-11-24 09:04:21 +00:00
|
|
|
irq_handlers[irq].handler = handler;
|
2009-02-24 10:13:40 +00:00
|
|
|
irq_handlers[irq].arg = arg;
|
|
|
|
irq_handlers[irq].count = 0;
|
|
|
|
|
2018-11-30 03:57:21 +00:00
|
|
|
if (CONFIG_IS_ENABLED(I8259_PIC))
|
|
|
|
unmask_irq(irq);
|
2009-02-24 10:13:40 +00:00
|
|
|
|
|
|
|
if (status)
|
|
|
|
enable_interrupts();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void irq_free_handler(int irq)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
2015-10-23 02:13:26 +00:00
|
|
|
if (irq < 0 || irq >= SYS_NUM_IRQS) {
|
2009-02-24 10:13:40 +00:00
|
|
|
printf("irq_free_handler: bad irq number %d\n", irq);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-08 02:33:15 +00:00
|
|
|
status = disable_interrupts();
|
2009-02-24 10:13:40 +00:00
|
|
|
|
2018-11-30 03:57:21 +00:00
|
|
|
if (CONFIG_IS_ENABLED(I8259_PIC))
|
|
|
|
mask_irq(irq);
|
2009-02-24 10:13:40 +00:00
|
|
|
|
|
|
|
irq_handlers[irq].handler = NULL;
|
|
|
|
irq_handlers[irq].arg = NULL;
|
|
|
|
|
|
|
|
if (status)
|
|
|
|
enable_interrupts();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-24 09:04:18 +00:00
|
|
|
void do_irq(int hw_irq)
|
2009-02-24 10:13:40 +00:00
|
|
|
{
|
2009-11-24 09:04:18 +00:00
|
|
|
int irq = hw_irq - 0x20;
|
|
|
|
|
2015-10-23 02:13:26 +00:00
|
|
|
if (irq < 0 || irq >= SYS_NUM_IRQS) {
|
2009-02-24 10:13:40 +00:00
|
|
|
printf("do_irq: bad irq number %d\n", irq);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (irq_handlers[irq].handler) {
|
2018-11-30 03:57:21 +00:00
|
|
|
if (CONFIG_IS_ENABLED(I8259_PIC))
|
|
|
|
mask_irq(irq);
|
2009-02-24 10:13:40 +00:00
|
|
|
|
|
|
|
irq_handlers[irq].handler(irq_handlers[irq].arg);
|
|
|
|
irq_handlers[irq].count++;
|
|
|
|
|
2018-11-30 03:57:21 +00:00
|
|
|
if (CONFIG_IS_ENABLED(I8259_PIC)) {
|
|
|
|
unmask_irq(irq);
|
|
|
|
specific_eoi(irq);
|
|
|
|
}
|
2009-02-24 10:13:40 +00:00
|
|
|
} else {
|
|
|
|
if ((irq & 7) != 7) {
|
|
|
|
spurious_irq_cnt++;
|
|
|
|
spurious_irq = irq;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-01-16 14:04:14 +00:00
|
|
|
#endif
|
2009-02-24 10:13:40 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_IRQ)
|
2020-05-10 17:40:03 +00:00
|
|
|
int do_irqinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
2009-02-24 10:13:40 +00:00
|
|
|
{
|
2017-01-16 14:04:14 +00:00
|
|
|
#if !CONFIG_IS_ENABLED(X86_64)
|
2009-02-24 10:13:40 +00:00
|
|
|
int irq;
|
|
|
|
|
|
|
|
printf("Spurious IRQ: %u, last unknown IRQ: %d\n",
|
2011-11-08 02:33:15 +00:00
|
|
|
spurious_irq_cnt, spurious_irq);
|
2009-02-24 10:13:40 +00:00
|
|
|
|
2011-11-08 02:33:15 +00:00
|
|
|
printf("Interrupt-Information:\n");
|
|
|
|
printf("Nr Routine Arg Count\n");
|
2009-02-24 10:13:40 +00:00
|
|
|
|
2015-10-23 02:13:26 +00:00
|
|
|
for (irq = 0; irq < SYS_NUM_IRQS; irq++) {
|
2009-02-24 10:13:40 +00:00
|
|
|
if (irq_handlers[irq].handler != NULL) {
|
2011-11-08 02:33:15 +00:00
|
|
|
printf("%02d %08lx %08lx %d\n",
|
2009-02-24 10:13:40 +00:00
|
|
|
irq,
|
|
|
|
(ulong)irq_handlers[irq].handler,
|
|
|
|
(ulong)irq_handlers[irq].arg,
|
|
|
|
irq_handlers[irq].count);
|
|
|
|
}
|
|
|
|
}
|
2017-01-16 14:04:14 +00:00
|
|
|
#endif
|
2009-02-24 10:13:40 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|