Merge branches 'btc', 'dma', 'entry', 'fixes', 'linker-layout', 'misc', 'mmci', ...
[pandora-kernel.git] / arch / arm / mm / proc-arm6_7.S
1 /*
2  *  linux/arch/arm/mm/proc-arm6,7.S
3  *
4  *  Copyright (C) 1997-2000 Russell King
5  *  hacked for non-paged-MM by Hyok S. Choi, 2003.
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  *  These are the low level assembler for performing cache and TLB
12  *  functions on the ARM610 & ARM710.
13  */
14 #include <linux/linkage.h>
15 #include <linux/init.h>
16 #include <asm/assembler.h>
17 #include <asm/asm-offsets.h>
18 #include <asm/hwcap.h>
19 #include <asm/pgtable-hwdef.h>
20 #include <asm/pgtable.h>
21 #include <asm/ptrace.h>
22
23 #include "proc-macros.S"
24
25 ENTRY(cpu_arm6_dcache_clean_area)
26 ENTRY(cpu_arm7_dcache_clean_area)
27                 mov     pc, lr
28
29 /*
30  * Function: arm6_7_data_abort ()
31  *
32  * Params  : r2 = pt_regs
33  *         : r4 = aborted context pc
34  *         : r5 = aborted context psr
35  *
36  * Purpose : obtain information about current aborted instruction
37  *
38  * Returns : r4-r5, r10-r11, r13 preserved
39  */
40
41 ENTRY(cpu_arm7_data_abort)
42         mrc     p15, 0, r1, c5, c0, 0           @ get FSR
43         mrc     p15, 0, r0, c6, c0, 0           @ get FAR
44         ldr     r8, [r4]                        @ read arm instruction
45         tst     r8, #1 << 20                    @ L = 0 -> write?
46         orreq   r1, r1, #1 << 11                @ yes.
47         and     r7, r8, #15 << 24
48         add     pc, pc, r7, lsr #22             @ Now branch to the relevant processing routine
49         nop
50
51 /* 0 */ b       .data_unknown
52 /* 1 */ b       do_DataAbort                    @ swp
53 /* 2 */ b       .data_unknown
54 /* 3 */ b       .data_unknown
55 /* 4 */ b       .data_arm_lateldrpostconst      @ ldr   rd, [rn], #m
56 /* 5 */ b       .data_arm_lateldrpreconst       @ ldr   rd, [rn, #m]
57 /* 6 */ b       .data_arm_lateldrpostreg        @ ldr   rd, [rn], rm
58 /* 7 */ b       .data_arm_lateldrprereg         @ ldr   rd, [rn, rm]
59 /* 8 */ b       .data_arm_ldmstm                @ ldm*a rn, <rlist>
60 /* 9 */ b       .data_arm_ldmstm                @ ldm*b rn, <rlist>
61 /* a */ b       .data_unknown
62 /* b */ b       .data_unknown
63 /* c */ b       do_DataAbort                    @ ldc   rd, [rn], #m    @ Same as ldr   rd, [rn], #m
64 /* d */ b       do_DataAbort                    @ ldc   rd, [rn, #m]
65 /* e */ b       .data_unknown
66 /* f */
67 .data_unknown:  @ Part of jumptable
68         mov     r0, r4
69         mov     r1, r8
70         b       baddataabort
71
72 ENTRY(cpu_arm6_data_abort)
73         mrc     p15, 0, r1, c5, c0, 0           @ get FSR
74         mrc     p15, 0, r0, c6, c0, 0           @ get FAR
75         ldr     r8, [r4]                        @ read arm instruction
76         tst     r8, #1 << 20                    @ L = 0 -> write?
77         orreq   r1, r1, #1 << 11                @ yes.
78         and     r7, r8, #14 << 24
79         teq     r7, #8 << 24                    @ was it ldm/stm
80         bne     do_DataAbort
81
82 .data_arm_ldmstm:
83         tst     r8, #1 << 21                    @ check writeback bit
84         beq     do_DataAbort                    @ no writeback -> no fixup
85         mov     r7, #0x11
86         orr     r7, r7, #0x1100
87         and     r6, r8, r7
88         and     r9, r8, r7, lsl #1
89         add     r6, r6, r9, lsr #1
90         and     r9, r8, r7, lsl #2
91         add     r6, r6, r9, lsr #2
92         and     r9, r8, r7, lsl #3
93         add     r6, r6, r9, lsr #3
94         add     r6, r6, r6, lsr #8
95         add     r6, r6, r6, lsr #4
96         and     r6, r6, #15                     @ r6 = no. of registers to transfer.
97         and     r9, r8, #15 << 16               @ Extract 'n' from instruction
98         ldr     r7, [r2, r9, lsr #14]           @ Get register 'Rn'
99         tst     r8, #1 << 23                    @ Check U bit
100         subne   r7, r7, r6, lsl #2              @ Undo increment
101         addeq   r7, r7, r6, lsl #2              @ Undo decrement
102         str     r7, [r2, r9, lsr #14]           @ Put register 'Rn'
103         b       do_DataAbort
104
105 .data_arm_apply_r6_and_rn:
106         and     r9, r8, #15 << 16               @ Extract 'n' from instruction
107         ldr     r7, [r2, r9, lsr #14]           @ Get register 'Rn'
108         tst     r8, #1 << 23                    @ Check U bit
109         subne   r7, r7, r6                      @ Undo incrmenet
110         addeq   r7, r7, r6                      @ Undo decrement
111         str     r7, [r2, r9, lsr #14]           @ Put register 'Rn'
112         b       do_DataAbort
113
114 .data_arm_lateldrpreconst:
115         tst     r8, #1 << 21                    @ check writeback bit
116         beq     do_DataAbort                    @ no writeback -> no fixup
117 .data_arm_lateldrpostconst:
118         movs    r6, r8, lsl #20                 @ Get offset
119         beq     do_DataAbort                    @ zero -> no fixup
120         and     r9, r8, #15 << 16               @ Extract 'n' from instruction
121         ldr     r7, [r2, r9, lsr #14]           @ Get register 'Rn'
122         tst     r8, #1 << 23                    @ Check U bit
123         subne   r7, r7, r6, lsr #20             @ Undo increment
124         addeq   r7, r7, r6, lsr #20             @ Undo decrement
125         str     r7, [r2, r9, lsr #14]           @ Put register 'Rn'
126         b       do_DataAbort
127
128 .data_arm_lateldrprereg:
129         tst     r8, #1 << 21                    @ check writeback bit
130         beq     do_DataAbort                    @ no writeback -> no fixup
131 .data_arm_lateldrpostreg:
132         and     r7, r8, #15                     @ Extract 'm' from instruction
133         ldr     r6, [r2, r7, lsl #2]            @ Get register 'Rm'
134         mov     r9, r8, lsr #7                  @ get shift count
135         ands    r9, r9, #31
136         and     r7, r8, #0x70                   @ get shift type
137         orreq   r7, r7, #8                      @ shift count = 0
138         add     pc, pc, r7
139         nop
140
141         mov     r6, r6, lsl r9                  @ 0: LSL #!0
142         b       .data_arm_apply_r6_and_rn
143         b       .data_arm_apply_r6_and_rn       @ 1: LSL #0
144         nop
145         b       .data_unknown                   @ 2: MUL?
146         nop
147         b       .data_unknown                   @ 3: MUL?
148         nop
149         mov     r6, r6, lsr r9                  @ 4: LSR #!0
150         b       .data_arm_apply_r6_and_rn
151         mov     r6, r6, lsr #32                 @ 5: LSR #32
152         b       .data_arm_apply_r6_and_rn
153         b       .data_unknown                   @ 6: MUL?
154         nop
155         b       .data_unknown                   @ 7: MUL?
156         nop
157         mov     r6, r6, asr r9                  @ 8: ASR #!0
158         b       .data_arm_apply_r6_and_rn
159         mov     r6, r6, asr #32                 @ 9: ASR #32
160         b       .data_arm_apply_r6_and_rn
161         b       .data_unknown                   @ A: MUL?
162         nop
163         b       .data_unknown                   @ B: MUL?
164         nop
165         mov     r6, r6, ror r9                  @ C: ROR #!0
166         b       .data_arm_apply_r6_and_rn
167         mov     r6, r6, rrx                     @ D: RRX
168         b       .data_arm_apply_r6_and_rn
169         b       .data_unknown                   @ E: MUL?
170         nop
171         b       .data_unknown                   @ F: MUL?
172
173 /*
174  * Function: arm6_7_proc_init (void)
175  *         : arm6_7_proc_fin (void)
176  *
177  * Notes   : This processor does not require these
178  */
179 ENTRY(cpu_arm6_proc_init)
180 ENTRY(cpu_arm7_proc_init)
181                 mov     pc, lr
182
183 ENTRY(cpu_arm6_proc_fin)
184 ENTRY(cpu_arm7_proc_fin)
185                 mov     r0, #0x31                       @ ....S..DP...M
186                 mcr     p15, 0, r0, c1, c0, 0           @ disable caches
187                 mov     pc, lr
188
189 ENTRY(cpu_arm6_do_idle)
190 ENTRY(cpu_arm7_do_idle)
191                 mov     pc, lr
192
193 /*
194  * Function: arm6_7_switch_mm(unsigned long pgd_phys)
195  * Params  : pgd_phys   Physical address of page table
196  * Purpose : Perform a task switch, saving the old processes state, and restoring
197  *           the new.
198  */
199 ENTRY(cpu_arm6_switch_mm)
200 ENTRY(cpu_arm7_switch_mm)
201 #ifdef CONFIG_MMU
202                 mov     r1, #0
203                 mcr     p15, 0, r1, c7, c0, 0           @ flush cache
204                 mcr     p15, 0, r0, c2, c0, 0           @ update page table ptr
205                 mcr     p15, 0, r1, c5, c0, 0           @ flush TLBs
206 #endif
207                 mov     pc, lr
208
209 /*
210  * Function: arm6_7_set_pte_ext(pte_t *ptep, pte_t pte, unsigned int ext)
211  * Params  : r0 = Address to set
212  *         : r1 = value to set
213  * Purpose : Set a PTE and flush it out of any WB cache
214  */
215         .align  5
216 ENTRY(cpu_arm6_set_pte_ext)
217 ENTRY(cpu_arm7_set_pte_ext)
218 #ifdef CONFIG_MMU
219         armv3_set_pte_ext wc_disable=0
220 #endif /* CONFIG_MMU */
221         mov     pc, lr
222
223 /*
224  * Function: _arm6_7_reset
225  * Params  : r0 = address to jump to
226  * Notes   : This sets up everything for a reset
227  */
228 ENTRY(cpu_arm6_reset)
229 ENTRY(cpu_arm7_reset)
230                 mov     r1, #0
231                 mcr     p15, 0, r1, c7, c0, 0           @ flush cache
232 #ifdef CONFIG_MMU
233                 mcr     p15, 0, r1, c5, c0, 0           @ flush TLB
234 #endif
235                 mov     r1, #0x30
236                 mcr     p15, 0, r1, c1, c0, 0           @ turn off MMU etc
237                 mov     pc, r0
238
239                 __CPUINIT
240
241                 .type   __arm6_setup, #function
242 __arm6_setup:   mov     r0, #0
243                 mcr     p15, 0, r0, c7, c0              @ flush caches on v3
244 #ifdef CONFIG_MMU
245                 mcr     p15, 0, r0, c5, c0              @ flush TLBs on v3
246                 mov     r0, #0x3d                       @ . ..RS BLDP WCAM
247                 orr     r0, r0, #0x100                  @ . ..01 0011 1101
248 #else
249                 mov     r0, #0x3c                       @ . ..RS BLDP WCA.
250 #endif
251                 mov     pc, lr
252                 .size   __arm6_setup, . - __arm6_setup
253
254                 .type   __arm7_setup, #function
255 __arm7_setup:   mov     r0, #0
256                 mcr     p15, 0, r0, c7, c0              @ flush caches on v3
257 #ifdef CONFIG_MMU
258                 mcr     p15, 0, r0, c5, c0              @ flush TLBs on v3
259                 mcr     p15, 0, r0, c3, c0              @ load domain access register
260                 mov     r0, #0x7d                       @ . ..RS BLDP WCAM
261                 orr     r0, r0, #0x100                  @ . ..01 0111 1101
262 #else
263                 mov     r0, #0x7c                       @ . ..RS BLDP WCA.
264 #endif
265                 mov     pc, lr
266                 .size   __arm7_setup, . - __arm7_setup
267
268                 __INITDATA
269
270 /*
271  * Purpose : Function pointers used to access above functions - all calls
272  *           come through these
273  */
274                 .type   arm6_processor_functions, #object
275 ENTRY(arm6_processor_functions)
276                 .word   cpu_arm6_data_abort
277                 .word   legacy_pabort
278                 .word   cpu_arm6_proc_init
279                 .word   cpu_arm6_proc_fin
280                 .word   cpu_arm6_reset
281                 .word   cpu_arm6_do_idle
282                 .word   cpu_arm6_dcache_clean_area
283                 .word   cpu_arm6_switch_mm
284                 .word   cpu_arm6_set_pte_ext
285                 .word   0
286                 .word   0
287                 .word   0
288                 .size   arm6_processor_functions, . - arm6_processor_functions
289
290 /*
291  * Purpose : Function pointers used to access above functions - all calls
292  *           come through these
293  */
294                 .type   arm7_processor_functions, #object
295 ENTRY(arm7_processor_functions)
296                 .word   cpu_arm7_data_abort
297                 .word   legacy_pabort
298                 .word   cpu_arm7_proc_init
299                 .word   cpu_arm7_proc_fin
300                 .word   cpu_arm7_reset
301                 .word   cpu_arm7_do_idle
302                 .word   cpu_arm7_dcache_clean_area
303                 .word   cpu_arm7_switch_mm
304                 .word   cpu_arm7_set_pte_ext
305                 .word   0
306                 .word   0
307                 .word   0
308                 .size   arm7_processor_functions, . - arm7_processor_functions
309
310                 .section ".rodata"
311
312                 .type   cpu_arch_name, #object
313 cpu_arch_name:  .asciz  "armv3"
314                 .size   cpu_arch_name, . - cpu_arch_name
315
316                 .type   cpu_elf_name, #object
317 cpu_elf_name:   .asciz  "v3"
318                 .size   cpu_elf_name, . - cpu_elf_name
319
320                 .type   cpu_arm6_name, #object
321 cpu_arm6_name:  .asciz  "ARM6"
322                 .size   cpu_arm6_name, . - cpu_arm6_name
323
324                 .type   cpu_arm610_name, #object
325 cpu_arm610_name:
326                 .asciz  "ARM610"
327                 .size   cpu_arm610_name, . - cpu_arm610_name
328
329                 .type   cpu_arm7_name, #object
330 cpu_arm7_name:  .asciz  "ARM7"
331                 .size   cpu_arm7_name, . - cpu_arm7_name
332
333                 .type   cpu_arm710_name, #object
334 cpu_arm710_name:
335                 .asciz  "ARM710"
336                 .size   cpu_arm710_name, . - cpu_arm710_name
337
338                 .align
339
340                 .section ".proc.info.init", #alloc, #execinstr
341
342                 .type   __arm6_proc_info, #object
343 __arm6_proc_info:
344                 .long   0x41560600
345                 .long   0xfffffff0
346                 .long   0x00000c1e
347                 .long   PMD_TYPE_SECT | \
348                         PMD_BIT4 | \
349                         PMD_SECT_AP_WRITE | \
350                         PMD_SECT_AP_READ
351                 b       __arm6_setup
352                 .long   cpu_arch_name
353                 .long   cpu_elf_name
354                 .long   HWCAP_SWP | HWCAP_26BIT
355                 .long   cpu_arm6_name
356                 .long   arm6_processor_functions
357                 .long   v3_tlb_fns
358                 .long   v3_user_fns
359                 .long   v3_cache_fns
360                 .size   __arm6_proc_info, . - __arm6_proc_info
361
362                 .type   __arm610_proc_info, #object
363 __arm610_proc_info:
364                 .long   0x41560610
365                 .long   0xfffffff0
366                 .long   0x00000c1e
367                 .long   PMD_TYPE_SECT | \
368                         PMD_BIT4 | \
369                         PMD_SECT_AP_WRITE | \
370                         PMD_SECT_AP_READ
371                 b       __arm6_setup
372                 .long   cpu_arch_name
373                 .long   cpu_elf_name
374                 .long   HWCAP_SWP | HWCAP_26BIT
375                 .long   cpu_arm610_name
376                 .long   arm6_processor_functions
377                 .long   v3_tlb_fns
378                 .long   v3_user_fns
379                 .long   v3_cache_fns
380                 .size   __arm610_proc_info, . - __arm610_proc_info
381
382                 .type   __arm7_proc_info, #object
383 __arm7_proc_info:
384                 .long   0x41007000
385                 .long   0xffffff00
386                 .long   0x00000c1e
387                 .long   PMD_TYPE_SECT | \
388                         PMD_BIT4 | \
389                         PMD_SECT_AP_WRITE | \
390                         PMD_SECT_AP_READ
391                 b       __arm7_setup
392                 .long   cpu_arch_name
393                 .long   cpu_elf_name
394                 .long   HWCAP_SWP | HWCAP_26BIT
395                 .long   cpu_arm7_name
396                 .long   arm7_processor_functions
397                 .long   v3_tlb_fns
398                 .long   v3_user_fns
399                 .long   v3_cache_fns
400                 .size   __arm7_proc_info, . - __arm7_proc_info
401
402                 .type   __arm710_proc_info, #object
403 __arm710_proc_info:
404                 .long   0x41007100
405                 .long   0xfff8ff00
406                 .long   PMD_TYPE_SECT | \
407                         PMD_SECT_BUFFERABLE | \
408                         PMD_SECT_CACHEABLE | \
409                         PMD_BIT4 | \
410                         PMD_SECT_AP_WRITE | \
411                         PMD_SECT_AP_READ
412                 .long   PMD_TYPE_SECT | \
413                         PMD_BIT4 | \
414                         PMD_SECT_AP_WRITE | \
415                         PMD_SECT_AP_READ
416                 b       __arm7_setup
417                 .long   cpu_arch_name
418                 .long   cpu_elf_name
419                 .long   HWCAP_SWP | HWCAP_26BIT
420                 .long   cpu_arm710_name
421                 .long   arm7_processor_functions
422                 .long   v3_tlb_fns
423                 .long   v3_user_fns
424                 .long   v3_cache_fns
425                 .size   __arm710_proc_info, . - __arm710_proc_info