blob: 1bfd277d2c5736440ef2b2fcc240a1fe9fca8108 [file] [log] [blame]
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -07001/*
2 * Copyright (c) 2008 Travis Geiselbrecht
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files
6 * (the "Software"), to deal in the Software without restriction,
7 * including without limitation the rights to use, copy, modify, merge,
8 * publish, distribute, sublicense, and/or sell copies of the Software,
9 * and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23#include <err.h>
24#include <sys/types.h>
25#include <kernel/thread.h>
26#include <platform.h>
27#include <platform/interrupts.h>
28#include <platform/at91sam7.h>
29#include <arch/arm.h>
30
31static int do_nothing()
32{
33 return INT_NO_RESCHEDULE;
34}
35
36void platform_init_interrupts(void)
37{
38 AT91AIC *aic = AT91AIC_ADDR;
39 int n;
40
41 for(n = 0; n < 31; n++) {
42 aic->SVR[n] = (unsigned) do_nothing;
43 }
44 aic->SPU = (unsigned) do_nothing;
45}
46
47
Travis Geiselbrechtf1cdea32008-09-13 14:13:54 -070048status_t mask_interrupt(unsigned int vector)
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070049{
50 AT91AIC *aic = AT91AIC_ADDR;
51
52 if(vector > 31) return ERR_INVALID_ARGS;
53
Travis Geiselbrechtf1cdea32008-09-13 14:13:54 -070054 aic->IDCR = (1 << vector);
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070055
56 return NO_ERROR;
57}
58
Travis Geiselbrechtf1cdea32008-09-13 14:13:54 -070059status_t unmask_interrupt(unsigned int vector)
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070060{
61 AT91AIC *aic = AT91AIC_ADDR;
62 if(vector > 31) return ERR_INVALID_ARGS;
63
Travis Geiselbrechtf1cdea32008-09-13 14:13:54 -070064 aic->IECR = (1 << vector);
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070065
66 return NO_ERROR;
67}
68
69void platform_irq(struct arm_iframe *frame)
70{
71 AT91AIC *aic = AT91AIC_ADDR;
72 int_handler func;
73 enum handler_return ret;
74
75 inc_critical_section();
76
77 func = (int_handler) aic->IVR;
78// dprintf("platform_irq() -> %p\n", func);
79
80 ret = func(0);
81
82 aic->EOICR = (unsigned) aic;
83
84 if(ret == INT_RESCHEDULE) {
85 thread_preempt();
86 }
87
88 dec_critical_section();
89}
90
91void platform_fiq(struct arm_iframe *frame)
92{
93}
94
95void register_int_handler(unsigned int vector, int_handler handler, void *arg)
96{
97 AT91AIC *aic = AT91AIC_ADDR;
98 if(vector > 31) return;
99 aic->SVR[vector] = (unsigned) handler;
100}