ARM: support generic per-device coherent dma mem
[deliverable/linux.git] / arch / arm / mm / proc-feroceon.S
CommitLineData
e50d6409
AH
1/*
2 * linux/arch/arm/mm/proc-feroceon.S: MMU functions for Feroceon
3 *
4 * Heavily based on proc-arm926.S
5 * Maintainer: Assaf Hoffman <hoffman@marvell.com>
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 as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#include <linux/linkage.h>
23#include <linux/init.h>
24#include <asm/assembler.h>
25#include <asm/elf.h>
26#include <asm/pgtable-hwdef.h>
27#include <asm/pgtable.h>
28#include <asm/page.h>
29#include <asm/ptrace.h>
30#include "proc-macros.S"
31
32/*
33 * This is the maximum size of an area which will be invalidated
34 * using the single invalidate entry instructions. Anything larger
35 * than this, and we go for the whole cache.
36 *
37 * This value should be chosen such that we choose the cheapest
38 * alternative.
39 */
40#define CACHE_DLIMIT 16384
41
42/*
43 * the cache line size of the I and D cache
44 */
45#define CACHE_DLINESIZE 32
46
6c386e58
NP
47 .bss
48 .align 3
49__cache_params_loc:
50 .space 8
51
e50d6409 52 .text
6c386e58
NP
53__cache_params:
54 .word __cache_params_loc
55
e50d6409
AH
56/*
57 * cpu_feroceon_proc_init()
58 */
59ENTRY(cpu_feroceon_proc_init)
6c386e58
NP
60 mrc p15, 0, r0, c0, c0, 1 @ read cache type register
61 ldr r1, __cache_params
62 mov r2, #(16 << 5)
63 tst r0, #(1 << 16) @ get way
64 mov r0, r0, lsr #18 @ get cache size order
65 movne r3, #((4 - 1) << 30) @ 4-way
66 and r0, r0, #0xf
67 moveq r3, #0 @ 1-way
68 mov r2, r2, lsl r0 @ actual cache size
69 movne r2, r2, lsr #2 @ turned into # of sets
70 sub r2, r2, #(1 << 5)
71 stmia r1, {r2, r3}
e50d6409
AH
72 mov pc, lr
73
74/*
75 * cpu_feroceon_proc_fin()
76 */
77ENTRY(cpu_feroceon_proc_fin)
78 stmfd sp!, {lr}
79 mov ip, #PSR_F_BIT | PSR_I_BIT | SVC_MODE
80 msr cpsr_c, ip
81 bl feroceon_flush_kern_cache_all
99c6dc11
LB
82
83#if defined(CONFIG_CACHE_FEROCEON_L2) && !defined(CONFIG_L2_CACHE_WRITETHROUGH)
84 mov r0, #0
85 mcr p15, 1, r0, c15, c9, 0 @ clean L2
86 mcr p15, 0, r0, c7, c10, 4 @ drain WB
87#endif
88
e50d6409
AH
89 mrc p15, 0, r0, c1, c0, 0 @ ctrl register
90 bic r0, r0, #0x1000 @ ...i............
91 bic r0, r0, #0x000e @ ............wca.
92 mcr p15, 0, r0, c1, c0, 0 @ disable caches
93 ldmfd sp!, {pc}
94
95/*
96 * cpu_feroceon_reset(loc)
97 *
98 * Perform a soft reset of the system. Put the CPU into the
99 * same state as it would be if it had been reset, and branch
100 * to what would be the reset vector.
101 *
102 * loc: location to jump to for soft reset
103 */
104 .align 5
105ENTRY(cpu_feroceon_reset)
106 mov ip, #0
107 mcr p15, 0, ip, c7, c7, 0 @ invalidate I,D caches
108 mcr p15, 0, ip, c7, c10, 4 @ drain WB
109#ifdef CONFIG_MMU
110 mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
111#endif
112 mrc p15, 0, ip, c1, c0, 0 @ ctrl register
113 bic ip, ip, #0x000f @ ............wcam
114 bic ip, ip, #0x1100 @ ...i...s........
115 mcr p15, 0, ip, c1, c0, 0 @ ctrl register
116 mov pc, r0
117
118/*
119 * cpu_feroceon_do_idle()
120 *
121 * Called with IRQs disabled
122 */
6b29e681 123 .align 5
e50d6409
AH
124ENTRY(cpu_feroceon_do_idle)
125 mov r0, #0
126 mcr p15, 0, r0, c7, c10, 4 @ Drain write buffer
127 mcr p15, 0, r0, c7, c0, 4 @ Wait for interrupt
128 mov pc, lr
129
130/*
131 * flush_user_cache_all()
132 *
133 * Clean and invalidate all cache entries in a particular
134 * address space.
135 */
6b29e681 136 .align 5
e50d6409
AH
137ENTRY(feroceon_flush_user_cache_all)
138 /* FALLTHROUGH */
139
140/*
141 * flush_kern_cache_all()
142 *
143 * Clean and invalidate the entire cache.
144 */
145ENTRY(feroceon_flush_kern_cache_all)
146 mov r2, #VM_EXEC
6c386e58 147
e50d6409 148__flush_whole_cache:
6c386e58
NP
149 ldr r1, __cache_params
150 ldmia r1, {r1, r3}
1511: orr ip, r1, r3
1522: mcr p15, 0, ip, c7, c14, 2 @ clean + invalidate D set/way
153 subs ip, ip, #(1 << 30) @ next way
154 bcs 2b
155 subs r1, r1, #(1 << 5) @ next set
156 bcs 1b
157
e50d6409 158 tst r2, #VM_EXEC
6c386e58 159 mov ip, #0
e50d6409
AH
160 mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache
161 mcrne p15, 0, ip, c7, c10, 4 @ drain WB
162 mov pc, lr
163
164/*
165 * flush_user_cache_range(start, end, flags)
166 *
167 * Clean and invalidate a range of cache entries in the
168 * specified address range.
169 *
170 * - start - start address (inclusive)
171 * - end - end address (exclusive)
172 * - flags - vm_flags describing address space
173 */
6b29e681 174 .align 5
e50d6409 175ENTRY(feroceon_flush_user_cache_range)
e50d6409
AH
176 sub r3, r1, r0 @ calculate total size
177 cmp r3, #CACHE_DLIMIT
178 bgt __flush_whole_cache
1791: tst r2, #VM_EXEC
e50d6409
AH
180 mcr p15, 0, r0, c7, c14, 1 @ clean and invalidate D entry
181 mcrne p15, 0, r0, c7, c5, 1 @ invalidate I entry
182 add r0, r0, #CACHE_DLINESIZE
183 mcr p15, 0, r0, c7, c14, 1 @ clean and invalidate D entry
184 mcrne p15, 0, r0, c7, c5, 1 @ invalidate I entry
185 add r0, r0, #CACHE_DLINESIZE
e50d6409
AH
186 cmp r0, r1
187 blo 1b
188 tst r2, #VM_EXEC
6c386e58 189 mov ip, #0
e50d6409
AH
190 mcrne p15, 0, ip, c7, c10, 4 @ drain WB
191 mov pc, lr
192
193/*
194 * coherent_kern_range(start, end)
195 *
196 * Ensure coherency between the Icache and the Dcache in the
197 * region described by start, end. If you have non-snooping
198 * Harvard caches, you need to implement this function.
199 *
200 * - start - virtual start address
201 * - end - virtual end address
202 */
6b29e681 203 .align 5
e50d6409
AH
204ENTRY(feroceon_coherent_kern_range)
205 /* FALLTHROUGH */
206
207/*
208 * coherent_user_range(start, end)
209 *
210 * Ensure coherency between the Icache and the Dcache in the
211 * region described by start, end. If you have non-snooping
212 * Harvard caches, you need to implement this function.
213 *
214 * - start - virtual start address
215 * - end - virtual end address
216 */
217ENTRY(feroceon_coherent_user_range)
218 bic r0, r0, #CACHE_DLINESIZE - 1
2191: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
220 mcr p15, 0, r0, c7, c5, 1 @ invalidate I entry
221 add r0, r0, #CACHE_DLINESIZE
222 cmp r0, r1
223 blo 1b
224 mcr p15, 0, r0, c7, c10, 4 @ drain WB
225 mov pc, lr
226
227/*
228 * flush_kern_dcache_page(void *page)
229 *
230 * Ensure no D cache aliasing occurs, either with itself or
231 * the I cache
232 *
233 * - addr - page aligned address
234 */
6b29e681 235 .align 5
e50d6409
AH
236ENTRY(feroceon_flush_kern_dcache_page)
237 add r1, r0, #PAGE_SZ
2381: mcr p15, 0, r0, c7, c14, 1 @ clean+invalidate D entry
239 add r0, r0, #CACHE_DLINESIZE
240 cmp r0, r1
241 blo 1b
242 mov r0, #0
243 mcr p15, 0, r0, c7, c5, 0 @ invalidate I cache
244 mcr p15, 0, r0, c7, c10, 4 @ drain WB
245 mov pc, lr
246
836a8051
SS
247 .align 5
248ENTRY(feroceon_range_flush_kern_dcache_page)
249 mrs r2, cpsr
250 add r1, r0, #PAGE_SZ - CACHE_DLINESIZE @ top addr is inclusive
251 orr r3, r2, #PSR_I_BIT
252 msr cpsr_c, r3 @ disable interrupts
253 mcr p15, 5, r0, c15, c15, 0 @ D clean/inv range start
254 mcr p15, 5, r1, c15, c15, 1 @ D clean/inv range top
255 msr cpsr_c, r2 @ restore interrupts
256 mov r0, #0
257 mcr p15, 0, r0, c7, c5, 0 @ invalidate I cache
258 mcr p15, 0, r0, c7, c10, 4 @ drain WB
259 mov pc, lr
260
e50d6409
AH
261/*
262 * dma_inv_range(start, end)
263 *
264 * Invalidate (discard) the specified virtual address range.
265 * May not write back any entries. If 'start' or 'end'
266 * are not cache line aligned, those lines must be written
267 * back.
268 *
269 * - start - virtual start address
270 * - end - virtual end address
271 *
272 * (same as v4wb)
273 */
6b29e681 274 .align 5
e50d6409 275ENTRY(feroceon_dma_inv_range)
e50d6409 276 tst r0, #CACHE_DLINESIZE - 1
836a8051 277 bic r0, r0, #CACHE_DLINESIZE - 1
e50d6409
AH
278 mcrne p15, 0, r0, c7, c10, 1 @ clean D entry
279 tst r1, #CACHE_DLINESIZE - 1
280 mcrne p15, 0, r1, c7, c10, 1 @ clean D entry
e50d6409
AH
2811: mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry
282 add r0, r0, #CACHE_DLINESIZE
283 cmp r0, r1
284 blo 1b
285 mcr p15, 0, r0, c7, c10, 4 @ drain WB
286 mov pc, lr
287
836a8051
SS
288 .align 5
289ENTRY(feroceon_range_dma_inv_range)
290 mrs r2, cpsr
291 tst r0, #CACHE_DLINESIZE - 1
292 mcrne p15, 0, r0, c7, c10, 1 @ clean D entry
293 tst r1, #CACHE_DLINESIZE - 1
294 mcrne p15, 0, r1, c7, c10, 1 @ clean D entry
295 cmp r1, r0
296 subne r1, r1, #1 @ top address is inclusive
297 orr r3, r2, #PSR_I_BIT
298 msr cpsr_c, r3 @ disable interrupts
299 mcr p15, 5, r0, c15, c14, 0 @ D inv range start
300 mcr p15, 5, r1, c15, c14, 1 @ D inv range top
301 msr cpsr_c, r2 @ restore interrupts
302 mov pc, lr
303
e50d6409
AH
304/*
305 * dma_clean_range(start, end)
306 *
307 * Clean the specified virtual address range.
308 *
309 * - start - virtual start address
310 * - end - virtual end address
311 *
312 * (same as v4wb)
313 */
6b29e681 314 .align 5
e50d6409 315ENTRY(feroceon_dma_clean_range)
e50d6409
AH
316 bic r0, r0, #CACHE_DLINESIZE - 1
3171: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
318 add r0, r0, #CACHE_DLINESIZE
319 cmp r0, r1
320 blo 1b
e50d6409
AH
321 mcr p15, 0, r0, c7, c10, 4 @ drain WB
322 mov pc, lr
323
836a8051
SS
324 .align 5
325ENTRY(feroceon_range_dma_clean_range)
326 mrs r2, cpsr
327 cmp r1, r0
328 subne r1, r1, #1 @ top address is inclusive
329 orr r3, r2, #PSR_I_BIT
330 msr cpsr_c, r3 @ disable interrupts
331 mcr p15, 5, r0, c15, c13, 0 @ D clean range start
332 mcr p15, 5, r1, c15, c13, 1 @ D clean range top
333 msr cpsr_c, r2 @ restore interrupts
334 mcr p15, 0, r0, c7, c10, 4 @ drain WB
335 mov pc, lr
336
e50d6409
AH
337/*
338 * dma_flush_range(start, end)
339 *
340 * Clean and invalidate the specified virtual address range.
341 *
342 * - start - virtual start address
343 * - end - virtual end address
344 */
6b29e681 345 .align 5
e50d6409
AH
346ENTRY(feroceon_dma_flush_range)
347 bic r0, r0, #CACHE_DLINESIZE - 1
6b29e681 3481: mcr p15, 0, r0, c7, c14, 1 @ clean+invalidate D entry
e50d6409
AH
349 add r0, r0, #CACHE_DLINESIZE
350 cmp r0, r1
351 blo 1b
352 mcr p15, 0, r0, c7, c10, 4 @ drain WB
353 mov pc, lr
354
836a8051
SS
355 .align 5
356ENTRY(feroceon_range_dma_flush_range)
357 mrs r2, cpsr
358 cmp r1, r0
359 subne r1, r1, #1 @ top address is inclusive
360 orr r3, r2, #PSR_I_BIT
361 msr cpsr_c, r3 @ disable interrupts
362 mcr p15, 5, r0, c15, c15, 0 @ D clean/inv range start
363 mcr p15, 5, r1, c15, c15, 1 @ D clean/inv range top
364 msr cpsr_c, r2 @ restore interrupts
365 mcr p15, 0, r0, c7, c10, 4 @ drain WB
366 mov pc, lr
367
e50d6409
AH
368ENTRY(feroceon_cache_fns)
369 .long feroceon_flush_kern_cache_all
370 .long feroceon_flush_user_cache_all
371 .long feroceon_flush_user_cache_range
372 .long feroceon_coherent_kern_range
373 .long feroceon_coherent_user_range
374 .long feroceon_flush_kern_dcache_page
375 .long feroceon_dma_inv_range
376 .long feroceon_dma_clean_range
377 .long feroceon_dma_flush_range
378
836a8051
SS
379ENTRY(feroceon_range_cache_fns)
380 .long feroceon_flush_kern_cache_all
381 .long feroceon_flush_user_cache_all
382 .long feroceon_flush_user_cache_range
383 .long feroceon_coherent_kern_range
384 .long feroceon_coherent_user_range
385 .long feroceon_range_flush_kern_dcache_page
386 .long feroceon_range_dma_inv_range
387 .long feroceon_range_dma_clean_range
388 .long feroceon_range_dma_flush_range
389
6b29e681 390 .align 5
e50d6409 391ENTRY(cpu_feroceon_dcache_clean_area)
99c6dc11
LB
392#if defined(CONFIG_CACHE_FEROCEON_L2) && !defined(CONFIG_L2_CACHE_WRITETHROUGH)
393 mov r2, r0
394 mov r3, r1
395#endif
e50d6409
AH
3961: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
397 add r0, r0, #CACHE_DLINESIZE
398 subs r1, r1, #CACHE_DLINESIZE
399 bhi 1b
99c6dc11
LB
400#if defined(CONFIG_CACHE_FEROCEON_L2) && !defined(CONFIG_L2_CACHE_WRITETHROUGH)
4011: mcr p15, 1, r2, c15, c9, 1 @ clean L2 entry
402 add r2, r2, #CACHE_DLINESIZE
403 subs r3, r3, #CACHE_DLINESIZE
404 bhi 1b
405#endif
e50d6409
AH
406 mcr p15, 0, r0, c7, c10, 4 @ drain WB
407 mov pc, lr
408
409/* =============================== PageTable ============================== */
410
411/*
412 * cpu_feroceon_switch_mm(pgd)
413 *
414 * Set the translation base pointer to be as described by pgd.
415 *
416 * pgd: new page tables
417 */
418 .align 5
419ENTRY(cpu_feroceon_switch_mm)
420#ifdef CONFIG_MMU
6c386e58
NP
421 /*
422 * Note: we wish to call __flush_whole_cache but we need to preserve
423 * lr to do so. The only way without touching main memory is to
424 * use r2 which is normally used to test the VM_EXEC flag, and
425 * compensate locally for the skipped ops if it is not set.
426 */
427 mov r2, lr @ abuse r2 to preserve lr
428 bl __flush_whole_cache
429 @ if r2 contains the VM_EXEC bit then the next 2 ops are done already
430 tst r2, #VM_EXEC
431 mcreq p15, 0, ip, c7, c5, 0 @ invalidate I cache
432 mcreq p15, 0, ip, c7, c10, 4 @ drain WB
433
e50d6409
AH
434 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
435 mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
6c386e58
NP
436 mov pc, r2
437#else
e50d6409 438 mov pc, lr
6c386e58 439#endif
e50d6409
AH
440
441/*
442 * cpu_feroceon_set_pte_ext(ptep, pte, ext)
443 *
444 * Set a PTE and flush it out
445 */
446 .align 5
447ENTRY(cpu_feroceon_set_pte_ext)
448#ifdef CONFIG_MMU
449 str r1, [r0], #-2048 @ linux version
450
451 eor r1, r1, #L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_WRITE | L_PTE_DIRTY
452
453 bic r2, r1, #PTE_SMALL_AP_MASK
454 bic r2, r2, #PTE_TYPE_MASK
455 orr r2, r2, #PTE_TYPE_SMALL
456
457 tst r1, #L_PTE_USER @ User?
458 orrne r2, r2, #PTE_SMALL_AP_URO_SRW
459
460 tst r1, #L_PTE_WRITE | L_PTE_DIRTY @ Write and Dirty?
461 orreq r2, r2, #PTE_SMALL_AP_UNO_SRW
462
463 tst r1, #L_PTE_PRESENT | L_PTE_YOUNG @ Present and Young?
464 movne r2, #0
465
e50d6409
AH
466 str r2, [r0] @ hardware version
467 mov r0, r0
e50d6409 468 mcr p15, 0, r0, c7, c10, 1 @ clean D entry
99c6dc11
LB
469#if defined(CONFIG_CACHE_FEROCEON_L2) && !defined(CONFIG_L2_CACHE_WRITETHROUGH)
470 mcr p15, 1, r0, c15, c9, 1 @ clean L2 entry
471#endif
e50d6409
AH
472 mcr p15, 0, r0, c7, c10, 4 @ drain WB
473#endif
474 mov pc, lr
475
476 __INIT
477
478 .type __feroceon_setup, #function
479__feroceon_setup:
480 mov r0, #0
481 mcr p15, 0, r0, c7, c7 @ invalidate I,D caches on v4
482 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer on v4
483#ifdef CONFIG_MMU
484 mcr p15, 0, r0, c8, c7 @ invalidate I,D TLBs on v4
485#endif
486
e50d6409
AH
487 adr r5, feroceon_crval
488 ldmia r5, {r5, r6}
489 mrc p15, 0, r0, c1, c0 @ get control register v4
490 bic r0, r0, r5
491 orr r0, r0, r6
e50d6409
AH
492 mov pc, lr
493 .size __feroceon_setup, . - __feroceon_setup
494
495 /*
188237e2
SB
496 * B
497 * R P
498 * .RVI UFRS BLDP WCAM
499 * .011 .001 ..11 0101
e50d6409
AH
500 *
501 */
502 .type feroceon_crval, #object
503feroceon_crval:
188237e2 504 crval clear=0x0000773f, mmuset=0x00003135, ucset=0x00001134
e50d6409
AH
505
506 __INITDATA
507
508/*
509 * Purpose : Function pointers used to access above functions - all calls
510 * come through these
511 */
512 .type feroceon_processor_functions, #object
513feroceon_processor_functions:
514 .word v5t_early_abort
4a1fd556 515 .word pabort_noifar
e50d6409
AH
516 .word cpu_feroceon_proc_init
517 .word cpu_feroceon_proc_fin
518 .word cpu_feroceon_reset
519 .word cpu_feroceon_do_idle
520 .word cpu_feroceon_dcache_clean_area
521 .word cpu_feroceon_switch_mm
522 .word cpu_feroceon_set_pte_ext
523 .size feroceon_processor_functions, . - feroceon_processor_functions
524
525 .section ".rodata"
526
527 .type cpu_arch_name, #object
528cpu_arch_name:
529 .asciz "armv5te"
530 .size cpu_arch_name, . - cpu_arch_name
531
532 .type cpu_elf_name, #object
533cpu_elf_name:
534 .asciz "v5"
535 .size cpu_elf_name, . - cpu_elf_name
536
537 .type cpu_feroceon_name, #object
538cpu_feroceon_name:
539 .asciz "Feroceon"
540 .size cpu_feroceon_name, . - cpu_feroceon_name
541
ee0dd840
LB
542 .type cpu_88fr531_name, #object
543cpu_88fr531_name:
544 .asciz "Feroceon 88FR531-vd"
545 .size cpu_88fr531_name, . - cpu_88fr531_name
546
0a17c7bc
LB
547 .type cpu_88fr571_name, #object
548cpu_88fr571_name:
549 .asciz "Feroceon 88FR571-vd"
550 .size cpu_88fr571_name, . - cpu_88fr571_name
551
9c2af6c5
LB
552 .type cpu_88fr131_name, #object
553cpu_88fr131_name:
554 .asciz "Feroceon 88FR131"
555 .size cpu_88fr131_name, . - cpu_88fr131_name
556
e50d6409
AH
557 .align
558
559 .section ".proc.info.init", #alloc, #execinstr
560
d910a0aa
TP
561#ifdef CONFIG_CPU_FEROCEON_OLD_ID
562 .type __feroceon_old_id_proc_info,#object
563__feroceon_old_id_proc_info:
ab6d15d5
KW
564 .long 0x41009260
565 .long 0xff00fff0
e7068ad3 566 .long PMD_TYPE_SECT | \
d910a0aa
TP
567 PMD_SECT_BUFFERABLE | \
568 PMD_SECT_CACHEABLE | \
569 PMD_BIT4 | \
570 PMD_SECT_AP_WRITE | \
571 PMD_SECT_AP_READ
e7068ad3 572 .long PMD_TYPE_SECT | \
d910a0aa
TP
573 PMD_BIT4 | \
574 PMD_SECT_AP_WRITE | \
575 PMD_SECT_AP_READ
576 b __feroceon_setup
577 .long cpu_arch_name
578 .long cpu_elf_name
579 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
580 .long cpu_feroceon_name
581 .long feroceon_processor_functions
582 .long v4wbi_tlb_fns
0ed15071 583 .long feroceon_user_fns
d910a0aa
TP
584 .long feroceon_cache_fns
585 .size __feroceon_old_id_proc_info, . - __feroceon_old_id_proc_info
586#endif
587
ee0dd840
LB
588 .type __88fr531_proc_info,#object
589__88fr531_proc_info:
e50d6409
AH
590 .long 0x56055310
591 .long 0xfffffff0
e7068ad3 592 .long PMD_TYPE_SECT | \
e50d6409
AH
593 PMD_SECT_BUFFERABLE | \
594 PMD_SECT_CACHEABLE | \
595 PMD_BIT4 | \
596 PMD_SECT_AP_WRITE | \
597 PMD_SECT_AP_READ
e7068ad3 598 .long PMD_TYPE_SECT | \
e50d6409
AH
599 PMD_BIT4 | \
600 PMD_SECT_AP_WRITE | \
601 PMD_SECT_AP_READ
602 b __feroceon_setup
603 .long cpu_arch_name
604 .long cpu_elf_name
605 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
ee0dd840 606 .long cpu_88fr531_name
e50d6409
AH
607 .long feroceon_processor_functions
608 .long v4wbi_tlb_fns
0ed15071 609 .long feroceon_user_fns
e50d6409 610 .long feroceon_cache_fns
ee0dd840 611 .size __88fr531_proc_info, . - __88fr531_proc_info
9c2af6c5 612
0a17c7bc
LB
613 .type __88fr571_proc_info,#object
614__88fr571_proc_info:
615 .long 0x56155710
616 .long 0xfffffff0
617 .long PMD_TYPE_SECT | \
618 PMD_SECT_BUFFERABLE | \
619 PMD_SECT_CACHEABLE | \
620 PMD_BIT4 | \
621 PMD_SECT_AP_WRITE | \
622 PMD_SECT_AP_READ
623 .long PMD_TYPE_SECT | \
624 PMD_BIT4 | \
625 PMD_SECT_AP_WRITE | \
626 PMD_SECT_AP_READ
627 b __feroceon_setup
628 .long cpu_arch_name
629 .long cpu_elf_name
630 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
631 .long cpu_88fr571_name
632 .long feroceon_processor_functions
633 .long v4wbi_tlb_fns
634 .long feroceon_user_fns
635 .long feroceon_range_cache_fns
636 .size __88fr571_proc_info, . - __88fr571_proc_info
637
9c2af6c5
LB
638 .type __88fr131_proc_info,#object
639__88fr131_proc_info:
640 .long 0x56251310
641 .long 0xfffffff0
642 .long PMD_TYPE_SECT | \
643 PMD_SECT_BUFFERABLE | \
644 PMD_SECT_CACHEABLE | \
645 PMD_BIT4 | \
646 PMD_SECT_AP_WRITE | \
647 PMD_SECT_AP_READ
648 .long PMD_TYPE_SECT | \
649 PMD_BIT4 | \
650 PMD_SECT_AP_WRITE | \
651 PMD_SECT_AP_READ
652 b __feroceon_setup
653 .long cpu_arch_name
654 .long cpu_elf_name
655 .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
656 .long cpu_88fr131_name
657 .long feroceon_processor_functions
658 .long v4wbi_tlb_fns
659 .long feroceon_user_fns
660 .long feroceon_range_cache_fns
661 .size __88fr131_proc_info, . - __88fr131_proc_info
This page took 0.091496 seconds and 5 git commands to generate.