summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/shared/src/ppc-exc-handler-table.c
blob: e9f42bfe2cc9b771b449d7b9fb621c3ecb0ce724 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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();

  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 */