interrupt.c 10.9 KB
Newer Older
L
luohui2320@gmail.com 已提交
1 2 3 4 5
/*
 * File      : interrupt.c
 * This file is part of RT-Thread RTOS
 * COPYRIGHT (C) 2006, RT-Thread Development Team
 *
W
weety 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
L
luohui2320@gmail.com 已提交
19 20 21 22 23 24
 *
 * Change Logs:
 * Date           Author       Notes
 * 2011-01-13     weety      first version
 */

25
#include <rthw.h>
L
luohui2320@gmail.com 已提交
26
#include "at91sam926x.h"
27
#include "interrupt.h"
28
#define MAX_HANDLERS    (AIC_IRQS + PIN_IRQS)
L
luohui2320@gmail.com 已提交
29 30 31 32

extern rt_uint32_t rt_interrupt_nest;

/* exception and interrupt handler table */
33 34
struct rt_irq_desc irq_desc[MAX_HANDLERS]; 

L
luohui2320@gmail.com 已提交
35
rt_uint32_t rt_interrupt_from_thread, rt_interrupt_to_thread;
D
dzzxzz 已提交
36
rt_uint32_t rt_thread_switch_interrupt_flag;
L
luohui2320@gmail.com 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50


/* --------------------------------------------------------------------
 *  Interrupt initialization
 * -------------------------------------------------------------------- */

rt_uint32_t at91_extern_irq;

#define is_extern_irq(irq) ((1 << (irq)) & at91_extern_irq)

/*
 * The default interrupt priority levels (0 = lowest, 7 = highest).
 */
static rt_uint32_t at91sam9260_default_irq_priority[MAX_HANDLERS] = {
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
    7,  /* Advanced Interrupt Controller */
    7,  /* System Peripherals */
    1,  /* Parallel IO Controller A */
    1,  /* Parallel IO Controller B */
    1,  /* Parallel IO Controller C */
    0,  /* Analog-to-Digital Converter */
    5,  /* USART 0 */
    5,  /* USART 1 */
    5,  /* USART 2 */
    0,  /* Multimedia Card Interface */
    2,  /* USB Device Port */
    6,  /* Two-Wire Interface */
    5,  /* Serial Peripheral Interface 0 */
    5,  /* Serial Peripheral Interface 1 */
    5,  /* Serial Synchronous Controller */
    0,
    0,
    0,  /* Timer Counter 0 */
    0,  /* Timer Counter 1 */
    0,  /* Timer Counter 2 */
    2,  /* USB Host port */
    3,  /* Ethernet */
    0,  /* Image Sensor Interface */
    5,  /* USART 3 */
    5,  /* USART 4 */
    5,  /* USART 5 */
    0,  /* Timer Counter 3 */
    0,  /* Timer Counter 4 */
    0,  /* Timer Counter 5 */
    0,  /* Advanced Interrupt Controller */
    0,  /* Advanced Interrupt Controller */
    0,  /* Advanced Interrupt Controller */
L
luohui2320@gmail.com 已提交
83 84 85 86 87 88 89
};

/**
 * @addtogroup AT91SAM926X
 */
/*@{*/

L
luohui2320@gmail.com 已提交
90 91 92
void rt_hw_interrupt_mask(int irq);
void rt_hw_interrupt_umask(int irq);

93
rt_isr_handler_t rt_hw_interrupt_handle(rt_uint32_t vector, void *param)
L
luohui2320@gmail.com 已提交
94
{
95 96
    rt_kprintf("Unhandled interrupt %d occured!!!\n", vector);
    return RT_NULL;
L
luohui2320@gmail.com 已提交
97 98
}

99
rt_isr_handler_t at91_gpio_irq_handle(rt_uint32_t vector, void *param)
L
luohui2320@gmail.com 已提交
100
{
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
    rt_uint32_t isr, pio, irq_n;
    void *parameter;

    if (vector == AT91SAM9260_ID_PIOA) 
    {
        pio = AT91_PIOA;
        irq_n = AIC_IRQS;
    }
    else if (vector == AT91SAM9260_ID_PIOB) 
    {
        pio = AT91_PIOB;
        irq_n = AIC_IRQS + 32;
    }
    else if (vector == AT91SAM9260_ID_PIOC) 
    {
        pio = AT91_PIOC;
        irq_n = AIC_IRQS + 32*2;
    }
    else
        return RT_NULL;
    isr = at91_sys_read(pio+PIO_ISR) & at91_sys_read(pio+PIO_IMR);
    while (isr) 
    {
        if (isr & 1) 
        {
            parameter = irq_desc[irq_n].param;
            irq_desc[irq_n].handler(irq_n, parameter);
        }
        isr >>= 1;
        irq_n++;
    }

    return RT_NULL;
L
luohui2320@gmail.com 已提交
134 135
}

L
luohui2320@gmail.com 已提交
136 137 138 139 140
/*
 * Initialize the AIC interrupt controller.
 */
void at91_aic_init(rt_uint32_t *priority)
{
141 142 143 144 145 146 147 148
    rt_uint32_t i;

    /*
     * The IVR is used by macro get_irqnr_and_base to read and verify.
     * The irq number is NR_AIC_IRQS when a spurious interrupt has occurred.
     */
    for (i = 0; i < AIC_IRQS; i++) {
        /* Put irq number in Source Vector Register: */
149
        at91_sys_write(AT91_AIC_SVR(i), i); // no-used
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
        /* Active Low interrupt, with the specified priority */
        at91_sys_write(AT91_AIC_SMR(i), AT91_AIC_SRCTYPE_LOW | priority[i]);
        //AT91_AIC_SRCTYPE_FALLING

        /* Perform 8 End Of Interrupt Command to make sure AIC will not Lock out nIRQ */
        if (i < 8)
            at91_sys_write(AT91_AIC_EOICR, 0);
    }

    /*
     * Spurious Interrupt ID in Spurious Vector Register is NR_AIC_IRQS
     * When there is no current interrupt, the IRQ Vector Register reads the value stored in AIC_SPU
     */
    at91_sys_write(AT91_AIC_SPU, AIC_IRQS);

    /* No debugging in AIC: Debug (Protect) Control Register */
    at91_sys_write(AT91_AIC_DCR, 0);

    /* Disable and clear all interrupts initially */
    at91_sys_write(AT91_AIC_IDCR, 0xFFFFFFFF);
    at91_sys_write(AT91_AIC_ICCR, 0xFFFFFFFF);
L
luohui2320@gmail.com 已提交
171 172 173
}


L
luohui2320@gmail.com 已提交
174 175
static void at91_gpio_irq_init()
{
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
    int i, idx;
    char *name[] = {"PIOA", "PIOB", "PIOC"};
    
    at91_sys_write(AT91_PIOA+PIO_IDR, 0xffffffff);
    at91_sys_write(AT91_PIOB+PIO_IDR, 0xffffffff);
    at91_sys_write(AT91_PIOC+PIO_IDR, 0xffffffff);

    idx = AT91SAM9260_ID_PIOA;
    for (i = 0; i < 3; i++)
    {
        rt_snprintf(irq_desc[idx].name, RT_NAME_MAX - 1, name[i]);
        irq_desc[idx].handler = (rt_isr_handler_t)at91_gpio_irq_handle;
        irq_desc[idx].param = RT_NULL;
        irq_desc[idx].counter = 0;
        idx++;
    }

    rt_hw_interrupt_umask(AT91SAM9260_ID_PIOA);
    rt_hw_interrupt_umask(AT91SAM9260_ID_PIOB);
    rt_hw_interrupt_umask(AT91SAM9260_ID_PIOC);
L
luohui2320@gmail.com 已提交
196 197 198
}


L
luohui2320@gmail.com 已提交
199 200 201 202 203
/**
 * This function will initialize hardware interrupt
 */
void rt_hw_interrupt_init(void)
{
204 205 206
    register rt_uint32_t idx;
    rt_uint32_t *priority = at91sam9260_default_irq_priority;
    
207 208
    at91_extern_irq = (1UL << AT91SAM9260_ID_IRQ0) | (1UL << AT91SAM9260_ID_IRQ1)
            | (1UL << AT91SAM9260_ID_IRQ2);
209 210 211 212 213 214 215 216 217 218

    /* Initialize the AIC interrupt controller */
    at91_aic_init(priority);

    /* init exceptions table */
    for(idx=0; idx < MAX_HANDLERS; idx++)
    {
        rt_snprintf(irq_desc[idx].name, RT_NAME_MAX - 1, "default");
        irq_desc[idx].handler = (rt_isr_handler_t)rt_hw_interrupt_handle;
        irq_desc[idx].param = RT_NULL;
W
weety 已提交
219
		irq_desc[idx].counter = 0;
220 221 222 223 224 225 226 227 228
    }

    at91_gpio_irq_init();

    /* init interrupt nest, and context in thread sp */
    rt_interrupt_nest = 0;
    rt_interrupt_from_thread = 0;
    rt_interrupt_to_thread = 0;
    rt_thread_switch_interrupt_flag = 0;
L
luohui2320@gmail.com 已提交
229 230
}

L
luohui2320@gmail.com 已提交
231 232
static void at91_gpio_irq_mask(int irq)
{
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
    rt_uint32_t pin, pio, bank;

    bank = (irq - AIC_IRQS)>>5;

    if (bank == 0) 
    {
        pio = AT91_PIOA;
    }
    else if (bank == 1) 
    {
        pio = AT91_PIOB;
    }
    else if (bank == 2) 
    {
        pio = AT91_PIOC;
    }
    else
        return;
    pin = 1 << ((irq - AIC_IRQS) & 31);
    at91_sys_write(pio+PIO_IDR, pin);
L
luohui2320@gmail.com 已提交
253 254
}

L
luohui2320@gmail.com 已提交
255 256 257 258 259 260
/**
 * This function will mask a interrupt.
 * @param vector the interrupt number
 */
void rt_hw_interrupt_mask(int irq)
{
261 262 263 264 265 266 267 268 269
    if (irq >= AIC_IRQS) 
    {
        at91_gpio_irq_mask(irq);
    }
    else
    {
        /* Disable interrupt on AIC */
        at91_sys_write(AT91_AIC_IDCR, 1 << irq);
    }
L
luohui2320@gmail.com 已提交
270 271 272 273
}

static void at91_gpio_irq_umask(int irq)
{
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
    rt_uint32_t pin, pio, bank;

    bank = (irq - AIC_IRQS)>>5;

    if (bank == 0) 
    {
        pio = AT91_PIOA;
    }
    else if (bank == 1) 
    {
        pio = AT91_PIOB;
    }
    else if (bank == 2) 
    {
        pio = AT91_PIOC;
    }
    else
        return;
    pin = 1 << ((irq - AIC_IRQS) & 31);
    at91_sys_write(pio+PIO_IER, pin);
L
luohui2320@gmail.com 已提交
294 295 296 297 298 299 300 301
}

/**
 * This function will un-mask a interrupt.
 * @param vector the interrupt number
 */
void rt_hw_interrupt_umask(int irq)
{
302 303 304 305 306 307 308 309 310
    if (irq >= AIC_IRQS) 
    {
        at91_gpio_irq_umask(irq);
    }
    else
    {
        /* Enable interrupt on AIC */
        at91_sys_write(AT91_AIC_IECR, 1 << irq);
    }
L
luohui2320@gmail.com 已提交
311 312 313 314 315
}

/**
 * This function will install a interrupt service routine to a interrupt.
 * @param vector the interrupt number
W
weety 已提交
316 317 318
 * @param handler the interrupt service routine to be installed
 * @param param the interrupt service function parameter
 * @param name the interrupt name
319
 * @return old handler
L
luohui2320@gmail.com 已提交
320
 */
321
rt_isr_handler_t rt_hw_interrupt_install(int vector, rt_isr_handler_t handler, 
322
                                    void *param, char *name)
L
luohui2320@gmail.com 已提交
323
{
324 325 326 327 328 329 330 331 332 333
    rt_isr_handler_t old_handler = RT_NULL;

    if(vector < MAX_HANDLERS)
    {
        old_handler = irq_desc[vector].handler;
        if (handler != RT_NULL)
        {
            rt_snprintf(irq_desc[vector].name, RT_NAME_MAX - 1, "%s", name);
            irq_desc[vector].handler = (rt_isr_handler_t)handler;
            irq_desc[vector].param = param;
W
weety 已提交
334
			irq_desc[vector].counter = 0;
335 336 337 338
        }
    }

    return old_handler;
L
luohui2320@gmail.com 已提交
339 340 341 342
}

/*@}*/

343
/*
L
luohui2320@gmail.com 已提交
344 345
static int at91_aic_set_type(unsigned irq, unsigned type)
{
346 347 348 349 350 351 352 353 354 355
    unsigned int smr, srctype;

    switch (type) {
    case IRQ_TYPE_LEVEL_HIGH:
        srctype = AT91_AIC_SRCTYPE_HIGH;
        break;
    case IRQ_TYPE_EDGE_RISING:
        srctype = AT91_AIC_SRCTYPE_RISING;
        break;
    case IRQ_TYPE_LEVEL_LOW:
356 357
        // only supported on external interrupts 
        if ((irq == AT91_ID_FIQ) || is_extern_irq(irq))     
358 359 360 361 362
            srctype = AT91_AIC_SRCTYPE_LOW;
        else
            return -1;
        break;
    case IRQ_TYPE_EDGE_FALLING:
363 364
        // only supported on external interrupts 
        if ((irq == AT91_ID_FIQ) || is_extern_irq(irq))     
365 366 367 368 369 370 371 372 373 374 375
            srctype = AT91_AIC_SRCTYPE_FALLING;
        else
            return -1;
        break;
    default:
        return -1;
    }

    smr = at91_sys_read(AT91_AIC_SMR(irq)) & ~AT91_AIC_SRCTYPE;
    at91_sys_write(AT91_AIC_SMR(irq), smr | srctype);
    return 0;
L
luohui2320@gmail.com 已提交
376
}
377 378
*/
rt_uint32_t rt_hw_interrupt_get_active(rt_uint32_t fiq_irq)
379 380
{

381 382
    //volatile rt_uint32_t irqstat;
    rt_uint32_t id;
383
    if (fiq_irq == INT_FIQ)
384
        return 0;
385

386 387 388 389 390 391 392
    //IRQ
    /* AIC need this dummy read */
    at91_sys_read(AT91_AIC_IVR);
    /* clear pending register */
    id = at91_sys_read(AT91_AIC_ISR);

    return id;
393 394
}

395
void rt_hw_interrupt_ack(rt_uint32_t fiq_irq, rt_uint32_t id)
396
{
397
    /* new FIQ generation */
398
    if (fiq_irq == INT_FIQ)
399
        return;
400

401 402
    /* new IRQ generation */
    // EIOCR must be write any value after interrupt,
403
    // or else can't response next interrupt
404
    at91_sys_write(AT91_AIC_EOICR, 0x0);
405 406
}

407
#ifdef RT_USING_FINSH
408
#ifdef RT_USING_INTERRUPT_INFO
409 410
void list_irq(void)
{
411 412 413 414 415 416 417 418 419 420
	int irq;
	
	rt_kprintf("number\tcount\tname\n");
	for (irq = 0; irq < MAX_HANDLERS; irq++)
	{
		if (rt_strncmp(irq_desc[irq].name, "default", sizeof("default")))
		{
			rt_kprintf("%02ld: %10ld  %s\n", irq, irq_desc[irq].counter, irq_desc[irq].name);
		}
	}
421 422 423 424 425
}

#include <finsh.h>
FINSH_FUNCTION_EXPORT(list_irq, list system irq);

426 427 428 429 430 431 432 433 434 435
#ifdef FINSH_USING_MSH
int cmd_list_irq(int argc, char** argv)
{
    list_irq();
    return 0;
}
FINSH_FUNCTION_EXPORT_ALIAS(cmd_list_irq, __cmd_list_irq, list system irq.);

#endif
#endif
436 437 438
#endif