2 * linux/arch/arm/mm/proc-xscale.S
4 * Author: Nicolas Pitre
5 * Created: November 2000
6 * Copyright: (C) 2000, 2001 MontaVista Software Inc.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 * MMU functions for the Intel XScale CPUs
15 * some contributions by Brett Gaines <brett.w.gaines@intel.com>
16 * Copyright 2001 by Intel Corp.
19 * Completely revisited, many important fixes
20 * Nicolas Pitre <nico@fluxnic.net>
23 #include <linux/linkage.h>
24 #include <linux/init.h>
25 #include <asm/assembler.h>
26 #include <asm/hwcap.h>
27 #include <asm/pgtable.h>
28 #include <asm/pgtable-hwdef.h>
30 #include <asm/ptrace.h>
31 #include "proc-macros.S"
34 * This is the maximum size of an area which will be flushed. If the area
35 * is larger than this, then we flush the whole cache
37 #define MAX_AREA_SIZE 32768
40 * the cache line size of the I and D cache
42 #define CACHELINESIZE 32
45 * the size of the data cache
47 #define CACHESIZE 32768
50 * Virtual address used to allocate the cache when flushed
52 * This must be an address range which is _never_ used. It should
53 * apparently have a mapping in the corresponding page table for
54 * compatibility with future CPUs that _could_ require it. For instance we
57 * This must be aligned on a 2*CACHESIZE boundary. The code selects one of
58 * the 2 areas in alternance each time the clean_d_cache macro is used.
59 * Without this the XScale core exhibits cache eviction problems and no one
62 * Reminder: the vector table is located at 0xffff0000-0xffff0fff.
64 #define CLEAN_ADDR 0xfffe0000
67 * This macro is used to wait for a CP15 write and is needed
68 * when we have to ensure that the last operation to the co-pro
69 * was completed before continuing with operation.
72 mrc p15, 0, \rd, c2, c0, 0 @ arbitrary read of cp15
73 mov \rd, \rd @ wait for completion
74 sub pc, pc, #4 @ flush instruction pipeline
77 .macro cpwait_ret, lr, rd
78 mrc p15, 0, \rd, c2, c0, 0 @ arbitrary read of cp15
79 sub pc, \lr, \rd, LSR #32 @ wait for completion and
80 @ flush instruction pipeline
84 * This macro cleans the entire dcache using line allocate.
85 * The main loop has been unrolled to reduce loop overhead.
86 * rd and rs are two scratch registers.
88 .macro clean_d_cache, rd, rs
91 eor \rd, \rd, #CACHESIZE
93 add \rs, \rd, #CACHESIZE
94 1: mcr p15, 0, \rd, c7, c2, 5 @ allocate D cache line
95 add \rd, \rd, #CACHELINESIZE
96 mcr p15, 0, \rd, c7, c2, 5 @ allocate D cache line
97 add \rd, \rd, #CACHELINESIZE
98 mcr p15, 0, \rd, c7, c2, 5 @ allocate D cache line
99 add \rd, \rd, #CACHELINESIZE
100 mcr p15, 0, \rd, c7, c2, 5 @ allocate D cache line
101 add \rd, \rd, #CACHELINESIZE
107 clean_addr: .word CLEAN_ADDR
112 * cpu_xscale_proc_init()
114 * Nothing too exciting at the moment
116 ENTRY(cpu_xscale_proc_init)
117 @ enable write buffer coalescing. Some bootloader disable it
118 mrc p15, 0, r1, c1, c0, 1
120 mcr p15, 0, r1, c1, c0, 1
124 * cpu_xscale_proc_fin()
126 ENTRY(cpu_xscale_proc_fin)
127 mrc p15, 0, r0, c1, c0, 0 @ ctrl register
128 bic r0, r0, #0x1800 @ ...IZ...........
129 bic r0, r0, #0x0006 @ .............CA.
130 mcr p15, 0, r0, c1, c0, 0 @ disable caches
134 * cpu_xscale_reset(loc)
136 * Perform a soft reset of the system. Put the CPU into the
137 * same state as it would be if it had been reset, and branch
138 * to what would be the reset vector.
140 * loc: location to jump to for soft reset
142 * Beware PXA270 erratum E7.
145 ENTRY(cpu_xscale_reset)
146 mov r1, #PSR_F_BIT|PSR_I_BIT|SVC_MODE
147 msr cpsr_c, r1 @ reset CPSR
148 mcr p15, 0, r1, c10, c4, 1 @ unlock I-TLB
149 mcr p15, 0, r1, c8, c5, 0 @ invalidate I-TLB
150 mrc p15, 0, r1, c1, c0, 0 @ ctrl register
151 bic r1, r1, #0x0086 @ ........B....CA.
152 bic r1, r1, #0x3900 @ ..VIZ..S........
153 sub pc, pc, #4 @ flush pipeline
154 @ *** cache line aligned ***
155 mcr p15, 0, r1, c1, c0, 0 @ ctrl register
156 bic r1, r1, #0x0001 @ ...............M
157 mcr p15, 0, ip, c7, c7, 0 @ invalidate I,D caches & BTB
158 mcr p15, 0, r1, c1, c0, 0 @ ctrl register
159 @ CAUTION: MMU turned off from this point. We count on the pipeline
160 @ already containing those two last instructions to survive.
161 mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
165 * cpu_xscale_do_idle()
167 * Cause the processor to idle
169 * For now we do nothing but go to idle mode for every case
171 * XScale supports clock switching, but using idle mode support
172 * allows external hardware to react to system state changes.
176 ENTRY(cpu_xscale_do_idle)
178 mcr p14, 0, r0, c7, c0, 0 @ Go to IDLE
181 /* ================================= CACHE ================================ */
184 * flush_user_cache_all()
186 * Invalidate all cache entries in a particular address
189 ENTRY(xscale_flush_user_cache_all)
193 * flush_kern_cache_all()
195 * Clean and invalidate the entire cache.
197 ENTRY(xscale_flush_kern_cache_all)
203 mcrne p15, 0, ip, c7, c5, 0 @ Invalidate I cache & BTB
204 mcrne p15, 0, ip, c7, c10, 4 @ Drain Write (& Fill) Buffer
208 * flush_user_cache_range(start, end, vm_flags)
210 * Invalidate a range of cache entries in the specified
213 * - start - start address (may not be aligned)
214 * - end - end address (exclusive, may not be aligned)
215 * - vma - vma_area_struct describing address space
218 ENTRY(xscale_flush_user_cache_range)
220 sub r3, r1, r0 @ calculate total size
221 cmp r3, #MAX_AREA_SIZE
222 bhs __flush_whole_cache
225 mcrne p15, 0, r0, c7, c5, 1 @ Invalidate I cache line
226 mcr p15, 0, r0, c7, c10, 1 @ Clean D cache line
227 mcr p15, 0, r0, c7, c6, 1 @ Invalidate D cache line
228 add r0, r0, #CACHELINESIZE
232 mcrne p15, 0, ip, c7, c5, 6 @ Invalidate BTB
233 mcrne p15, 0, ip, c7, c10, 4 @ Drain Write (& Fill) Buffer
237 * coherent_kern_range(start, end)
239 * Ensure coherency between the Icache and the Dcache in the
240 * region described by start. If you have non-snooping
241 * Harvard caches, you need to implement this function.
243 * - start - virtual start address
244 * - end - virtual end address
246 * Note: single I-cache line invalidation isn't used here since
247 * it also trashes the mini I-cache used by JTAG debuggers.
249 ENTRY(xscale_coherent_kern_range)
250 bic r0, r0, #CACHELINESIZE - 1
251 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
252 add r0, r0, #CACHELINESIZE
256 mcr p15, 0, r0, c7, c5, 0 @ Invalidate I cache & BTB
257 mcr p15, 0, r0, c7, c10, 4 @ Drain Write (& Fill) Buffer
261 * coherent_user_range(start, end)
263 * Ensure coherency between the Icache and the Dcache in the
264 * region described by start. If you have non-snooping
265 * Harvard caches, you need to implement this function.
267 * - start - virtual start address
268 * - end - virtual end address
270 ENTRY(xscale_coherent_user_range)
271 bic r0, r0, #CACHELINESIZE - 1
272 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
273 mcr p15, 0, r0, c7, c5, 1 @ Invalidate I cache entry
274 add r0, r0, #CACHELINESIZE
278 mcr p15, 0, r0, c7, c5, 6 @ Invalidate BTB
279 mcr p15, 0, r0, c7, c10, 4 @ Drain Write (& Fill) Buffer
283 * flush_kern_dcache_area(void *addr, size_t size)
285 * Ensure no D cache aliasing occurs, either with itself or
288 * - addr - kernel address
289 * - size - region size
291 ENTRY(xscale_flush_kern_dcache_area)
293 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
294 mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry
295 add r0, r0, #CACHELINESIZE
299 mcr p15, 0, r0, c7, c5, 0 @ Invalidate I cache & BTB
300 mcr p15, 0, r0, c7, c10, 4 @ Drain Write (& Fill) Buffer
304 * dma_inv_range(start, end)
306 * Invalidate (discard) the specified virtual address range.
307 * May not write back any entries. If 'start' or 'end'
308 * are not cache line aligned, those lines must be written
311 * - start - virtual start address
312 * - end - virtual end address
314 xscale_dma_inv_range:
315 tst r0, #CACHELINESIZE - 1
316 bic r0, r0, #CACHELINESIZE - 1
317 mcrne p15, 0, r0, c7, c10, 1 @ clean D entry
318 tst r1, #CACHELINESIZE - 1
319 mcrne p15, 0, r1, c7, c10, 1 @ clean D entry
320 1: mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry
321 add r0, r0, #CACHELINESIZE
324 mcr p15, 0, r0, c7, c10, 4 @ Drain Write (& Fill) Buffer
328 * dma_clean_range(start, end)
330 * Clean the specified virtual address range.
332 * - start - virtual start address
333 * - end - virtual end address
335 xscale_dma_clean_range:
336 bic r0, r0, #CACHELINESIZE - 1
337 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
338 add r0, r0, #CACHELINESIZE
341 mcr p15, 0, r0, c7, c10, 4 @ Drain Write (& Fill) Buffer
345 * dma_flush_range(start, end)
347 * Clean and invalidate the specified virtual address range.
349 * - start - virtual start address
350 * - end - virtual end address
352 ENTRY(xscale_dma_flush_range)
353 bic r0, r0, #CACHELINESIZE - 1
354 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
355 mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry
356 add r0, r0, #CACHELINESIZE
359 mcr p15, 0, r0, c7, c10, 4 @ Drain Write (& Fill) Buffer
363 * dma_map_area(start, size, dir)
364 * - start - kernel virtual start address
365 * - size - size of region
366 * - dir - DMA direction
368 ENTRY(xscale_dma_map_area)
370 cmp r2, #DMA_TO_DEVICE
371 beq xscale_dma_clean_range
372 bcs xscale_dma_inv_range
373 b xscale_dma_flush_range
374 ENDPROC(xscale_dma_map_area)
377 * dma_map_area(start, size, dir)
378 * - start - kernel virtual start address
379 * - size - size of region
380 * - dir - DMA direction
382 ENTRY(xscale_dma_a0_map_area)
384 teq r2, #DMA_TO_DEVICE
385 beq xscale_dma_clean_range
386 b xscale_dma_flush_range
387 ENDPROC(xscsale_dma_a0_map_area)
390 * dma_unmap_area(start, size, dir)
391 * - start - kernel virtual start address
392 * - size - size of region
393 * - dir - DMA direction
395 ENTRY(xscale_dma_unmap_area)
397 ENDPROC(xscale_dma_unmap_area)
399 ENTRY(xscale_cache_fns)
400 .long xscale_flush_kern_cache_all
401 .long xscale_flush_user_cache_all
402 .long xscale_flush_user_cache_range
403 .long xscale_coherent_kern_range
404 .long xscale_coherent_user_range
405 .long xscale_flush_kern_dcache_area
406 .long xscale_dma_map_area
407 .long xscale_dma_unmap_area
408 .long xscale_dma_flush_range
411 * On stepping A0/A1 of the 80200, invalidating D-cache by line doesn't
412 * clear the dirty bits, which means that if we invalidate a dirty line,
413 * the dirty data can still be written back to external memory later on.
415 * The recommended workaround is to always do a clean D-cache line before
416 * doing an invalidate D-cache line, so on the affected processors,
417 * dma_inv_range() is implemented as dma_flush_range().
419 * See erratum #25 of "Intel 80200 Processor Specification Update",
420 * revision January 22, 2003, available at:
421 * http://www.intel.com/design/iio/specupdt/273415.htm
423 ENTRY(xscale_80200_A0_A1_cache_fns)
424 .long xscale_flush_kern_cache_all
425 .long xscale_flush_user_cache_all
426 .long xscale_flush_user_cache_range
427 .long xscale_coherent_kern_range
428 .long xscale_coherent_user_range
429 .long xscale_flush_kern_dcache_area
430 .long xscale_dma_a0_map_area
431 .long xscale_dma_unmap_area
432 .long xscale_dma_flush_range
434 ENTRY(cpu_xscale_dcache_clean_area)
435 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
436 add r0, r0, #CACHELINESIZE
437 subs r1, r1, #CACHELINESIZE
441 /* =============================== PageTable ============================== */
444 * cpu_xscale_switch_mm(pgd)
446 * Set the translation base pointer to be as described by pgd.
448 * pgd: new page tables
451 ENTRY(cpu_xscale_switch_mm)
453 mcr p15, 0, ip, c7, c5, 0 @ Invalidate I cache & BTB
454 mcr p15, 0, ip, c7, c10, 4 @ Drain Write (& Fill) Buffer
455 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
456 mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
460 * cpu_xscale_set_pte_ext(ptep, pte, ext)
462 * Set a PTE and flush it out
464 * Errata 40: must set memory to write-through for user read-only pages.
467 .long 0x00 @ L_PTE_MT_UNCACHED
468 .long PTE_BUFFERABLE @ L_PTE_MT_BUFFERABLE
469 .long PTE_CACHEABLE @ L_PTE_MT_WRITETHROUGH
470 .long PTE_CACHEABLE | PTE_BUFFERABLE @ L_PTE_MT_WRITEBACK
471 .long PTE_EXT_TEX(1) | PTE_BUFFERABLE @ L_PTE_MT_DEV_SHARED
473 .long PTE_EXT_TEX(1) | PTE_CACHEABLE @ L_PTE_MT_MINICACHE
474 .long PTE_EXT_TEX(1) | PTE_CACHEABLE | PTE_BUFFERABLE @ L_PTE_MT_WRITEALLOC
476 .long PTE_BUFFERABLE @ L_PTE_MT_DEV_WC
478 .long PTE_CACHEABLE | PTE_BUFFERABLE @ L_PTE_MT_DEV_CACHED
479 .long 0x00 @ L_PTE_MT_DEV_NONSHARED
485 ENTRY(cpu_xscale_set_pte_ext)
486 xscale_set_pte_ext_prologue
489 @ Erratum 40: must set memory to write-through for user read-only pages
491 and ip, r1, #(L_PTE_MT_MASK | L_PTE_USER | L_PTE_WRITE) & ~(4 << 2)
492 teq ip, #L_PTE_MT_WRITEBACK | L_PTE_USER
494 moveq r1, #L_PTE_MT_WRITETHROUGH
495 and r1, r1, #L_PTE_MT_MASK
496 adr ip, cpu_xscale_mt_table
501 xscale_set_pte_ext_epilogue
511 .type __xscale_setup, #function
513 mcr p15, 0, ip, c7, c7, 0 @ invalidate I, D caches & BTB
514 mcr p15, 0, ip, c7, c10, 4 @ Drain Write (& Fill) Buffer
515 mcr p15, 0, ip, c8, c7, 0 @ invalidate I, D TLBs
516 mov r0, #1 << 6 @ cp6 for IOP3xx and Bulverde
517 orr r0, r0, #1 << 13 @ Its undefined whether this
518 mcr p15, 0, r0, c15, c1, 0 @ affects USR or SVC modes
522 mrc p15, 0, r0, c1, c0, 0 @ get control register
526 .size __xscale_setup, . - __xscale_setup
530 * .RVI ZFRS BLDP WCAM
531 * ..11 1.01 .... .101
534 .type xscale_crval, #object
536 crval clear=0x00003b07, mmuset=0x00003905, ucset=0x00001900
541 * Purpose : Function pointers used to access above functions - all calls
545 .type xscale_processor_functions, #object
546 ENTRY(xscale_processor_functions)
547 .word v5t_early_abort
549 .word cpu_xscale_proc_init
550 .word cpu_xscale_proc_fin
551 .word cpu_xscale_reset
552 .word cpu_xscale_do_idle
553 .word cpu_xscale_dcache_clean_area
554 .word cpu_xscale_switch_mm
555 .word cpu_xscale_set_pte_ext
556 .size xscale_processor_functions, . - xscale_processor_functions
560 .type cpu_arch_name, #object
563 .size cpu_arch_name, . - cpu_arch_name
565 .type cpu_elf_name, #object
568 .size cpu_elf_name, . - cpu_elf_name
570 .type cpu_80200_A0_A1_name, #object
571 cpu_80200_A0_A1_name:
572 .asciz "XScale-80200 A0/A1"
573 .size cpu_80200_A0_A1_name, . - cpu_80200_A0_A1_name
575 .type cpu_80200_name, #object
577 .asciz "XScale-80200"
578 .size cpu_80200_name, . - cpu_80200_name
580 .type cpu_80219_name, #object
582 .asciz "XScale-80219"
583 .size cpu_80219_name, . - cpu_80219_name
585 .type cpu_8032x_name, #object
587 .asciz "XScale-IOP8032x Family"
588 .size cpu_8032x_name, . - cpu_8032x_name
590 .type cpu_8033x_name, #object
592 .asciz "XScale-IOP8033x Family"
593 .size cpu_8033x_name, . - cpu_8033x_name
595 .type cpu_pxa250_name, #object
597 .asciz "XScale-PXA250"
598 .size cpu_pxa250_name, . - cpu_pxa250_name
600 .type cpu_pxa210_name, #object
602 .asciz "XScale-PXA210"
603 .size cpu_pxa210_name, . - cpu_pxa210_name
605 .type cpu_ixp42x_name, #object
607 .asciz "XScale-IXP42x Family"
608 .size cpu_ixp42x_name, . - cpu_ixp42x_name
610 .type cpu_ixp43x_name, #object
612 .asciz "XScale-IXP43x Family"
613 .size cpu_ixp43x_name, . - cpu_ixp43x_name
615 .type cpu_ixp46x_name, #object
617 .asciz "XScale-IXP46x Family"
618 .size cpu_ixp46x_name, . - cpu_ixp46x_name
620 .type cpu_ixp2400_name, #object
622 .asciz "XScale-IXP2400"
623 .size cpu_ixp2400_name, . - cpu_ixp2400_name
625 .type cpu_ixp2800_name, #object
627 .asciz "XScale-IXP2800"
628 .size cpu_ixp2800_name, . - cpu_ixp2800_name
630 .type cpu_pxa255_name, #object
632 .asciz "XScale-PXA255"
633 .size cpu_pxa255_name, . - cpu_pxa255_name
635 .type cpu_pxa270_name, #object
637 .asciz "XScale-PXA270"
638 .size cpu_pxa270_name, . - cpu_pxa270_name
642 .section ".proc.info.init", #alloc, #execinstr
644 .type __80200_A0_A1_proc_info,#object
645 __80200_A0_A1_proc_info:
648 .long PMD_TYPE_SECT | \
649 PMD_SECT_BUFFERABLE | \
650 PMD_SECT_CACHEABLE | \
651 PMD_SECT_AP_WRITE | \
653 .long PMD_TYPE_SECT | \
654 PMD_SECT_AP_WRITE | \
659 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
661 .long xscale_processor_functions
663 .long xscale_mc_user_fns
664 .long xscale_80200_A0_A1_cache_fns
665 .size __80200_A0_A1_proc_info, . - __80200_A0_A1_proc_info
667 .type __80200_proc_info,#object
671 .long PMD_TYPE_SECT | \
672 PMD_SECT_BUFFERABLE | \
673 PMD_SECT_CACHEABLE | \
674 PMD_SECT_AP_WRITE | \
676 .long PMD_TYPE_SECT | \
677 PMD_SECT_AP_WRITE | \
682 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
684 .long xscale_processor_functions
686 .long xscale_mc_user_fns
687 .long xscale_cache_fns
688 .size __80200_proc_info, . - __80200_proc_info
690 .type __80219_proc_info,#object
694 .long PMD_TYPE_SECT | \
695 PMD_SECT_BUFFERABLE | \
696 PMD_SECT_CACHEABLE | \
697 PMD_SECT_AP_WRITE | \
699 .long PMD_TYPE_SECT | \
700 PMD_SECT_AP_WRITE | \
705 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
707 .long xscale_processor_functions
709 .long xscale_mc_user_fns
710 .long xscale_cache_fns
711 .size __80219_proc_info, . - __80219_proc_info
713 .type __8032x_proc_info,#object
717 .long PMD_TYPE_SECT | \
718 PMD_SECT_BUFFERABLE | \
719 PMD_SECT_CACHEABLE | \
720 PMD_SECT_AP_WRITE | \
722 .long PMD_TYPE_SECT | \
723 PMD_SECT_AP_WRITE | \
728 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
730 .long xscale_processor_functions
732 .long xscale_mc_user_fns
733 .long xscale_cache_fns
734 .size __8032x_proc_info, . - __8032x_proc_info
736 .type __8033x_proc_info,#object
740 .long PMD_TYPE_SECT | \
741 PMD_SECT_BUFFERABLE | \
742 PMD_SECT_CACHEABLE | \
743 PMD_SECT_AP_WRITE | \
745 .long PMD_TYPE_SECT | \
746 PMD_SECT_AP_WRITE | \
751 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
753 .long xscale_processor_functions
755 .long xscale_mc_user_fns
756 .long xscale_cache_fns
757 .size __8033x_proc_info, . - __8033x_proc_info
759 .type __pxa250_proc_info,#object
763 .long PMD_TYPE_SECT | \
764 PMD_SECT_BUFFERABLE | \
765 PMD_SECT_CACHEABLE | \
766 PMD_SECT_AP_WRITE | \
768 .long PMD_TYPE_SECT | \
769 PMD_SECT_AP_WRITE | \
774 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
775 .long cpu_pxa250_name
776 .long xscale_processor_functions
778 .long xscale_mc_user_fns
779 .long xscale_cache_fns
780 .size __pxa250_proc_info, . - __pxa250_proc_info
782 .type __pxa210_proc_info,#object
786 .long PMD_TYPE_SECT | \
787 PMD_SECT_BUFFERABLE | \
788 PMD_SECT_CACHEABLE | \
789 PMD_SECT_AP_WRITE | \
791 .long PMD_TYPE_SECT | \
792 PMD_SECT_AP_WRITE | \
797 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
798 .long cpu_pxa210_name
799 .long xscale_processor_functions
801 .long xscale_mc_user_fns
802 .long xscale_cache_fns
803 .size __pxa210_proc_info, . - __pxa210_proc_info
805 .type __ixp2400_proc_info, #object
809 .long PMD_TYPE_SECT | \
810 PMD_SECT_BUFFERABLE | \
811 PMD_SECT_CACHEABLE | \
812 PMD_SECT_AP_WRITE | \
814 .long PMD_TYPE_SECT | \
815 PMD_SECT_AP_WRITE | \
820 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
821 .long cpu_ixp2400_name
822 .long xscale_processor_functions
824 .long xscale_mc_user_fns
825 .long xscale_cache_fns
826 .size __ixp2400_proc_info, . - __ixp2400_proc_info
828 .type __ixp2800_proc_info, #object
832 .long PMD_TYPE_SECT | \
833 PMD_SECT_BUFFERABLE | \
834 PMD_SECT_CACHEABLE | \
835 PMD_SECT_AP_WRITE | \
837 .long PMD_TYPE_SECT | \
838 PMD_SECT_AP_WRITE | \
843 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
844 .long cpu_ixp2800_name
845 .long xscale_processor_functions
847 .long xscale_mc_user_fns
848 .long xscale_cache_fns
849 .size __ixp2800_proc_info, . - __ixp2800_proc_info
851 .type __ixp42x_proc_info, #object
855 .long PMD_TYPE_SECT | \
856 PMD_SECT_BUFFERABLE | \
857 PMD_SECT_CACHEABLE | \
858 PMD_SECT_AP_WRITE | \
860 .long PMD_TYPE_SECT | \
861 PMD_SECT_AP_WRITE | \
866 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
867 .long cpu_ixp42x_name
868 .long xscale_processor_functions
870 .long xscale_mc_user_fns
871 .long xscale_cache_fns
872 .size __ixp42x_proc_info, . - __ixp42x_proc_info
874 .type __ixp43x_proc_info, #object
878 .long PMD_TYPE_SECT | \
879 PMD_SECT_BUFFERABLE | \
880 PMD_SECT_CACHEABLE | \
881 PMD_SECT_AP_WRITE | \
883 .long PMD_TYPE_SECT | \
884 PMD_SECT_AP_WRITE | \
889 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
890 .long cpu_ixp43x_name
891 .long xscale_processor_functions
893 .long xscale_mc_user_fns
894 .long xscale_cache_fns
895 .size __ixp43x_proc_info, . - __ixp43x_proc_info
897 .type __ixp46x_proc_info, #object
901 .long PMD_TYPE_SECT | \
902 PMD_SECT_BUFFERABLE | \
903 PMD_SECT_CACHEABLE | \
904 PMD_SECT_AP_WRITE | \
906 .long PMD_TYPE_SECT | \
907 PMD_SECT_AP_WRITE | \
912 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
913 .long cpu_ixp46x_name
914 .long xscale_processor_functions
916 .long xscale_mc_user_fns
917 .long xscale_cache_fns
918 .size __ixp46x_proc_info, . - __ixp46x_proc_info
920 .type __pxa255_proc_info,#object
924 .long PMD_TYPE_SECT | \
925 PMD_SECT_BUFFERABLE | \
926 PMD_SECT_CACHEABLE | \
927 PMD_SECT_AP_WRITE | \
929 .long PMD_TYPE_SECT | \
930 PMD_SECT_AP_WRITE | \
935 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
936 .long cpu_pxa255_name
937 .long xscale_processor_functions
939 .long xscale_mc_user_fns
940 .long xscale_cache_fns
941 .size __pxa255_proc_info, . - __pxa255_proc_info
943 .type __pxa270_proc_info,#object
947 .long PMD_TYPE_SECT | \
948 PMD_SECT_BUFFERABLE | \
949 PMD_SECT_CACHEABLE | \
950 PMD_SECT_AP_WRITE | \
952 .long PMD_TYPE_SECT | \
953 PMD_SECT_AP_WRITE | \
958 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
959 .long cpu_pxa270_name
960 .long xscale_processor_functions
962 .long xscale_mc_user_fns
963 .long xscale_cache_fns
964 .size __pxa270_proc_info, . - __pxa270_proc_info