/* * PXA255 interrupt controller by Yang Xi * Copyright (c) 2004 by Jay Monkman * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. */ #include #include #include void dummy_handler(rtems_irq_hdl_param unused) { printk("I am dummy handler\n"); } void (*IRQ_table[PRIMARY_IRQS])(rtems_irq_hdl_param param); /* * Interrupt system initialization. Disable interrupts, clear * any that are pending. */ void BSP_rtems_irq_mngt_init(void) { int i; /* Initialize the vector table contents with default handler */ for (i=0; i