blob: 5f20f920f932b6c38e0a8971d1cedfb012dd729c [file] [log] [blame]
Chris Metcalf867e3592010-05-28 23:09:12 -04001/*
2 * Copyright 2010 Tilera Corporation. All Rights Reserved.
3 *
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.
7 *
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
12 * more details.
13 */
14
15#ifndef _ASM_TILE_TRAPS_H
16#define _ASM_TILE_TRAPS_H
17
Chris Metcalf313ce672011-05-02 14:50:06 -040018#include <arch/chip.h>
19
Chris Metcalf867e3592010-05-28 23:09:12 -040020/* mm/fault.c */
21void do_page_fault(struct pt_regs *, int fault_num,
22 unsigned long address, unsigned long write);
Chris Metcalf313ce672011-05-02 14:50:06 -040023#if CHIP_HAS_TILE_DMA() || CHIP_HAS_SN_PROC()
Chris Metcalf0707ad32010-06-25 17:04:17 -040024void do_async_page_fault(struct pt_regs *);
Chris Metcalf313ce672011-05-02 14:50:06 -040025#endif
Chris Metcalf0707ad32010-06-25 17:04:17 -040026
27#ifndef __tilegx__
28/*
29 * We return this structure in registers to avoid having to write
30 * additional save/restore code in the intvec.S caller.
31 */
32struct intvec_state {
33 void *handler;
34 unsigned long vecnum;
35 unsigned long fault_num;
36 unsigned long info;
37 unsigned long retval;
38};
39struct intvec_state do_page_fault_ics(struct pt_regs *regs, int fault_num,
40 unsigned long address,
41 unsigned long info);
42#endif
Chris Metcalf867e3592010-05-28 23:09:12 -040043
44/* kernel/traps.c */
45void do_trap(struct pt_regs *, int fault_num, unsigned long reason);
Chris Metcalf0707ad32010-06-25 17:04:17 -040046void kernel_double_fault(int dummy, ulong pc, ulong lr, ulong sp, ulong r52);
Chris Metcalf867e3592010-05-28 23:09:12 -040047
48/* kernel/time.c */
49void do_timer_interrupt(struct pt_regs *, int fault_num);
50
51/* kernel/messaging.c */
52void hv_message_intr(struct pt_regs *, int intnum);
53
54/* kernel/irq.c */
55void tile_dev_intr(struct pt_regs *, int intnum);
56
Chris Metcalf0707ad32010-06-25 17:04:17 -040057#ifdef CONFIG_HARDWALL
58/* kernel/hardwall.c */
59void do_hardwall_trap(struct pt_regs *, int fault_num);
60#endif
61
62/* kernel/ptrace.c */
63void do_breakpoint(struct pt_regs *, int fault_num);
Chris Metcalf867e3592010-05-28 23:09:12 -040064
65
Chris Metcalf233325b2010-10-14 16:32:41 -040066#ifdef __tilegx__
67void gx_singlestep_handle(struct pt_regs *, int fault_num);
68#endif
69
Chris Metcalf867e3592010-05-28 23:09:12 -040070#endif /* _ASM_TILE_SYSCALLS_H */