blob: c98d40a49b51f68bb99353f37ae6116dde71f936 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkef3386f2004-10-10 21:27:30 +00002/*
3 * (C) Copyright 2000-2002
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * (C) Copyright 2004, Psyent Corporation <www.psyent.com>
7 * Scott McNutt <smcnutt@psyent.com>
wdenkef3386f2004-10-10 21:27:30 +00008 */
9
Thomas Chou4e1acb72015-10-03 21:02:30 +080010#include <command.h>
Simon Glass9b61c7c2019-11-14 12:57:41 -070011#include <irq_func.h>
Thomas Chou0f9763f2014-08-25 17:09:07 +080012#include <asm/nios2.h>
Stefan Roese37628252008-08-06 14:05:38 +020013#include <asm/types.h>
Scott McNutta5721a32006-06-08 11:59:57 -040014#include <asm/io.h>
wdenkef3386f2004-10-10 21:27:30 +000015#include <asm/ptrace.h>
wdenkef3386f2004-10-10 21:27:30 +000016
Thomas Chou16dc04b2015-10-08 21:23:37 +080017/*************************************************************************/
wdenkef3386f2004-10-10 21:27:30 +000018struct irq_action {
19 interrupt_handler_t *handler;
20 void *arg;
21 int count;
22};
23
24static struct irq_action vecs[32];
25
Simon Glassf87959b2019-11-14 12:57:40 -070026int disable_interrupts(void)
wdenkef3386f2004-10-10 21:27:30 +000027{
28 int val = rdctl (CTL_STATUS);
29 wrctl (CTL_STATUS, val & ~STATUS_IE);
30 return (val & STATUS_IE);
31}
32
33void enable_interrupts( void )
34{
35 int val = rdctl (CTL_STATUS);
36 wrctl (CTL_STATUS, val | STATUS_IE);
37}
38
Simon Glassf87959b2019-11-14 12:57:40 -070039void external_interrupt(struct pt_regs *regs)
wdenkef3386f2004-10-10 21:27:30 +000040{
41 unsigned irqs;
42 struct irq_action *act;
43
44 /* Evaluate only irqs that are both enabled AND pending */
45 irqs = rdctl (CTL_IENABLE) & rdctl (CTL_IPENDING);
46 act = vecs;
47
48 /* Assume (as does the Nios2 HAL) that bit 0 is highest
49 * priority. NOTE: There is ALWAYS a handler assigned
50 * (the default if no other).
51 */
52 while (irqs) {
53 if (irqs & 1) {
54 act->handler (act->arg);
55 act->count++;
56 }
57 irqs >>=1;
58 act++;
59 }
60}
61
62static void def_hdlr (void *arg)
63{
64 unsigned irqs = rdctl (CTL_IENABLE);
65
66 /* Disable the individual interrupt -- with gratuitous
67 * warning.
68 */
69 irqs &= ~(1 << (int)arg);
70 wrctl (CTL_IENABLE, irqs);
71 printf ("WARNING: Disabling unhandled interrupt: %d\n",
72 (int)arg);
73}
74
75/*************************************************************************/
Simon Glassf87959b2019-11-14 12:57:40 -070076void irq_install_handler(int irq, interrupt_handler_t *hdlr, void *arg)
wdenkef3386f2004-10-10 21:27:30 +000077{
78
79 int flag;
80 struct irq_action *act;
81 unsigned ena = rdctl (CTL_IENABLE);
82
83 if ((irq < 0) || (irq > 31))
84 return;
85 act = &vecs[irq];
86
Simon Glassf87959b2019-11-14 12:57:40 -070087 flag = disable_interrupts();
wdenkef3386f2004-10-10 21:27:30 +000088 if (hdlr) {
89 act->handler = hdlr;
90 act->arg = arg;
91 ena |= (1 << irq); /* enable */
92 } else {
93 act->handler = def_hdlr;
94 act->arg = (void *)irq;
95 ena &= ~(1 << irq); /* disable */
96 }
97 wrctl (CTL_IENABLE, ena);
Simon Glassf87959b2019-11-14 12:57:40 -070098 if (flag) enable_interrupts();
wdenkef3386f2004-10-10 21:27:30 +000099}
100
Simon Glassf87959b2019-11-14 12:57:40 -0700101int interrupt_init(void)
wdenkef3386f2004-10-10 21:27:30 +0000102{
103 int i;
104
105 /* Assign the default handler to all */
106 for (i = 0; i < 32; i++) {
107 vecs[i].handler = def_hdlr;
108 vecs[i].arg = (void *)i;
109 vecs[i].count = 0;
110 }
111
Simon Glassf87959b2019-11-14 12:57:40 -0700112 enable_interrupts();
wdenkef3386f2004-10-10 21:27:30 +0000113 return (0);
114}
115
wdenkef3386f2004-10-10 21:27:30 +0000116/*************************************************************************/
Jon Loeligera5217742007-07-09 18:57:22 -0500117#if defined(CONFIG_CMD_IRQ)
Simon Glassed38aef2020-05-10 11:40:03 -0600118int do_irqinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
wdenkef3386f2004-10-10 21:27:30 +0000119{
120 int i;
121 struct irq_action *act = vecs;
122
123 printf ("\nInterrupt-Information:\n\n");
124 printf ("Nr Routine Arg Count\n");
125 printf ("-----------------------------\n");
126
127 for (i=0; i<32; i++) {
128 if (act->handler != def_hdlr) {
129 printf ("%02d %08lx %08lx %d\n",
130 i,
131 (ulong)act->handler,
132 (ulong)act->arg,
133 act->count);
134 }
135 act++;
136 }
137 printf ("\n");
138
139 return (0);
140}
Jon Loeligera5217742007-07-09 18:57:22 -0500141#endif