| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *  linux/arch/arm/mm/proc-sa1100.S | 
|  | 3 | * | 
|  | 4 | *  Copyright (C) 1997-2002 Russell King | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 5 | *  hacked for non-paged-MM by Hyok S. Choi, 2003. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * | 
|  | 7 | * This program is free software; you can redistribute it and/or modify | 
|  | 8 | * it under the terms of the GNU General Public License version 2 as | 
|  | 9 | * published by the Free Software Foundation. | 
|  | 10 | * | 
|  | 11 | *  MMU functions for SA110 | 
|  | 12 | * | 
|  | 13 | *  These are the low level assembler for performing cache and TLB | 
|  | 14 | *  functions on the StrongARM-1100 and StrongARM-1110. | 
|  | 15 | * | 
|  | 16 | *  Note that SA1100 and SA1110 share everything but their name and CPU ID. | 
|  | 17 | * | 
|  | 18 | *  12-jun-2000, Erik Mouw (J.A.K.Mouw@its.tudelft.nl): | 
|  | 19 | *    Flush the read buffer at context switches | 
|  | 20 | */ | 
|  | 21 | #include <linux/linkage.h> | 
|  | 22 | #include <linux/init.h> | 
|  | 23 | #include <asm/assembler.h> | 
| Sam Ravnborg | e6ae744 | 2005-09-09 21:08:59 +0200 | [diff] [blame] | 24 | #include <asm/asm-offsets.h> | 
| Russell King | 5ec9407 | 2008-09-07 19:15:31 +0100 | [diff] [blame] | 25 | #include <asm/hwcap.h> | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 26 | #include <mach/hardware.h> | 
| Russell King | 74945c8 | 2006-03-16 14:44:36 +0000 | [diff] [blame] | 27 | #include <asm/pgtable-hwdef.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <asm/pgtable.h> | 
|  | 29 |  | 
| Thomas Gleixner | bb8d5a5 | 2006-07-03 02:21:18 +0200 | [diff] [blame] | 30 | #include "proc-macros.S" | 
|  | 31 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | /* | 
|  | 33 | * the cache line size of the I and D cache | 
|  | 34 | */ | 
|  | 35 | #define DCACHELINESIZE	32 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 |  | 
|  | 37 | __INIT | 
|  | 38 |  | 
|  | 39 | /* | 
|  | 40 | * cpu_sa1100_proc_init() | 
|  | 41 | */ | 
|  | 42 | ENTRY(cpu_sa1100_proc_init) | 
|  | 43 | mov	r0, #0 | 
|  | 44 | mcr	p15, 0, r0, c15, c1, 2		@ Enable clock switching | 
|  | 45 | mcr	p15, 0, r0, c9, c0, 5		@ Allow read-buffer operations from userland | 
|  | 46 | mov	pc, lr | 
|  | 47 |  | 
| Russell King | 4260415 | 2010-04-19 10:15:03 +0100 | [diff] [blame] | 48 | .section .text | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 |  | 
|  | 50 | /* | 
|  | 51 | * cpu_sa1100_proc_fin() | 
|  | 52 | * | 
|  | 53 | * Prepare the CPU for reset: | 
|  | 54 | *  - Disable interrupts | 
|  | 55 | *  - Clean and turn off caches. | 
|  | 56 | */ | 
|  | 57 | ENTRY(cpu_sa1100_proc_fin) | 
|  | 58 | stmfd	sp!, {lr} | 
|  | 59 | mov	ip, #PSR_F_BIT | PSR_I_BIT | SVC_MODE | 
|  | 60 | msr	cpsr_c, ip | 
| Russell King | 95f3df6 | 2006-04-07 13:17:15 +0100 | [diff] [blame] | 61 | bl	v4wb_flush_kern_cache_all | 
|  | 62 | mcr	p15, 0, ip, c15, c2, 2		@ Disable clock switching | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | mrc	p15, 0, r0, c1, c0, 0		@ ctrl register | 
|  | 64 | bic	r0, r0, #0x1000			@ ...i............ | 
|  | 65 | bic	r0, r0, #0x000e			@ ............wca. | 
|  | 66 | mcr	p15, 0, r0, c1, c0, 0		@ disable caches | 
|  | 67 | ldmfd	sp!, {pc} | 
|  | 68 |  | 
|  | 69 | /* | 
|  | 70 | * cpu_sa1100_reset(loc) | 
|  | 71 | * | 
|  | 72 | * Perform a soft reset of the system.  Put the CPU into the | 
|  | 73 | * same state as it would be if it had been reset, and branch | 
|  | 74 | * to what would be the reset vector. | 
|  | 75 | * | 
|  | 76 | * loc: location to jump to for soft reset | 
|  | 77 | */ | 
|  | 78 | .align	5 | 
|  | 79 | ENTRY(cpu_sa1100_reset) | 
|  | 80 | mov	ip, #0 | 
|  | 81 | mcr	p15, 0, ip, c7, c7, 0		@ invalidate I,D caches | 
|  | 82 | mcr	p15, 0, ip, c7, c10, 4		@ drain WB | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 83 | #ifdef CONFIG_MMU | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | mcr	p15, 0, ip, c8, c7, 0		@ invalidate I & D TLBs | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 85 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | mrc	p15, 0, ip, c1, c0, 0		@ ctrl register | 
|  | 87 | bic	ip, ip, #0x000f			@ ............wcam | 
|  | 88 | bic	ip, ip, #0x1100			@ ...i...s........ | 
|  | 89 | mcr	p15, 0, ip, c1, c0, 0		@ ctrl register | 
|  | 90 | mov	pc, r0 | 
|  | 91 |  | 
|  | 92 | /* | 
|  | 93 | * cpu_sa1100_do_idle(type) | 
|  | 94 | * | 
|  | 95 | * Cause the processor to idle | 
|  | 96 | * | 
|  | 97 | * type: call type: | 
|  | 98 | *   0 = slow idle | 
|  | 99 | *   1 = fast idle | 
|  | 100 | *   2 = switch to slow processor clock | 
|  | 101 | *   3 = switch to fast processor clock | 
|  | 102 | */ | 
|  | 103 | .align	5 | 
|  | 104 | ENTRY(cpu_sa1100_do_idle) | 
|  | 105 | mov	r0, r0				@ 4 nop padding | 
|  | 106 | mov	r0, r0 | 
|  | 107 | mov	r0, r0 | 
|  | 108 | mov	r0, r0				@ 4 nop padding | 
|  | 109 | mov	r0, r0 | 
|  | 110 | mov	r0, r0 | 
|  | 111 | mov	r0, #0 | 
|  | 112 | ldr	r1, =UNCACHEABLE_ADDR		@ ptr to uncacheable address | 
|  | 113 | @ --- aligned to a cache line | 
|  | 114 | mcr	p15, 0, r0, c15, c2, 2		@ disable clock switching | 
|  | 115 | ldr	r1, [r1, #0]			@ force switch to MCLK | 
|  | 116 | mcr	p15, 0, r0, c15, c8, 2		@ wait for interrupt | 
|  | 117 | mov	r0, r0				@ safety | 
|  | 118 | mcr	p15, 0, r0, c15, c1, 2		@ enable clock switching | 
|  | 119 | mov	pc, lr | 
|  | 120 |  | 
|  | 121 | /* ================================= CACHE ================================ */ | 
|  | 122 |  | 
|  | 123 | /* | 
|  | 124 | * cpu_sa1100_dcache_clean_area(addr,sz) | 
|  | 125 | * | 
|  | 126 | * Clean the specified entry of any caches such that the MMU | 
|  | 127 | * translation fetches will obtain correct data. | 
|  | 128 | * | 
|  | 129 | * addr: cache-unaligned virtual address | 
|  | 130 | */ | 
|  | 131 | .align	5 | 
|  | 132 | ENTRY(cpu_sa1100_dcache_clean_area) | 
|  | 133 | 1:	mcr	p15, 0, r0, c7, c10, 1		@ clean D entry | 
|  | 134 | add	r0, r0, #DCACHELINESIZE | 
|  | 135 | subs	r1, r1, #DCACHELINESIZE | 
|  | 136 | bhi	1b | 
|  | 137 | mov	pc, lr | 
|  | 138 |  | 
|  | 139 | /* =============================== PageTable ============================== */ | 
|  | 140 |  | 
|  | 141 | /* | 
|  | 142 | * cpu_sa1100_switch_mm(pgd) | 
|  | 143 | * | 
|  | 144 | * Set the translation base pointer to be as described by pgd. | 
|  | 145 | * | 
|  | 146 | * pgd: new page tables | 
|  | 147 | */ | 
|  | 148 | .align	5 | 
|  | 149 | ENTRY(cpu_sa1100_switch_mm) | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 150 | #ifdef CONFIG_MMU | 
| Russell King | 95f3df6 | 2006-04-07 13:17:15 +0100 | [diff] [blame] | 151 | str	lr, [sp, #-4]! | 
|  | 152 | bl	v4wb_flush_kern_cache_all	@ clears IP | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | mcr	p15, 0, ip, c9, c0, 0		@ invalidate RB | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | mcr	p15, 0, r0, c2, c0, 0		@ load page table pointer | 
|  | 155 | mcr	p15, 0, ip, c8, c7, 0		@ invalidate I & D TLBs | 
| Russell King | 95f3df6 | 2006-04-07 13:17:15 +0100 | [diff] [blame] | 156 | ldr	pc, [sp], #4 | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 157 | #else | 
|  | 158 | mov	pc, lr | 
|  | 159 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 |  | 
|  | 161 | /* | 
| Russell King | ad1ae2f | 2006-12-13 14:34:43 +0000 | [diff] [blame] | 162 | * cpu_sa1100_set_pte_ext(ptep, pte, ext) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | * | 
|  | 164 | * Set a PTE and flush it out | 
|  | 165 | */ | 
|  | 166 | .align	5 | 
| Russell King | ad1ae2f | 2006-12-13 14:34:43 +0000 | [diff] [blame] | 167 | ENTRY(cpu_sa1100_set_pte_ext) | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 168 | #ifdef CONFIG_MMU | 
| Russell King | da09165 | 2008-09-06 17:19:08 +0100 | [diff] [blame] | 169 | armv3_set_pte_ext wc_disable=0 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | mov	r0, r0 | 
|  | 171 | mcr	p15, 0, r0, c7, c10, 1		@ clean D entry | 
|  | 172 | mcr	p15, 0, r0, c7, c10, 4		@ drain WB | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 173 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | mov	pc, lr | 
|  | 175 |  | 
|  | 176 | __INIT | 
|  | 177 |  | 
|  | 178 | .type	__sa1100_setup, #function | 
|  | 179 | __sa1100_setup: | 
|  | 180 | mov	r0, #0 | 
|  | 181 | mcr	p15, 0, r0, c7, c7		@ invalidate I,D caches on v4 | 
|  | 182 | mcr	p15, 0, r0, c7, c10, 4		@ drain write buffer on v4 | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 183 | #ifdef CONFIG_MMU | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | mcr	p15, 0, r0, c8, c7		@ invalidate I,D TLBs on v4 | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 185 | #endif | 
| Russell King | 22b1908 | 2006-06-29 15:09:57 +0100 | [diff] [blame] | 186 | adr	r5, sa1100_crval | 
|  | 187 | ldmia	r5, {r5, r6} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | mrc	p15, 0, r0, c1, c0		@ get control register v4 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | bic	r0, r0, r5 | 
| Russell King | 22b1908 | 2006-06-29 15:09:57 +0100 | [diff] [blame] | 190 | orr	r0, r0, r6 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | mov	pc, lr | 
|  | 192 | .size	__sa1100_setup, . - __sa1100_setup | 
|  | 193 |  | 
|  | 194 | /* | 
|  | 195 | *  R | 
|  | 196 | * .RVI ZFRS BLDP WCAM | 
|  | 197 | * ..11 0001 ..11 1101 | 
|  | 198 | * | 
|  | 199 | */ | 
| Russell King | 22b1908 | 2006-06-29 15:09:57 +0100 | [diff] [blame] | 200 | .type	sa1100_crval, #object | 
|  | 201 | sa1100_crval: | 
|  | 202 | crval	clear=0x00003f3f, mmuset=0x0000313d, ucset=0x00001130 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 |  | 
|  | 204 | __INITDATA | 
|  | 205 |  | 
|  | 206 | /* | 
|  | 207 | * Purpose : Function pointers used to access above functions - all calls | 
|  | 208 | *	     come through these | 
|  | 209 | */ | 
|  | 210 |  | 
|  | 211 | /* | 
|  | 212 | * SA1100 and SA1110 share the same function calls | 
|  | 213 | */ | 
|  | 214 | .type	sa1100_processor_functions, #object | 
|  | 215 | ENTRY(sa1100_processor_functions) | 
|  | 216 | .word	v4_early_abort | 
| Kirill A. Shutemov | 4fb2847 | 2009-09-25 13:39:47 +0100 | [diff] [blame] | 217 | .word	legacy_pabort | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | .word	cpu_sa1100_proc_init | 
|  | 219 | .word	cpu_sa1100_proc_fin | 
|  | 220 | .word	cpu_sa1100_reset | 
|  | 221 | .word	cpu_sa1100_do_idle | 
|  | 222 | .word	cpu_sa1100_dcache_clean_area | 
|  | 223 | .word	cpu_sa1100_switch_mm | 
| Russell King | ad1ae2f | 2006-12-13 14:34:43 +0000 | [diff] [blame] | 224 | .word	cpu_sa1100_set_pte_ext | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | .size	sa1100_processor_functions, . - sa1100_processor_functions | 
|  | 226 |  | 
|  | 227 | .section ".rodata" | 
|  | 228 |  | 
|  | 229 | .type	cpu_arch_name, #object | 
|  | 230 | cpu_arch_name: | 
|  | 231 | .asciz	"armv4" | 
|  | 232 | .size	cpu_arch_name, . - cpu_arch_name | 
|  | 233 |  | 
|  | 234 | .type	cpu_elf_name, #object | 
|  | 235 | cpu_elf_name: | 
|  | 236 | .asciz	"v4" | 
|  | 237 | .size	cpu_elf_name, . - cpu_elf_name | 
|  | 238 |  | 
|  | 239 | .type	cpu_sa1100_name, #object | 
|  | 240 | cpu_sa1100_name: | 
|  | 241 | .asciz	"StrongARM-1100" | 
|  | 242 | .size	cpu_sa1100_name, . - cpu_sa1100_name | 
|  | 243 |  | 
|  | 244 | .type	cpu_sa1110_name, #object | 
|  | 245 | cpu_sa1110_name: | 
|  | 246 | .asciz	"StrongARM-1110" | 
|  | 247 | .size	cpu_sa1110_name, . - cpu_sa1110_name | 
|  | 248 |  | 
|  | 249 | .align | 
|  | 250 |  | 
| Ben Dooks | 02b7dd1 | 2005-09-20 16:35:03 +0100 | [diff] [blame] | 251 | .section ".proc.info.init", #alloc, #execinstr | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 |  | 
|  | 253 | .type	__sa1100_proc_info,#object | 
|  | 254 | __sa1100_proc_info: | 
|  | 255 | .long	0x4401a110 | 
|  | 256 | .long	0xfffffff0 | 
|  | 257 | .long   PMD_TYPE_SECT | \ | 
|  | 258 | PMD_SECT_BUFFERABLE | \ | 
|  | 259 | PMD_SECT_CACHEABLE | \ | 
|  | 260 | PMD_SECT_AP_WRITE | \ | 
|  | 261 | PMD_SECT_AP_READ | 
| Russell King | 8799ee9 | 2006-06-29 18:24:21 +0100 | [diff] [blame] | 262 | .long   PMD_TYPE_SECT | \ | 
|  | 263 | PMD_SECT_AP_WRITE | \ | 
|  | 264 | PMD_SECT_AP_READ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | b	__sa1100_setup | 
|  | 266 | .long	cpu_arch_name | 
|  | 267 | .long	cpu_elf_name | 
|  | 268 | .long	HWCAP_SWP | HWCAP_HALF | HWCAP_26BIT | HWCAP_FAST_MULT | 
|  | 269 | .long	cpu_sa1100_name | 
|  | 270 | .long	sa1100_processor_functions | 
|  | 271 | .long	v4wb_tlb_fns | 
|  | 272 | .long	v4_mc_user_fns | 
|  | 273 | .long	v4wb_cache_fns | 
|  | 274 | .size	__sa1100_proc_info, . - __sa1100_proc_info | 
|  | 275 |  | 
|  | 276 | .type	__sa1110_proc_info,#object | 
|  | 277 | __sa1110_proc_info: | 
|  | 278 | .long	0x6901b110 | 
|  | 279 | .long	0xfffffff0 | 
|  | 280 | .long   PMD_TYPE_SECT | \ | 
|  | 281 | PMD_SECT_BUFFERABLE | \ | 
|  | 282 | PMD_SECT_CACHEABLE | \ | 
|  | 283 | PMD_SECT_AP_WRITE | \ | 
|  | 284 | PMD_SECT_AP_READ | 
| Russell King | 8799ee9 | 2006-06-29 18:24:21 +0100 | [diff] [blame] | 285 | .long   PMD_TYPE_SECT | \ | 
|  | 286 | PMD_SECT_AP_WRITE | \ | 
|  | 287 | PMD_SECT_AP_READ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | b	__sa1100_setup | 
|  | 289 | .long	cpu_arch_name | 
|  | 290 | .long	cpu_elf_name | 
|  | 291 | .long	HWCAP_SWP | HWCAP_HALF | HWCAP_26BIT | HWCAP_FAST_MULT | 
|  | 292 | .long	cpu_sa1110_name | 
|  | 293 | .long	sa1100_processor_functions | 
|  | 294 | .long	v4wb_tlb_fns | 
|  | 295 | .long	v4_mc_user_fns | 
|  | 296 | .long	v4wb_cache_fns | 
|  | 297 | .size	__sa1110_proc_info, . - __sa1110_proc_info |