forked from Imagelibrary/rtems
Move _ISR_Handler() to a separate file since it is now only used if a handler is installed by _CPU_ISR_install_raw_handler(). Statically initialize the traps for external interrupts to use the new _SPARC_Interrupt_trap() which directly dispatches the interrupt handlers installed by rtems_interrupt_handler_install() via the BSP-provided _SPARC_Interrupt_dispatch(). Since the trap table is now fully statically initialized, there is no longer a dependency on the Cache Manager in the default configuration. Update #4458.
32 lines
634 B
C
32 lines
634 B
C
/* Installs the BSP pre-driver hook
|
|
*/
|
|
|
|
/*
|
|
* COPYRIGHT (c) 2011
|
|
* Aeroflex Gaisler
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
#include <bsp.h>
|
|
#include <bsp/bootcard.h>
|
|
#include <bsp/irq-generic.h>
|
|
#include <rtems/sysinit.h>
|
|
|
|
/*
|
|
* Initialize shared interrupt handling, must be done after IRQ controller has
|
|
* been found and initialized.
|
|
*/
|
|
RTEMS_SYSINIT_ITEM(
|
|
bsp_interrupt_initialize,
|
|
RTEMS_SYSINIT_BSP_PRE_DRIVERS,
|
|
RTEMS_SYSINIT_ORDER_MIDDLE
|
|
);
|
|
|
|
void bsp_start(void)
|
|
{
|
|
/* Nothing to do */
|
|
}
|