aboutsummaryrefslogtreecommitdiff
path: root/arch/aarch32/include/asm/cpu.h
blob: 878be6762666b82382dadb7d65cc28c8dbe5c429 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
 * arch/aarch32/include/asm/cpu.h
 *
 * Copyright (C) 2015 ARM Limited. All rights reserved.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE.txt file.
 */
#ifndef __ASM_AARCH32_CPU_H
#define __ASM_AARCH32_CPU_H

#define MPIDR_ID_BITS		0x00ffffff
#define MPIDR_INVALID		(-1)

/* Only RES1 bits and CP15 barriers for the kernel */
#define HSCTLR_RESET		(3 << 28 | 3 << 22 | 1 << 18 | 1 << 16 | 1 << 11 | 3 << 4)
#define SCTLR_RESET		(3 << 22 | 1 << 11 | 1 << 5 | 3 << 4)

#define PSR_SVC			0x13
#define PSR_HYP			0x1a
#define PSR_MON			0x16
#define PSR_MODE_MASK		0x1f

#define PSR_T			(1 << 5)
#define PSR_F			(1 << 6)
#define PSR_I			(1 << 7)
#define PSR_A			(1 << 8)


#define SPSR_KERNEL		(PSR_A | PSR_I | PSR_F | PSR_HYP)

#ifndef __ASSEMBLY__

#include <stdint.h>

#ifdef __ARM_ARCH_8A__
#define sevl()		asm volatile ("sevl" : : : "memory")
#else
/* sevl doesn't exist on ARMv7. Send event globally */
#define sevl()		asm volatile ("sev" : : : "memory")
#endif

static inline unsigned long read_mpidr(void)
{
	unsigned long mpidr;

	asm volatile ("mrc	p15, 0, %0, c0, c0, 5\n" : "=r" (mpidr));
	return mpidr & MPIDR_ID_BITS;
}

static inline uint32_t read_id_pfr1(void)
{
	uint32_t val;

	asm volatile ("mrc	p15, 0, %0, c0, c1, 1\n" : "=r" (val));
	return val;
}

static inline uint32_t read_clidr(void)
{
	uint32_t val;

	asm volatile ("mrc	p15, 1, %0, c0, c0, 1" : "=r" (val));
	return val;
}

static inline uint32_t read_ccsidr(void)
{
	uint32_t val;

	asm volatile ("mrc	p15, 1, %0, c0, c0, 0" : "=r" (val));
	return val;
}

static inline void write_csselr(uint32_t val)
{
	asm volatile ("mcr	p15, 2, %0, c0, c0, 0" : : "r" (val));
}

static inline void dccisw(uint32_t val)
{
	asm volatile ("mcr	p15, 0, %0, c7, c14, 2" : : "r" (val));
}

static inline void iciallu(void)
{
	uint32_t val = 0;

	asm volatile ("mcr	p15, 0, %0, c7, c5, 0" : : "r" (val));
}

static inline int has_gicv3_sysreg(void)
{
	return !!((read_id_pfr1() >> 28) & 0xf);
}

#endif /* __ASSEMBLY__ */

#endif