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 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 11 | #include <common.h> |
| 12 | #include <command.h> |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 13 | #include <malloc.h> |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 14 | #include <asm/microblaze_intc.h> |
Michal Simek | 42efed6 | 2007-05-07 17:22:25 +0200 | [diff] [blame] | 15 | #include <asm/asm.h> |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 16 | |
Michal Simek | 26e6da8 | 2012-06-29 13:27:28 +0200 | [diff] [blame] | 17 | void enable_interrupts(void) |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 18 | { |
Michal Simek | 070b8e0 | 2015-01-26 15:25:32 +0100 | [diff] [blame] | 19 | debug("Enable interrupts for the whole CPU\n"); |
Michal Simek | fb05f6d | 2007-05-07 23:58:31 +0200 | [diff] [blame] | 20 | MSRSET(0x2); |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 21 | } |
| 22 | |
Michal Simek | 26e6da8 | 2012-06-29 13:27:28 +0200 | [diff] [blame] | 23 | int disable_interrupts(void) |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 24 | { |
Michal Simek | 68e99e5 | 2010-12-21 08:30:39 +0100 | [diff] [blame] | 25 | unsigned int msr; |
| 26 | |
| 27 | MFS(msr, rmsr); |
Michal Simek | fb05f6d | 2007-05-07 23:58:31 +0200 | [diff] [blame] | 28 | MSRCLR(0x2); |
Michal Simek | 68e99e5 | 2010-12-21 08:30:39 +0100 | [diff] [blame] | 29 | return (msr & 0x2) != 0; |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 30 | } |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 31 | |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 32 | static struct irq_action *vecs; |
| 33 | static u32 irq_no; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 34 | |
| 35 | /* mapping structure to interrupt controller */ |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 36 | microblaze_intc_t *intc; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 37 | |
| 38 | /* default handler */ |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 39 | static void def_hdlr(void) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 40 | { |
Michal Simek | 26e6da8 | 2012-06-29 13:27:28 +0200 | [diff] [blame] | 41 | puts("def_hdlr\n"); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 42 | } |
| 43 | |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 44 | static void enable_one_interrupt(int irq) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 45 | { |
| 46 | int mask; |
| 47 | int offset = 1; |
Michal Simek | 26e6da8 | 2012-06-29 13:27:28 +0200 | [diff] [blame] | 48 | |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 49 | offset <<= irq; |
| 50 | mask = intc->ier; |
| 51 | intc->ier = (mask | offset); |
Michal Simek | 4c0922f | 2015-01-26 14:37:52 +0100 | [diff] [blame] | 52 | |
| 53 | debug("Enable one interrupt irq %x - mask %x,ier %x\n", offset, mask, |
| 54 | intc->ier); |
| 55 | debug("INTC isr %x, ier %x, iar %x, mer %x\n", intc->isr, intc->ier, |
| 56 | intc->iar, intc->mer); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 57 | } |
| 58 | |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 59 | static void disable_one_interrupt(int irq) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 60 | { |
| 61 | int mask; |
| 62 | int offset = 1; |
Michal Simek | 26e6da8 | 2012-06-29 13:27:28 +0200 | [diff] [blame] | 63 | |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 64 | offset <<= irq; |
| 65 | mask = intc->ier; |
| 66 | intc->ier = (mask & ~offset); |
Michal Simek | 4c0922f | 2015-01-26 14:37:52 +0100 | [diff] [blame] | 67 | |
| 68 | debug("Disable one interrupt irq %x - mask %x,ier %x\n", irq, mask, |
| 69 | intc->ier); |
| 70 | debug("INTC isr %x, ier %x, iar %x, mer %x\n", intc->isr, intc->ier, |
| 71 | intc->iar, intc->mer); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 72 | } |
| 73 | |
Michal Simek | 8706908 | 2012-06-29 14:21:52 +0200 | [diff] [blame] | 74 | int install_interrupt_handler(int irq, interrupt_handler_t *hdlr, void *arg) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 75 | { |
| 76 | struct irq_action *act; |
Michal Simek | 26e6da8 | 2012-06-29 13:27:28 +0200 | [diff] [blame] | 77 | |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 78 | /* irq out of range */ |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 79 | if ((irq < 0) || (irq > irq_no)) { |
Michal Simek | 26e6da8 | 2012-06-29 13:27:28 +0200 | [diff] [blame] | 80 | puts("IRQ out of range\n"); |
Michal Simek | 8706908 | 2012-06-29 14:21:52 +0200 | [diff] [blame] | 81 | return -1; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 82 | } |
| 83 | act = &vecs[irq]; |
| 84 | if (hdlr) { /* enable */ |
| 85 | act->handler = hdlr; |
| 86 | act->arg = arg; |
| 87 | act->count = 0; |
Michal Simek | e217b0d | 2015-01-26 14:39:22 +0100 | [diff] [blame] | 88 | enable_one_interrupt(irq); |
Michal Simek | 8706908 | 2012-06-29 14:21:52 +0200 | [diff] [blame] | 89 | return 0; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 90 | } |
Michal Simek | 8706908 | 2012-06-29 14:21:52 +0200 | [diff] [blame] | 91 | |
| 92 | /* Disable */ |
Michal Simek | e217b0d | 2015-01-26 14:39:22 +0100 | [diff] [blame] | 93 | act->handler = (interrupt_handler_t *)def_hdlr; |
Michal Simek | 8706908 | 2012-06-29 14:21:52 +0200 | [diff] [blame] | 94 | act->arg = (void *)irq; |
| 95 | disable_one_interrupt(irq); |
| 96 | return 1; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | /* initialization interrupt controller - hardware */ |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 100 | static void intc_init(void) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 101 | { |
| 102 | intc->mer = 0; |
| 103 | intc->ier = 0; |
| 104 | intc->iar = 0xFFFFFFFF; |
| 105 | /* XIntc_Start - hw_interrupt enable and all interrupt enable */ |
| 106 | intc->mer = 0x3; |
Michal Simek | 4c0922f | 2015-01-26 14:37:52 +0100 | [diff] [blame] | 107 | |
| 108 | debug("INTC isr %x, ier %x, iar %x, mer %x\n", intc->isr, intc->ier, |
| 109 | intc->iar, intc->mer); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 110 | } |
| 111 | |
Michal Simek | 2c7c32f | 2015-01-27 12:44:12 +0100 | [diff] [blame] | 112 | int interrupt_init(void) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 113 | { |
| 114 | int i; |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 115 | |
| 116 | #if defined(CONFIG_SYS_INTC_0_ADDR) && defined(CONFIG_SYS_INTC_0_NUM) |
Michal Simek | e217b0d | 2015-01-26 14:39:22 +0100 | [diff] [blame] | 117 | intc = (microblaze_intc_t *)CONFIG_SYS_INTC_0_ADDR; |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 118 | irq_no = CONFIG_SYS_INTC_0_NUM; |
| 119 | #endif |
| 120 | if (irq_no) { |
| 121 | vecs = calloc(1, sizeof(struct irq_action) * irq_no); |
| 122 | if (vecs == NULL) { |
| 123 | puts("Interrupt vector allocation failed\n"); |
| 124 | return -1; |
| 125 | } |
| 126 | |
| 127 | /* initialize irq list */ |
| 128 | for (i = 0; i < irq_no; i++) { |
Michal Simek | e217b0d | 2015-01-26 14:39:22 +0100 | [diff] [blame] | 129 | vecs[i].handler = (interrupt_handler_t *)def_hdlr; |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 130 | vecs[i].arg = (void *)i; |
| 131 | vecs[i].count = 0; |
| 132 | } |
| 133 | /* initialize intc controller */ |
| 134 | intc_init(); |
| 135 | enable_interrupts(); |
| 136 | } else { |
| 137 | puts("Undefined interrupt controller\n"); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 138 | } |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 139 | return 0; |
| 140 | } |
| 141 | |
Michal Simek | 26e6da8 | 2012-06-29 13:27:28 +0200 | [diff] [blame] | 142 | void interrupt_handler(void) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 143 | { |
Michal Simek | 8125c98 | 2010-04-16 11:51:59 +0200 | [diff] [blame] | 144 | int irqs = intc->ivr; /* find active interrupt */ |
| 145 | int mask = 1; |
Michal Simek | 42efed6 | 2007-05-07 17:22:25 +0200 | [diff] [blame] | 146 | int value; |
Michal Simek | 8125c98 | 2010-04-16 11:51:59 +0200 | [diff] [blame] | 147 | struct irq_action *act = vecs + irqs; |
| 148 | |
Michal Simek | 4c0922f | 2015-01-26 14:37:52 +0100 | [diff] [blame] | 149 | debug("INTC isr %x, ier %x, iar %x, mer %x\n", intc->isr, intc->ier, |
| 150 | intc->iar, intc->mer); |
| 151 | #ifdef DEBUG |
| 152 | R14(value); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 153 | #endif |
Michal Simek | 4c0922f | 2015-01-26 14:37:52 +0100 | [diff] [blame] | 154 | debug("Interrupt handler on %x line, r14 %x\n", irqs, value); |
| 155 | |
| 156 | debug("Jumping to interrupt handler rutine addr %x,count %x,arg %x\n", |
| 157 | (u32)act->handler, act->count, (u32)act->arg); |
Michal Simek | e217b0d | 2015-01-26 14:39:22 +0100 | [diff] [blame] | 158 | act->handler(act->arg); |
Michal Simek | 8125c98 | 2010-04-16 11:51:59 +0200 | [diff] [blame] | 159 | act->count++; |
Michal Simek | 42efed6 | 2007-05-07 17:22:25 +0200 | [diff] [blame] | 160 | |
Stephan Linz | 0f88326 | 2012-02-22 19:12:43 +0100 | [diff] [blame] | 161 | intc->iar = mask << irqs; |
| 162 | |
Michal Simek | 4c0922f | 2015-01-26 14:37:52 +0100 | [diff] [blame] | 163 | debug("Dump INTC reg, isr %x, ier %x, iar %x, mer %x\n", intc->isr, |
| 164 | intc->ier, intc->iar, intc->mer); |
| 165 | #ifdef DEBUG |
Michal Simek | 42efed6 | 2007-05-07 17:22:25 +0200 | [diff] [blame] | 166 | R14(value); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 167 | #endif |
Michal Simek | 4c0922f | 2015-01-26 14:37:52 +0100 | [diff] [blame] | 168 | debug("Interrupt handler on %x line, r14 %x\n", irqs, value); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 169 | } |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 170 | |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 171 | #if defined(CONFIG_CMD_IRQ) |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 172 | 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] | 173 | { |
| 174 | int i; |
| 175 | struct irq_action *act = vecs; |
| 176 | |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 177 | if (irq_no) { |
| 178 | puts("\nInterrupt-Information:\n\n" |
| 179 | "Nr Routine Arg Count\n" |
| 180 | "-----------------------------\n"); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 181 | |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 182 | for (i = 0; i < irq_no; i++) { |
Michal Simek | e217b0d | 2015-01-26 14:39:22 +0100 | [diff] [blame] | 183 | if (act->handler != (interrupt_handler_t *)def_hdlr) { |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 184 | printf("%02d %08x %08x %d\n", i, |
Michal Simek | e217b0d | 2015-01-26 14:39:22 +0100 | [diff] [blame] | 185 | (int)act->handler, (int)act->arg, |
| 186 | act->count); |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 187 | } |
| 188 | act++; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 189 | } |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 190 | puts("\n"); |
| 191 | } else { |
| 192 | puts("Undefined interrupt controller\n"); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 193 | } |
Michal Simek | 575a3d2 | 2012-07-10 10:31:31 +0200 | [diff] [blame] | 194 | return 0; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 195 | } |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 196 | #endif |