| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *  linux/arch/arm/mm/proc-arm1026.S: MMU functions for ARM1026EJ-S | 
|  | 3 | * | 
|  | 4 | *  Copyright (C) 2000 ARM Limited | 
|  | 5 | *  Copyright (C) 2000 Deep Blue Solutions Ltd. | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 6 | *  hacked for non-paged-MM by Hyok S. Choi, 2003. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * | 
|  | 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. | 
|  | 12 | * | 
|  | 13 | * | 
|  | 14 | * These are the low level assembler for performing cache and TLB | 
|  | 15 | * functions on the ARM1026EJ-S. | 
|  | 16 | */ | 
|  | 17 | #include <linux/linkage.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/init.h> | 
|  | 19 | #include <asm/assembler.h> | 
| Sam Ravnborg | e6ae744 | 2005-09-09 21:08:59 +0200 | [diff] [blame] | 20 | #include <asm/asm-offsets.h> | 
| Russell King | 5ec9407 | 2008-09-07 19:15:31 +0100 | [diff] [blame] | 21 | #include <asm/hwcap.h> | 
| Russell King | 74945c8 | 2006-03-16 14:44:36 +0000 | [diff] [blame] | 22 | #include <asm/pgtable-hwdef.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <asm/pgtable.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <asm/ptrace.h> | 
|  | 25 |  | 
| Russell King | 00eb0f6 | 2006-07-03 12:36:07 +0100 | [diff] [blame] | 26 | #include "proc-macros.S" | 
|  | 27 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | /* | 
|  | 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. | 
|  | 32 | * | 
|  | 33 | * This value should be chosen such that we choose the cheapest | 
|  | 34 | * alternative. | 
|  | 35 | */ | 
|  | 36 | #define MAX_AREA_SIZE	32768 | 
|  | 37 |  | 
|  | 38 | /* | 
|  | 39 | * The size of one data cache line. | 
|  | 40 | */ | 
|  | 41 | #define CACHE_DLINESIZE	32 | 
|  | 42 |  | 
|  | 43 | /* | 
|  | 44 | * The number of data cache segments. | 
|  | 45 | */ | 
|  | 46 | #define CACHE_DSEGMENTS	16 | 
|  | 47 |  | 
|  | 48 | /* | 
|  | 49 | * The number of lines in a cache segment. | 
|  | 50 | */ | 
|  | 51 | #define CACHE_DENTRIES	64 | 
|  | 52 |  | 
|  | 53 | /* | 
|  | 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. | 
|  | 57 | */ | 
|  | 58 | #define CACHE_DLIMIT	32768 | 
|  | 59 |  | 
|  | 60 | .text | 
|  | 61 | /* | 
|  | 62 | * cpu_arm1026_proc_init() | 
|  | 63 | */ | 
|  | 64 | ENTRY(cpu_arm1026_proc_init) | 
|  | 65 | mov	pc, lr | 
|  | 66 |  | 
|  | 67 | /* | 
|  | 68 | * cpu_arm1026_proc_fin() | 
|  | 69 | */ | 
|  | 70 | ENTRY(cpu_arm1026_proc_fin) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | mrc	p15, 0, r0, c1, c0, 0		@ ctrl register | 
|  | 72 | bic	r0, r0, #0x1000 		@ ...i............ | 
|  | 73 | bic	r0, r0, #0x000e 		@ ............wca. | 
|  | 74 | mcr	p15, 0, r0, c1, c0, 0		@ disable caches | 
| Russell King | 9ca03a2 | 2010-07-26 12:22:12 +0100 | [diff] [blame] | 75 | mov	pc, lr | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 |  | 
|  | 77 | /* | 
|  | 78 | * cpu_arm1026_reset(loc) | 
|  | 79 | * | 
|  | 80 | * Perform a soft reset of the system.	Put the CPU into the | 
|  | 81 | * same state as it would be if it had been reset, and branch | 
|  | 82 | * to what would be the reset vector. | 
|  | 83 | * | 
|  | 84 | * loc: location to jump to for soft reset | 
|  | 85 | */ | 
|  | 86 | .align	5 | 
|  | 87 | ENTRY(cpu_arm1026_reset) | 
|  | 88 | mov	ip, #0 | 
|  | 89 | mcr	p15, 0, ip, c7, c7, 0		@ invalidate I,D caches | 
|  | 90 | mcr	p15, 0, ip, c7, c10, 4		@ drain WB | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 91 | #ifdef CONFIG_MMU | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | mcr	p15, 0, ip, c8, c7, 0		@ invalidate I & D TLBs | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 93 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | mrc	p15, 0, ip, c1, c0, 0		@ ctrl register | 
|  | 95 | bic	ip, ip, #0x000f 		@ ............wcam | 
|  | 96 | bic	ip, ip, #0x1100 		@ ...i...s........ | 
|  | 97 | mcr	p15, 0, ip, c1, c0, 0		@ ctrl register | 
|  | 98 | mov	pc, r0 | 
|  | 99 |  | 
|  | 100 | /* | 
|  | 101 | * cpu_arm1026_do_idle() | 
|  | 102 | */ | 
|  | 103 | .align	5 | 
|  | 104 | ENTRY(cpu_arm1026_do_idle) | 
|  | 105 | mcr	p15, 0, r0, c7, c0, 4		@ Wait for interrupt | 
|  | 106 | mov	pc, lr | 
|  | 107 |  | 
|  | 108 | /* ================================= CACHE ================================ */ | 
|  | 109 |  | 
|  | 110 | .align	5 | 
|  | 111 | /* | 
|  | 112 | *	flush_user_cache_all() | 
|  | 113 | * | 
|  | 114 | *	Invalidate all cache entries in a particular address | 
|  | 115 | *	space. | 
|  | 116 | */ | 
|  | 117 | ENTRY(arm1026_flush_user_cache_all) | 
|  | 118 | /* FALLTHROUGH */ | 
|  | 119 | /* | 
|  | 120 | *	flush_kern_cache_all() | 
|  | 121 | * | 
|  | 122 | *	Clean and invalidate the entire cache. | 
|  | 123 | */ | 
|  | 124 | ENTRY(arm1026_flush_kern_cache_all) | 
|  | 125 | mov	r2, #VM_EXEC | 
|  | 126 | mov	ip, #0 | 
|  | 127 | __flush_whole_cache: | 
|  | 128 | #ifndef CONFIG_CPU_DCACHE_DISABLE | 
|  | 129 | 1:	mrc	p15, 0, r15, c7, c14, 3		@ test, clean, invalidate | 
|  | 130 | bne	1b | 
|  | 131 | #endif | 
|  | 132 | tst	r2, #VM_EXEC | 
|  | 133 | #ifndef CONFIG_CPU_ICACHE_DISABLE | 
|  | 134 | mcrne	p15, 0, ip, c7, c5, 0		@ invalidate I cache | 
|  | 135 | #endif | 
|  | 136 | mcrne	p15, 0, ip, c7, c10, 4		@ drain WB | 
|  | 137 | mov	pc, lr | 
|  | 138 |  | 
|  | 139 | /* | 
|  | 140 | *	flush_user_cache_range(start, end, flags) | 
|  | 141 | * | 
|  | 142 | *	Invalidate a range of cache entries in the specified | 
|  | 143 | *	address space. | 
|  | 144 | * | 
|  | 145 | *	- start	- start address (inclusive) | 
|  | 146 | *	- end	- end address (exclusive) | 
|  | 147 | *	- flags	- vm_flags for this space | 
|  | 148 | */ | 
|  | 149 | ENTRY(arm1026_flush_user_cache_range) | 
|  | 150 | mov	ip, #0 | 
|  | 151 | sub	r3, r1, r0			@ calculate total size | 
|  | 152 | cmp	r3, #CACHE_DLIMIT | 
|  | 153 | bhs	__flush_whole_cache | 
|  | 154 |  | 
|  | 155 | #ifndef CONFIG_CPU_DCACHE_DISABLE | 
|  | 156 | 1:	mcr	p15, 0, r0, c7, c14, 1		@ clean+invalidate D entry | 
|  | 157 | add	r0, r0, #CACHE_DLINESIZE | 
|  | 158 | cmp	r0, r1 | 
|  | 159 | blo	1b | 
|  | 160 | #endif | 
|  | 161 | tst	r2, #VM_EXEC | 
|  | 162 | #ifndef CONFIG_CPU_ICACHE_DISABLE | 
|  | 163 | mcrne	p15, 0, ip, c7, c5, 0		@ invalidate I cache | 
|  | 164 | #endif | 
|  | 165 | mcrne	p15, 0, ip, c7, c10, 4		@ drain WB | 
|  | 166 | mov	pc, lr | 
|  | 167 |  | 
|  | 168 | /* | 
|  | 169 | *	coherent_kern_range(start, end) | 
|  | 170 | * | 
|  | 171 | *	Ensure coherency between the Icache and the Dcache in the | 
|  | 172 | *	region described by start.  If you have non-snooping | 
|  | 173 | *	Harvard caches, you need to implement this function. | 
|  | 174 | * | 
|  | 175 | *	- start	- virtual start address | 
|  | 176 | *	- end	- virtual end address | 
|  | 177 | */ | 
|  | 178 | ENTRY(arm1026_coherent_kern_range) | 
|  | 179 | /* FALLTHROUGH */ | 
|  | 180 | /* | 
|  | 181 | *	coherent_user_range(start, end) | 
|  | 182 | * | 
|  | 183 | *	Ensure coherency between the Icache and the Dcache in the | 
|  | 184 | *	region described by start.  If you have non-snooping | 
|  | 185 | *	Harvard caches, you need to implement this function. | 
|  | 186 | * | 
|  | 187 | *	- start	- virtual start address | 
|  | 188 | *	- end	- virtual end address | 
|  | 189 | */ | 
|  | 190 | ENTRY(arm1026_coherent_user_range) | 
|  | 191 | mov	ip, #0 | 
|  | 192 | bic	r0, r0, #CACHE_DLINESIZE - 1 | 
|  | 193 | 1: | 
|  | 194 | #ifndef CONFIG_CPU_DCACHE_DISABLE | 
|  | 195 | mcr	p15, 0, r0, c7, c10, 1		@ clean D entry | 
|  | 196 | #endif | 
|  | 197 | #ifndef CONFIG_CPU_ICACHE_DISABLE | 
|  | 198 | mcr	p15, 0, r0, c7, c5, 1		@ invalidate I entry | 
|  | 199 | #endif | 
|  | 200 | add	r0, r0, #CACHE_DLINESIZE | 
|  | 201 | cmp	r0, r1 | 
|  | 202 | blo	1b | 
|  | 203 | mcr	p15, 0, ip, c7, c10, 4		@ drain WB | 
|  | 204 | mov	pc, lr | 
|  | 205 |  | 
|  | 206 | /* | 
| Russell King | 2c9b9c8 | 2009-11-26 12:56:21 +0000 | [diff] [blame] | 207 | *	flush_kern_dcache_area(void *addr, size_t size) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | * | 
|  | 209 | *	Ensure no D cache aliasing occurs, either with itself or | 
|  | 210 | *	the I cache | 
|  | 211 | * | 
| Russell King | 2c9b9c8 | 2009-11-26 12:56:21 +0000 | [diff] [blame] | 212 | *	- addr	- kernel address | 
|  | 213 | *	- size	- region size | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | */ | 
| Russell King | 2c9b9c8 | 2009-11-26 12:56:21 +0000 | [diff] [blame] | 215 | ENTRY(arm1026_flush_kern_dcache_area) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | mov	ip, #0 | 
|  | 217 | #ifndef CONFIG_CPU_DCACHE_DISABLE | 
| Russell King | 2c9b9c8 | 2009-11-26 12:56:21 +0000 | [diff] [blame] | 218 | add	r1, r0, r1 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | 1:	mcr	p15, 0, r0, c7, c14, 1		@ clean+invalidate D entry | 
|  | 220 | add	r0, r0, #CACHE_DLINESIZE | 
|  | 221 | cmp	r0, r1 | 
|  | 222 | blo	1b | 
|  | 223 | #endif | 
|  | 224 | mcr	p15, 0, ip, c7, c10, 4		@ drain WB | 
|  | 225 | mov	pc, lr | 
|  | 226 |  | 
|  | 227 | /* | 
|  | 228 | *	dma_inv_range(start, end) | 
|  | 229 | * | 
|  | 230 | *	Invalidate (discard) the specified virtual address range. | 
|  | 231 | *	May not write back any entries.  If 'start' or 'end' | 
|  | 232 | *	are not cache line aligned, those lines must be written | 
|  | 233 | *	back. | 
|  | 234 | * | 
|  | 235 | *	- start	- virtual start address | 
|  | 236 | *	- end	- virtual end address | 
|  | 237 | * | 
|  | 238 | * (same as v4wb) | 
|  | 239 | */ | 
| Russell King | 702b94b | 2009-11-26 16:24:19 +0000 | [diff] [blame] | 240 | arm1026_dma_inv_range: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | mov	ip, #0 | 
|  | 242 | #ifndef CONFIG_CPU_DCACHE_DISABLE | 
|  | 243 | tst	r0, #CACHE_DLINESIZE - 1 | 
|  | 244 | bic	r0, r0, #CACHE_DLINESIZE - 1 | 
|  | 245 | mcrne	p15, 0, r0, c7, c10, 1		@ clean D entry | 
|  | 246 | tst	r1, #CACHE_DLINESIZE - 1 | 
|  | 247 | mcrne	p15, 0, r1, c7, c10, 1		@ clean D entry | 
|  | 248 | 1:	mcr	p15, 0, r0, c7, c6, 1		@ invalidate D entry | 
|  | 249 | add	r0, r0, #CACHE_DLINESIZE | 
|  | 250 | cmp	r0, r1 | 
|  | 251 | blo	1b | 
|  | 252 | #endif | 
|  | 253 | mcr	p15, 0, ip, c7, c10, 4		@ drain WB | 
|  | 254 | mov	pc, lr | 
|  | 255 |  | 
|  | 256 | /* | 
|  | 257 | *	dma_clean_range(start, end) | 
|  | 258 | * | 
|  | 259 | *	Clean the specified virtual address range. | 
|  | 260 | * | 
|  | 261 | *	- start	- virtual start address | 
|  | 262 | *	- end	- virtual end address | 
|  | 263 | * | 
|  | 264 | * (same as v4wb) | 
|  | 265 | */ | 
| Russell King | 702b94b | 2009-11-26 16:24:19 +0000 | [diff] [blame] | 266 | arm1026_dma_clean_range: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | mov	ip, #0 | 
|  | 268 | #ifndef CONFIG_CPU_DCACHE_DISABLE | 
|  | 269 | bic	r0, r0, #CACHE_DLINESIZE - 1 | 
|  | 270 | 1:	mcr	p15, 0, r0, c7, c10, 1		@ clean D entry | 
|  | 271 | add	r0, r0, #CACHE_DLINESIZE | 
|  | 272 | cmp	r0, r1 | 
|  | 273 | blo	1b | 
|  | 274 | #endif | 
|  | 275 | mcr	p15, 0, ip, c7, c10, 4		@ drain WB | 
|  | 276 | mov	pc, lr | 
|  | 277 |  | 
|  | 278 | /* | 
|  | 279 | *	dma_flush_range(start, end) | 
|  | 280 | * | 
|  | 281 | *	Clean and invalidate the specified virtual address range. | 
|  | 282 | * | 
|  | 283 | *	- start	- virtual start address | 
|  | 284 | *	- end	- virtual end address | 
|  | 285 | */ | 
|  | 286 | ENTRY(arm1026_dma_flush_range) | 
|  | 287 | mov	ip, #0 | 
|  | 288 | #ifndef CONFIG_CPU_DCACHE_DISABLE | 
|  | 289 | bic	r0, r0, #CACHE_DLINESIZE - 1 | 
|  | 290 | 1:	mcr	p15, 0, r0, c7, c14, 1		@ clean+invalidate D entry | 
|  | 291 | add	r0, r0, #CACHE_DLINESIZE | 
|  | 292 | cmp	r0, r1 | 
|  | 293 | blo	1b | 
|  | 294 | #endif | 
|  | 295 | mcr	p15, 0, ip, c7, c10, 4		@ drain WB | 
|  | 296 | mov	pc, lr | 
|  | 297 |  | 
| Russell King | a9c9147 | 2009-11-26 16:19:58 +0000 | [diff] [blame] | 298 | /* | 
|  | 299 | *	dma_map_area(start, size, dir) | 
|  | 300 | *	- start	- kernel virtual start address | 
|  | 301 | *	- size	- size of region | 
|  | 302 | *	- dir	- DMA direction | 
|  | 303 | */ | 
|  | 304 | ENTRY(arm1026_dma_map_area) | 
|  | 305 | add	r1, r1, r0 | 
|  | 306 | cmp	r2, #DMA_TO_DEVICE | 
|  | 307 | beq	arm1026_dma_clean_range | 
|  | 308 | bcs	arm1026_dma_inv_range | 
|  | 309 | b	arm1026_dma_flush_range | 
|  | 310 | ENDPROC(arm1026_dma_map_area) | 
|  | 311 |  | 
|  | 312 | /* | 
|  | 313 | *	dma_unmap_area(start, size, dir) | 
|  | 314 | *	- start	- kernel virtual start address | 
|  | 315 | *	- size	- size of region | 
|  | 316 | *	- dir	- DMA direction | 
|  | 317 | */ | 
|  | 318 | ENTRY(arm1026_dma_unmap_area) | 
|  | 319 | mov	pc, lr | 
|  | 320 | ENDPROC(arm1026_dma_unmap_area) | 
|  | 321 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | ENTRY(arm1026_cache_fns) | 
|  | 323 | .long	arm1026_flush_kern_cache_all | 
|  | 324 | .long	arm1026_flush_user_cache_all | 
|  | 325 | .long	arm1026_flush_user_cache_range | 
|  | 326 | .long	arm1026_coherent_kern_range | 
|  | 327 | .long	arm1026_coherent_user_range | 
| Russell King | 2c9b9c8 | 2009-11-26 12:56:21 +0000 | [diff] [blame] | 328 | .long	arm1026_flush_kern_dcache_area | 
| Russell King | a9c9147 | 2009-11-26 16:19:58 +0000 | [diff] [blame] | 329 | .long	arm1026_dma_map_area | 
|  | 330 | .long	arm1026_dma_unmap_area | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | .long	arm1026_dma_flush_range | 
|  | 332 |  | 
|  | 333 | .align	5 | 
|  | 334 | ENTRY(cpu_arm1026_dcache_clean_area) | 
|  | 335 | #ifndef CONFIG_CPU_DCACHE_DISABLE | 
|  | 336 | mov	ip, #0 | 
|  | 337 | 1:	mcr	p15, 0, r0, c7, c10, 1		@ clean D entry | 
|  | 338 | add	r0, r0, #CACHE_DLINESIZE | 
|  | 339 | subs	r1, r1, #CACHE_DLINESIZE | 
|  | 340 | bhi	1b | 
|  | 341 | #endif | 
|  | 342 | mov	pc, lr | 
|  | 343 |  | 
|  | 344 | /* =============================== PageTable ============================== */ | 
|  | 345 |  | 
|  | 346 | /* | 
|  | 347 | * cpu_arm1026_switch_mm(pgd) | 
|  | 348 | * | 
|  | 349 | * Set the translation base pointer to be as described by pgd. | 
|  | 350 | * | 
|  | 351 | * pgd: new page tables | 
|  | 352 | */ | 
|  | 353 | .align	5 | 
|  | 354 | ENTRY(cpu_arm1026_switch_mm) | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 355 | #ifdef CONFIG_MMU | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | mov	r1, #0 | 
|  | 357 | #ifndef CONFIG_CPU_DCACHE_DISABLE | 
|  | 358 | 1:	mrc	p15, 0, r15, c7, c14, 3		@ test, clean, invalidate | 
|  | 359 | bne	1b | 
|  | 360 | #endif | 
|  | 361 | #ifndef CONFIG_CPU_ICACHE_DISABLE | 
|  | 362 | mcr	p15, 0, r1, c7, c5, 0		@ invalidate I cache | 
|  | 363 | #endif | 
|  | 364 | mcr	p15, 0, r1, c7, c10, 4		@ drain WB | 
|  | 365 | mcr	p15, 0, r0, c2, c0, 0		@ load page table pointer | 
|  | 366 | mcr	p15, 0, r1, c8, c7, 0		@ invalidate I & D TLBs | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 367 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | mov	pc, lr | 
|  | 369 |  | 
|  | 370 | /* | 
| Russell King | ad1ae2f | 2006-12-13 14:34:43 +0000 | [diff] [blame] | 371 | * cpu_arm1026_set_pte_ext(ptep, pte, ext) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | * | 
|  | 373 | * Set a PTE and flush it out | 
|  | 374 | */ | 
|  | 375 | .align	5 | 
| Russell King | ad1ae2f | 2006-12-13 14:34:43 +0000 | [diff] [blame] | 376 | ENTRY(cpu_arm1026_set_pte_ext) | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 377 | #ifdef CONFIG_MMU | 
| Russell King | da09165 | 2008-09-06 17:19:08 +0100 | [diff] [blame] | 378 | armv3_set_pte_ext | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | mov	r0, r0 | 
|  | 380 | #ifndef CONFIG_CPU_DCACHE_DISABLE | 
|  | 381 | mcr	p15, 0, r0, c7, c10, 1		@ clean D entry | 
|  | 382 | #endif | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 383 | #endif /* CONFIG_MMU */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | mov	pc, lr | 
|  | 385 |  | 
|  | 386 |  | 
|  | 387 | __INIT | 
|  | 388 |  | 
|  | 389 | .type	__arm1026_setup, #function | 
|  | 390 | __arm1026_setup: | 
|  | 391 | mov	r0, #0 | 
|  | 392 | mcr	p15, 0, r0, c7, c7		@ invalidate I,D caches on v4 | 
|  | 393 | 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] | 394 | #ifdef CONFIG_MMU | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | mcr	p15, 0, r0, c8, c7		@ invalidate I,D TLBs on v4 | 
|  | 396 | mcr	p15, 0, r4, c2, c0		@ load page table pointer | 
| Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 397 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | #ifdef CONFIG_CPU_DCACHE_WRITETHROUGH | 
|  | 399 | mov	r0, #4				@ explicitly disable writeback | 
|  | 400 | mcr	p15, 7, r0, c15, c0, 0 | 
|  | 401 | #endif | 
| Russell King | 22b1908 | 2006-06-29 15:09:57 +0100 | [diff] [blame] | 402 | adr	r5, arm1026_crval | 
|  | 403 | ldmia	r5, {r5, r6} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | mrc	p15, 0, r0, c1, c0		@ get control register v4 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | bic	r0, r0, r5 | 
| Russell King | 22b1908 | 2006-06-29 15:09:57 +0100 | [diff] [blame] | 406 | orr	r0, r0, r6 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | #ifdef CONFIG_CPU_CACHE_ROUND_ROBIN | 
|  | 408 | orr	r0, r0, #0x4000 		@ .R.. .... .... .... | 
|  | 409 | #endif | 
|  | 410 | mov	pc, lr | 
|  | 411 | .size	__arm1026_setup, . - __arm1026_setup | 
|  | 412 |  | 
|  | 413 | /* | 
|  | 414 | *  R | 
|  | 415 | * .RVI ZFRS BLDP WCAM | 
|  | 416 | * .011 1001 ..11 0101 | 
|  | 417 | * | 
|  | 418 | */ | 
| Russell King | 22b1908 | 2006-06-29 15:09:57 +0100 | [diff] [blame] | 419 | .type	arm1026_crval, #object | 
|  | 420 | arm1026_crval: | 
|  | 421 | crval	clear=0x00007f3f, mmuset=0x00003935, ucset=0x00001934 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 |  | 
|  | 423 | __INITDATA | 
|  | 424 |  | 
|  | 425 | /* | 
|  | 426 | * Purpose : Function pointers used to access above functions - all calls | 
|  | 427 | *	     come through these | 
|  | 428 | */ | 
|  | 429 | .type	arm1026_processor_functions, #object | 
|  | 430 | arm1026_processor_functions: | 
|  | 431 | .word	v5t_early_abort | 
| Kirill A. Shutemov | 4fb2847 | 2009-09-25 13:39:47 +0100 | [diff] [blame] | 432 | .word	legacy_pabort | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | .word	cpu_arm1026_proc_init | 
|  | 434 | .word	cpu_arm1026_proc_fin | 
|  | 435 | .word	cpu_arm1026_reset | 
|  | 436 | .word	cpu_arm1026_do_idle | 
|  | 437 | .word	cpu_arm1026_dcache_clean_area | 
|  | 438 | .word	cpu_arm1026_switch_mm | 
| Russell King | ad1ae2f | 2006-12-13 14:34:43 +0000 | [diff] [blame] | 439 | .word	cpu_arm1026_set_pte_ext | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | .size	arm1026_processor_functions, . - arm1026_processor_functions | 
|  | 441 |  | 
|  | 442 | .section .rodata | 
|  | 443 |  | 
|  | 444 | .type	cpu_arch_name, #object | 
|  | 445 | cpu_arch_name: | 
|  | 446 | .asciz	"armv5tej" | 
|  | 447 | .size	cpu_arch_name, . - cpu_arch_name | 
|  | 448 |  | 
|  | 449 | .type	cpu_elf_name, #object | 
|  | 450 | cpu_elf_name: | 
|  | 451 | .asciz	"v5" | 
|  | 452 | .size	cpu_elf_name, . - cpu_elf_name | 
|  | 453 | .align | 
|  | 454 |  | 
|  | 455 | .type	cpu_arm1026_name, #object | 
|  | 456 | cpu_arm1026_name: | 
| Russell King | 264edb3 | 2006-06-29 15:03:09 +0100 | [diff] [blame] | 457 | .asciz	"ARM1026EJ-S" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | .size	cpu_arm1026_name, . - cpu_arm1026_name | 
|  | 459 |  | 
|  | 460 | .align | 
|  | 461 |  | 
| Ben Dooks | 02b7dd1 | 2005-09-20 16:35:03 +0100 | [diff] [blame] | 462 | .section ".proc.info.init", #alloc, #execinstr | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 |  | 
|  | 464 | .type	__arm1026_proc_info,#object | 
|  | 465 | __arm1026_proc_info: | 
|  | 466 | .long	0x4106a260			@ ARM 1026EJ-S (v5TEJ) | 
|  | 467 | .long	0xff0ffff0 | 
|  | 468 | .long   PMD_TYPE_SECT | \ | 
|  | 469 | PMD_BIT4 | \ | 
|  | 470 | PMD_SECT_AP_WRITE | \ | 
|  | 471 | PMD_SECT_AP_READ | 
| Russell King | 8799ee9 | 2006-06-29 18:24:21 +0100 | [diff] [blame] | 472 | .long   PMD_TYPE_SECT | \ | 
|  | 473 | PMD_BIT4 | \ | 
|  | 474 | PMD_SECT_AP_WRITE | \ | 
|  | 475 | PMD_SECT_AP_READ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | b	__arm1026_setup | 
|  | 477 | .long	cpu_arch_name | 
|  | 478 | .long	cpu_elf_name | 
|  | 479 | .long	HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP|HWCAP_JAVA | 
|  | 480 | .long	cpu_arm1026_name | 
|  | 481 | .long	arm1026_processor_functions | 
|  | 482 | .long	v4wbi_tlb_fns | 
|  | 483 | .long	v4wb_user_fns | 
|  | 484 | .long	arm1026_cache_fns | 
|  | 485 | .size	__arm1026_proc_info, . - __arm1026_proc_info |