blob: 574a0e775f3d6f8d120e6a7ed15a8a213e9274ab [file] [log] [blame]
Jean-Christophe PLAGNIOL-VILLARD677e62f2009-04-05 13:02:43 +02001#ifndef __ASM_ARM_SYSTEM_H
2#define __ASM_ARM_SYSTEM_H
3
Sergey Temerkhanova5b9fa32015-10-14 09:55:46 -07004#include <common.h>
5#include <linux/compiler.h>
Tom Rinia78cd862016-08-01 18:54:53 -04006#include <asm/barriers.h>
Sergey Temerkhanova5b9fa32015-10-14 09:55:46 -07007
David Feng0ae76532013-12-14 11:47:35 +08008#ifdef CONFIG_ARM64
9
10/*
11 * SCTLR_EL1/SCTLR_EL2/SCTLR_EL3 bits definitions
12 */
13#define CR_M (1 << 0) /* MMU enable */
14#define CR_A (1 << 1) /* Alignment abort enable */
15#define CR_C (1 << 2) /* Dcache enable */
16#define CR_SA (1 << 3) /* Stack Alignment Check Enable */
17#define CR_I (1 << 12) /* Icache enable */
18#define CR_WXN (1 << 19) /* Write Permision Imply XN */
19#define CR_EE (1 << 25) /* Exception (Big) Endian */
20
Alexander Graf7985cdf2016-03-04 01:09:54 +010021#ifndef __ASSEMBLY__
22
23u64 get_page_table_size(void);
24#define PGTABLE_SIZE get_page_table_size()
25
Siva Durga Prasad Paladugudad17fd2015-06-26 18:05:07 +053026/* 2MB granularity */
27#define MMU_SECTION_SHIFT 21
Stephen Warren88f965d2015-10-05 12:08:59 -060028#define MMU_SECTION_SIZE (1 << MMU_SECTION_SHIFT)
David Feng0ae76532013-12-14 11:47:35 +080029
Alexander Graf53eb45e2016-03-16 15:41:20 +010030/* These constants need to be synced to the MT_ types in asm/armv8/mmu.h */
Siva Durga Prasad Paladugudad17fd2015-06-26 18:05:07 +053031enum dcache_option {
Alexander Graf53eb45e2016-03-16 15:41:20 +010032 DCACHE_OFF = 0 << 2,
33 DCACHE_WRITETHROUGH = 3 << 2,
34 DCACHE_WRITEBACK = 4 << 2,
35 DCACHE_WRITEALLOC = 4 << 2,
Siva Durga Prasad Paladugudad17fd2015-06-26 18:05:07 +053036};
37
David Feng0ae76532013-12-14 11:47:35 +080038#define wfi() \
39 ({asm volatile( \
40 "wfi" : : : "memory"); \
41 })
42
43static inline unsigned int current_el(void)
44{
45 unsigned int el;
46 asm volatile("mrs %0, CurrentEL" : "=r" (el) : : "cc");
47 return el >> 2;
48}
49
50static inline unsigned int get_sctlr(void)
51{
52 unsigned int el, val;
53
54 el = current_el();
55 if (el == 1)
56 asm volatile("mrs %0, sctlr_el1" : "=r" (val) : : "cc");
57 else if (el == 2)
58 asm volatile("mrs %0, sctlr_el2" : "=r" (val) : : "cc");
59 else
60 asm volatile("mrs %0, sctlr_el3" : "=r" (val) : : "cc");
61
62 return val;
63}
64
65static inline void set_sctlr(unsigned int val)
66{
67 unsigned int el;
68
69 el = current_el();
70 if (el == 1)
71 asm volatile("msr sctlr_el1, %0" : : "r" (val) : "cc");
72 else if (el == 2)
73 asm volatile("msr sctlr_el2, %0" : : "r" (val) : "cc");
74 else
75 asm volatile("msr sctlr_el3, %0" : : "r" (val) : "cc");
76
77 asm volatile("isb");
78}
79
Sergey Temerkhanovba5648c2015-10-14 09:55:44 -070080static inline unsigned long read_mpidr(void)
81{
82 unsigned long val;
83
84 asm volatile("mrs %0, mpidr_el1" : "=r" (val));
85
86 return val;
87}
88
89#define BSP_COREID 0
90
David Feng0ae76532013-12-14 11:47:35 +080091void __asm_flush_dcache_all(void);
York Sun1e6ad552014-02-26 13:26:04 -080092void __asm_invalidate_dcache_all(void);
David Feng0ae76532013-12-14 11:47:35 +080093void __asm_flush_dcache_range(u64 start, u64 end);
94void __asm_invalidate_tlb_all(void);
95void __asm_invalidate_icache_all(void);
Stephen Warren1ab557a2016-10-19 15:18:46 -060096int __asm_invalidate_l3_dcache(void);
97int __asm_flush_l3_dcache(void);
98int __asm_invalidate_l3_icache(void);
Alexander Graf5e2ec772016-03-04 01:09:47 +010099void __asm_switch_ttbr(u64 new_ttbr);
David Feng0ae76532013-12-14 11:47:35 +0800100
101void armv8_switch_to_el2(void);
102void armv8_switch_to_el1(void);
103void gic_init(void);
104void gic_send_sgi(unsigned long sgino);
105void wait_for_wakeup(void);
Ian Campbell73169872015-04-21 07:18:36 +0200106void protect_secure_region(void);
David Feng0ae76532013-12-14 11:47:35 +0800107void smp_kick_all_cpus(void);
108
York Sun2f78eae2014-06-23 15:15:54 -0700109void flush_l3_cache(void);
110
Sergey Temerkhanova5b9fa32015-10-14 09:55:46 -0700111/*
Sergey Temerkhanova5b9fa32015-10-14 09:55:46 -0700112 *Issue a secure monitor call in accordance with ARM "SMC Calling convention",
113 * DEN0028A
114 *
115 * @args: input and output arguments
116 *
117 */
118void smc_call(struct pt_regs *args);
119
Alexander Graf51bfb5b2016-08-16 21:08:46 +0200120void __noreturn psci_system_reset(void);
Alexander Graf3ee655e2016-08-16 21:08:47 +0200121void __noreturn psci_system_off(void);
Beniamino Galvani5a07abb2016-05-08 08:30:14 +0200122
David Feng0ae76532013-12-14 11:47:35 +0800123#endif /* __ASSEMBLY__ */
124
125#else /* CONFIG_ARM64 */
126
Jean-Christophe PLAGNIOL-VILLARD677e62f2009-04-05 13:02:43 +0200127#ifdef __KERNEL__
128
129#define CPU_ARCH_UNKNOWN 0
130#define CPU_ARCH_ARMv3 1
131#define CPU_ARCH_ARMv4 2
132#define CPU_ARCH_ARMv4T 3
133#define CPU_ARCH_ARMv5 4
134#define CPU_ARCH_ARMv5T 5
135#define CPU_ARCH_ARMv5TE 6
136#define CPU_ARCH_ARMv5TEJ 7
137#define CPU_ARCH_ARMv6 8
138#define CPU_ARCH_ARMv7 9
139
140/*
141 * CR1 bits (CP#15 CR1)
142 */
143#define CR_M (1 << 0) /* MMU enable */
144#define CR_A (1 << 1) /* Alignment abort enable */
145#define CR_C (1 << 2) /* Dcache enable */
146#define CR_W (1 << 3) /* Write buffer enable */
147#define CR_P (1 << 4) /* 32-bit exception handler */
148#define CR_D (1 << 5) /* 32-bit data address range */
149#define CR_L (1 << 6) /* Implementation defined */
150#define CR_B (1 << 7) /* Big endian */
151#define CR_S (1 << 8) /* System MMU protection */
152#define CR_R (1 << 9) /* ROM MMU protection */
153#define CR_F (1 << 10) /* Implementation defined */
154#define CR_Z (1 << 11) /* Implementation defined */
155#define CR_I (1 << 12) /* Icache enable */
156#define CR_V (1 << 13) /* Vectors relocated to 0xffff0000 */
157#define CR_RR (1 << 14) /* Round Robin cache replacement */
158#define CR_L4 (1 << 15) /* LDR pc can set T bit */
159#define CR_DT (1 << 16)
160#define CR_IT (1 << 18)
161#define CR_ST (1 << 19)
162#define CR_FI (1 << 21) /* Fast interrupt (lower latency mode) */
163#define CR_U (1 << 22) /* Unaligned access operation */
164#define CR_XP (1 << 23) /* Extended page tables */
165#define CR_VE (1 << 24) /* Vectored interrupts */
166#define CR_EE (1 << 25) /* Exception (Big) Endian */
167#define CR_TRE (1 << 28) /* TEX remap enable */
168#define CR_AFE (1 << 29) /* Access flag enable */
169#define CR_TE (1 << 30) /* Thumb exception enable */
170
Alexander Grafd990f5c2016-03-16 15:41:21 +0100171#if defined(CONFIG_ARMV7_LPAE) && !defined(PGTABLE_SIZE)
172#define PGTABLE_SIZE (4096 * 5)
173#elif !defined(PGTABLE_SIZE)
David Feng0ae76532013-12-14 11:47:35 +0800174#define PGTABLE_SIZE (4096 * 4)
Sergey Temerkhanov94f7ff32015-10-14 09:55:45 -0700175#endif
David Feng0ae76532013-12-14 11:47:35 +0800176
Jean-Christophe PLAGNIOL-VILLARD677e62f2009-04-05 13:02:43 +0200177/*
178 * This is used to ensure the compiler did actually allocate the register we
179 * asked it for some inline assembly sequences. Apparently we can't trust
180 * the compiler from one version to another so a bit of paranoia won't hurt.
181 * This string is meant to be concatenated with the inline asm string and
182 * will cause compilation to stop on mismatch.
183 * (for details, see gcc PR 15089)
184 */
185#define __asmeq(x, y) ".ifnc " x "," y " ; .err ; .endif\n\t"
186
187#ifndef __ASSEMBLY__
188
Simon Glasse11c6c22015-02-07 10:47:28 -0700189/**
190 * save_boot_params() - Save boot parameters before starting reset sequence
191 *
192 * If you provide this function it will be called immediately U-Boot starts,
193 * both for SPL and U-Boot proper.
194 *
195 * All registers are unchanged from U-Boot entry. No registers need be
196 * preserved.
197 *
198 * This is not a normal C function. There is no stack. Return by branching to
199 * save_boot_params_ret.
200 *
201 * void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3);
202 */
203
Simon Glass55199122015-05-04 11:31:03 -0600204/**
205 * save_boot_params_ret() - Return from save_boot_params()
206 *
207 * If you provide save_boot_params(), then you should jump back to this
208 * function when done. Try to preserve all registers.
209 *
210 * If your implementation of save_boot_params() is in C then it is acceptable
211 * to simply call save_boot_params_ret() at the end of your function. Since
212 * there is no link register set up, you cannot just exit the function. U-Boot
213 * will return to the (initialised) value of lr, and likely crash/hang.
214 *
215 * If your implementation of save_boot_params() is in assembler then you
216 * should use 'b' or 'bx' to return to save_boot_params_ret.
217 */
218void save_boot_params_ret(void);
219
Keerthyd31d4a22016-09-14 10:43:32 +0530220#ifdef CONFIG_ARMV7_LPAE
221void switch_to_hypervisor_ret(void);
222#endif
223
Jean-Christophe PLAGNIOL-VILLARD677e62f2009-04-05 13:02:43 +0200224#define nop() __asm__ __volatile__("mov\tr0,r0\t@ nop\n\t");
225
Rob Herring2ff467c2012-12-02 17:06:21 +0000226#ifdef __ARM_ARCH_7A__
227#define wfi() __asm__ __volatile__ ("wfi" : : : "memory")
228#else
229#define wfi()
230#endif
231
Alexander Grafd990f5c2016-03-16 15:41:21 +0100232static inline unsigned long get_cpsr(void)
233{
234 unsigned long cpsr;
235
236 asm volatile("mrs %0, cpsr" : "=r"(cpsr): );
237 return cpsr;
238}
239
240static inline int is_hyp(void)
241{
242#ifdef CONFIG_ARMV7_LPAE
243 /* HYP mode requires LPAE ... */
244 return ((get_cpsr() & 0x1f) == 0x1a);
245#else
246 /* ... so without LPAE support we can optimize all hyp code away */
247 return 0;
248#endif
249}
250
Jean-Christophe PLAGNIOL-VILLARD677e62f2009-04-05 13:02:43 +0200251static inline unsigned int get_cr(void)
252{
253 unsigned int val;
Alexander Grafd990f5c2016-03-16 15:41:21 +0100254
255 if (is_hyp())
256 asm volatile("mrc p15, 4, %0, c1, c0, 0 @ get CR" : "=r" (val)
257 :
258 : "cc");
259 else
260 asm volatile("mrc p15, 0, %0, c1, c0, 0 @ get CR" : "=r" (val)
261 :
262 : "cc");
Jean-Christophe PLAGNIOL-VILLARD677e62f2009-04-05 13:02:43 +0200263 return val;
264}
265
266static inline void set_cr(unsigned int val)
267{
Alexander Grafd990f5c2016-03-16 15:41:21 +0100268 if (is_hyp())
269 asm volatile("mcr p15, 4, %0, c1, c0, 0 @ set CR" :
270 : "r" (val)
271 : "cc");
272 else
273 asm volatile("mcr p15, 0, %0, c1, c0, 0 @ set CR" :
274 : "r" (val)
275 : "cc");
Jean-Christophe PLAGNIOL-VILLARD677e62f2009-04-05 13:02:43 +0200276 isb();
277}
278
R Sricharande63ac22013-03-04 20:04:45 +0000279static inline unsigned int get_dacr(void)
280{
281 unsigned int val;
282 asm("mrc p15, 0, %0, c3, c0, 0 @ get DACR" : "=r" (val) : : "cc");
283 return val;
284}
285
286static inline void set_dacr(unsigned int val)
287{
288 asm volatile("mcr p15, 0, %0, c3, c0, 0 @ set DACR"
289 : : "r" (val) : "cc");
290 isb();
291}
292
Alexander Grafd990f5c2016-03-16 15:41:21 +0100293#ifdef CONFIG_ARMV7_LPAE
294/* Long-Descriptor Translation Table Level 1/2 Bits */
295#define TTB_SECT_XN_MASK (1ULL << 54)
296#define TTB_SECT_NG_MASK (1 << 11)
297#define TTB_SECT_AF (1 << 10)
298#define TTB_SECT_SH_MASK (3 << 8)
299#define TTB_SECT_NS_MASK (1 << 5)
300#define TTB_SECT_AP (1 << 6)
301/* Note: TTB AP bits are set elsewhere */
302#define TTB_SECT_MAIR(x) ((x & 0x7) << 2) /* Index into MAIR */
303#define TTB_SECT (1 << 0)
304#define TTB_PAGETABLE (3 << 0)
305
306/* TTBCR flags */
307#define TTBCR_EAE (1 << 31)
308#define TTBCR_T0SZ(x) ((x) << 0)
309#define TTBCR_T1SZ(x) ((x) << 16)
310#define TTBCR_USING_TTBR0 (TTBCR_T0SZ(0) | TTBCR_T1SZ(0))
311#define TTBCR_IRGN0_NC (0 << 8)
312#define TTBCR_IRGN0_WBWA (1 << 8)
313#define TTBCR_IRGN0_WT (2 << 8)
314#define TTBCR_IRGN0_WBNWA (3 << 8)
315#define TTBCR_IRGN0_MASK (3 << 8)
316#define TTBCR_ORGN0_NC (0 << 10)
317#define TTBCR_ORGN0_WBWA (1 << 10)
318#define TTBCR_ORGN0_WT (2 << 10)
319#define TTBCR_ORGN0_WBNWA (3 << 10)
320#define TTBCR_ORGN0_MASK (3 << 10)
321#define TTBCR_SHARED_NON (0 << 12)
322#define TTBCR_SHARED_OUTER (2 << 12)
323#define TTBCR_SHARED_INNER (3 << 12)
324#define TTBCR_EPD0 (0 << 7)
325
326/*
327 * Memory types
328 */
329#define MEMORY_ATTRIBUTES ((0x00 << (0 * 8)) | (0x88 << (1 * 8)) | \
330 (0xcc << (2 * 8)) | (0xff << (3 * 8)))
331
332/* options available for data cache on each page */
333enum dcache_option {
Keerthy06d43c82016-10-29 15:19:10 +0530334 DCACHE_OFF = TTB_SECT | TTB_SECT_MAIR(0) | TTB_SECT_XN_MASK,
Alexander Grafd990f5c2016-03-16 15:41:21 +0100335 DCACHE_WRITETHROUGH = TTB_SECT | TTB_SECT_MAIR(1),
336 DCACHE_WRITEBACK = TTB_SECT | TTB_SECT_MAIR(2),
337 DCACHE_WRITEALLOC = TTB_SECT | TTB_SECT_MAIR(3),
338};
339#elif defined(CONFIG_CPU_V7)
Bryan Brinsko97840b52015-03-24 11:25:12 -0500340/* Short-Descriptor Translation Table Level 1 Bits */
341#define TTB_SECT_NS_MASK (1 << 19)
342#define TTB_SECT_NG_MASK (1 << 17)
343#define TTB_SECT_S_MASK (1 << 16)
344/* Note: TTB AP bits are set elsewhere */
Alexander Grafd990f5c2016-03-16 15:41:21 +0100345#define TTB_SECT_AP (3 << 10)
Bryan Brinsko97840b52015-03-24 11:25:12 -0500346#define TTB_SECT_TEX(x) ((x & 0x7) << 12)
347#define TTB_SECT_DOMAIN(x) ((x & 0xf) << 5)
348#define TTB_SECT_XN_MASK (1 << 4)
349#define TTB_SECT_C_MASK (1 << 3)
350#define TTB_SECT_B_MASK (1 << 2)
351#define TTB_SECT (2 << 0)
352
353/* options available for data cache on each page */
354enum dcache_option {
Marek Vasut8890c2f2015-12-29 19:44:02 +0100355 DCACHE_OFF = TTB_SECT_DOMAIN(0) | TTB_SECT_XN_MASK | TTB_SECT,
Bryan Brinsko97840b52015-03-24 11:25:12 -0500356 DCACHE_WRITETHROUGH = DCACHE_OFF | TTB_SECT_C_MASK,
357 DCACHE_WRITEBACK = DCACHE_WRITETHROUGH | TTB_SECT_B_MASK,
358 DCACHE_WRITEALLOC = DCACHE_WRITEBACK | TTB_SECT_TEX(1),
359};
360#else
Alexander Grafd990f5c2016-03-16 15:41:21 +0100361#define TTB_SECT_AP (3 << 10)
Simon Glass0dde7f52012-10-17 13:24:53 +0000362/* options available for data cache on each page */
363enum dcache_option {
364 DCACHE_OFF = 0x12,
365 DCACHE_WRITETHROUGH = 0x1a,
366 DCACHE_WRITEBACK = 0x1e,
Marek Vasutff7e9702014-09-15 02:44:36 +0200367 DCACHE_WRITEALLOC = 0x16,
Simon Glass0dde7f52012-10-17 13:24:53 +0000368};
Bryan Brinsko97840b52015-03-24 11:25:12 -0500369#endif
Simon Glass0dde7f52012-10-17 13:24:53 +0000370
371/* Size of an MMU section */
372enum {
Alexander Grafd990f5c2016-03-16 15:41:21 +0100373#ifdef CONFIG_ARMV7_LPAE
374 MMU_SECTION_SHIFT = 21, /* 2MB */
375#else
376 MMU_SECTION_SHIFT = 20, /* 1MB */
377#endif
Simon Glass0dde7f52012-10-17 13:24:53 +0000378 MMU_SECTION_SIZE = 1 << MMU_SECTION_SHIFT,
379};
380
Marek Vasuta592e6f2015-12-29 19:44:01 +0100381#ifdef CONFIG_CPU_V7
Bryan Brinsko97840b52015-03-24 11:25:12 -0500382/* TTBR0 bits */
383#define TTBR0_BASE_ADDR_MASK 0xFFFFC000
384#define TTBR0_RGN_NC (0 << 3)
385#define TTBR0_RGN_WBWA (1 << 3)
386#define TTBR0_RGN_WT (2 << 3)
387#define TTBR0_RGN_WB (3 << 3)
388/* TTBR0[6] is IRGN[0] and TTBR[0] is IRGN[1] */
389#define TTBR0_IRGN_NC (0 << 0 | 0 << 6)
390#define TTBR0_IRGN_WBWA (0 << 0 | 1 << 6)
391#define TTBR0_IRGN_WT (1 << 0 | 0 << 6)
392#define TTBR0_IRGN_WB (1 << 0 | 1 << 6)
393#endif
394
Simon Glass0dde7f52012-10-17 13:24:53 +0000395/**
Simon Glass0dde7f52012-10-17 13:24:53 +0000396 * Register an update to the page tables, and flush the TLB
397 *
398 * \param start start address of update in page table
399 * \param stop stop address of update in page table
400 */
401void mmu_page_table_flush(unsigned long start, unsigned long stop);
402
Jean-Christophe PLAGNIOL-VILLARD677e62f2009-04-05 13:02:43 +0200403#endif /* __ASSEMBLY__ */
404
405#define arch_align_stack(x) (x)
406
407#endif /* __KERNEL__ */
408
David Feng0ae76532013-12-14 11:47:35 +0800409#endif /* CONFIG_ARM64 */
410
Siva Durga Prasad Paladugudad17fd2015-06-26 18:05:07 +0530411#ifndef __ASSEMBLY__
412/**
413 * Change the cache settings for a region.
414 *
415 * \param start start address of memory region to change
416 * \param size size of memory region to change
417 * \param option dcache option to select
418 */
419void mmu_set_region_dcache_behaviour(phys_addr_t start, size_t size,
420 enum dcache_option option);
421
Stephen Warren88f965d2015-10-05 12:08:59 -0600422#ifdef CONFIG_SYS_NONCACHED_MEMORY
423void noncached_init(void);
424phys_addr_t noncached_alloc(size_t size, size_t align);
425#endif /* CONFIG_SYS_NONCACHED_MEMORY */
426
Siva Durga Prasad Paladugudad17fd2015-06-26 18:05:07 +0530427#endif /* __ASSEMBLY__ */
428
Jean-Christophe PLAGNIOL-VILLARD677e62f2009-04-05 13:02:43 +0200429#endif