2 * Copyright 2010 Tilera Corporation. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
15 #ifndef _ASM_TILE_TRAPS_H
16 #define _ASM_TILE_TRAPS_H
18 #include <arch/chip.h>
21 void do_page_fault(struct pt_regs
*, int fault_num
,
22 unsigned long address
, unsigned long write
);
23 #if CHIP_HAS_TILE_DMA() || CHIP_HAS_SN_PROC()
24 void do_async_page_fault(struct pt_regs
*);
29 * We return this structure in registers to avoid having to write
30 * additional save/restore code in the intvec.S caller.
35 unsigned long fault_num
;
39 struct intvec_state
do_page_fault_ics(struct pt_regs
*regs
, int fault_num
,
40 unsigned long address
,
45 void do_trap(struct pt_regs
*, int fault_num
, unsigned long reason
);
46 void kernel_double_fault(int dummy
, ulong pc
, ulong lr
, ulong sp
, ulong r52
);
49 void do_timer_interrupt(struct pt_regs
*, int fault_num
);
51 /* kernel/messaging.c */
52 void hv_message_intr(struct pt_regs
*, int intnum
);
55 void tile_dev_intr(struct pt_regs
*, int intnum
);
57 #ifdef CONFIG_HARDWALL
58 /* kernel/hardwall.c */
59 void do_hardwall_trap(struct pt_regs
*, int fault_num
);
63 void do_breakpoint(struct pt_regs
*, int fault_num
);
67 void gx_singlestep_handle(struct pt_regs
*, int fault_num
);
70 #endif /* _ASM_TILE_SYSCALLS_H */