summaryrefslogtreecommitdiffstats
path: root/arch/arm/include/asm/common.h
blob: 9832a6a4d202e2903e0ff3384cf63fcfde072726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __ASM_ARM_COMMON_H
#define __ASM_ARM_COMMON_H

#include <linux/compiler.h>

static inline unsigned long get_pc(void)
{
	unsigned long pc;
#ifdef CONFIG_CPU_32
	__asm__ __volatile__(
                "mov    %0, pc\n"
                : "=r" (pc)
                :
                : "memory");
#else
	__asm__ __volatile__(
                "adr    %0, .\n"
                : "=r" (pc)
                :
                : "memory");
#endif
	return pc;
}

static inline unsigned long get_lr(void)
{
	unsigned long lr;

	__asm__ __volatile__(
                "mov    %0, lr\n"
                : "=r" (lr)
                :
                : "memory");

	return lr;
}

static inline unsigned long get_sp(void)
{
	unsigned long sp;

	__asm__ __volatile__(
                "mov    %0, sp\n"
                : "=r" (sp)
                :
                : "memory");

	return sp;
}

extern void __compiletime_error(
	"arm_setup_stack() called outside of naked function. On ARM64, "
	"stack should be setup in non-inline assembly before branching to C entry point."
) __unsafe_setup_stack(void);

/*
 * Sets up new stack growing down from top within a naked C function.
 * The first stack word will be top - sizeof(word).
 *
 * Avoid interleaving with C code as much as possible and jump
 * ASAP to a noinline function.
 */
static inline void arm_setup_stack(unsigned long top)
{
	if (IS_ENABLED(CONFIG_CPU_64))
		__unsafe_setup_stack();

	__asm__ __volatile__("mov sp, %0"
			     :
			     : "r"(top));
}

#endif /* __ASM_ARM_COMMON_H */