2 * arch/xtensa/include/asm/traps.h
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
8 * Copyright (C) 2012 Tensilica Inc.
10 #ifndef _XTENSA_TRAPS_H
11 #define _XTENSA_TRAPS_H
13 #include <asm/ptrace.h>
16 * handler must be either of the following:
17 * void (*)(struct pt_regs *regs);
18 * void (*)(struct pt_regs *regs, unsigned long exccause);
20 extern void * __init
trap_set_handler(int cause
, void *handler
);
21 extern void do_unhandled(struct pt_regs
*regs
, unsigned long exccause
);
22 void secondary_trap_init(void);
24 static inline void spill_registers(void)
26 #if XCHAL_NUM_AREGS > 16
27 __asm__
__volatile__ (
35 #if XCHAL_NUM_AREGS > 32
36 " .rept (" __stringify(XCHAL_NUM_AREGS
) " - 32) / 12\n"
42 #if XCHAL_NUM_AREGS % 12 == 0
44 #elif XCHAL_NUM_AREGS % 12 == 4
46 #elif XCHAL_NUM_AREGS % 12 == 8
51 : : : "a12", "a13", "memory");
53 __asm__
__volatile__ (
59 #endif /* _XTENSA_TRAPS_H */