2 * Linux/PA-RISC Project (http://www.parisc-linux.org/)
4 * Copyright (C) 2004 Randolph Chung <tausq@debian.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 * Fixup routines for kernel exception handling.
22 #include <asm/asm-offsets.h>
23 #include <asm/assembly.h>
24 #include <asm/errno.h>
25 #include <linux/linkage.h>
28 .macro get_fault_ip t1 t2
30 addil LT%__per_cpu_offset,%r27
31 LDREG RT%__per_cpu_offset(%r1),\t1
32 /* t2 = smp_processor_id() */
38 /* t2 = &__per_cpu_offset[smp_processor_id()]; */
40 addil LT%exception_data,%r27
41 LDREG RT%exception_data(%r1),\t1
42 /* t1 = this_cpu_ptr(&exception_data) */
44 /* %r27 = t1->fault_gp - restore gp */
45 LDREG EXCDATA_GP(\t1), %r27
46 /* t1 = t1->fault_ip */
47 LDREG EXCDATA_IP(\t1), \t1
50 .macro get_fault_ip t1 t2
52 /* t1 = this_cpu_ptr(&exception_data) */
53 addil LT%exception_data,%r27
54 LDREG RT%exception_data(%r1),\t2
55 /* %r27 = t2->fault_gp - restore gp */
56 LDREG EXCDATA_GP(\t2), %r27
57 /* t1 = t2->fault_ip */
58 LDREG EXCDATA_IP(\t2), \t1
67 /* get_user() fixups, store -EFAULT in r8, and 0 in r9 */
68 ENTRY(fixup_get_user_skip_1)
74 ENDPROC(fixup_get_user_skip_1)
76 ENTRY(fixup_get_user_skip_2)
82 ENDPROC(fixup_get_user_skip_2)
84 /* put_user() fixups, store -EFAULT in r8 */
85 ENTRY(fixup_put_user_skip_1)
90 ENDPROC(fixup_put_user_skip_1)
92 ENTRY(fixup_put_user_skip_2)
97 ENDPROC(fixup_put_user_skip_2)