commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
23 lines
441 B
ArmAsm
23 lines
441 B
ArmAsm
/* 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)
|