Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mm/proc-arm926.S: MMU functions for ARM926EJ-S |
| 3 | * |
| 4 | * Copyright (C) 1999-2001 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 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | * |
| 22 | * |
| 23 | * These are the low level assembler for performing cache and TLB |
| 24 | * functions on the arm926. |
| 25 | * |
| 26 | * CONFIG_CPU_ARM926_CPU_IDLE -> nohlt |
| 27 | */ |
| 28 | #include <linux/linkage.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/init.h> |
| 30 | #include <asm/assembler.h> |
Russell King | ee90dab | 2006-11-09 14:20:47 +0000 | [diff] [blame] | 31 | #include <asm/elf.h> |
Russell King | 74945c8 | 2006-03-16 14:44:36 +0000 | [diff] [blame] | 32 | #include <asm/pgtable-hwdef.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <asm/pgtable.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <asm/page.h> |
| 35 | #include <asm/ptrace.h> |
| 36 | #include "proc-macros.S" |
| 37 | |
| 38 | /* |
| 39 | * This is the maximum size of an area which will be invalidated |
| 40 | * using the single invalidate entry instructions. Anything larger |
| 41 | * than this, and we go for the whole cache. |
| 42 | * |
| 43 | * This value should be chosen such that we choose the cheapest |
| 44 | * alternative. |
| 45 | */ |
| 46 | #define CACHE_DLIMIT 16384 |
| 47 | |
| 48 | /* |
| 49 | * the cache line size of the I and D cache |
| 50 | */ |
| 51 | #define CACHE_DLINESIZE 32 |
| 52 | |
| 53 | .text |
| 54 | /* |
| 55 | * cpu_arm926_proc_init() |
| 56 | */ |
| 57 | ENTRY(cpu_arm926_proc_init) |
| 58 | mov pc, lr |
| 59 | |
| 60 | /* |
| 61 | * cpu_arm926_proc_fin() |
| 62 | */ |
| 63 | ENTRY(cpu_arm926_proc_fin) |
| 64 | stmfd sp!, {lr} |
| 65 | mov ip, #PSR_F_BIT | PSR_I_BIT | SVC_MODE |
| 66 | msr cpsr_c, ip |
| 67 | bl arm926_flush_kern_cache_all |
| 68 | mrc p15, 0, r0, c1, c0, 0 @ ctrl register |
| 69 | bic r0, r0, #0x1000 @ ...i............ |
| 70 | bic r0, r0, #0x000e @ ............wca. |
| 71 | mcr p15, 0, r0, c1, c0, 0 @ disable caches |
| 72 | ldmfd sp!, {pc} |
| 73 | |
| 74 | /* |
| 75 | * cpu_arm926_reset(loc) |
| 76 | * |
| 77 | * Perform a soft reset of the system. Put the CPU into the |
| 78 | * same state as it would be if it had been reset, and branch |
| 79 | * to what would be the reset vector. |
| 80 | * |
| 81 | * loc: location to jump to for soft reset |
| 82 | */ |
| 83 | .align 5 |
| 84 | ENTRY(cpu_arm926_reset) |
| 85 | mov ip, #0 |
| 86 | mcr p15, 0, ip, c7, c7, 0 @ invalidate I,D caches |
| 87 | mcr p15, 0, ip, c7, c10, 4 @ drain WB |
Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 88 | #ifdef CONFIG_MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs |
Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 90 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | mrc p15, 0, ip, c1, c0, 0 @ ctrl register |
| 92 | bic ip, ip, #0x000f @ ............wcam |
| 93 | bic ip, ip, #0x1100 @ ...i...s........ |
| 94 | mcr p15, 0, ip, c1, c0, 0 @ ctrl register |
| 95 | mov pc, r0 |
| 96 | |
| 97 | /* |
| 98 | * cpu_arm926_do_idle() |
| 99 | * |
| 100 | * Called with IRQs disabled |
| 101 | */ |
| 102 | .align 10 |
| 103 | ENTRY(cpu_arm926_do_idle) |
| 104 | mov r0, #0 |
| 105 | mrc p15, 0, r1, c1, c0, 0 @ Read control register |
| 106 | mcr p15, 0, r0, c7, c10, 4 @ Drain write buffer |
| 107 | bic r2, r1, #1 << 12 |
Russell King | 0214f92 | 2007-10-27 11:01:35 +0100 | [diff] [blame] | 108 | mrs r3, cpsr @ Disable FIQs while Icache |
| 109 | orr ip, r3, #PSR_F_BIT @ is disabled |
| 110 | msr cpsr_c, ip |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | mcr p15, 0, r2, c1, c0, 0 @ Disable I cache |
| 112 | mcr p15, 0, r0, c7, c0, 4 @ Wait for interrupt |
| 113 | mcr p15, 0, r1, c1, c0, 0 @ Restore ICache enable |
Russell King | 0214f92 | 2007-10-27 11:01:35 +0100 | [diff] [blame] | 114 | msr cpsr_c, r3 @ Restore FIQ state |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | mov pc, lr |
| 116 | |
| 117 | /* |
| 118 | * flush_user_cache_all() |
| 119 | * |
| 120 | * Clean and invalidate all cache entries in a particular |
| 121 | * address space. |
| 122 | */ |
| 123 | ENTRY(arm926_flush_user_cache_all) |
| 124 | /* FALLTHROUGH */ |
| 125 | |
| 126 | /* |
| 127 | * flush_kern_cache_all() |
| 128 | * |
| 129 | * Clean and invalidate the entire cache. |
| 130 | */ |
| 131 | ENTRY(arm926_flush_kern_cache_all) |
| 132 | mov r2, #VM_EXEC |
| 133 | mov ip, #0 |
| 134 | __flush_whole_cache: |
| 135 | #ifdef CONFIG_CPU_DCACHE_WRITETHROUGH |
| 136 | mcr p15, 0, ip, c7, c6, 0 @ invalidate D cache |
| 137 | #else |
| 138 | 1: mrc p15, 0, r15, c7, c14, 3 @ test,clean,invalidate |
| 139 | bne 1b |
| 140 | #endif |
| 141 | tst r2, #VM_EXEC |
| 142 | mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache |
| 143 | mcrne p15, 0, ip, c7, c10, 4 @ drain WB |
| 144 | mov pc, lr |
| 145 | |
| 146 | /* |
| 147 | * flush_user_cache_range(start, end, flags) |
| 148 | * |
| 149 | * Clean and invalidate a range of cache entries in the |
| 150 | * specified address range. |
| 151 | * |
| 152 | * - start - start address (inclusive) |
| 153 | * - end - end address (exclusive) |
| 154 | * - flags - vm_flags describing address space |
| 155 | */ |
| 156 | ENTRY(arm926_flush_user_cache_range) |
| 157 | mov ip, #0 |
| 158 | sub r3, r1, r0 @ calculate total size |
| 159 | cmp r3, #CACHE_DLIMIT |
| 160 | bgt __flush_whole_cache |
| 161 | 1: tst r2, #VM_EXEC |
| 162 | #ifdef CONFIG_CPU_DCACHE_WRITETHROUGH |
| 163 | mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry |
| 164 | mcrne p15, 0, r0, c7, c5, 1 @ invalidate I entry |
| 165 | add r0, r0, #CACHE_DLINESIZE |
| 166 | mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry |
| 167 | mcrne p15, 0, r0, c7, c5, 1 @ invalidate I entry |
| 168 | add r0, r0, #CACHE_DLINESIZE |
| 169 | #else |
| 170 | mcr p15, 0, r0, c7, c14, 1 @ clean and invalidate D entry |
| 171 | mcrne p15, 0, r0, c7, c5, 1 @ invalidate I entry |
| 172 | add r0, r0, #CACHE_DLINESIZE |
| 173 | mcr p15, 0, r0, c7, c14, 1 @ clean and invalidate D entry |
| 174 | mcrne p15, 0, r0, c7, c5, 1 @ invalidate I entry |
| 175 | add r0, r0, #CACHE_DLINESIZE |
| 176 | #endif |
| 177 | cmp r0, r1 |
| 178 | blo 1b |
| 179 | tst r2, #VM_EXEC |
| 180 | mcrne p15, 0, ip, c7, c10, 4 @ drain WB |
| 181 | mov pc, lr |
| 182 | |
| 183 | /* |
| 184 | * coherent_kern_range(start, end) |
| 185 | * |
| 186 | * Ensure coherency between the Icache and the Dcache in the |
| 187 | * region described by start, end. If you have non-snooping |
| 188 | * Harvard caches, you need to implement this function. |
| 189 | * |
| 190 | * - start - virtual start address |
| 191 | * - end - virtual end address |
| 192 | */ |
| 193 | ENTRY(arm926_coherent_kern_range) |
| 194 | /* FALLTHROUGH */ |
| 195 | |
| 196 | /* |
| 197 | * coherent_user_range(start, end) |
| 198 | * |
| 199 | * Ensure coherency between the Icache and the Dcache in the |
| 200 | * region described by start, end. If you have non-snooping |
| 201 | * Harvard caches, you need to implement this function. |
| 202 | * |
| 203 | * - start - virtual start address |
| 204 | * - end - virtual end address |
| 205 | */ |
| 206 | ENTRY(arm926_coherent_user_range) |
| 207 | bic r0, r0, #CACHE_DLINESIZE - 1 |
| 208 | 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry |
| 209 | mcr p15, 0, r0, c7, c5, 1 @ invalidate I entry |
| 210 | add r0, r0, #CACHE_DLINESIZE |
| 211 | cmp r0, r1 |
| 212 | blo 1b |
| 213 | mcr p15, 0, r0, c7, c10, 4 @ drain WB |
| 214 | mov pc, lr |
| 215 | |
| 216 | /* |
| 217 | * flush_kern_dcache_page(void *page) |
| 218 | * |
| 219 | * Ensure no D cache aliasing occurs, either with itself or |
| 220 | * the I cache |
| 221 | * |
| 222 | * - addr - page aligned address |
| 223 | */ |
| 224 | ENTRY(arm926_flush_kern_dcache_page) |
| 225 | add r1, r0, #PAGE_SZ |
| 226 | 1: mcr p15, 0, r0, c7, c14, 1 @ clean+invalidate D entry |
| 227 | add r0, r0, #CACHE_DLINESIZE |
| 228 | cmp r0, r1 |
| 229 | blo 1b |
| 230 | mov r0, #0 |
| 231 | mcr p15, 0, r0, c7, c5, 0 @ invalidate I cache |
| 232 | mcr p15, 0, r0, c7, c10, 4 @ drain WB |
| 233 | mov pc, lr |
| 234 | |
| 235 | /* |
| 236 | * dma_inv_range(start, end) |
| 237 | * |
| 238 | * Invalidate (discard) the specified virtual address range. |
| 239 | * May not write back any entries. If 'start' or 'end' |
| 240 | * are not cache line aligned, those lines must be written |
| 241 | * back. |
| 242 | * |
| 243 | * - start - virtual start address |
| 244 | * - end - virtual end address |
| 245 | * |
| 246 | * (same as v4wb) |
| 247 | */ |
| 248 | ENTRY(arm926_dma_inv_range) |
| 249 | #ifndef CONFIG_CPU_DCACHE_WRITETHROUGH |
| 250 | tst r0, #CACHE_DLINESIZE - 1 |
| 251 | mcrne p15, 0, r0, c7, c10, 1 @ clean D entry |
| 252 | tst r1, #CACHE_DLINESIZE - 1 |
| 253 | mcrne p15, 0, r1, c7, c10, 1 @ clean D entry |
| 254 | #endif |
| 255 | bic r0, r0, #CACHE_DLINESIZE - 1 |
| 256 | 1: mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry |
| 257 | add r0, r0, #CACHE_DLINESIZE |
| 258 | cmp r0, r1 |
| 259 | blo 1b |
| 260 | mcr p15, 0, r0, c7, c10, 4 @ drain WB |
| 261 | mov pc, lr |
| 262 | |
| 263 | /* |
| 264 | * dma_clean_range(start, end) |
| 265 | * |
| 266 | * Clean the specified virtual address range. |
| 267 | * |
| 268 | * - start - virtual start address |
| 269 | * - end - virtual end address |
| 270 | * |
| 271 | * (same as v4wb) |
| 272 | */ |
| 273 | ENTRY(arm926_dma_clean_range) |
| 274 | #ifndef CONFIG_CPU_DCACHE_WRITETHROUGH |
| 275 | bic r0, r0, #CACHE_DLINESIZE - 1 |
| 276 | 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry |
| 277 | add r0, r0, #CACHE_DLINESIZE |
| 278 | cmp r0, r1 |
| 279 | blo 1b |
| 280 | #endif |
| 281 | mcr p15, 0, r0, c7, c10, 4 @ drain WB |
| 282 | mov pc, lr |
| 283 | |
| 284 | /* |
| 285 | * dma_flush_range(start, end) |
| 286 | * |
| 287 | * Clean and invalidate the specified virtual address range. |
| 288 | * |
| 289 | * - start - virtual start address |
| 290 | * - end - virtual end address |
| 291 | */ |
| 292 | ENTRY(arm926_dma_flush_range) |
| 293 | bic r0, r0, #CACHE_DLINESIZE - 1 |
| 294 | 1: |
| 295 | #ifndef CONFIG_CPU_DCACHE_WRITETHROUGH |
| 296 | mcr p15, 0, r0, c7, c14, 1 @ clean+invalidate D entry |
| 297 | #else |
Lennert Buytenhek | b3a8b75 | 2008-05-10 21:05:31 +0100 | [diff] [blame] | 298 | mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | #endif |
| 300 | add r0, r0, #CACHE_DLINESIZE |
| 301 | cmp r0, r1 |
| 302 | blo 1b |
| 303 | mcr p15, 0, r0, c7, c10, 4 @ drain WB |
| 304 | mov pc, lr |
| 305 | |
| 306 | ENTRY(arm926_cache_fns) |
| 307 | .long arm926_flush_kern_cache_all |
| 308 | .long arm926_flush_user_cache_all |
| 309 | .long arm926_flush_user_cache_range |
| 310 | .long arm926_coherent_kern_range |
| 311 | .long arm926_coherent_user_range |
| 312 | .long arm926_flush_kern_dcache_page |
| 313 | .long arm926_dma_inv_range |
| 314 | .long arm926_dma_clean_range |
| 315 | .long arm926_dma_flush_range |
| 316 | |
| 317 | ENTRY(cpu_arm926_dcache_clean_area) |
| 318 | #ifndef CONFIG_CPU_DCACHE_WRITETHROUGH |
| 319 | 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry |
| 320 | add r0, r0, #CACHE_DLINESIZE |
| 321 | subs r1, r1, #CACHE_DLINESIZE |
| 322 | bhi 1b |
| 323 | #endif |
| 324 | mcr p15, 0, r0, c7, c10, 4 @ drain WB |
| 325 | mov pc, lr |
| 326 | |
| 327 | /* =============================== PageTable ============================== */ |
| 328 | |
| 329 | /* |
| 330 | * cpu_arm926_switch_mm(pgd) |
| 331 | * |
| 332 | * Set the translation base pointer to be as described by pgd. |
| 333 | * |
| 334 | * pgd: new page tables |
| 335 | */ |
| 336 | .align 5 |
| 337 | ENTRY(cpu_arm926_switch_mm) |
Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 338 | #ifdef CONFIG_MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | mov ip, #0 |
| 340 | #ifdef CONFIG_CPU_DCACHE_WRITETHROUGH |
| 341 | mcr p15, 0, ip, c7, c6, 0 @ invalidate D cache |
| 342 | #else |
| 343 | @ && 'Clean & Invalidate whole DCache' |
| 344 | 1: mrc p15, 0, r15, c7, c14, 3 @ test,clean,invalidate |
| 345 | bne 1b |
| 346 | #endif |
| 347 | mcr p15, 0, ip, c7, c5, 0 @ invalidate I cache |
| 348 | mcr p15, 0, ip, c7, c10, 4 @ drain WB |
| 349 | mcr p15, 0, r0, c2, c0, 0 @ load page table pointer |
| 350 | mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs |
Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 351 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | mov pc, lr |
| 353 | |
| 354 | /* |
Russell King | ad1ae2f | 2006-12-13 14:34:43 +0000 | [diff] [blame] | 355 | * cpu_arm926_set_pte_ext(ptep, pte, ext) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | * |
| 357 | * Set a PTE and flush it out |
| 358 | */ |
| 359 | .align 5 |
Russell King | ad1ae2f | 2006-12-13 14:34:43 +0000 | [diff] [blame] | 360 | ENTRY(cpu_arm926_set_pte_ext) |
Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 361 | #ifdef CONFIG_MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | str r1, [r0], #-2048 @ linux version |
| 363 | |
| 364 | eor r1, r1, #L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_WRITE | L_PTE_DIRTY |
| 365 | |
| 366 | bic r2, r1, #PTE_SMALL_AP_MASK |
| 367 | bic r2, r2, #PTE_TYPE_MASK |
| 368 | orr r2, r2, #PTE_TYPE_SMALL |
| 369 | |
| 370 | tst r1, #L_PTE_USER @ User? |
| 371 | orrne r2, r2, #PTE_SMALL_AP_URO_SRW |
| 372 | |
| 373 | tst r1, #L_PTE_WRITE | L_PTE_DIRTY @ Write and Dirty? |
| 374 | orreq r2, r2, #PTE_SMALL_AP_UNO_SRW |
| 375 | |
| 376 | tst r1, #L_PTE_PRESENT | L_PTE_YOUNG @ Present and Young? |
| 377 | movne r2, #0 |
| 378 | |
| 379 | #ifdef CONFIG_CPU_DCACHE_WRITETHROUGH |
| 380 | eor r3, r2, #0x0a @ C & small page? |
| 381 | tst r3, #0x0b |
| 382 | biceq r2, r2, #4 |
| 383 | #endif |
| 384 | str r2, [r0] @ hardware version |
| 385 | mov r0, r0 |
| 386 | #ifndef CONFIG_CPU_DCACHE_WRITETHROUGH |
| 387 | mcr p15, 0, r0, c7, c10, 1 @ clean D entry |
| 388 | #endif |
| 389 | mcr p15, 0, r0, c7, c10, 4 @ drain WB |
Hyok S. Choi | d090ddd | 2006-06-28 14:10:01 +0100 | [diff] [blame] | 390 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | mov pc, lr |
| 392 | |
| 393 | __INIT |
| 394 | |
| 395 | .type __arm926_setup, #function |
| 396 | __arm926_setup: |
| 397 | mov r0, #0 |
| 398 | mcr p15, 0, r0, c7, c7 @ invalidate I,D caches on v4 |
| 399 | 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] | 400 | #ifdef CONFIG_MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | 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] | 402 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
| 404 | |
| 405 | #ifdef CONFIG_CPU_DCACHE_WRITETHROUGH |
| 406 | mov r0, #4 @ disable write-back on caches explicitly |
| 407 | mcr p15, 7, r0, c15, c0, 0 |
| 408 | #endif |
| 409 | |
Russell King | 22b1908 | 2006-06-29 15:09:57 +0100 | [diff] [blame] | 410 | adr r5, arm926_crval |
| 411 | ldmia r5, {r5, r6} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | mrc p15, 0, r0, c1, c0 @ get control register v4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | bic r0, r0, r5 |
Russell King | 22b1908 | 2006-06-29 15:09:57 +0100 | [diff] [blame] | 414 | orr r0, r0, r6 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | #ifdef CONFIG_CPU_CACHE_ROUND_ROBIN |
| 416 | orr r0, r0, #0x4000 @ .1.. .... .... .... |
| 417 | #endif |
| 418 | mov pc, lr |
| 419 | .size __arm926_setup, . - __arm926_setup |
| 420 | |
| 421 | /* |
| 422 | * R |
| 423 | * .RVI ZFRS BLDP WCAM |
| 424 | * .011 0001 ..11 0101 |
| 425 | * |
| 426 | */ |
Russell King | 22b1908 | 2006-06-29 15:09:57 +0100 | [diff] [blame] | 427 | .type arm926_crval, #object |
| 428 | arm926_crval: |
| 429 | crval clear=0x00007f3f, mmuset=0x00003135, ucset=0x00001134 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
| 431 | __INITDATA |
| 432 | |
| 433 | /* |
| 434 | * Purpose : Function pointers used to access above functions - all calls |
| 435 | * come through these |
| 436 | */ |
| 437 | .type arm926_processor_functions, #object |
| 438 | arm926_processor_functions: |
| 439 | .word v5tj_early_abort |
Catalin Marinas | 4a1fd55 | 2008-04-21 18:42:04 +0100 | [diff] [blame] | 440 | .word pabort_noifar |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | .word cpu_arm926_proc_init |
| 442 | .word cpu_arm926_proc_fin |
| 443 | .word cpu_arm926_reset |
| 444 | .word cpu_arm926_do_idle |
| 445 | .word cpu_arm926_dcache_clean_area |
| 446 | .word cpu_arm926_switch_mm |
Russell King | ad1ae2f | 2006-12-13 14:34:43 +0000 | [diff] [blame] | 447 | .word cpu_arm926_set_pte_ext |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | .size arm926_processor_functions, . - arm926_processor_functions |
| 449 | |
| 450 | .section ".rodata" |
| 451 | |
| 452 | .type cpu_arch_name, #object |
| 453 | cpu_arch_name: |
| 454 | .asciz "armv5tej" |
| 455 | .size cpu_arch_name, . - cpu_arch_name |
| 456 | |
| 457 | .type cpu_elf_name, #object |
| 458 | cpu_elf_name: |
| 459 | .asciz "v5" |
| 460 | .size cpu_elf_name, . - cpu_elf_name |
| 461 | |
| 462 | .type cpu_arm926_name, #object |
| 463 | cpu_arm926_name: |
Russell King | 264edb3 | 2006-06-29 15:03:09 +0100 | [diff] [blame] | 464 | .asciz "ARM926EJ-S" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | .size cpu_arm926_name, . - cpu_arm926_name |
| 466 | |
| 467 | .align |
| 468 | |
Ben Dooks | 02b7dd1 | 2005-09-20 16:35:03 +0100 | [diff] [blame] | 469 | .section ".proc.info.init", #alloc, #execinstr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
| 471 | .type __arm926_proc_info,#object |
| 472 | __arm926_proc_info: |
| 473 | .long 0x41069260 @ ARM926EJ-S (v5TEJ) |
| 474 | .long 0xff0ffff0 |
| 475 | .long PMD_TYPE_SECT | \ |
| 476 | PMD_SECT_BUFFERABLE | \ |
| 477 | PMD_SECT_CACHEABLE | \ |
| 478 | PMD_BIT4 | \ |
| 479 | PMD_SECT_AP_WRITE | \ |
| 480 | PMD_SECT_AP_READ |
Russell King | 8799ee9 | 2006-06-29 18:24:21 +0100 | [diff] [blame] | 481 | .long PMD_TYPE_SECT | \ |
| 482 | PMD_BIT4 | \ |
| 483 | PMD_SECT_AP_WRITE | \ |
| 484 | PMD_SECT_AP_READ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | b __arm926_setup |
| 486 | .long cpu_arch_name |
| 487 | .long cpu_elf_name |
Russell King | efe90d2 | 2006-12-08 15:22:20 +0000 | [diff] [blame] | 488 | .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP|HWCAP_JAVA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | .long cpu_arm926_name |
| 490 | .long arm926_processor_functions |
| 491 | .long v4wbi_tlb_fns |
| 492 | .long v4wb_user_fns |
| 493 | .long arm926_cache_fns |
| 494 | .size __arm926_proc_info, . - __arm926_proc_info |