wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 1 | /* |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 2 | * (C) Copyright 2007 Michal Simek |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 3 | * (C) Copyright 2004 Atmark Techno, Inc. |
| 4 | * |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 5 | * Michal SIMEK <monstr@monstr.eu> |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 6 | * Yasushi SHOJI <yashi@atmark-techno.com> |
| 7 | * |
| 8 | * See file CREDITS for list of people who contributed to this |
| 9 | * project. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2 of |
| 14 | * the License, or (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 24 | * MA 02111-1307 USA |
| 25 | */ |
| 26 | |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 27 | #include <common.h> |
| 28 | #include <command.h> |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 29 | #include <malloc.h> |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 30 | #include <asm/microblaze_intc.h> |
Michal Simek | 42efed6 | 2007-05-07 17:22:25 +0200 | [diff] [blame] | 31 | #include <asm/asm.h> |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 32 | |
| 33 | #undef DEBUG_INT |
| 34 | |
| 35 | extern void microblaze_disable_interrupts (void); |
| 36 | extern void microblaze_enable_interrupts (void); |
| 37 | |
| 38 | void enable_interrupts (void) |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 39 | { |
Michal Simek | fb05f6d | 2007-05-07 23:58:31 +0200 | [diff] [blame] | 40 | MSRSET(0x2); |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 41 | } |
| 42 | |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 43 | int disable_interrupts (void) |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 44 | { |
Michal Simek | 68e99e5 | 2010-12-21 08:30:39 +0100 | [diff] [blame] | 45 | unsigned int msr; |
| 46 | |
| 47 | MFS(msr, rmsr); |
Michal Simek | fb05f6d | 2007-05-07 23:58:31 +0200 | [diff] [blame] | 48 | MSRCLR(0x2); |
Michal Simek | 68e99e5 | 2010-12-21 08:30:39 +0100 | [diff] [blame] | 49 | return (msr & 0x2) != 0; |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 50 | } |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 51 | |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 52 | static struct irq_action *vecs; |
| 53 | static u32 irq_no; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 54 | |
| 55 | /* mapping structure to interrupt controller */ |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 56 | microblaze_intc_t *intc; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 57 | |
| 58 | /* default handler */ |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 59 | static void def_hdlr(void) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 60 | { |
| 61 | puts ("def_hdlr\n"); |
| 62 | } |
| 63 | |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 64 | static void enable_one_interrupt(int irq) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 65 | { |
| 66 | int mask; |
| 67 | int offset = 1; |
| 68 | offset <<= irq; |
| 69 | mask = intc->ier; |
| 70 | intc->ier = (mask | offset); |
| 71 | #ifdef DEBUG_INT |
| 72 | printf ("Enable one interrupt irq %x - mask %x,ier %x\n", offset, mask, |
| 73 | intc->ier); |
| 74 | printf ("INTC isr %x, ier %x, iar %x, mer %x\n", intc->isr, intc->ier, |
| 75 | intc->iar, intc->mer); |
| 76 | #endif |
| 77 | } |
| 78 | |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 79 | static void disable_one_interrupt(int irq) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 80 | { |
| 81 | int mask; |
| 82 | int offset = 1; |
| 83 | offset <<= irq; |
| 84 | mask = intc->ier; |
| 85 | intc->ier = (mask & ~offset); |
| 86 | #ifdef DEBUG_INT |
| 87 | printf ("Disable one interrupt irq %x - mask %x,ier %x\n", irq, mask, |
| 88 | intc->ier); |
| 89 | printf ("INTC isr %x, ier %x, iar %x, mer %x\n", intc->isr, intc->ier, |
| 90 | intc->iar, intc->mer); |
| 91 | #endif |
| 92 | } |
| 93 | |
Michal Simek | 8706908 | 2012-06-29 14:21:52 +0200 | [diff] [blame^] | 94 | int install_interrupt_handler(int irq, interrupt_handler_t *hdlr, void *arg) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 95 | { |
| 96 | struct irq_action *act; |
| 97 | /* irq out of range */ |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 98 | if ((irq < 0) || (irq > irq_no)) { |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 99 | puts ("IRQ out of range\n"); |
Michal Simek | 8706908 | 2012-06-29 14:21:52 +0200 | [diff] [blame^] | 100 | return -1; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 101 | } |
| 102 | act = &vecs[irq]; |
| 103 | if (hdlr) { /* enable */ |
| 104 | act->handler = hdlr; |
| 105 | act->arg = arg; |
| 106 | act->count = 0; |
| 107 | enable_one_interrupt (irq); |
Michal Simek | 8706908 | 2012-06-29 14:21:52 +0200 | [diff] [blame^] | 108 | return 0; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 109 | } |
Michal Simek | 8706908 | 2012-06-29 14:21:52 +0200 | [diff] [blame^] | 110 | |
| 111 | /* Disable */ |
| 112 | act->handler = (interrupt_handler_t *) def_hdlr; |
| 113 | act->arg = (void *)irq; |
| 114 | disable_one_interrupt(irq); |
| 115 | return 1; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | /* initialization interrupt controller - hardware */ |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 119 | static void intc_init(void) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 120 | { |
| 121 | intc->mer = 0; |
| 122 | intc->ier = 0; |
| 123 | intc->iar = 0xFFFFFFFF; |
| 124 | /* XIntc_Start - hw_interrupt enable and all interrupt enable */ |
| 125 | intc->mer = 0x3; |
| 126 | #ifdef DEBUG_INT |
| 127 | printf ("INTC isr %x, ier %x, iar %x, mer %x\n", intc->isr, intc->ier, |
| 128 | intc->iar, intc->mer); |
| 129 | #endif |
| 130 | } |
| 131 | |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 132 | int interrupts_init(void) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 133 | { |
| 134 | int i; |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 135 | |
| 136 | #if defined(CONFIG_SYS_INTC_0_ADDR) && defined(CONFIG_SYS_INTC_0_NUM) |
| 137 | intc = (microblaze_intc_t *) (CONFIG_SYS_INTC_0_ADDR); |
| 138 | irq_no = CONFIG_SYS_INTC_0_NUM; |
| 139 | #endif |
| 140 | if (irq_no) { |
| 141 | vecs = calloc(1, sizeof(struct irq_action) * irq_no); |
| 142 | if (vecs == NULL) { |
| 143 | puts("Interrupt vector allocation failed\n"); |
| 144 | return -1; |
| 145 | } |
| 146 | |
| 147 | /* initialize irq list */ |
| 148 | for (i = 0; i < irq_no; i++) { |
| 149 | vecs[i].handler = (interrupt_handler_t *) def_hdlr; |
| 150 | vecs[i].arg = (void *)i; |
| 151 | vecs[i].count = 0; |
| 152 | } |
| 153 | /* initialize intc controller */ |
| 154 | intc_init(); |
| 155 | enable_interrupts(); |
| 156 | } else { |
| 157 | puts("Undefined interrupt controller\n"); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 158 | } |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 159 | return 0; |
| 160 | } |
| 161 | |
| 162 | void interrupt_handler (void) |
| 163 | { |
Michal Simek | 8125c98 | 2010-04-16 11:51:59 +0200 | [diff] [blame] | 164 | int irqs = intc->ivr; /* find active interrupt */ |
| 165 | int mask = 1; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 166 | #ifdef DEBUG_INT |
Michal Simek | 42efed6 | 2007-05-07 17:22:25 +0200 | [diff] [blame] | 167 | int value; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 168 | printf ("INTC isr %x, ier %x, iar %x, mer %x\n", intc->isr, intc->ier, |
| 169 | intc->iar, intc->mer); |
Michal Simek | 42efed6 | 2007-05-07 17:22:25 +0200 | [diff] [blame] | 170 | R14(value); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 171 | printf ("Interrupt handler on %x line, r14 %x\n", irqs, value); |
| 172 | #endif |
Michal Simek | 8125c98 | 2010-04-16 11:51:59 +0200 | [diff] [blame] | 173 | struct irq_action *act = vecs + irqs; |
| 174 | |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 175 | #ifdef DEBUG_INT |
Michal Simek | 8125c98 | 2010-04-16 11:51:59 +0200 | [diff] [blame] | 176 | printf |
| 177 | ("Jumping to interrupt handler rutine addr %x,count %x,arg %x\n", |
| 178 | act->handler, act->count, act->arg); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 179 | #endif |
Michal Simek | 8125c98 | 2010-04-16 11:51:59 +0200 | [diff] [blame] | 180 | act->handler (act->arg); |
| 181 | act->count++; |
Michal Simek | 42efed6 | 2007-05-07 17:22:25 +0200 | [diff] [blame] | 182 | |
Stephan Linz | 0f88326 | 2012-02-22 19:12:43 +0100 | [diff] [blame] | 183 | intc->iar = mask << irqs; |
| 184 | |
Michal Simek | 42efed6 | 2007-05-07 17:22:25 +0200 | [diff] [blame] | 185 | #ifdef DEBUG_INT |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 186 | printf ("Dump INTC reg, isr %x, ier %x, iar %x, mer %x\n", intc->isr, |
| 187 | intc->ier, intc->iar, intc->mer); |
Michal Simek | 42efed6 | 2007-05-07 17:22:25 +0200 | [diff] [blame] | 188 | R14(value); |
| 189 | printf ("Interrupt handler on %x line, r14 %x\n", irqs, value); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 190 | #endif |
| 191 | } |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 192 | |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 193 | #if defined(CONFIG_CMD_IRQ) |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 194 | int do_irqinfo(cmd_tbl_t *cmdtp, int flag, int argc, const char *argv[]) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 195 | { |
| 196 | int i; |
| 197 | struct irq_action *act = vecs; |
| 198 | |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 199 | if (irq_no) { |
| 200 | puts("\nInterrupt-Information:\n\n" |
| 201 | "Nr Routine Arg Count\n" |
| 202 | "-----------------------------\n"); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 203 | |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 204 | for (i = 0; i < irq_no; i++) { |
| 205 | if (act->handler != (interrupt_handler_t *) def_hdlr) { |
| 206 | printf("%02d %08x %08x %d\n", i, |
| 207 | (int)act->handler, (int)act->arg, |
| 208 | act->count); |
| 209 | } |
| 210 | act++; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 211 | } |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 212 | puts("\n"); |
| 213 | } else { |
| 214 | puts("Undefined interrupt controller\n"); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 215 | } |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 216 | return 0; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 217 | } |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 218 | #endif |