summaryrefslogtreecommitdiffstats
path: root/bsps
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-24 07:21:22 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-24 10:24:23 +0200
commit70914613cb4b7126ff62fa387507c6babf72aa95 (patch)
treeeb4aeaaabe512cda1ad33ebcdf794ccbf4c8d233 /bsps
parentbsps: Move memcpy.c to bsps (diff)
downloadrtems-70914613cb4b7126ff62fa387507c6babf72aa95.tar.bz2
bsps: Move ppc-exc-handler-table.c to bsps
This patch is a part of the BSP source reorganization. Update #3285.
Diffstat (limited to 'bsps')
-rw-r--r--bsps/powerpc/shared/exceptions/ppc-exc-handler-table.c67
1 files changed, 67 insertions, 0 deletions
diff --git a/bsps/powerpc/shared/exceptions/ppc-exc-handler-table.c b/bsps/powerpc/shared/exceptions/ppc-exc-handler-table.c
new file mode 100644
index 0000000000..dbcfc0d29c
--- /dev/null
+++ b/bsps/powerpc/shared/exceptions/ppc-exc-handler-table.c
@@ -0,0 +1,67 @@
+/*
+ * 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 */