mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 04:03:58 +08:00
20 lines
356 B
ArmAsm
20 lines
356 B
ArmAsm
|
#include <linux/linkage.h>
|
||
|
#include <asm/assembler.h>
|
||
|
|
||
|
/*
|
||
|
* Function: v6_pabort
|
||
|
*
|
||
|
* Params : r0 = address of aborted instruction
|
||
|
*
|
||
|
* Returns : r0 = address of abort
|
||
|
* : r1 = IFSR
|
||
|
*
|
||
|
* Purpose : obtain information about current prefetch abort.
|
||
|
*/
|
||
|
|
||
|
.align 5
|
||
|
ENTRY(v6_pabort)
|
||
|
mrc p15, 0, r1, c5, c0, 1 @ get IFSR
|
||
|
mov pc, lr
|
||
|
ENDPROC(v6_pabort)
|