mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
41 lines
874 B
ArmAsm
41 lines
874 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) 2017 Theobroma Systems Design und Consulting GmbH
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <asm/macro.h>
|
|
#include <linux/linkage.h>
|
|
|
|
.pushsection .text.setjmp, "ax"
|
|
ENTRY(setjmp)
|
|
/* Preserve all callee-saved registers and the SP */
|
|
stp x19, x20, [x0,#0]
|
|
stp x21, x22, [x0,#16]
|
|
stp x23, x24, [x0,#32]
|
|
stp x25, x26, [x0,#48]
|
|
stp x27, x28, [x0,#64]
|
|
stp x29, x30, [x0,#80]
|
|
mov x2, sp
|
|
str x2, [x0, #96]
|
|
mov x0, #0
|
|
ret
|
|
ENDPROC(setjmp)
|
|
.popsection
|
|
|
|
.pushsection .text.longjmp, "ax"
|
|
ENTRY(longjmp)
|
|
ldp x19, x20, [x0,#0]
|
|
ldp x21, x22, [x0,#16]
|
|
ldp x23, x24, [x0,#32]
|
|
ldp x25, x26, [x0,#48]
|
|
ldp x27, x28, [x0,#64]
|
|
ldp x29, x30, [x0,#80]
|
|
ldr x2, [x0,#96]
|
|
mov sp, x2
|
|
/* Move the return value in place, but return 1 if passed 0. */
|
|
adds x0, xzr, x1
|
|
csinc x0, x0, xzr, ne
|
|
ret
|
|
ENDPROC(longjmp)
|
|
.popsection
|