2 * linux/arch/arm/mm/proc-arm1026.S: MMU functions for ARM1026EJ-S
4 * Copyright (C) 2000 ARM Limited
5 * Copyright (C) 2000 Deep Blue Solutions Ltd.
6 * hacked for non-paged-MM by Hyok S. Choi, 2003.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 * These are the low level assembler for performing cache and TLB
15 * functions on the ARM1026EJ-S.
17 #include <linux/linkage.h>
18 #include <linux/init.h>
19 #include <asm/assembler.h>
20 #include <asm/asm-offsets.h>
21 #include <asm/hwcap.h>
22 #include <asm/pgtable-hwdef.h>
23 #include <asm/pgtable.h>
24 #include <asm/ptrace.h>
26 #include "proc-macros.S"
29 * This is the maximum size of an area which will be invalidated
30 * using the single invalidate entry instructions. Anything larger
31 * than this, and we go for the whole cache.
33 * This value should be chosen such that we choose the cheapest
36 #define MAX_AREA_SIZE 32768
39 * The size of one data cache line.
41 #define CACHE_DLINESIZE 32
44 * The number of data cache segments.
46 #define CACHE_DSEGMENTS 16
49 * The number of lines in a cache segment.
51 #define CACHE_DENTRIES 64
54 * This is the size at which it becomes more efficient to
55 * clean the whole cache, rather than using the individual
56 * cache line maintainence instructions.
58 #define CACHE_DLIMIT 32768
62 * cpu_arm1026_proc_init()
64 ENTRY(cpu_arm1026_proc_init)
68 * cpu_arm1026_proc_fin()
70 ENTRY(cpu_arm1026_proc_fin)
72 mov ip, #PSR_F_BIT | PSR_I_BIT | SVC_MODE
74 bl arm1026_flush_kern_cache_all
75 mrc p15, 0, r0, c1, c0, 0 @ ctrl register
76 bic r0, r0, #0x1000 @ ...i............
77 bic r0, r0, #0x000e @ ............wca.
78 mcr p15, 0, r0, c1, c0, 0 @ disable caches
82 * cpu_arm1026_reset(loc)
84 * Perform a soft reset of the system. Put the CPU into the
85 * same state as it would be if it had been reset, and branch
86 * to what would be the reset vector.
88 * loc: location to jump to for soft reset
91 ENTRY(cpu_arm1026_reset)
93 mcr p15, 0, ip, c7, c7, 0 @ invalidate I,D caches
94 mcr p15, 0, ip, c7, c10, 4 @ drain WB
96 mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
98 mrc p15, 0, ip, c1, c0, 0 @ ctrl register
99 bic ip, ip, #0x000f @ ............wcam
100 bic ip, ip, #0x1100 @ ...i...s........
101 mcr p15, 0, ip, c1, c0, 0 @ ctrl register
105 * cpu_arm1026_do_idle()
108 ENTRY(cpu_arm1026_do_idle)
109 mcr p15, 0, r0, c7, c0, 4 @ Wait for interrupt
112 /* ================================= CACHE ================================ */
116 * flush_user_cache_all()
118 * Invalidate all cache entries in a particular address
121 ENTRY(arm1026_flush_user_cache_all)
124 * flush_kern_cache_all()
126 * Clean and invalidate the entire cache.
128 ENTRY(arm1026_flush_kern_cache_all)
132 #ifndef CONFIG_CPU_DCACHE_DISABLE
133 1: mrc p15, 0, r15, c7, c14, 3 @ test, clean, invalidate
137 #ifndef CONFIG_CPU_ICACHE_DISABLE
138 mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache
140 mcrne p15, 0, ip, c7, c10, 4 @ drain WB
144 * flush_user_cache_range(start, end, flags)
146 * Invalidate a range of cache entries in the specified
149 * - start - start address (inclusive)
150 * - end - end address (exclusive)
151 * - flags - vm_flags for this space
153 ENTRY(arm1026_flush_user_cache_range)
155 sub r3, r1, r0 @ calculate total size
156 cmp r3, #CACHE_DLIMIT
157 bhs __flush_whole_cache
159 #ifndef CONFIG_CPU_DCACHE_DISABLE
160 1: mcr p15, 0, r0, c7, c14, 1 @ clean+invalidate D entry
161 add r0, r0, #CACHE_DLINESIZE
166 #ifndef CONFIG_CPU_ICACHE_DISABLE
167 mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache
169 mcrne p15, 0, ip, c7, c10, 4 @ drain WB
173 * coherent_kern_range(start, end)
175 * Ensure coherency between the Icache and the Dcache in the
176 * region described by start. If you have non-snooping
177 * Harvard caches, you need to implement this function.
179 * - start - virtual start address
180 * - end - virtual end address
182 ENTRY(arm1026_coherent_kern_range)
185 * coherent_user_range(start, end)
187 * Ensure coherency between the Icache and the Dcache in the
188 * region described by start. If you have non-snooping
189 * Harvard caches, you need to implement this function.
191 * - start - virtual start address
192 * - end - virtual end address
194 ENTRY(arm1026_coherent_user_range)
196 bic r0, r0, #CACHE_DLINESIZE - 1
198 #ifndef CONFIG_CPU_DCACHE_DISABLE
199 mcr p15, 0, r0, c7, c10, 1 @ clean D entry
201 #ifndef CONFIG_CPU_ICACHE_DISABLE
202 mcr p15, 0, r0, c7, c5, 1 @ invalidate I entry
204 add r0, r0, #CACHE_DLINESIZE
207 mcr p15, 0, ip, c7, c10, 4 @ drain WB
211 * flush_kern_dcache_area(void *addr, size_t size)
213 * Ensure no D cache aliasing occurs, either with itself or
216 * - addr - kernel address
217 * - size - region size
219 ENTRY(arm1026_flush_kern_dcache_area)
221 #ifndef CONFIG_CPU_DCACHE_DISABLE
223 1: mcr p15, 0, r0, c7, c14, 1 @ clean+invalidate D entry
224 add r0, r0, #CACHE_DLINESIZE
228 mcr p15, 0, ip, c7, c10, 4 @ drain WB
232 * dma_inv_range(start, end)
234 * Invalidate (discard) the specified virtual address range.
235 * May not write back any entries. If 'start' or 'end'
236 * are not cache line aligned, those lines must be written
239 * - start - virtual start address
240 * - end - virtual end address
244 ENTRY(arm1026_dma_inv_range)
246 #ifndef CONFIG_CPU_DCACHE_DISABLE
247 tst r0, #CACHE_DLINESIZE - 1
248 bic r0, r0, #CACHE_DLINESIZE - 1
249 mcrne p15, 0, r0, c7, c10, 1 @ clean D entry
250 tst r1, #CACHE_DLINESIZE - 1
251 mcrne p15, 0, r1, c7, c10, 1 @ clean D entry
252 1: mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry
253 add r0, r0, #CACHE_DLINESIZE
257 mcr p15, 0, ip, c7, c10, 4 @ drain WB
261 * dma_clean_range(start, end)
263 * Clean the specified virtual address range.
265 * - start - virtual start address
266 * - end - virtual end address
270 ENTRY(arm1026_dma_clean_range)
272 #ifndef CONFIG_CPU_DCACHE_DISABLE
273 bic r0, r0, #CACHE_DLINESIZE - 1
274 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
275 add r0, r0, #CACHE_DLINESIZE
279 mcr p15, 0, ip, c7, c10, 4 @ drain WB
283 * dma_flush_range(start, end)
285 * Clean and invalidate the specified virtual address range.
287 * - start - virtual start address
288 * - end - virtual end address
290 ENTRY(arm1026_dma_flush_range)
292 #ifndef CONFIG_CPU_DCACHE_DISABLE
293 bic r0, r0, #CACHE_DLINESIZE - 1
294 1: mcr p15, 0, r0, c7, c14, 1 @ clean+invalidate D entry
295 add r0, r0, #CACHE_DLINESIZE
299 mcr p15, 0, ip, c7, c10, 4 @ drain WB
302 ENTRY(arm1026_cache_fns)
303 .long arm1026_flush_kern_cache_all
304 .long arm1026_flush_user_cache_all
305 .long arm1026_flush_user_cache_range
306 .long arm1026_coherent_kern_range
307 .long arm1026_coherent_user_range
308 .long arm1026_flush_kern_dcache_area
309 .long arm1026_dma_inv_range
310 .long arm1026_dma_clean_range
311 .long arm1026_dma_flush_range
314 ENTRY(cpu_arm1026_dcache_clean_area)
315 #ifndef CONFIG_CPU_DCACHE_DISABLE
317 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
318 add r0, r0, #CACHE_DLINESIZE
319 subs r1, r1, #CACHE_DLINESIZE
324 /* =============================== PageTable ============================== */
327 * cpu_arm1026_switch_mm(pgd)
329 * Set the translation base pointer to be as described by pgd.
331 * pgd: new page tables
334 ENTRY(cpu_arm1026_switch_mm)
337 #ifndef CONFIG_CPU_DCACHE_DISABLE
338 1: mrc p15, 0, r15, c7, c14, 3 @ test, clean, invalidate
341 #ifndef CONFIG_CPU_ICACHE_DISABLE
342 mcr p15, 0, r1, c7, c5, 0 @ invalidate I cache
344 mcr p15, 0, r1, c7, c10, 4 @ drain WB
345 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
346 mcr p15, 0, r1, c8, c7, 0 @ invalidate I & D TLBs
351 * cpu_arm1026_set_pte_ext(ptep, pte, ext)
353 * Set a PTE and flush it out
356 ENTRY(cpu_arm1026_set_pte_ext)
360 #ifndef CONFIG_CPU_DCACHE_DISABLE
361 mcr p15, 0, r0, c7, c10, 1 @ clean D entry
363 #endif /* CONFIG_MMU */
369 .type __arm1026_setup, #function
372 mcr p15, 0, r0, c7, c7 @ invalidate I,D caches on v4
373 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer on v4
375 mcr p15, 0, r0, c8, c7 @ invalidate I,D TLBs on v4
376 mcr p15, 0, r4, c2, c0 @ load page table pointer
378 #ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
379 mov r0, #4 @ explicitly disable writeback
380 mcr p15, 7, r0, c15, c0, 0
382 adr r5, arm1026_crval
384 mrc p15, 0, r0, c1, c0 @ get control register v4
387 #ifdef CONFIG_CPU_CACHE_ROUND_ROBIN
388 orr r0, r0, #0x4000 @ .R.. .... .... ....
391 .size __arm1026_setup, . - __arm1026_setup
395 * .RVI ZFRS BLDP WCAM
396 * .011 1001 ..11 0101
399 .type arm1026_crval, #object
401 crval clear=0x00007f3f, mmuset=0x00003935, ucset=0x00001934
406 * Purpose : Function pointers used to access above functions - all calls
409 .type arm1026_processor_functions, #object
410 arm1026_processor_functions:
411 .word v5t_early_abort
413 .word cpu_arm1026_proc_init
414 .word cpu_arm1026_proc_fin
415 .word cpu_arm1026_reset
416 .word cpu_arm1026_do_idle
417 .word cpu_arm1026_dcache_clean_area
418 .word cpu_arm1026_switch_mm
419 .word cpu_arm1026_set_pte_ext
420 .size arm1026_processor_functions, . - arm1026_processor_functions
424 .type cpu_arch_name, #object
427 .size cpu_arch_name, . - cpu_arch_name
429 .type cpu_elf_name, #object
432 .size cpu_elf_name, . - cpu_elf_name
435 .type cpu_arm1026_name, #object
438 .size cpu_arm1026_name, . - cpu_arm1026_name
442 .section ".proc.info.init", #alloc, #execinstr
444 .type __arm1026_proc_info,#object
446 .long 0x4106a260 @ ARM 1026EJ-S (v5TEJ)
448 .long PMD_TYPE_SECT | \
450 PMD_SECT_AP_WRITE | \
452 .long PMD_TYPE_SECT | \
454 PMD_SECT_AP_WRITE | \
459 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP|HWCAP_JAVA
460 .long cpu_arm1026_name
461 .long arm1026_processor_functions
464 .long arm1026_cache_fns
465 .size __arm1026_proc_info, . - __arm1026_proc_info