blob: 7e30cac32a098b94e8410d1163a058b8aa507e3f [file] [log] [blame]
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +02001#ifndef __ASM_ARM_SYSTEM_H
2#define __ASM_ARM_SYSTEM_H
3
Sergey Temerkhanov064949c2015-10-14 09:55:46 -07004#include <linux/compiler.h>
Tom Rini3b787ef2016-08-01 18:54:53 -04005#include <asm/barriers.h>
Sergey Temerkhanov064949c2015-10-14 09:55:46 -07006
David Feng85fd5f12013-12-14 11:47:35 +08007#ifdef CONFIG_ARM64
8
9/*
10 * SCTLR_EL1/SCTLR_EL2/SCTLR_EL3 bits definitions
11 */
12#define CR_M (1 << 0) /* MMU enable */
13#define CR_A (1 << 1) /* Alignment abort enable */
14#define CR_C (1 << 2) /* Dcache enable */
15#define CR_SA (1 << 3) /* Stack Alignment Check Enable */
16#define CR_I (1 << 12) /* Icache enable */
17#define CR_WXN (1 << 19) /* Write Permision Imply XN */
18#define CR_EE (1 << 25) /* Exception (Big) Endian */
19
Alison Wang73818d52016-11-10 10:49:03 +080020#define ES_TO_AARCH64 1
21#define ES_TO_AARCH32 0
22
23/*
24 * SCR_EL3 bits definitions
25 */
26#define SCR_EL3_RW_AARCH64 (1 << 10) /* Next lower level is AArch64 */
27#define SCR_EL3_RW_AARCH32 (0 << 10) /* Lower lowers level are AArch32 */
28#define SCR_EL3_HCE_EN (1 << 8) /* Hypervisor Call enable */
29#define SCR_EL3_SMD_DIS (1 << 7) /* Secure Monitor Call disable */
30#define SCR_EL3_RES1 (3 << 4) /* Reserved, RES1 */
Chee Hong Angb07ac0c2018-08-20 10:57:34 -070031#define SCR_EL3_EA_EN (1 << 3) /* External aborts taken to EL3 */
Alison Wang73818d52016-11-10 10:49:03 +080032#define SCR_EL3_NS_EN (1 << 0) /* EL0 and EL1 in Non-scure state */
33
34/*
35 * SPSR_EL3/SPSR_EL2 bits definitions
36 */
37#define SPSR_EL_END_LE (0 << 9) /* Exception Little-endian */
38#define SPSR_EL_DEBUG_MASK (1 << 9) /* Debug exception masked */
39#define SPSR_EL_ASYN_MASK (1 << 8) /* Asynchronous data abort masked */
40#define SPSR_EL_SERR_MASK (1 << 8) /* System Error exception masked */
41#define SPSR_EL_IRQ_MASK (1 << 7) /* IRQ exception masked */
42#define SPSR_EL_FIQ_MASK (1 << 6) /* FIQ exception masked */
43#define SPSR_EL_T_A32 (0 << 5) /* AArch32 instruction set A32 */
44#define SPSR_EL_M_AARCH64 (0 << 4) /* Exception taken from AArch64 */
45#define SPSR_EL_M_AARCH32 (1 << 4) /* Exception taken from AArch32 */
46#define SPSR_EL_M_SVC (0x3) /* Exception taken from SVC mode */
47#define SPSR_EL_M_HYP (0xa) /* Exception taken from HYP mode */
48#define SPSR_EL_M_EL1H (5) /* Exception taken from EL1h mode */
49#define SPSR_EL_M_EL2H (9) /* Exception taken from EL2h mode */
50
51/*
52 * CPTR_EL2 bits definitions
53 */
54#define CPTR_EL2_RES1 (3 << 12 | 0x3ff) /* Reserved, RES1 */
55
56/*
57 * SCTLR_EL2 bits definitions
58 */
59#define SCTLR_EL2_RES1 (3 << 28 | 3 << 22 | 1 << 18 | 1 << 16 |\
60 1 << 11 | 3 << 4) /* Reserved, RES1 */
61#define SCTLR_EL2_EE_LE (0 << 25) /* Exception Little-endian */
62#define SCTLR_EL2_WXN_DIS (0 << 19) /* Write permission is not XN */
63#define SCTLR_EL2_ICACHE_DIS (0 << 12) /* Instruction cache disabled */
64#define SCTLR_EL2_SA_DIS (0 << 3) /* Stack Alignment Check disabled */
65#define SCTLR_EL2_DCACHE_DIS (0 << 2) /* Data cache disabled */
66#define SCTLR_EL2_ALIGN_DIS (0 << 1) /* Alignment check disabled */
67#define SCTLR_EL2_MMU_DIS (0) /* MMU disabled */
68
69/*
70 * CNTHCTL_EL2 bits definitions
71 */
Peter Hoyesf9cd5b22024-05-01 09:16:33 +010072#define CNTHCTL_EL2_EVNT_EN BIT(2) /* Enable the event stream */
73#define CNTHCTL_EL2_EVNT_I(val) ((val) << 4) /* Event stream trigger bits */
74#define CNTHCTL_EL2_EL1PCEN_EN (1 << 1) /* Physical timer regs accessible */
75#define CNTHCTL_EL2_EL1PCTEN_EN (1 << 0) /* Physical counter accessible */
Alison Wang73818d52016-11-10 10:49:03 +080076
77/*
78 * HCR_EL2 bits definitions
79 */
Peter Hoyes6f4a27d2021-08-19 16:53:09 +010080#define HCR_EL2_API (1 << 41) /* Trap pointer authentication
81 instructions */
82#define HCR_EL2_APK (1 << 40) /* Trap pointer authentication
83 key access */
Alison Wang73818d52016-11-10 10:49:03 +080084#define HCR_EL2_RW_AARCH64 (1 << 31) /* EL1 is AArch64 */
85#define HCR_EL2_RW_AARCH32 (0 << 31) /* Lower levels are AArch32 */
86#define HCR_EL2_HCD_DIS (1 << 29) /* Hypervisor Call disabled */
Andre Przywara3a5c0522022-02-11 11:29:35 +000087#define HCR_EL2_AMO_EL2 (1 << 5) /* Route SErrors to EL2 */
Alison Wang73818d52016-11-10 10:49:03 +080088
Andre Przywara8a457ad2023-08-30 12:32:30 +010089#define ID_AA64ISAR0_EL1_RNDR (0xFUL << 60) /* RNDR random registers */
Alison Wang73818d52016-11-10 10:49:03 +080090/*
Peter Hoyes6f4a27d2021-08-19 16:53:09 +010091 * ID_AA64ISAR1_EL1 bits definitions
92 */
93#define ID_AA64ISAR1_EL1_GPI (0xF << 28) /* Implementation-defined generic
94 code auth algorithm */
95#define ID_AA64ISAR1_EL1_GPA (0xF << 24) /* QARMA generic code auth
96 algorithm */
97#define ID_AA64ISAR1_EL1_API (0xF << 8) /* Implementation-defined address
98 auth algorithm */
99#define ID_AA64ISAR1_EL1_APA (0xF << 4) /* QARMA address auth algorithm */
100
101/*
Peter Hoyes55262102021-07-12 15:04:21 +0100102 * ID_AA64PFR0_EL1 bits definitions
103 */
104#define ID_AA64PFR0_EL1_EL3 (0xF << 12) /* EL3 implemented */
105#define ID_AA64PFR0_EL1_EL2 (0xF << 8) /* EL2 implemented */
106
107/*
Alison Wang73818d52016-11-10 10:49:03 +0800108 * CPACR_EL1 bits definitions
109 */
110#define CPACR_EL1_FPEN_EN (3 << 20) /* SIMD and FP instruction enabled */
111
112/*
113 * SCTLR_EL1 bits definitions
114 */
115#define SCTLR_EL1_RES1 (3 << 28 | 3 << 22 | 1 << 20 |\
116 1 << 11) /* Reserved, RES1 */
117#define SCTLR_EL1_UCI_DIS (0 << 26) /* Cache instruction disabled */
118#define SCTLR_EL1_EE_LE (0 << 25) /* Exception Little-endian */
119#define SCTLR_EL1_WXN_DIS (0 << 19) /* Write permission is not XN */
120#define SCTLR_EL1_NTWE_DIS (0 << 18) /* WFE instruction disabled */
121#define SCTLR_EL1_NTWI_DIS (0 << 16) /* WFI instruction disabled */
122#define SCTLR_EL1_UCT_DIS (0 << 15) /* CTR_EL0 access disabled */
123#define SCTLR_EL1_DZE_DIS (0 << 14) /* DC ZVA instruction disabled */
124#define SCTLR_EL1_ICACHE_DIS (0 << 12) /* Instruction cache disabled */
125#define SCTLR_EL1_UMA_DIS (0 << 9) /* User Mask Access disabled */
126#define SCTLR_EL1_SED_EN (0 << 8) /* SETEND instruction enabled */
127#define SCTLR_EL1_ITD_EN (0 << 7) /* IT instruction enabled */
128#define SCTLR_EL1_CP15BEN_DIS (0 << 5) /* CP15 barrier operation disabled */
129#define SCTLR_EL1_SA0_DIS (0 << 4) /* Stack Alignment EL0 disabled */
130#define SCTLR_EL1_SA_DIS (0 << 3) /* Stack Alignment EL1 disabled */
131#define SCTLR_EL1_DCACHE_DIS (0 << 2) /* Data cache disabled */
132#define SCTLR_EL1_ALIGN_DIS (0 << 1) /* Alignment check disabled */
133#define SCTLR_EL1_MMU_DIS (0) /* MMU disabled */
134
David Feng85fd5f12013-12-14 11:47:35 +0800135#ifndef __ASSEMBLY__
136
Simon Glass1e268642020-05-10 11:39:55 -0600137struct pt_regs;
138
Alexander Grafe317fe82016-03-04 01:09:47 +0100139u64 get_page_table_size(void);
140#define PGTABLE_SIZE get_page_table_size()
Alexander Grafce0a64e2016-03-04 01:09:54 +0100141
142/* 2MB granularity */
143#define MMU_SECTION_SHIFT 21
144#define MMU_SECTION_SIZE (1 << MMU_SECTION_SHIFT)
Alexander Grafe317fe82016-03-04 01:09:47 +0100145
Alexander Graf188c8ff2016-03-16 15:41:20 +0100146/* These constants need to be synced to the MT_ types in asm/armv8/mmu.h */
Siva Durga Prasad Paladuguba2432a2015-06-26 18:05:07 +0530147enum dcache_option {
Alexander Graf188c8ff2016-03-16 15:41:20 +0100148 DCACHE_OFF = 0 << 2,
149 DCACHE_WRITETHROUGH = 3 << 2,
150 DCACHE_WRITEBACK = 4 << 2,
151 DCACHE_WRITEALLOC = 4 << 2,
Siva Durga Prasad Paladuguba2432a2015-06-26 18:05:07 +0530152};
153
David Feng85fd5f12013-12-14 11:47:35 +0800154#define wfi() \
155 ({asm volatile( \
156 "wfi" : : : "memory"); \
157 })
158
Peter Hoyes4a491db2024-05-01 09:16:32 +0100159#define wfe() \
160 ({asm volatile( \
161 "wfe" : : : "memory"); \
162 })
163
164#define sev() asm volatile("sev")
165
David Feng85fd5f12013-12-14 11:47:35 +0800166static inline unsigned int current_el(void)
167{
Heinrich Schuchardtea9a22d2020-05-27 20:04:24 +0200168 unsigned long el;
169
David Feng85fd5f12013-12-14 11:47:35 +0800170 asm volatile("mrs %0, CurrentEL" : "=r" (el) : : "cc");
Heinrich Schuchardtea9a22d2020-05-27 20:04:24 +0200171 return 3 & (el >> 2);
David Feng85fd5f12013-12-14 11:47:35 +0800172}
173
174static inline unsigned int get_sctlr(void)
175{
Heinrich Schuchardtea9a22d2020-05-27 20:04:24 +0200176 unsigned int el;
177 unsigned long val;
David Feng85fd5f12013-12-14 11:47:35 +0800178
179 el = current_el();
180 if (el == 1)
181 asm volatile("mrs %0, sctlr_el1" : "=r" (val) : : "cc");
182 else if (el == 2)
183 asm volatile("mrs %0, sctlr_el2" : "=r" (val) : : "cc");
184 else
185 asm volatile("mrs %0, sctlr_el3" : "=r" (val) : : "cc");
186
187 return val;
188}
189
Heinrich Schuchardtea9a22d2020-05-27 20:04:24 +0200190static inline void set_sctlr(unsigned long val)
David Feng85fd5f12013-12-14 11:47:35 +0800191{
192 unsigned int el;
193
194 el = current_el();
195 if (el == 1)
196 asm volatile("msr sctlr_el1, %0" : : "r" (val) : "cc");
197 else if (el == 2)
198 asm volatile("msr sctlr_el2, %0" : : "r" (val) : "cc");
199 else
200 asm volatile("msr sctlr_el3, %0" : : "r" (val) : "cc");
201
202 asm volatile("isb");
203}
204
Sergey Temerkhanov6774e4e2015-10-14 09:55:44 -0700205static inline unsigned long read_mpidr(void)
206{
207 unsigned long val;
208
209 asm volatile("mrs %0, mpidr_el1" : "=r" (val));
210
211 return val;
212}
213
214#define BSP_COREID 0
215
David Feng85fd5f12013-12-14 11:47:35 +0800216void __asm_flush_dcache_all(void);
York Sunef042012014-02-26 13:26:04 -0800217void __asm_invalidate_dcache_all(void);
David Feng85fd5f12013-12-14 11:47:35 +0800218void __asm_flush_dcache_range(u64 start, u64 end);
Simon Glass4415c3b2017-04-05 17:53:18 -0600219
220/**
221 * __asm_invalidate_dcache_range() - Invalidate a range of virtual addresses
222 *
223 * This performance an invalidate from @start to @end - 1. Both addresses
224 * should be cache-aligned, otherwise this function will align the start
225 * address and may continue past the end address.
226 *
227 * Data in the address range is evicted from the cache and is not written back
228 * to memory.
229 *
230 * @start: Start address to invalidate
231 * @end: End address to invalidate up to (exclusive)
232 */
233void __asm_invalidate_dcache_range(u64 start, u64 end);
David Feng85fd5f12013-12-14 11:47:35 +0800234void __asm_invalidate_tlb_all(void);
235void __asm_invalidate_icache_all(void);
Stephen Warrenddb0f632016-10-19 15:18:46 -0600236int __asm_invalidate_l3_dcache(void);
237int __asm_flush_l3_dcache(void);
238int __asm_invalidate_l3_icache(void);
Alexander Grafe317fe82016-03-04 01:09:47 +0100239void __asm_switch_ttbr(u64 new_ttbr);
David Feng85fd5f12013-12-14 11:47:35 +0800240
Alison Wang73818d52016-11-10 10:49:03 +0800241/*
Marek Szyprowskidacbb3b2020-06-03 14:43:41 +0200242 * armv8_switch_to_el2() - switch from EL3 to EL2 for ARMv8
Alison Wang73818d52016-11-10 10:49:03 +0800243 *
244 * @args: For loading 64-bit OS, fdt address.
245 * For loading 32-bit OS, zero.
246 * @mach_nr: For loading 64-bit OS, zero.
247 * For loading 32-bit OS, machine nr
248 * @fdt_addr: For loading 64-bit OS, zero.
249 * For loading 32-bit OS, fdt address.
Alison Wangeb2088d2017-01-17 09:39:17 +0800250 * @arg4: Input argument.
Alison Wang73818d52016-11-10 10:49:03 +0800251 * @entry_point: kernel entry point
252 * @es_flag: execution state flag, ES_TO_AARCH64 or ES_TO_AARCH32
253 */
York Sunffea3e62017-09-28 08:42:14 -0700254void __noreturn armv8_switch_to_el2(u64 args, u64 mach_nr, u64 fdt_addr,
255 u64 arg4, u64 entry_point, u64 es_flag);
Alison Wang73818d52016-11-10 10:49:03 +0800256/*
Marek Szyprowskidacbb3b2020-06-03 14:43:41 +0200257 * armv8_switch_to_el1() - switch from EL2 to EL1 for ARMv8
Alison Wang73818d52016-11-10 10:49:03 +0800258 *
259 * @args: For loading 64-bit OS, fdt address.
260 * For loading 32-bit OS, zero.
261 * @mach_nr: For loading 64-bit OS, zero.
262 * For loading 32-bit OS, machine nr
263 * @fdt_addr: For loading 64-bit OS, zero.
264 * For loading 32-bit OS, fdt address.
Alison Wangeb2088d2017-01-17 09:39:17 +0800265 * @arg4: Input argument.
Alison Wang73818d52016-11-10 10:49:03 +0800266 * @entry_point: kernel entry point
267 * @es_flag: execution state flag, ES_TO_AARCH64 or ES_TO_AARCH32
268 */
269void armv8_switch_to_el1(u64 args, u64 mach_nr, u64 fdt_addr,
Alison Wangeb2088d2017-01-17 09:39:17 +0800270 u64 arg4, u64 entry_point, u64 es_flag);
Alison Wangf547fca2016-11-10 10:49:05 +0800271void armv8_el2_to_aarch32(u64 args, u64 mach_nr, u64 fdt_addr,
Alison Wangeb2088d2017-01-17 09:39:17 +0800272 u64 arg4, u64 entry_point);
David Feng85fd5f12013-12-14 11:47:35 +0800273void gic_init(void);
274void gic_send_sgi(unsigned long sgino);
275void wait_for_wakeup(void);
Ian Campbelld07e7b02015-04-21 07:18:36 +0200276void protect_secure_region(void);
David Feng85fd5f12013-12-14 11:47:35 +0800277void smp_kick_all_cpus(void);
278
York Suna84cd722014-06-23 15:15:54 -0700279void flush_l3_cache(void);
York Sun5bb14e02017-03-06 09:02:33 -0800280void mmu_change_region_attr(phys_addr_t start, size_t size, u64 attrs);
York Suna84cd722014-06-23 15:15:54 -0700281
Sergey Temerkhanov064949c2015-10-14 09:55:46 -0700282/*
Marek Szyprowskidacbb3b2020-06-03 14:43:41 +0200283 * smc_call() - issue a secure monitor call
284 *
285 * Issue a secure monitor call in accordance with ARM "SMC Calling convention",
Sergey Temerkhanov064949c2015-10-14 09:55:46 -0700286 * DEN0028A
287 *
288 * @args: input and output arguments
Sergey Temerkhanov064949c2015-10-14 09:55:46 -0700289 */
290void smc_call(struct pt_regs *args);
291
Alexander Grafa5b18322016-08-16 21:08:46 +0200292void __noreturn psci_system_reset(void);
Rajesh Ravi45bbe712019-11-22 14:50:01 -0800293void __noreturn psci_system_reset2(u32 reset_level, u32 cookie);
Alexander Graf467c83e2016-08-16 21:08:47 +0200294void __noreturn psci_system_off(void);
Beniamino Galvanib8845e12016-05-08 08:30:14 +0200295
macro.wave.z@gmail.com05725ed2016-12-08 11:58:25 +0800296#ifdef CONFIG_ARMV8_PSCI
297extern char __secure_start[];
298extern char __secure_end[];
299extern char __secure_stack_start[];
300extern char __secure_stack_end[];
301
302void armv8_setup_psci(void);
303void psci_setup_vectors(void);
304void psci_arch_init(void);
305#endif
306
David Feng85fd5f12013-12-14 11:47:35 +0800307#endif /* __ASSEMBLY__ */
308
309#else /* CONFIG_ARM64 */
310
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200311#ifdef __KERNEL__
312
313#define CPU_ARCH_UNKNOWN 0
314#define CPU_ARCH_ARMv3 1
315#define CPU_ARCH_ARMv4 2
316#define CPU_ARCH_ARMv4T 3
317#define CPU_ARCH_ARMv5 4
318#define CPU_ARCH_ARMv5T 5
319#define CPU_ARCH_ARMv5TE 6
320#define CPU_ARCH_ARMv5TEJ 7
321#define CPU_ARCH_ARMv6 8
322#define CPU_ARCH_ARMv7 9
323
324/*
325 * CR1 bits (CP#15 CR1)
326 */
327#define CR_M (1 << 0) /* MMU enable */
328#define CR_A (1 << 1) /* Alignment abort enable */
329#define CR_C (1 << 2) /* Dcache enable */
330#define CR_W (1 << 3) /* Write buffer enable */
331#define CR_P (1 << 4) /* 32-bit exception handler */
332#define CR_D (1 << 5) /* 32-bit data address range */
333#define CR_L (1 << 6) /* Implementation defined */
334#define CR_B (1 << 7) /* Big endian */
335#define CR_S (1 << 8) /* System MMU protection */
336#define CR_R (1 << 9) /* ROM MMU protection */
337#define CR_F (1 << 10) /* Implementation defined */
338#define CR_Z (1 << 11) /* Implementation defined */
339#define CR_I (1 << 12) /* Icache enable */
340#define CR_V (1 << 13) /* Vectors relocated to 0xffff0000 */
341#define CR_RR (1 << 14) /* Round Robin cache replacement */
342#define CR_L4 (1 << 15) /* LDR pc can set T bit */
343#define CR_DT (1 << 16)
344#define CR_IT (1 << 18)
345#define CR_ST (1 << 19)
346#define CR_FI (1 << 21) /* Fast interrupt (lower latency mode) */
347#define CR_U (1 << 22) /* Unaligned access operation */
348#define CR_XP (1 << 23) /* Extended page tables */
349#define CR_VE (1 << 24) /* Vectored interrupts */
350#define CR_EE (1 << 25) /* Exception (Big) Endian */
351#define CR_TRE (1 << 28) /* TEX remap enable */
352#define CR_AFE (1 << 29) /* Access flag enable */
353#define CR_TE (1 << 30) /* Thumb exception enable */
354
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100355#if defined(CONFIG_ARMV7_LPAE) && !defined(PGTABLE_SIZE)
356#define PGTABLE_SIZE (4096 * 5)
357#elif !defined(PGTABLE_SIZE)
David Feng85fd5f12013-12-14 11:47:35 +0800358#define PGTABLE_SIZE (4096 * 4)
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -0700359#endif
David Feng85fd5f12013-12-14 11:47:35 +0800360
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200361/*
362 * This is used to ensure the compiler did actually allocate the register we
363 * asked it for some inline assembly sequences. Apparently we can't trust
364 * the compiler from one version to another so a bit of paranoia won't hurt.
365 * This string is meant to be concatenated with the inline asm string and
366 * will cause compilation to stop on mismatch.
367 * (for details, see gcc PR 15089)
368 */
369#define __asmeq(x, y) ".ifnc " x "," y " ; .err ; .endif\n\t"
370
371#ifndef __ASSEMBLY__
372
Keerthy61488c12016-09-14 10:43:32 +0530373#ifdef CONFIG_ARMV7_LPAE
374void switch_to_hypervisor_ret(void);
375#endif
376
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200377#define nop() __asm__ __volatile__("mov\tr0,r0\t@ nop\n\t");
378
Rob Herringaa470302012-12-02 17:06:21 +0000379#ifdef __ARM_ARCH_7A__
380#define wfi() __asm__ __volatile__ ("wfi" : : : "memory")
Peter Hoyes4a491db2024-05-01 09:16:32 +0100381#define wfe() __asm__ __volatile__ ("wfe" : : : "memory")
382#define sev() __asm__ __volatile__ ("sev")
Rob Herringaa470302012-12-02 17:06:21 +0000383#else
384#define wfi()
385#endif
386
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100387static inline unsigned long get_cpsr(void)
388{
389 unsigned long cpsr;
390
391 asm volatile("mrs %0, cpsr" : "=r"(cpsr): );
392 return cpsr;
393}
394
395static inline int is_hyp(void)
396{
397#ifdef CONFIG_ARMV7_LPAE
398 /* HYP mode requires LPAE ... */
399 return ((get_cpsr() & 0x1f) == 0x1a);
400#else
401 /* ... so without LPAE support we can optimize all hyp code away */
402 return 0;
403#endif
404}
405
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200406static inline unsigned int get_cr(void)
407{
408 unsigned int val;
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100409
410 if (is_hyp())
411 asm volatile("mrc p15, 4, %0, c1, c0, 0 @ get CR" : "=r" (val)
412 :
413 : "cc");
414 else
415 asm volatile("mrc p15, 0, %0, c1, c0, 0 @ get CR" : "=r" (val)
416 :
417 : "cc");
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200418 return val;
419}
420
421static inline void set_cr(unsigned int val)
422{
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100423 if (is_hyp())
424 asm volatile("mcr p15, 4, %0, c1, c0, 0 @ set CR" :
425 : "r" (val)
426 : "cc");
427 else
428 asm volatile("mcr p15, 0, %0, c1, c0, 0 @ set CR" :
429 : "r" (val)
430 : "cc");
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200431 isb();
432}
433
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100434#ifdef CONFIG_ARMV7_LPAE
435/* Long-Descriptor Translation Table Level 1/2 Bits */
436#define TTB_SECT_XN_MASK (1ULL << 54)
437#define TTB_SECT_NG_MASK (1 << 11)
438#define TTB_SECT_AF (1 << 10)
439#define TTB_SECT_SH_MASK (3 << 8)
440#define TTB_SECT_NS_MASK (1 << 5)
441#define TTB_SECT_AP (1 << 6)
442/* Note: TTB AP bits are set elsewhere */
443#define TTB_SECT_MAIR(x) ((x & 0x7) << 2) /* Index into MAIR */
444#define TTB_SECT (1 << 0)
445#define TTB_PAGETABLE (3 << 0)
446
447/* TTBCR flags */
448#define TTBCR_EAE (1 << 31)
449#define TTBCR_T0SZ(x) ((x) << 0)
450#define TTBCR_T1SZ(x) ((x) << 16)
451#define TTBCR_USING_TTBR0 (TTBCR_T0SZ(0) | TTBCR_T1SZ(0))
452#define TTBCR_IRGN0_NC (0 << 8)
453#define TTBCR_IRGN0_WBWA (1 << 8)
454#define TTBCR_IRGN0_WT (2 << 8)
455#define TTBCR_IRGN0_WBNWA (3 << 8)
456#define TTBCR_IRGN0_MASK (3 << 8)
457#define TTBCR_ORGN0_NC (0 << 10)
458#define TTBCR_ORGN0_WBWA (1 << 10)
459#define TTBCR_ORGN0_WT (2 << 10)
460#define TTBCR_ORGN0_WBNWA (3 << 10)
461#define TTBCR_ORGN0_MASK (3 << 10)
462#define TTBCR_SHARED_NON (0 << 12)
463#define TTBCR_SHARED_OUTER (2 << 12)
464#define TTBCR_SHARED_INNER (3 << 12)
465#define TTBCR_EPD0 (0 << 7)
466
467/*
Ard Biesheuveldeb4edb2020-07-07 12:07:07 +0200468 * VMSAv8-32 Long-descriptor format memory region attributes
469 * (ARM Architecture Reference Manual section G5.7.4 [DDI0487E.a])
470 *
471 * MAIR0[ 7: 0] 0x00 Device-nGnRnE (aka Strongly-Ordered)
472 * MAIR0[15: 8] 0xaa Outer/Inner Write-Through, Read-Allocate No Write-Allocate
473 * MAIR0[23:16] 0xee Outer/Inner Write-Back, Read-Allocate No Write-Allocate
474 * MAIR0[31:24] 0xff Outer/Inner Write-Back, Read-Allocate Write-Allocate
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100475 */
Ard Biesheuveldeb4edb2020-07-07 12:07:07 +0200476#define MEMORY_ATTRIBUTES ((0x00 << (0 * 8)) | (0xaa << (1 * 8)) | \
477 (0xee << (2 * 8)) | (0xff << (3 * 8)))
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100478
479/* options available for data cache on each page */
480enum dcache_option {
Keerthy266c8c12016-10-29 15:19:10 +0530481 DCACHE_OFF = TTB_SECT | TTB_SECT_MAIR(0) | TTB_SECT_XN_MASK,
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100482 DCACHE_WRITETHROUGH = TTB_SECT | TTB_SECT_MAIR(1),
483 DCACHE_WRITEBACK = TTB_SECT | TTB_SECT_MAIR(2),
484 DCACHE_WRITEALLOC = TTB_SECT | TTB_SECT_MAIR(3),
485};
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530486#elif defined(CONFIG_CPU_V7A)
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500487/* Short-Descriptor Translation Table Level 1 Bits */
488#define TTB_SECT_NS_MASK (1 << 19)
489#define TTB_SECT_NG_MASK (1 << 17)
490#define TTB_SECT_S_MASK (1 << 16)
491/* Note: TTB AP bits are set elsewhere */
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100492#define TTB_SECT_AP (3 << 10)
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500493#define TTB_SECT_TEX(x) ((x & 0x7) << 12)
494#define TTB_SECT_DOMAIN(x) ((x & 0xf) << 5)
495#define TTB_SECT_XN_MASK (1 << 4)
496#define TTB_SECT_C_MASK (1 << 3)
497#define TTB_SECT_B_MASK (1 << 2)
Patrick Delaunayd1332612021-02-05 13:53:35 +0100498#define TTB_SECT (2 << 0)
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500499
Ard Biesheuveldeb4edb2020-07-07 12:07:07 +0200500/*
501 * Short-descriptor format memory region attributes, without TEX remap
502 * (ARM Architecture Reference Manual section G5.7.2 [DDI0487E.a])
503 *
504 * TEX[0] C B
505 * 0 0 0 Device-nGnRnE (aka Strongly-Ordered)
506 * 0 1 0 Outer/Inner Write-Through, Read-Allocate No Write-Allocate
507 * 0 1 1 Outer/Inner Write-Back, Read-Allocate No Write-Allocate
508 * 1 1 1 Outer/Inner Write-Back, Read-Allocate Write-Allocate
509 */
Simon Glassa4f20792012-10-17 13:24:53 +0000510enum dcache_option {
Marek Vasutd6e436e2015-12-29 19:44:02 +0100511 DCACHE_OFF = TTB_SECT_DOMAIN(0) | TTB_SECT_XN_MASK | TTB_SECT,
Patrick Delaunay061801e2021-02-05 13:53:34 +0100512 DCACHE_WRITETHROUGH = TTB_SECT_DOMAIN(0) | TTB_SECT | TTB_SECT_C_MASK,
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500513 DCACHE_WRITEBACK = DCACHE_WRITETHROUGH | TTB_SECT_B_MASK,
514 DCACHE_WRITEALLOC = DCACHE_WRITEBACK | TTB_SECT_TEX(1),
515};
516#else
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100517#define TTB_SECT_AP (3 << 10)
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500518/* options available for data cache on each page */
519enum dcache_option {
Simon Glassa4f20792012-10-17 13:24:53 +0000520 DCACHE_OFF = 0x12,
521 DCACHE_WRITETHROUGH = 0x1a,
522 DCACHE_WRITEBACK = 0x1e,
Marek Vasut79b90722014-09-15 02:44:36 +0200523 DCACHE_WRITEALLOC = 0x16,
Simon Glassa4f20792012-10-17 13:24:53 +0000524};
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500525#endif
Simon Glassa4f20792012-10-17 13:24:53 +0000526
527/* Size of an MMU section */
528enum {
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100529#ifdef CONFIG_ARMV7_LPAE
530 MMU_SECTION_SHIFT = 21, /* 2MB */
531#else
532 MMU_SECTION_SHIFT = 20, /* 1MB */
533#endif
Simon Glassa4f20792012-10-17 13:24:53 +0000534 MMU_SECTION_SIZE = 1 << MMU_SECTION_SHIFT,
535};
536
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530537#ifdef CONFIG_CPU_V7A
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500538/* TTBR0 bits */
539#define TTBR0_BASE_ADDR_MASK 0xFFFFC000
540#define TTBR0_RGN_NC (0 << 3)
541#define TTBR0_RGN_WBWA (1 << 3)
542#define TTBR0_RGN_WT (2 << 3)
543#define TTBR0_RGN_WB (3 << 3)
544/* TTBR0[6] is IRGN[0] and TTBR[0] is IRGN[1] */
545#define TTBR0_IRGN_NC (0 << 0 | 0 << 6)
546#define TTBR0_IRGN_WBWA (0 << 0 | 1 << 6)
547#define TTBR0_IRGN_WT (1 << 0 | 0 << 6)
548#define TTBR0_IRGN_WB (1 << 0 | 1 << 6)
549#endif
550
Simon Glassa4f20792012-10-17 13:24:53 +0000551/**
Marek Szyprowskidacbb3b2020-06-03 14:43:41 +0200552 * mmu_page_table_flush() - register an update to page tables
553 *
Simon Glassa4f20792012-10-17 13:24:53 +0000554 * Register an update to the page tables, and flush the TLB
555 *
Marek Szyprowskidacbb3b2020-06-03 14:43:41 +0200556 * @start: start address of update in page table
557 * @stop: stop address of update in page table
Simon Glassa4f20792012-10-17 13:24:53 +0000558 */
559void mmu_page_table_flush(unsigned long start, unsigned long stop);
560
Patrick Delaunay9c59d862019-07-22 14:19:20 +0200561#ifdef CONFIG_ARMV7_PSCI
562void psci_arch_cpu_entry(void);
Masahiro Yamadab047d1b2020-05-20 11:43:34 +0900563void psci_arch_init(void);
Patrick Delaunay9c59d862019-07-22 14:19:20 +0200564u32 psci_version(void);
565s32 psci_features(u32 function_id, u32 psci_fid);
566s32 psci_cpu_off(void);
567s32 psci_cpu_on(u32 function_id, u32 target_cpu, u32 pc,
568 u32 context_id);
569s32 psci_affinity_info(u32 function_id, u32 target_affinity,
570 u32 lowest_affinity_level);
571u32 psci_migrate_info_type(void);
572void psci_system_off(void);
573void psci_system_reset(void);
Patrick Delaunay9c59d862019-07-22 14:19:20 +0200574#endif
575
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200576#endif /* __ASSEMBLY__ */
577
578#define arch_align_stack(x) (x)
579
580#endif /* __KERNEL__ */
581
David Feng85fd5f12013-12-14 11:47:35 +0800582#endif /* CONFIG_ARM64 */
583
Patrice Chotard4d776d02023-10-27 16:42:56 +0200584#if defined(CONFIG_SYS_ARM_CACHE_WRITETHROUGH)
585#define DCACHE_DEFAULT_OPTION DCACHE_WRITETHROUGH
586#elif defined(CONFIG_SYS_ARM_CACHE_WRITEALLOC)
587#define DCACHE_DEFAULT_OPTION DCACHE_WRITEALLOC
588#elif defined(CONFIG_SYS_ARM_CACHE_WRITEBACK)
589#define DCACHE_DEFAULT_OPTION DCACHE_WRITEBACK
590#endif
591
Siva Durga Prasad Paladuguba2432a2015-06-26 18:05:07 +0530592#ifndef __ASSEMBLY__
593/**
Philipp Tomsichcd36d452017-10-10 16:21:11 +0200594 * save_boot_params() - Save boot parameters before starting reset sequence
595 *
596 * If you provide this function it will be called immediately U-Boot starts,
597 * both for SPL and U-Boot proper.
598 *
599 * All registers are unchanged from U-Boot entry. No registers need be
600 * preserved.
601 *
602 * This is not a normal C function. There is no stack. Return by branching to
603 * save_boot_params_ret.
604 *
605 * void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3);
606 */
607
608/**
609 * save_boot_params_ret() - Return from save_boot_params()
610 *
611 * If you provide save_boot_params(), then you should jump back to this
612 * function when done. Try to preserve all registers.
613 *
614 * If your implementation of save_boot_params() is in C then it is acceptable
615 * to simply call save_boot_params_ret() at the end of your function. Since
616 * there is no link register set up, you cannot just exit the function. U-Boot
617 * will return to the (initialised) value of lr, and likely crash/hang.
618 *
619 * If your implementation of save_boot_params() is in assembler then you
620 * should use 'b' or 'bx' to return to save_boot_params_ret.
621 */
622void save_boot_params_ret(void);
623
624/**
Marek Szyprowskif76fb512020-06-03 14:43:42 +0200625 * mmu_set_region_dcache_behaviour_phys() - set virt/phys mapping
626 *
627 * Change the virt/phys mapping and cache settings for a region.
628 *
629 * @virt: virtual start address of memory region to change
630 * @phys: physical address for the memory region to set
631 * @size: size of memory region to change
632 * @option: dcache option to select
633 */
634void mmu_set_region_dcache_behaviour_phys(phys_addr_t virt, phys_addr_t phys,
635 size_t size, enum dcache_option option);
636
637/**
Marek Szyprowskidacbb3b2020-06-03 14:43:41 +0200638 * mmu_set_region_dcache_behaviour() - set cache settings
639 *
Siva Durga Prasad Paladuguba2432a2015-06-26 18:05:07 +0530640 * Change the cache settings for a region.
641 *
Marek Szyprowskidacbb3b2020-06-03 14:43:41 +0200642 * @start: start address of memory region to change
643 * @size: size of memory region to change
644 * @option: dcache option to select
Siva Durga Prasad Paladuguba2432a2015-06-26 18:05:07 +0530645 */
646void mmu_set_region_dcache_behaviour(phys_addr_t start, size_t size,
647 enum dcache_option option);
648
Stephen Warrenfbdcd222015-10-05 12:08:59 -0600649#ifdef CONFIG_SYS_NONCACHED_MEMORY
Ovidiu Panait1c45ed92020-11-28 10:43:13 +0200650/**
651 * noncached_init() - Initialize non-cached memory region
652 *
653 * Initialize non-cached memory area. This memory region will be typically
654 * located right below the malloc() area and mapped uncached in the MMU.
655 *
656 * It is called during the generic post-relocation init sequence.
657 *
658 * Return: 0 if OK
659 */
660int noncached_init(void);
661
Stephen Warrenfbdcd222015-10-05 12:08:59 -0600662phys_addr_t noncached_alloc(size_t size, size_t align);
663#endif /* CONFIG_SYS_NONCACHED_MEMORY */
664
Siva Durga Prasad Paladuguba2432a2015-06-26 18:05:07 +0530665#endif /* __ASSEMBLY__ */
666
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200667#endif