blob: 52f6c9b934d7ac0d7e8af417c77ca0e5cb779195 [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);
Caleb Connolly27b05b52024-08-09 01:59:31 +0200280
281/**
282 * mmu_map_region() - map a region of previously unmapped memory.
283 * Will be mapped MT_NORMAL & PTE_BLOCK_INNER_SHARE.
284 *
285 * @start: Start address of the region
286 * @size: Size of the region
287 * @emerg: Also map the region in the emergency table
288 */
289void mmu_map_region(phys_addr_t start, u64 size, bool emerg);
York Sun5bb14e02017-03-06 09:02:33 -0800290void mmu_change_region_attr(phys_addr_t start, size_t size, u64 attrs);
York Suna84cd722014-06-23 15:15:54 -0700291
Sergey Temerkhanov064949c2015-10-14 09:55:46 -0700292/*
Marek Szyprowskidacbb3b2020-06-03 14:43:41 +0200293 * smc_call() - issue a secure monitor call
294 *
295 * Issue a secure monitor call in accordance with ARM "SMC Calling convention",
Sergey Temerkhanov064949c2015-10-14 09:55:46 -0700296 * DEN0028A
297 *
298 * @args: input and output arguments
Sergey Temerkhanov064949c2015-10-14 09:55:46 -0700299 */
300void smc_call(struct pt_regs *args);
301
Alexander Grafa5b18322016-08-16 21:08:46 +0200302void __noreturn psci_system_reset(void);
Rajesh Ravi45bbe712019-11-22 14:50:01 -0800303void __noreturn psci_system_reset2(u32 reset_level, u32 cookie);
Alexander Graf467c83e2016-08-16 21:08:47 +0200304void __noreturn psci_system_off(void);
Beniamino Galvanib8845e12016-05-08 08:30:14 +0200305
macro.wave.z@gmail.com05725ed2016-12-08 11:58:25 +0800306#ifdef CONFIG_ARMV8_PSCI
307extern char __secure_start[];
308extern char __secure_end[];
309extern char __secure_stack_start[];
310extern char __secure_stack_end[];
311
312void armv8_setup_psci(void);
313void psci_setup_vectors(void);
314void psci_arch_init(void);
315#endif
316
David Feng85fd5f12013-12-14 11:47:35 +0800317#endif /* __ASSEMBLY__ */
318
319#else /* CONFIG_ARM64 */
320
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200321#ifdef __KERNEL__
322
323#define CPU_ARCH_UNKNOWN 0
324#define CPU_ARCH_ARMv3 1
325#define CPU_ARCH_ARMv4 2
326#define CPU_ARCH_ARMv4T 3
327#define CPU_ARCH_ARMv5 4
328#define CPU_ARCH_ARMv5T 5
329#define CPU_ARCH_ARMv5TE 6
330#define CPU_ARCH_ARMv5TEJ 7
331#define CPU_ARCH_ARMv6 8
332#define CPU_ARCH_ARMv7 9
333
334/*
335 * CR1 bits (CP#15 CR1)
336 */
337#define CR_M (1 << 0) /* MMU enable */
338#define CR_A (1 << 1) /* Alignment abort enable */
339#define CR_C (1 << 2) /* Dcache enable */
340#define CR_W (1 << 3) /* Write buffer enable */
341#define CR_P (1 << 4) /* 32-bit exception handler */
342#define CR_D (1 << 5) /* 32-bit data address range */
343#define CR_L (1 << 6) /* Implementation defined */
344#define CR_B (1 << 7) /* Big endian */
345#define CR_S (1 << 8) /* System MMU protection */
346#define CR_R (1 << 9) /* ROM MMU protection */
347#define CR_F (1 << 10) /* Implementation defined */
348#define CR_Z (1 << 11) /* Implementation defined */
349#define CR_I (1 << 12) /* Icache enable */
350#define CR_V (1 << 13) /* Vectors relocated to 0xffff0000 */
351#define CR_RR (1 << 14) /* Round Robin cache replacement */
352#define CR_L4 (1 << 15) /* LDR pc can set T bit */
353#define CR_DT (1 << 16)
354#define CR_IT (1 << 18)
355#define CR_ST (1 << 19)
356#define CR_FI (1 << 21) /* Fast interrupt (lower latency mode) */
357#define CR_U (1 << 22) /* Unaligned access operation */
358#define CR_XP (1 << 23) /* Extended page tables */
359#define CR_VE (1 << 24) /* Vectored interrupts */
360#define CR_EE (1 << 25) /* Exception (Big) Endian */
361#define CR_TRE (1 << 28) /* TEX remap enable */
362#define CR_AFE (1 << 29) /* Access flag enable */
363#define CR_TE (1 << 30) /* Thumb exception enable */
364
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100365#if defined(CONFIG_ARMV7_LPAE) && !defined(PGTABLE_SIZE)
366#define PGTABLE_SIZE (4096 * 5)
367#elif !defined(PGTABLE_SIZE)
David Feng85fd5f12013-12-14 11:47:35 +0800368#define PGTABLE_SIZE (4096 * 4)
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -0700369#endif
David Feng85fd5f12013-12-14 11:47:35 +0800370
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200371/*
372 * This is used to ensure the compiler did actually allocate the register we
373 * asked it for some inline assembly sequences. Apparently we can't trust
374 * the compiler from one version to another so a bit of paranoia won't hurt.
375 * This string is meant to be concatenated with the inline asm string and
376 * will cause compilation to stop on mismatch.
377 * (for details, see gcc PR 15089)
378 */
379#define __asmeq(x, y) ".ifnc " x "," y " ; .err ; .endif\n\t"
380
381#ifndef __ASSEMBLY__
382
Keerthy61488c12016-09-14 10:43:32 +0530383#ifdef CONFIG_ARMV7_LPAE
384void switch_to_hypervisor_ret(void);
385#endif
386
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200387#define nop() __asm__ __volatile__("mov\tr0,r0\t@ nop\n\t");
388
Rob Herringaa470302012-12-02 17:06:21 +0000389#ifdef __ARM_ARCH_7A__
390#define wfi() __asm__ __volatile__ ("wfi" : : : "memory")
Peter Hoyes4a491db2024-05-01 09:16:32 +0100391#define wfe() __asm__ __volatile__ ("wfe" : : : "memory")
392#define sev() __asm__ __volatile__ ("sev")
Rob Herringaa470302012-12-02 17:06:21 +0000393#else
394#define wfi()
395#endif
396
Patrick Rudolphcc90df32024-10-23 15:20:15 +0200397static inline unsigned long read_mpidr(void)
398{
399 unsigned long val;
400
401 asm volatile("mrc p15, 0, %0, c0, c0, 5" : "=r" (val));
402
403 return val;
404}
405
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100406static inline unsigned long get_cpsr(void)
407{
408 unsigned long cpsr;
409
410 asm volatile("mrs %0, cpsr" : "=r"(cpsr): );
411 return cpsr;
412}
413
414static inline int is_hyp(void)
415{
416#ifdef CONFIG_ARMV7_LPAE
417 /* HYP mode requires LPAE ... */
418 return ((get_cpsr() & 0x1f) == 0x1a);
419#else
420 /* ... so without LPAE support we can optimize all hyp code away */
421 return 0;
422#endif
423}
424
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200425static inline unsigned int get_cr(void)
426{
427 unsigned int val;
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100428
429 if (is_hyp())
430 asm volatile("mrc p15, 4, %0, c1, c0, 0 @ get CR" : "=r" (val)
431 :
432 : "cc");
433 else
434 asm volatile("mrc p15, 0, %0, c1, c0, 0 @ get CR" : "=r" (val)
435 :
436 : "cc");
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200437 return val;
438}
439
440static inline void set_cr(unsigned int val)
441{
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100442 if (is_hyp())
443 asm volatile("mcr p15, 4, %0, c1, c0, 0 @ set CR" :
444 : "r" (val)
445 : "cc");
446 else
447 asm volatile("mcr p15, 0, %0, c1, c0, 0 @ set CR" :
448 : "r" (val)
449 : "cc");
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200450 isb();
451}
452
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100453#ifdef CONFIG_ARMV7_LPAE
454/* Long-Descriptor Translation Table Level 1/2 Bits */
455#define TTB_SECT_XN_MASK (1ULL << 54)
456#define TTB_SECT_NG_MASK (1 << 11)
457#define TTB_SECT_AF (1 << 10)
458#define TTB_SECT_SH_MASK (3 << 8)
459#define TTB_SECT_NS_MASK (1 << 5)
460#define TTB_SECT_AP (1 << 6)
461/* Note: TTB AP bits are set elsewhere */
462#define TTB_SECT_MAIR(x) ((x & 0x7) << 2) /* Index into MAIR */
463#define TTB_SECT (1 << 0)
464#define TTB_PAGETABLE (3 << 0)
465
466/* TTBCR flags */
467#define TTBCR_EAE (1 << 31)
468#define TTBCR_T0SZ(x) ((x) << 0)
469#define TTBCR_T1SZ(x) ((x) << 16)
470#define TTBCR_USING_TTBR0 (TTBCR_T0SZ(0) | TTBCR_T1SZ(0))
471#define TTBCR_IRGN0_NC (0 << 8)
472#define TTBCR_IRGN0_WBWA (1 << 8)
473#define TTBCR_IRGN0_WT (2 << 8)
474#define TTBCR_IRGN0_WBNWA (3 << 8)
475#define TTBCR_IRGN0_MASK (3 << 8)
476#define TTBCR_ORGN0_NC (0 << 10)
477#define TTBCR_ORGN0_WBWA (1 << 10)
478#define TTBCR_ORGN0_WT (2 << 10)
479#define TTBCR_ORGN0_WBNWA (3 << 10)
480#define TTBCR_ORGN0_MASK (3 << 10)
481#define TTBCR_SHARED_NON (0 << 12)
482#define TTBCR_SHARED_OUTER (2 << 12)
483#define TTBCR_SHARED_INNER (3 << 12)
484#define TTBCR_EPD0 (0 << 7)
485
486/*
Ard Biesheuveldeb4edb2020-07-07 12:07:07 +0200487 * VMSAv8-32 Long-descriptor format memory region attributes
488 * (ARM Architecture Reference Manual section G5.7.4 [DDI0487E.a])
489 *
490 * MAIR0[ 7: 0] 0x00 Device-nGnRnE (aka Strongly-Ordered)
491 * MAIR0[15: 8] 0xaa Outer/Inner Write-Through, Read-Allocate No Write-Allocate
492 * MAIR0[23:16] 0xee Outer/Inner Write-Back, Read-Allocate No Write-Allocate
493 * MAIR0[31:24] 0xff Outer/Inner Write-Back, Read-Allocate Write-Allocate
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100494 */
Ard Biesheuveldeb4edb2020-07-07 12:07:07 +0200495#define MEMORY_ATTRIBUTES ((0x00 << (0 * 8)) | (0xaa << (1 * 8)) | \
496 (0xee << (2 * 8)) | (0xff << (3 * 8)))
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100497
498/* options available for data cache on each page */
499enum dcache_option {
Keerthy266c8c12016-10-29 15:19:10 +0530500 DCACHE_OFF = TTB_SECT | TTB_SECT_MAIR(0) | TTB_SECT_XN_MASK,
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100501 DCACHE_WRITETHROUGH = TTB_SECT | TTB_SECT_MAIR(1),
502 DCACHE_WRITEBACK = TTB_SECT | TTB_SECT_MAIR(2),
503 DCACHE_WRITEALLOC = TTB_SECT | TTB_SECT_MAIR(3),
504};
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530505#elif defined(CONFIG_CPU_V7A)
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500506/* Short-Descriptor Translation Table Level 1 Bits */
507#define TTB_SECT_NS_MASK (1 << 19)
508#define TTB_SECT_NG_MASK (1 << 17)
509#define TTB_SECT_S_MASK (1 << 16)
510/* Note: TTB AP bits are set elsewhere */
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100511#define TTB_SECT_AP (3 << 10)
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500512#define TTB_SECT_TEX(x) ((x & 0x7) << 12)
513#define TTB_SECT_DOMAIN(x) ((x & 0xf) << 5)
514#define TTB_SECT_XN_MASK (1 << 4)
515#define TTB_SECT_C_MASK (1 << 3)
516#define TTB_SECT_B_MASK (1 << 2)
Patrick Delaunayd1332612021-02-05 13:53:35 +0100517#define TTB_SECT (2 << 0)
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500518
Ard Biesheuveldeb4edb2020-07-07 12:07:07 +0200519/*
520 * Short-descriptor format memory region attributes, without TEX remap
521 * (ARM Architecture Reference Manual section G5.7.2 [DDI0487E.a])
522 *
523 * TEX[0] C B
524 * 0 0 0 Device-nGnRnE (aka Strongly-Ordered)
525 * 0 1 0 Outer/Inner Write-Through, Read-Allocate No Write-Allocate
526 * 0 1 1 Outer/Inner Write-Back, Read-Allocate No Write-Allocate
527 * 1 1 1 Outer/Inner Write-Back, Read-Allocate Write-Allocate
528 */
Simon Glassa4f20792012-10-17 13:24:53 +0000529enum dcache_option {
Marek Vasutd6e436e2015-12-29 19:44:02 +0100530 DCACHE_OFF = TTB_SECT_DOMAIN(0) | TTB_SECT_XN_MASK | TTB_SECT,
Patrick Delaunay061801e2021-02-05 13:53:34 +0100531 DCACHE_WRITETHROUGH = TTB_SECT_DOMAIN(0) | TTB_SECT | TTB_SECT_C_MASK,
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500532 DCACHE_WRITEBACK = DCACHE_WRITETHROUGH | TTB_SECT_B_MASK,
533 DCACHE_WRITEALLOC = DCACHE_WRITEBACK | TTB_SECT_TEX(1),
534};
535#else
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100536#define TTB_SECT_AP (3 << 10)
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500537/* options available for data cache on each page */
538enum dcache_option {
Simon Glassa4f20792012-10-17 13:24:53 +0000539 DCACHE_OFF = 0x12,
540 DCACHE_WRITETHROUGH = 0x1a,
541 DCACHE_WRITEBACK = 0x1e,
Marek Vasut79b90722014-09-15 02:44:36 +0200542 DCACHE_WRITEALLOC = 0x16,
Simon Glassa4f20792012-10-17 13:24:53 +0000543};
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500544#endif
Simon Glassa4f20792012-10-17 13:24:53 +0000545
546/* Size of an MMU section */
547enum {
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100548#ifdef CONFIG_ARMV7_LPAE
549 MMU_SECTION_SHIFT = 21, /* 2MB */
550#else
551 MMU_SECTION_SHIFT = 20, /* 1MB */
552#endif
Simon Glassa4f20792012-10-17 13:24:53 +0000553 MMU_SECTION_SIZE = 1 << MMU_SECTION_SHIFT,
554};
555
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530556#ifdef CONFIG_CPU_V7A
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500557/* TTBR0 bits */
558#define TTBR0_BASE_ADDR_MASK 0xFFFFC000
559#define TTBR0_RGN_NC (0 << 3)
560#define TTBR0_RGN_WBWA (1 << 3)
561#define TTBR0_RGN_WT (2 << 3)
562#define TTBR0_RGN_WB (3 << 3)
563/* TTBR0[6] is IRGN[0] and TTBR[0] is IRGN[1] */
564#define TTBR0_IRGN_NC (0 << 0 | 0 << 6)
565#define TTBR0_IRGN_WBWA (0 << 0 | 1 << 6)
566#define TTBR0_IRGN_WT (1 << 0 | 0 << 6)
567#define TTBR0_IRGN_WB (1 << 0 | 1 << 6)
568#endif
569
Simon Glassa4f20792012-10-17 13:24:53 +0000570/**
Marek Szyprowskidacbb3b2020-06-03 14:43:41 +0200571 * mmu_page_table_flush() - register an update to page tables
572 *
Simon Glassa4f20792012-10-17 13:24:53 +0000573 * Register an update to the page tables, and flush the TLB
574 *
Marek Szyprowskidacbb3b2020-06-03 14:43:41 +0200575 * @start: start address of update in page table
576 * @stop: stop address of update in page table
Simon Glassa4f20792012-10-17 13:24:53 +0000577 */
578void mmu_page_table_flush(unsigned long start, unsigned long stop);
579
Patrick Delaunay9c59d862019-07-22 14:19:20 +0200580#ifdef CONFIG_ARMV7_PSCI
581void psci_arch_cpu_entry(void);
Masahiro Yamadab047d1b2020-05-20 11:43:34 +0900582void psci_arch_init(void);
Patrick Delaunay9c59d862019-07-22 14:19:20 +0200583u32 psci_version(void);
584s32 psci_features(u32 function_id, u32 psci_fid);
585s32 psci_cpu_off(void);
586s32 psci_cpu_on(u32 function_id, u32 target_cpu, u32 pc,
587 u32 context_id);
588s32 psci_affinity_info(u32 function_id, u32 target_affinity,
589 u32 lowest_affinity_level);
590u32 psci_migrate_info_type(void);
591void psci_system_off(void);
592void psci_system_reset(void);
Patrick Delaunay9c59d862019-07-22 14:19:20 +0200593#endif
594
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200595#endif /* __ASSEMBLY__ */
596
597#define arch_align_stack(x) (x)
598
599#endif /* __KERNEL__ */
600
David Feng85fd5f12013-12-14 11:47:35 +0800601#endif /* CONFIG_ARM64 */
602
Patrice Chotard4d776d02023-10-27 16:42:56 +0200603#if defined(CONFIG_SYS_ARM_CACHE_WRITETHROUGH)
604#define DCACHE_DEFAULT_OPTION DCACHE_WRITETHROUGH
605#elif defined(CONFIG_SYS_ARM_CACHE_WRITEALLOC)
606#define DCACHE_DEFAULT_OPTION DCACHE_WRITEALLOC
607#elif defined(CONFIG_SYS_ARM_CACHE_WRITEBACK)
608#define DCACHE_DEFAULT_OPTION DCACHE_WRITEBACK
609#endif
610
Siva Durga Prasad Paladuguba2432a2015-06-26 18:05:07 +0530611#ifndef __ASSEMBLY__
612/**
Philipp Tomsichcd36d452017-10-10 16:21:11 +0200613 * save_boot_params() - Save boot parameters before starting reset sequence
614 *
615 * If you provide this function it will be called immediately U-Boot starts,
616 * both for SPL and U-Boot proper.
617 *
618 * All registers are unchanged from U-Boot entry. No registers need be
619 * preserved.
620 *
621 * This is not a normal C function. There is no stack. Return by branching to
622 * save_boot_params_ret.
623 *
624 * void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3);
625 */
626
627/**
628 * save_boot_params_ret() - Return from save_boot_params()
629 *
630 * If you provide save_boot_params(), then you should jump back to this
631 * function when done. Try to preserve all registers.
632 *
633 * If your implementation of save_boot_params() is in C then it is acceptable
634 * to simply call save_boot_params_ret() at the end of your function. Since
635 * there is no link register set up, you cannot just exit the function. U-Boot
636 * will return to the (initialised) value of lr, and likely crash/hang.
637 *
638 * If your implementation of save_boot_params() is in assembler then you
639 * should use 'b' or 'bx' to return to save_boot_params_ret.
640 */
641void save_boot_params_ret(void);
642
643/**
Marek Szyprowskif76fb512020-06-03 14:43:42 +0200644 * mmu_set_region_dcache_behaviour_phys() - set virt/phys mapping
645 *
646 * Change the virt/phys mapping and cache settings for a region.
647 *
648 * @virt: virtual start address of memory region to change
649 * @phys: physical address for the memory region to set
650 * @size: size of memory region to change
651 * @option: dcache option to select
652 */
653void mmu_set_region_dcache_behaviour_phys(phys_addr_t virt, phys_addr_t phys,
654 size_t size, enum dcache_option option);
655
656/**
Marek Szyprowskidacbb3b2020-06-03 14:43:41 +0200657 * mmu_set_region_dcache_behaviour() - set cache settings
658 *
Siva Durga Prasad Paladuguba2432a2015-06-26 18:05:07 +0530659 * Change the cache settings for a region.
660 *
Marek Szyprowskidacbb3b2020-06-03 14:43:41 +0200661 * @start: start address of memory region to change
662 * @size: size of memory region to change
663 * @option: dcache option to select
Siva Durga Prasad Paladuguba2432a2015-06-26 18:05:07 +0530664 */
665void mmu_set_region_dcache_behaviour(phys_addr_t start, size_t size,
666 enum dcache_option option);
667
668#endif /* __ASSEMBLY__ */
669
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200670#endif