aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mm/pabort-legacy.S
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2011-06-26 07:37:35 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2011-07-02 05:56:10 -0400
commit8dfe7ac96fedd4f5219879f63a8a546a33609daf (patch)
treec723c0845d9f2080d9a0517bd2a94014870d7134 /arch/arm/mm/pabort-legacy.S
parentd9600c99c549732a501cb727157800623a06175d (diff)
ARM: entry: prefetch abort: tail-call the main prefetch abort handler
Tail-call the main C prefetch abort handler code from the per-CPU helper code. Also note that the helper function becomes ABI compliant in terms of the registers preserved. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mm/pabort-legacy.S')
-rw-r--r--arch/arm/mm/pabort-legacy.S9
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/arm/mm/pabort-legacy.S b/arch/arm/mm/pabort-legacy.S
index 8a5d8aaf2d5e..8bbff025269a 100644
--- a/arch/arm/mm/pabort-legacy.S
+++ b/arch/arm/mm/pabort-legacy.S
@@ -4,10 +4,11 @@
4/* 4/*
5 * Function: legacy_pabort 5 * Function: legacy_pabort
6 * 6 *
7 * Params : r4 = address of aborted instruction 7 * Params : r2 = pt_regs
8 * : r4 = address of aborted instruction
9 * : r5 = psr for parent context
8 * 10 *
9 * Returns : r0 = address of abort 11 * Returns : r4 - r11, r13 preserved
10 * : r1 = Simulated IFSR with section translation fault status
11 * 12 *
12 * Purpose : obtain information about current prefetch abort. 13 * Purpose : obtain information about current prefetch abort.
13 */ 14 */
@@ -16,5 +17,5 @@
16ENTRY(legacy_pabort) 17ENTRY(legacy_pabort)
17 mov r0, r4 18 mov r0, r4
18 mov r1, #5 19 mov r1, #5
19 mov pc, lr 20 b do_PrefetchAbort
20ENDPROC(legacy_pabort) 21ENDPROC(legacy_pabort)