1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * linux/arch/arm/mm/proc-arm920.S: MMU functions for ARM920
5 * Copyright (C) 1999,2000 ARM Limited
6 * Copyright (C) 2000 Deep Blue Solutions Ltd.
7 * hacked for non-paged-MM by Hyok S. Choi, 2003.
9 * These are the low level assembler for performing cache and TLB
10 * functions on the arm920.
12 * CONFIG_CPU_ARM920_CPU_IDLE -> nohlt
14 #include <linux/linkage.h>
15 #include <linux/init.h>
16 #include <linux/pgtable.h>
17 #include <asm/assembler.h>
18 #include <asm/hwcap.h>
19 #include <asm/pgtable-hwdef.h>
21 #include <asm/ptrace.h>
22 #include "proc-macros.S"
25 * The size of one data cache line.
27 #define CACHE_DLINESIZE 32
30 * The number of data cache segments.
32 #define CACHE_DSEGMENTS 8
35 * The number of lines in a cache segment.
37 #define CACHE_DENTRIES 64
40 * This is the size at which it becomes more efficient to
41 * clean the whole cache, rather than using the individual
42 * cache line maintenance instructions.
44 #define CACHE_DLIMIT 65536
49 * cpu_arm920_proc_init()
51 ENTRY(cpu_arm920_proc_init)
55 * cpu_arm920_proc_fin()
57 ENTRY(cpu_arm920_proc_fin)
58 mrc p15, 0, r0, c1, c0, 0 @ ctrl register
59 bic r0, r0, #0x1000 @ ...i............
60 bic r0, r0, #0x000e @ ............wca.
61 mcr p15, 0, r0, c1, c0, 0 @ disable caches
65 * cpu_arm920_reset(loc)
67 * Perform a soft reset of the system. Put the CPU into the
68 * same state as it would be if it had been reset, and branch
69 * to what would be the reset vector.
71 * loc: location to jump to for soft reset
74 .pushsection .idmap.text, "ax"
75 ENTRY(cpu_arm920_reset)
77 mcr p15, 0, ip, c7, c7, 0 @ invalidate I,D caches
78 mcr p15, 0, ip, c7, c10, 4 @ drain WB
80 mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
82 mrc p15, 0, ip, c1, c0, 0 @ ctrl register
83 bic ip, ip, #0x000f @ ............wcam
84 bic ip, ip, #0x1100 @ ...i...s........
85 mcr p15, 0, ip, c1, c0, 0 @ ctrl register
87 ENDPROC(cpu_arm920_reset)
91 * cpu_arm920_do_idle()
94 ENTRY(cpu_arm920_do_idle)
95 mcr p15, 0, r0, c7, c0, 4 @ Wait for interrupt
99 #ifndef CONFIG_CPU_DCACHE_WRITETHROUGH
104 * Unconditionally clean and invalidate the entire icache.
106 ENTRY(arm920_flush_icache_all)
108 mcr p15, 0, r0, c7, c5, 0 @ invalidate I cache
110 ENDPROC(arm920_flush_icache_all)
113 * flush_user_cache_all()
115 * Invalidate all cache entries in a particular address
118 ENTRY(arm920_flush_user_cache_all)
122 * flush_kern_cache_all()
124 * Clean and invalidate the entire cache.
126 ENTRY(arm920_flush_kern_cache_all)
130 mov r1, #(CACHE_DSEGMENTS - 1) << 5 @ 8 segments
131 1: orr r3, r1, #(CACHE_DENTRIES - 1) << 26 @ 64 entries
132 2: mcr p15, 0, r3, c7, c14, 2 @ clean+invalidate D index
133 subs r3, r3, #1 << 26
134 bcs 2b @ entries 63 to 0
136 bcs 1b @ segments 7 to 0
138 mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache
139 mcrne p15, 0, ip, c7, c10, 4 @ drain WB
143 * flush_user_cache_range(start, end, flags)
145 * Invalidate a range of cache entries in the specified
148 * - start - start address (inclusive)
149 * - end - end address (exclusive)
150 * - flags - vm_flags for address space
152 ENTRY(arm920_flush_user_cache_range)
154 sub r3, r1, r0 @ calculate total size
155 cmp r3, #CACHE_DLIMIT
156 bhs __flush_whole_cache
158 1: mcr p15, 0, r0, c7, c14, 1 @ clean+invalidate D entry
160 mcrne p15, 0, r0, c7, c5, 1 @ invalidate I entry
161 add r0, r0, #CACHE_DLINESIZE
165 mcrne p15, 0, ip, c7, c10, 4 @ drain WB
169 * coherent_kern_range(start, end)
171 * Ensure coherency between the Icache and the Dcache in the
172 * region described by start, end. If you have non-snooping
173 * Harvard caches, you need to implement this function.
175 * - start - virtual start address
176 * - end - virtual end address
178 ENTRY(arm920_coherent_kern_range)
182 * coherent_user_range(start, end)
184 * Ensure coherency between the Icache and the Dcache in the
185 * region described by start, end. If you have non-snooping
186 * Harvard caches, you need to implement this function.
188 * - start - virtual start address
189 * - end - virtual end address
191 ENTRY(arm920_coherent_user_range)
192 bic r0, r0, #CACHE_DLINESIZE - 1
193 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
194 mcr p15, 0, r0, c7, c5, 1 @ invalidate I entry
195 add r0, r0, #CACHE_DLINESIZE
198 mcr p15, 0, r0, c7, c10, 4 @ drain WB
203 * flush_kern_dcache_area(void *addr, size_t size)
205 * Ensure no D cache aliasing occurs, either with itself or
208 * - addr - kernel address
209 * - size - region size
211 ENTRY(arm920_flush_kern_dcache_area)
213 1: mcr p15, 0, r0, c7, c14, 1 @ clean+invalidate D entry
214 add r0, r0, #CACHE_DLINESIZE
218 mcr p15, 0, r0, c7, c5, 0 @ invalidate I cache
219 mcr p15, 0, r0, c7, c10, 4 @ drain WB
223 * dma_inv_range(start, end)
225 * Invalidate (discard) the specified virtual address range.
226 * May not write back any entries. If 'start' or 'end'
227 * are not cache line aligned, those lines must be written
230 * - start - virtual start address
231 * - end - virtual end address
235 arm920_dma_inv_range:
236 tst r0, #CACHE_DLINESIZE - 1
237 bic r0, r0, #CACHE_DLINESIZE - 1
238 mcrne p15, 0, r0, c7, c10, 1 @ clean D entry
239 tst r1, #CACHE_DLINESIZE - 1
240 mcrne p15, 0, r1, c7, c10, 1 @ clean D entry
241 1: mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry
242 add r0, r0, #CACHE_DLINESIZE
245 mcr p15, 0, r0, c7, c10, 4 @ drain WB
249 * dma_clean_range(start, end)
251 * Clean the specified virtual address range.
253 * - start - virtual start address
254 * - end - virtual end address
258 arm920_dma_clean_range:
259 bic r0, r0, #CACHE_DLINESIZE - 1
260 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
261 add r0, r0, #CACHE_DLINESIZE
264 mcr p15, 0, r0, c7, c10, 4 @ drain WB
268 * dma_flush_range(start, end)
270 * Clean and invalidate the specified virtual address range.
272 * - start - virtual start address
273 * - end - virtual end address
275 ENTRY(arm920_dma_flush_range)
276 bic r0, r0, #CACHE_DLINESIZE - 1
277 1: mcr p15, 0, r0, c7, c14, 1 @ clean+invalidate D entry
278 add r0, r0, #CACHE_DLINESIZE
281 mcr p15, 0, r0, c7, c10, 4 @ drain WB
285 * dma_map_area(start, size, dir)
286 * - start - kernel virtual start address
287 * - size - size of region
288 * - dir - DMA direction
290 ENTRY(arm920_dma_map_area)
292 cmp r2, #DMA_TO_DEVICE
293 beq arm920_dma_clean_range
294 bcs arm920_dma_inv_range
295 b arm920_dma_flush_range
296 ENDPROC(arm920_dma_map_area)
299 * dma_unmap_area(start, size, dir)
300 * - start - kernel virtual start address
301 * - size - size of region
302 * - dir - DMA direction
304 ENTRY(arm920_dma_unmap_area)
306 ENDPROC(arm920_dma_unmap_area)
308 .globl arm920_flush_kern_cache_louis
309 .equ arm920_flush_kern_cache_louis, arm920_flush_kern_cache_all
311 @ define struct cpu_cache_fns (see <asm/cacheflush.h> and proc-macros.S)
312 define_cache_functions arm920
316 ENTRY(cpu_arm920_dcache_clean_area)
317 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
318 add r0, r0, #CACHE_DLINESIZE
319 subs r1, r1, #CACHE_DLINESIZE
323 /* =============================== PageTable ============================== */
326 * cpu_arm920_switch_mm(pgd)
328 * Set the translation base pointer to be as described by pgd.
330 * pgd: new page tables
333 ENTRY(cpu_arm920_switch_mm)
336 #ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
337 mcr p15, 0, ip, c7, c6, 0 @ invalidate D cache
339 @ && 'Clean & Invalidate whole DCache'
340 @ && Re-written to use Index Ops.
341 @ && Uses registers r1, r3 and ip
343 mov r1, #(CACHE_DSEGMENTS - 1) << 5 @ 8 segments
344 1: orr r3, r1, #(CACHE_DENTRIES - 1) << 26 @ 64 entries
345 2: mcr p15, 0, r3, c7, c14, 2 @ clean & invalidate D index
346 subs r3, r3, #1 << 26
347 bcs 2b @ entries 63 to 0
349 bcs 1b @ segments 7 to 0
351 mcr p15, 0, ip, c7, c5, 0 @ invalidate I cache
352 mcr p15, 0, ip, c7, c10, 4 @ drain WB
353 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
354 mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
359 * cpu_arm920_set_pte(ptep, pte, ext)
361 * Set a PTE and flush it out
364 ENTRY(cpu_arm920_set_pte_ext)
368 mcr p15, 0, r0, c7, c10, 1 @ clean D entry
369 mcr p15, 0, r0, c7, c10, 4 @ drain WB
373 /* Suspend/resume support: taken from arch/arm/plat-s3c24xx/sleep.S */
374 .globl cpu_arm920_suspend_size
375 .equ cpu_arm920_suspend_size, 4 * 3
376 #ifdef CONFIG_ARM_CPU_SUSPEND
377 ENTRY(cpu_arm920_do_suspend)
378 stmfd sp!, {r4 - r6, lr}
379 mrc p15, 0, r4, c13, c0, 0 @ PID
380 mrc p15, 0, r5, c3, c0, 0 @ Domain ID
381 mrc p15, 0, r6, c1, c0, 0 @ Control register
383 ldmfd sp!, {r4 - r6, pc}
384 ENDPROC(cpu_arm920_do_suspend)
386 ENTRY(cpu_arm920_do_resume)
388 mcr p15, 0, ip, c8, c7, 0 @ invalidate I+D TLBs
389 mcr p15, 0, ip, c7, c7, 0 @ invalidate I+D caches
391 mcr p15, 0, r4, c13, c0, 0 @ PID
392 mcr p15, 0, r5, c3, c0, 0 @ Domain ID
393 mcr p15, 0, r1, c2, c0, 0 @ TTB address
394 mov r0, r6 @ control register
396 ENDPROC(cpu_arm920_do_resume)
399 .type __arm920_setup, #function
402 mcr p15, 0, r0, c7, c7 @ invalidate I,D caches on v4
403 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer on v4
405 mcr p15, 0, r0, c8, c7 @ invalidate I,D TLBs on v4
409 mrc p15, 0, r0, c1, c0 @ get control register v4
413 .size __arm920_setup, . - __arm920_setup
417 * .RVI ZFRS BLDP WCAM
418 * ..11 0001 ..11 0101
421 .type arm920_crval, #object
423 crval clear=0x00003f3f, mmuset=0x00003135, ucset=0x00001130
426 @ define struct processor (see <asm/proc-fns.h> and proc-macros.S)
427 define_processor_functions arm920, dabort=v4t_early_abort, pabort=legacy_pabort, suspend=1
431 string cpu_arch_name, "armv4t"
432 string cpu_elf_name, "v4"
433 string cpu_arm920_name, "ARM920T"
437 .section ".proc.info.init", "a"
439 .type __arm920_proc_info,#object
443 .long PMD_TYPE_SECT | \
444 PMD_SECT_BUFFERABLE | \
445 PMD_SECT_CACHEABLE | \
447 PMD_SECT_AP_WRITE | \
449 .long PMD_TYPE_SECT | \
451 PMD_SECT_AP_WRITE | \
453 initfn __arm920_setup, __arm920_proc_info
456 .long HWCAP_SWP | HWCAP_HALF | HWCAP_THUMB
457 .long cpu_arm920_name
458 .long arm920_processor_functions
461 #ifndef CONFIG_CPU_DCACHE_WRITETHROUGH
462 .long arm920_cache_fns
466 .size __arm920_proc_info, . - __arm920_proc_info