blob: 703375277ba6d3dcdae7f93404d2d19e531aad68 [file] [log] [blame]
Catalin Marinasbbe88882007-05-08 22:27:46 +01001#include <linux/linkage.h>
2#include <asm/assembler.h>
3/*
4 * Function: v7_early_abort
5 *
Russell Kingda740472011-06-26 16:01:26 +01006 * Params : r2 = pt_regs
7 * : r4 = aborted context pc
Russell King3e287be2011-06-26 14:35:07 +01008 * : r5 = aborted context psr
Catalin Marinasbbe88882007-05-08 22:27:46 +01009 *
Russell Kingda740472011-06-26 16:01:26 +010010 * Returns : r4 - r11, r13 preserved
Catalin Marinasbbe88882007-05-08 22:27:46 +010011 *
12 * Purpose : obtain information about current aborted instruction.
13 */
14 .align 5
15ENTRY(v7_early_abort)
16 /*
17 * The effect of data aborts on on the exclusive access monitor are
18 * UNPREDICTABLE. Do a CLREX to clear the state
19 */
20 clrex
21
22 mrc p15, 0, r1, c5, c0, 0 @ get FSR
23 mrc p15, 0, r0, c6, c0, 0 @ get FAR
24
25 /*
26 * V6 code adjusts the returned DFSR.
27 * New designs should not need to patch up faults.
28 */
Dave Estese220ba62009-08-11 17:58:49 -040029
30#if defined(CONFIG_VERIFY_PERMISSION_FAULT)
31 /*
32 * Detect erroneous permission failures and fix
33 */
34 ldr r3, =0x40d @ On permission fault
35 and r3, r1, r3
36 cmp r3, #0x0d
Russell Kingda740472011-06-26 16:01:26 +010037 bne do_DataAbort
Dave Estese220ba62009-08-11 17:58:49 -040038
39 mcr p15, 0, r0, c7, c8, 0 @ Retranslate FAR
40 isb
Russell King0d147db2011-06-26 14:42:02 +010041 mrc p15, 0, ip, c7, c4, 0 @ Read the PAR
42 and r3, ip, #0x7b @ On translation fault
Dave Estese220ba62009-08-11 17:58:49 -040043 cmp r3, #0x0b
Russell Kingda740472011-06-26 16:01:26 +010044 bne do_DataAbort
Dave Estese220ba62009-08-11 17:58:49 -040045 bic r1, r1, #0xf @ Fix up FSR FS[5:0]
Russell King0d147db2011-06-26 14:42:02 +010046 and ip, ip, #0x7e
47 orr r1, r1, ip, LSR #1
Dave Estese220ba62009-08-11 17:58:49 -040048#endif
49
Russell Kingda740472011-06-26 16:01:26 +010050 b do_DataAbort
Catalin Marinas93ed3972008-08-28 11:22:32 +010051ENDPROC(v7_early_abort)