bbae832428fdd870274040234448f471eb7b2667
[bertos.git] / bertos / cpu / cortex-m3 / drv / irq_cm3.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2010 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \brief Cortex-M3 IRQ management.
34  *
35  * \author Andrea Righi <arighi@develer.com>
36  */
37
38 #include "irq_cm3.h"
39
40 #include <cfg/debug.h> /* ASSERT() */
41 #include <cfg/log.h> /* LOG_ERR() */
42 #include <cpu/irq.h>
43
44 static void (*irq_table[NUM_INTERRUPTS])(void)
45                         __attribute__((section("vtable")));
46
47 /* Priority register / IRQ number table */
48 static const uint32_t nvic_prio_reg[] =
49 {
50         /* System exception registers */
51         0, NVIC_SYS_PRI1, NVIC_SYS_PRI2, NVIC_SYS_PRI3,
52
53         /* External interrupts registers */
54         NVIC_PRI0, NVIC_PRI1, NVIC_PRI2, NVIC_PRI3,
55         NVIC_PRI4, NVIC_PRI5, NVIC_PRI6, NVIC_PRI7,
56         NVIC_PRI8, NVIC_PRI9, NVIC_PRI10, NVIC_PRI11,
57         NVIC_PRI12, NVIC_PRI13
58 };
59
60 /* Unhandled IRQ */
61 static NAKED NORETURN void unhandled_isr(void)
62 {
63         register uint32_t reg;
64
65         asm volatile ("mrs %0, ipsr" : "=r"(reg));
66         LOG_ERR("unhandled IRQ %lu\n", reg);
67         while (1)
68                 PAUSE;
69 }
70
71 void sysirq_setPriority(sysirq_t irq, int prio)
72 {
73         uint32_t pos = (irq & 3) * 8;
74         reg32_t reg = nvic_prio_reg[irq >> 2];
75         uint32_t val;
76
77         val = HWREG(reg);
78         val &= ~(0xff << pos);
79         val |= prio << pos;
80         HWREG(reg) = val;
81 }
82
83 static void sysirq_enable(sysirq_t irq)
84 {
85         /* Enable the IRQ line (only for generic IRQs) */
86         if (irq >= 16 && irq < 48)
87                 NVIC_EN0_R = 1 << (irq - 16);
88         else if (irq >= 48)
89                 NVIC_EN1_R = 1 << (irq - 48);
90 }
91
92 void sysirq_setHandler(sysirq_t irq, sysirq_handler_t handler)
93 {
94         cpu_flags_t flags;
95
96         ASSERT(irq < NUM_INTERRUPTS);
97
98         IRQ_SAVE_DISABLE(flags);
99         irq_table[irq] = handler;
100         sysirq_setPriority(irq, IRQ_PRIO);
101         sysirq_enable(irq);
102         IRQ_RESTORE(flags);
103 }
104
105 void sysirq_freeHandler(sysirq_t irq)
106 {
107         cpu_flags_t flags;
108
109         ASSERT(irq < NUM_INTERRUPTS);
110
111         IRQ_SAVE_DISABLE(flags);
112         irq_table[irq] = unhandled_isr;
113         IRQ_RESTORE(flags);
114 }
115
116 void sysirq_init(void)
117 {
118         cpu_flags_t flags;
119         int i;
120
121         IRQ_SAVE_DISABLE(flags);
122         for (i = 0; i < NUM_INTERRUPTS; i++)
123                 irq_table[i] = unhandled_isr;
124
125         /* Update NVIC to point to the new vector table */
126         NVIC_VTABLE_R = (size_t)irq_table;
127         IRQ_RESTORE(flags);
128 }