1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| /* SPDX-License-Identifier: GPL-2.0 */
| #include <linux/linkage.h>
| #include <asm/assembler.h>
|
| /*
| * Function: legacy_pabort
| *
| * Params : r2 = pt_regs
| * : r4 = address of aborted instruction
| * : r5 = psr for parent context
| *
| * Returns : r4 - r11, r13 preserved
| *
| * Purpose : obtain information about current prefetch abort.
| */
|
| .align 5
| ENTRY(legacy_pabort)
| mov r0, r4
| mov r1, #5
| b do_PrefetchAbort
| ENDPROC(legacy_pabort)
|
|