blob: 96c3020935353c758444cb1cefa082fac2231af1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk5c952cf2004-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>
wdenk5c952cf2004-10-10 21:27:30 +00008 */
9
Thomas Chou37e24492015-10-03 21:02:30 +080010#include <common.h>
11#include <command.h>
Thomas Chou57cfeb52014-08-25 17:09:07 +080012#include <asm/nios2.h>
Stefan Roesef2302d42008-08-06 14:05:38 +020013#include <asm/types.h>
Scott McNuttc2ced002006-06-08 11:59:57 -040014#include <asm/io.h>
wdenk5c952cf2004-10-10 21:27:30 +000015#include <asm/ptrace.h>
wdenk5c952cf2004-10-10 21:27:30 +000016
Thomas Choue6500f82015-10-08 21:23:37 +080017/*************************************************************************/
wdenk5c952cf2004-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 Glass9d3915b2019-11-14 12:57:40 -070026int disable_interrupts(void)
wdenk5c952cf2004-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 Glass9d3915b2019-11-14 12:57:40 -070039void external_interrupt(struct pt_regs *regs)
wdenk5c952cf2004-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 Glass9d3915b2019-11-14 12:57:40 -070076void irq_install_handler(int irq, interrupt_handler_t *hdlr, void *arg)
wdenk5c952cf2004-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 Glass9d3915b2019-11-14 12:57:40 -070087 flag = disable_interrupts();
wdenk5c952cf2004-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 Glass9d3915b2019-11-14 12:57:40 -070098 if (flag) enable_interrupts();
wdenk5c952cf2004-10-10 21:27:30 +000099}
100
101
Simon Glass9d3915b2019-11-14 12:57:40 -0700102int interrupt_init(void)
wdenk5c952cf2004-10-10 21:27:30 +0000103{
104 int i;
105
106 /* Assign the default handler to all */
107 for (i = 0; i < 32; i++) {
108 vecs[i].handler = def_hdlr;
109 vecs[i].arg = (void *)i;
110 vecs[i].count = 0;
111 }
112
Simon Glass9d3915b2019-11-14 12:57:40 -0700113 enable_interrupts();
wdenk5c952cf2004-10-10 21:27:30 +0000114 return (0);
115}
116
117
118/*************************************************************************/
Jon Loeliger3a1ed1e2007-07-09 18:57:22 -0500119#if defined(CONFIG_CMD_IRQ)
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200120int do_irqinfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk5c952cf2004-10-10 21:27:30 +0000121{
122 int i;
123 struct irq_action *act = vecs;
124
125 printf ("\nInterrupt-Information:\n\n");
126 printf ("Nr Routine Arg Count\n");
127 printf ("-----------------------------\n");
128
129 for (i=0; i<32; i++) {
130 if (act->handler != def_hdlr) {
131 printf ("%02d %08lx %08lx %d\n",
132 i,
133 (ulong)act->handler,
134 (ulong)act->arg,
135 act->count);
136 }
137 act++;
138 }
139 printf ("\n");
140
141 return (0);
142}
Jon Loeliger3a1ed1e2007-07-09 18:57:22 -0500143#endif