1 /* SPDX-License-Identifier: GPL-2.0 */
2 #include <linux/linkage.h>
3 #include <asm/assembler.h>
5 * Function: v7_early_abort
7 * Params : r2 = pt_regs
8 * : r4 = aborted context pc
9 * : r5 = aborted context psr
11 * Returns : r4 - r11, r13 preserved
13 * Purpose : obtain information about current aborted instruction.
17 mrc p15, 0, r1, c5, c0, 0 @ get FSR
18 mrc p15, 0, r0, c6, c0, 0 @ get FAR
19 uaccess_disable ip @ disable userspace access
22 * V6 code adjusts the returned DFSR.
23 * New designs should not need to patch up faults.
26 #if defined(CONFIG_VERIFY_PERMISSION_FAULT)
28 * Detect erroneous permission failures and fix
30 ldr r3, =0x40d @ On permission fault
35 mcr p15, 0, r0, c7, c8, 0 @ Retranslate FAR
37 mrc p15, 0, ip, c7, c4, 0 @ Read the PAR
38 and r3, ip, #0x7b @ On translation fault
41 bic r1, r1, #0xf @ Fix up FSR FS[5:0]
43 orr r1, r1, ip, LSR #1
47 ENDPROC(v7_early_abort)