forked from Imagelibrary/rtems
bsps: Move ppc-exc-handler-table.c to bsps
This patch is a part of the BSP source reorganization. Update #3285.
This commit is contained in:
@@ -46,7 +46,7 @@ librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/stackalloc.c
|
||||
librtemsbsp_a_SOURCES += ../shared/src/bsp-start-zero.S
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/shared/start/memcpy.c
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/shared/start/tictac.c
|
||||
librtemsbsp_a_SOURCES += ../shared/src/ppc-exc-handler-table.c
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/shared/exceptions/ppc-exc-handler-table.c
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/mpc55xxevb/start/bspstart.c
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/mpc55xxevb/start/bspgetworkarea.c
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/mpc55xxevb/start/exc-vector-base.S
|
||||
|
||||
@@ -38,7 +38,7 @@ librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/getentropy/getentropy
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/sbrk.c
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/bspfatal-default.c
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/bsp-fdt.c
|
||||
librtemsbsp_a_SOURCES += ../shared/src/ppc-exc-handler-table.c
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/shared/exceptions/ppc-exc-handler-table.c
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/shared/start/tictac.c
|
||||
librtemsbsp_a_SOURCES += ../shared/src/bsp-start-zero.S
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/shared/start/bspidle.c
|
||||
|
||||
@@ -1,67 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2012 embedded brains GmbH. All rights reserved.
|
||||
*
|
||||
* embedded brains GmbH
|
||||
* Obere Lagerstr. 30
|
||||
* 82178 Puchheim
|
||||
* Germany
|
||||
* <rtems@embedded-brains.de>
|
||||
*
|
||||
* 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/vectors.h>
|
||||
|
||||
#ifdef PPC_EXC_CONFIG_USE_FIXED_HANDLER
|
||||
|
||||
#ifndef PPC_EXC_CONFIG_BOOKE_ONLY
|
||||
static int ppc_exc_interrupt_dispatch(BSP_Exception_frame *f, unsigned vector)
|
||||
{
|
||||
bsp_interrupt_dispatch(vector);
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif /* PPC_EXC_CONFIG_BOOKE_ONLY */
|
||||
|
||||
const ppc_exc_handler_t ppc_exc_handler_table [LAST_VALID_EXC + 1] = {
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
#ifndef PPC_EXC_CONFIG_BOOKE_ONLY
|
||||
ppc_exc_interrupt_dispatch,
|
||||
#else /* PPC_EXC_CONFIG_BOOKE_ONLY */
|
||||
ppc_exc_handler_default,
|
||||
#endif /* PPC_EXC_CONFIG_BOOKE_ONLY */
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default,
|
||||
ppc_exc_handler_default
|
||||
};
|
||||
|
||||
#endif /* PPC_EXC_CONFIG_USE_FIXED_HANDLER */
|
||||
@@ -30,7 +30,7 @@ librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/getentropy/getentropy
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/sbrk.c
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/bspfatal-default.c
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/bspgetworkarea-default.c
|
||||
librtemsbsp_a_SOURCES += ../shared/src/ppc-exc-handler-table.c
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/shared/exceptions/ppc-exc-handler-table.c
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/shared/start/tictac.c
|
||||
librtemsbsp_a_SOURCES += ../shared/src/bsp-start-zero.S
|
||||
librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/t32mppc/start/bspstart.c
|
||||
|
||||
Reference in New Issue
Block a user