hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ASM_ARM_CP15_H
#define __ASM_ARM_CP15_H
 
#include <asm/barrier.h>
 
/*
 * CR1 bits (CP#15 CR1)
 */
#define CR_M    (1 << 0)    /* MMU enable                */
#define CR_A    (1 << 1)    /* Alignment abort enable        */
#define CR_C    (1 << 2)    /* Dcache enable            */
#define CR_W    (1 << 3)    /* Write buffer enable            */
#define CR_P    (1 << 4)    /* 32-bit exception handler        */
#define CR_D    (1 << 5)    /* 32-bit data address range        */
#define CR_L    (1 << 6)    /* Implementation defined        */
#define CR_B    (1 << 7)    /* Big endian                */
#define CR_S    (1 << 8)    /* System MMU protection        */
#define CR_R    (1 << 9)    /* ROM MMU protection            */
#define CR_F    (1 << 10)    /* Implementation defined        */
#define CR_Z    (1 << 11)    /* Implementation defined        */
#define CR_I    (1 << 12)    /* Icache enable            */
#define CR_V    (1 << 13)    /* Vectors relocated to 0xffff0000    */
#define CR_RR    (1 << 14)    /* Round Robin cache replacement    */
#define CR_L4    (1 << 15)    /* LDR pc can set T bit            */
#define CR_DT    (1 << 16)
#ifdef CONFIG_MMU
#define CR_HA    (1 << 17)    /* Hardware management of Access Flag   */
#else
#define CR_BR    (1 << 17)    /* MPU Background region enable (PMSA)  */
#endif
#define CR_IT    (1 << 18)
#define CR_ST    (1 << 19)
#define CR_FI    (1 << 21)    /* Fast interrupt (lower latency mode)    */
#define CR_U    (1 << 22)    /* Unaligned access operation        */
#define CR_XP    (1 << 23)    /* Extended page tables            */
#define CR_VE    (1 << 24)    /* Vectored interrupts            */
#define CR_EE    (1 << 25)    /* Exception (Big) Endian        */
#define CR_TRE    (1 << 28)    /* TEX remap enable            */
#define CR_AFE    (1 << 29)    /* Access flag enable            */
#define CR_TE    (1 << 30)    /* Thumb exception enable        */
 
#ifndef __ASSEMBLY__
 
#if __LINUX_ARM_ARCH__ >= 4
#define vectors_high()    (get_cr() & CR_V)
#else
#define vectors_high()    (0)
#endif
 
#ifdef CONFIG_CPU_CP15
 
#include <asm/vdso/cp15.h>
 
extern unsigned long cr_alignment;    /* defined in entry-armv.S */
 
static inline unsigned long get_cr(void)
{
   unsigned long val;
   asm("mrc p15, 0, %0, c1, c0, 0    @ get CR" : "=r" (val) : : "cc");
   return val;
}
 
static inline void set_cr(unsigned long val)
{
   asm volatile("mcr p15, 0, %0, c1, c0, 0    @ set CR"
     : : "r" (val) : "cc");
   isb();
}
 
static inline unsigned int get_auxcr(void)
{
   unsigned int val;
   asm("mrc p15, 0, %0, c1, c0, 1    @ get AUXCR" : "=r" (val));
   return val;
}
 
static inline void set_auxcr(unsigned int val)
{
   asm volatile("mcr p15, 0, %0, c1, c0, 1    @ set AUXCR"
     : : "r" (val));
   isb();
}
 
#define CPACC_FULL(n)        (3 << (n * 2))
#define CPACC_SVC(n)        (1 << (n * 2))
#define CPACC_DISABLE(n)    (0 << (n * 2))
 
static inline unsigned int get_copro_access(void)
{
   unsigned int val;
   asm("mrc p15, 0, %0, c1, c0, 2 @ get copro access"
     : "=r" (val) : : "cc");
   return val;
}
 
static inline void set_copro_access(unsigned int val)
{
   asm volatile("mcr p15, 0, %0, c1, c0, 2 @ set copro access"
     : : "r" (val) : "cc");
   isb();
}
 
#else /* ifdef CONFIG_CPU_CP15 */
 
/*
 * cr_alignment is tightly coupled to cp15 (at least in the minds of the
 * developers). Yielding 0 for machines without a cp15 (and making it
 * read-only) is fine for most cases and saves quite some #ifdeffery.
 */
#define cr_alignment    UL(0)
 
static inline unsigned long get_cr(void)
{
   return 0;
}
 
#endif /* ifdef CONFIG_CPU_CP15 / else */
 
#endif /* ifndef __ASSEMBLY__ */
 
#endif