blob: 2bdc0bec824e1c81dc358f1cf1955717e37cb0db [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 <common.h>
5#include <linux/compiler.h>
6
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
David Feng85fd5f12013-12-14 11:47:35 +080020#ifndef __ASSEMBLY__
21
Alexander Grafe317fe82016-03-04 01:09:47 +010022u64 get_page_table_size(void);
23#define PGTABLE_SIZE get_page_table_size()
Alexander Grafce0a64e2016-03-04 01:09:54 +010024
25/* 2MB granularity */
26#define MMU_SECTION_SHIFT 21
27#define MMU_SECTION_SIZE (1 << MMU_SECTION_SHIFT)
Alexander Grafe317fe82016-03-04 01:09:47 +010028
Alexander Graf188c8ff2016-03-16 15:41:20 +010029/* These constants need to be synced to the MT_ types in asm/armv8/mmu.h */
Siva Durga Prasad Paladuguba2432a2015-06-26 18:05:07 +053030enum dcache_option {
Alexander Graf188c8ff2016-03-16 15:41:20 +010031 DCACHE_OFF = 0 << 2,
32 DCACHE_WRITETHROUGH = 3 << 2,
33 DCACHE_WRITEBACK = 4 << 2,
34 DCACHE_WRITEALLOC = 4 << 2,
Siva Durga Prasad Paladuguba2432a2015-06-26 18:05:07 +053035};
36
David Feng85fd5f12013-12-14 11:47:35 +080037#define isb() \
38 ({asm volatile( \
39 "isb" : : : "memory"); \
40 })
41
42#define wfi() \
43 ({asm volatile( \
44 "wfi" : : : "memory"); \
45 })
46
47static inline unsigned int current_el(void)
48{
49 unsigned int el;
50 asm volatile("mrs %0, CurrentEL" : "=r" (el) : : "cc");
51 return el >> 2;
52}
53
54static inline unsigned int get_sctlr(void)
55{
56 unsigned int el, val;
57
58 el = current_el();
59 if (el == 1)
60 asm volatile("mrs %0, sctlr_el1" : "=r" (val) : : "cc");
61 else if (el == 2)
62 asm volatile("mrs %0, sctlr_el2" : "=r" (val) : : "cc");
63 else
64 asm volatile("mrs %0, sctlr_el3" : "=r" (val) : : "cc");
65
66 return val;
67}
68
69static inline void set_sctlr(unsigned int val)
70{
71 unsigned int el;
72
73 el = current_el();
74 if (el == 1)
75 asm volatile("msr sctlr_el1, %0" : : "r" (val) : "cc");
76 else if (el == 2)
77 asm volatile("msr sctlr_el2, %0" : : "r" (val) : "cc");
78 else
79 asm volatile("msr sctlr_el3, %0" : : "r" (val) : "cc");
80
81 asm volatile("isb");
82}
83
Sergey Temerkhanov6774e4e2015-10-14 09:55:44 -070084static inline unsigned long read_mpidr(void)
85{
86 unsigned long val;
87
88 asm volatile("mrs %0, mpidr_el1" : "=r" (val));
89
90 return val;
91}
92
93#define BSP_COREID 0
94
David Feng85fd5f12013-12-14 11:47:35 +080095void __asm_flush_dcache_all(void);
York Sunef042012014-02-26 13:26:04 -080096void __asm_invalidate_dcache_all(void);
David Feng85fd5f12013-12-14 11:47:35 +080097void __asm_flush_dcache_range(u64 start, u64 end);
98void __asm_invalidate_tlb_all(void);
99void __asm_invalidate_icache_all(void);
York Sun1ce575f2015-01-06 13:18:42 -0800100int __asm_flush_l3_cache(void);
Alexander Grafe317fe82016-03-04 01:09:47 +0100101void __asm_switch_ttbr(u64 new_ttbr);
David Feng85fd5f12013-12-14 11:47:35 +0800102
103void armv8_switch_to_el2(void);
104void armv8_switch_to_el1(void);
105void gic_init(void);
106void gic_send_sgi(unsigned long sgino);
107void wait_for_wakeup(void);
Ian Campbelld07e7b02015-04-21 07:18:36 +0200108void protect_secure_region(void);
David Feng85fd5f12013-12-14 11:47:35 +0800109void smp_kick_all_cpus(void);
110
York Suna84cd722014-06-23 15:15:54 -0700111void flush_l3_cache(void);
112
Sergey Temerkhanov064949c2015-10-14 09:55:46 -0700113/*
114 *Issue a hypervisor call in accordance with ARM "SMC Calling convention",
115 * DEN0028A
116 *
117 * @args: input and output arguments
118 *
119 */
120void hvc_call(struct pt_regs *args);
121
122/*
123 *Issue a secure monitor call in accordance with ARM "SMC Calling convention",
124 * DEN0028A
125 *
126 * @args: input and output arguments
127 *
128 */
129void smc_call(struct pt_regs *args);
130
Beniamino Galvanib8845e12016-05-08 08:30:14 +0200131void __noreturn psci_system_reset(bool smc);
132
David Feng85fd5f12013-12-14 11:47:35 +0800133#endif /* __ASSEMBLY__ */
134
135#else /* CONFIG_ARM64 */
136
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200137#ifdef __KERNEL__
138
139#define CPU_ARCH_UNKNOWN 0
140#define CPU_ARCH_ARMv3 1
141#define CPU_ARCH_ARMv4 2
142#define CPU_ARCH_ARMv4T 3
143#define CPU_ARCH_ARMv5 4
144#define CPU_ARCH_ARMv5T 5
145#define CPU_ARCH_ARMv5TE 6
146#define CPU_ARCH_ARMv5TEJ 7
147#define CPU_ARCH_ARMv6 8
148#define CPU_ARCH_ARMv7 9
149
150/*
151 * CR1 bits (CP#15 CR1)
152 */
153#define CR_M (1 << 0) /* MMU enable */
154#define CR_A (1 << 1) /* Alignment abort enable */
155#define CR_C (1 << 2) /* Dcache enable */
156#define CR_W (1 << 3) /* Write buffer enable */
157#define CR_P (1 << 4) /* 32-bit exception handler */
158#define CR_D (1 << 5) /* 32-bit data address range */
159#define CR_L (1 << 6) /* Implementation defined */
160#define CR_B (1 << 7) /* Big endian */
161#define CR_S (1 << 8) /* System MMU protection */
162#define CR_R (1 << 9) /* ROM MMU protection */
163#define CR_F (1 << 10) /* Implementation defined */
164#define CR_Z (1 << 11) /* Implementation defined */
165#define CR_I (1 << 12) /* Icache enable */
166#define CR_V (1 << 13) /* Vectors relocated to 0xffff0000 */
167#define CR_RR (1 << 14) /* Round Robin cache replacement */
168#define CR_L4 (1 << 15) /* LDR pc can set T bit */
169#define CR_DT (1 << 16)
170#define CR_IT (1 << 18)
171#define CR_ST (1 << 19)
172#define CR_FI (1 << 21) /* Fast interrupt (lower latency mode) */
173#define CR_U (1 << 22) /* Unaligned access operation */
174#define CR_XP (1 << 23) /* Extended page tables */
175#define CR_VE (1 << 24) /* Vectored interrupts */
176#define CR_EE (1 << 25) /* Exception (Big) Endian */
177#define CR_TRE (1 << 28) /* TEX remap enable */
178#define CR_AFE (1 << 29) /* Access flag enable */
179#define CR_TE (1 << 30) /* Thumb exception enable */
180
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100181#if defined(CONFIG_ARMV7_LPAE) && !defined(PGTABLE_SIZE)
182#define PGTABLE_SIZE (4096 * 5)
183#elif !defined(PGTABLE_SIZE)
David Feng85fd5f12013-12-14 11:47:35 +0800184#define PGTABLE_SIZE (4096 * 4)
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -0700185#endif
David Feng85fd5f12013-12-14 11:47:35 +0800186
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200187/*
188 * This is used to ensure the compiler did actually allocate the register we
189 * asked it for some inline assembly sequences. Apparently we can't trust
190 * the compiler from one version to another so a bit of paranoia won't hurt.
191 * This string is meant to be concatenated with the inline asm string and
192 * will cause compilation to stop on mismatch.
193 * (for details, see gcc PR 15089)
194 */
195#define __asmeq(x, y) ".ifnc " x "," y " ; .err ; .endif\n\t"
196
197#ifndef __ASSEMBLY__
198
Simon Glass47197fe2015-02-07 10:47:28 -0700199/**
200 * save_boot_params() - Save boot parameters before starting reset sequence
201 *
202 * If you provide this function it will be called immediately U-Boot starts,
203 * both for SPL and U-Boot proper.
204 *
205 * All registers are unchanged from U-Boot entry. No registers need be
206 * preserved.
207 *
208 * This is not a normal C function. There is no stack. Return by branching to
209 * save_boot_params_ret.
210 *
211 * void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3);
212 */
213
Simon Glass32db57d2015-05-04 11:31:03 -0600214/**
215 * save_boot_params_ret() - Return from save_boot_params()
216 *
217 * If you provide save_boot_params(), then you should jump back to this
218 * function when done. Try to preserve all registers.
219 *
220 * If your implementation of save_boot_params() is in C then it is acceptable
221 * to simply call save_boot_params_ret() at the end of your function. Since
222 * there is no link register set up, you cannot just exit the function. U-Boot
223 * will return to the (initialised) value of lr, and likely crash/hang.
224 *
225 * If your implementation of save_boot_params() is in assembler then you
226 * should use 'b' or 'bx' to return to save_boot_params_ret.
227 */
228void save_boot_params_ret(void);
229
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200230#define isb() __asm__ __volatile__ ("" : : : "memory")
231
232#define nop() __asm__ __volatile__("mov\tr0,r0\t@ nop\n\t");
233
Rob Herringaa470302012-12-02 17:06:21 +0000234#ifdef __ARM_ARCH_7A__
235#define wfi() __asm__ __volatile__ ("wfi" : : : "memory")
236#else
237#define wfi()
238#endif
239
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100240static inline unsigned long get_cpsr(void)
241{
242 unsigned long cpsr;
243
244 asm volatile("mrs %0, cpsr" : "=r"(cpsr): );
245 return cpsr;
246}
247
248static inline int is_hyp(void)
249{
250#ifdef CONFIG_ARMV7_LPAE
251 /* HYP mode requires LPAE ... */
252 return ((get_cpsr() & 0x1f) == 0x1a);
253#else
254 /* ... so without LPAE support we can optimize all hyp code away */
255 return 0;
256#endif
257}
258
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200259static inline unsigned int get_cr(void)
260{
261 unsigned int val;
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100262
263 if (is_hyp())
264 asm volatile("mrc p15, 4, %0, c1, c0, 0 @ get CR" : "=r" (val)
265 :
266 : "cc");
267 else
268 asm volatile("mrc p15, 0, %0, c1, c0, 0 @ get CR" : "=r" (val)
269 :
270 : "cc");
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200271 return val;
272}
273
274static inline void set_cr(unsigned int val)
275{
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100276 if (is_hyp())
277 asm volatile("mcr p15, 4, %0, c1, c0, 0 @ set CR" :
278 : "r" (val)
279 : "cc");
280 else
281 asm volatile("mcr p15, 0, %0, c1, c0, 0 @ set CR" :
282 : "r" (val)
283 : "cc");
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200284 isb();
285}
286
R Sricharan06396c12013-03-04 20:04:45 +0000287static inline unsigned int get_dacr(void)
288{
289 unsigned int val;
290 asm("mrc p15, 0, %0, c3, c0, 0 @ get DACR" : "=r" (val) : : "cc");
291 return val;
292}
293
294static inline void set_dacr(unsigned int val)
295{
296 asm volatile("mcr p15, 0, %0, c3, c0, 0 @ set DACR"
297 : : "r" (val) : "cc");
298 isb();
299}
300
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100301#ifdef CONFIG_ARMV7_LPAE
302/* Long-Descriptor Translation Table Level 1/2 Bits */
303#define TTB_SECT_XN_MASK (1ULL << 54)
304#define TTB_SECT_NG_MASK (1 << 11)
305#define TTB_SECT_AF (1 << 10)
306#define TTB_SECT_SH_MASK (3 << 8)
307#define TTB_SECT_NS_MASK (1 << 5)
308#define TTB_SECT_AP (1 << 6)
309/* Note: TTB AP bits are set elsewhere */
310#define TTB_SECT_MAIR(x) ((x & 0x7) << 2) /* Index into MAIR */
311#define TTB_SECT (1 << 0)
312#define TTB_PAGETABLE (3 << 0)
313
314/* TTBCR flags */
315#define TTBCR_EAE (1 << 31)
316#define TTBCR_T0SZ(x) ((x) << 0)
317#define TTBCR_T1SZ(x) ((x) << 16)
318#define TTBCR_USING_TTBR0 (TTBCR_T0SZ(0) | TTBCR_T1SZ(0))
319#define TTBCR_IRGN0_NC (0 << 8)
320#define TTBCR_IRGN0_WBWA (1 << 8)
321#define TTBCR_IRGN0_WT (2 << 8)
322#define TTBCR_IRGN0_WBNWA (3 << 8)
323#define TTBCR_IRGN0_MASK (3 << 8)
324#define TTBCR_ORGN0_NC (0 << 10)
325#define TTBCR_ORGN0_WBWA (1 << 10)
326#define TTBCR_ORGN0_WT (2 << 10)
327#define TTBCR_ORGN0_WBNWA (3 << 10)
328#define TTBCR_ORGN0_MASK (3 << 10)
329#define TTBCR_SHARED_NON (0 << 12)
330#define TTBCR_SHARED_OUTER (2 << 12)
331#define TTBCR_SHARED_INNER (3 << 12)
332#define TTBCR_EPD0 (0 << 7)
333
334/*
335 * Memory types
336 */
337#define MEMORY_ATTRIBUTES ((0x00 << (0 * 8)) | (0x88 << (1 * 8)) | \
338 (0xcc << (2 * 8)) | (0xff << (3 * 8)))
339
340/* options available for data cache on each page */
341enum dcache_option {
342 DCACHE_OFF = TTB_SECT | TTB_SECT_MAIR(0),
343 DCACHE_WRITETHROUGH = TTB_SECT | TTB_SECT_MAIR(1),
344 DCACHE_WRITEBACK = TTB_SECT | TTB_SECT_MAIR(2),
345 DCACHE_WRITEALLOC = TTB_SECT | TTB_SECT_MAIR(3),
346};
347#elif defined(CONFIG_CPU_V7)
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500348/* Short-Descriptor Translation Table Level 1 Bits */
349#define TTB_SECT_NS_MASK (1 << 19)
350#define TTB_SECT_NG_MASK (1 << 17)
351#define TTB_SECT_S_MASK (1 << 16)
352/* Note: TTB AP bits are set elsewhere */
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100353#define TTB_SECT_AP (3 << 10)
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500354#define TTB_SECT_TEX(x) ((x & 0x7) << 12)
355#define TTB_SECT_DOMAIN(x) ((x & 0xf) << 5)
356#define TTB_SECT_XN_MASK (1 << 4)
357#define TTB_SECT_C_MASK (1 << 3)
358#define TTB_SECT_B_MASK (1 << 2)
359#define TTB_SECT (2 << 0)
360
Simon Glassa4f20792012-10-17 13:24:53 +0000361/* options available for data cache on each page */
362enum dcache_option {
Marek Vasutd6e436e2015-12-29 19:44:02 +0100363 DCACHE_OFF = TTB_SECT_DOMAIN(0) | TTB_SECT_XN_MASK | TTB_SECT,
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500364 DCACHE_WRITETHROUGH = DCACHE_OFF | TTB_SECT_C_MASK,
365 DCACHE_WRITEBACK = DCACHE_WRITETHROUGH | TTB_SECT_B_MASK,
366 DCACHE_WRITEALLOC = DCACHE_WRITEBACK | TTB_SECT_TEX(1),
367};
368#else
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100369#define TTB_SECT_AP (3 << 10)
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500370/* options available for data cache on each page */
371enum dcache_option {
Simon Glassa4f20792012-10-17 13:24:53 +0000372 DCACHE_OFF = 0x12,
373 DCACHE_WRITETHROUGH = 0x1a,
374 DCACHE_WRITEBACK = 0x1e,
Marek Vasut79b90722014-09-15 02:44:36 +0200375 DCACHE_WRITEALLOC = 0x16,
Simon Glassa4f20792012-10-17 13:24:53 +0000376};
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500377#endif
Simon Glassa4f20792012-10-17 13:24:53 +0000378
379/* Size of an MMU section */
380enum {
Alexander Grafae6c2bc2016-03-16 15:41:21 +0100381#ifdef CONFIG_ARMV7_LPAE
382 MMU_SECTION_SHIFT = 21, /* 2MB */
383#else
384 MMU_SECTION_SHIFT = 20, /* 1MB */
385#endif
Simon Glassa4f20792012-10-17 13:24:53 +0000386 MMU_SECTION_SIZE = 1 << MMU_SECTION_SHIFT,
387};
388
Marek Vasutfbf49c02015-12-29 19:44:01 +0100389#ifdef CONFIG_CPU_V7
Bryan Brinsko29d23ec2015-03-24 11:25:12 -0500390/* TTBR0 bits */
391#define TTBR0_BASE_ADDR_MASK 0xFFFFC000
392#define TTBR0_RGN_NC (0 << 3)
393#define TTBR0_RGN_WBWA (1 << 3)
394#define TTBR0_RGN_WT (2 << 3)
395#define TTBR0_RGN_WB (3 << 3)
396/* TTBR0[6] is IRGN[0] and TTBR[0] is IRGN[1] */
397#define TTBR0_IRGN_NC (0 << 0 | 0 << 6)
398#define TTBR0_IRGN_WBWA (0 << 0 | 1 << 6)
399#define TTBR0_IRGN_WT (1 << 0 | 0 << 6)
400#define TTBR0_IRGN_WB (1 << 0 | 1 << 6)
401#endif
402
Simon Glassa4f20792012-10-17 13:24:53 +0000403/**
Simon Glassa4f20792012-10-17 13:24:53 +0000404 * Register an update to the page tables, and flush the TLB
405 *
406 * \param start start address of update in page table
407 * \param stop stop address of update in page table
408 */
409void mmu_page_table_flush(unsigned long start, unsigned long stop);
410
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200411#endif /* __ASSEMBLY__ */
412
413#define arch_align_stack(x) (x)
414
415#endif /* __KERNEL__ */
416
David Feng85fd5f12013-12-14 11:47:35 +0800417#endif /* CONFIG_ARM64 */
418
Siva Durga Prasad Paladuguba2432a2015-06-26 18:05:07 +0530419#ifndef __ASSEMBLY__
420/**
421 * Change the cache settings for a region.
422 *
423 * \param start start address of memory region to change
424 * \param size size of memory region to change
425 * \param option dcache option to select
426 */
427void mmu_set_region_dcache_behaviour(phys_addr_t start, size_t size,
428 enum dcache_option option);
429
Stephen Warrenfbdcd222015-10-05 12:08:59 -0600430#ifdef CONFIG_SYS_NONCACHED_MEMORY
431void noncached_init(void);
432phys_addr_t noncached_alloc(size_t size, size_t align);
433#endif /* CONFIG_SYS_NONCACHED_MEMORY */
434
Siva Durga Prasad Paladuguba2432a2015-06-26 18:05:07 +0530435#endif /* __ASSEMBLY__ */
436
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +0200437#endif