]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/omap3/cache.S
ARMV7: OMAP3: Convert setup_auxcr() to pure asm
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / omap3 / cache.S
1 /*
2  * Copyright (c) 2009 Wind River Systems, Inc.
3  * Tom Rix <Tom.Rix@windriver.com>
4  *
5  * This file is based on and replaces the existing cache.c file
6  * The copyrights for the cache.c file are:
7  *
8  * (C) Copyright 2008 Texas Insturments
9  *
10  * (C) Copyright 2002
11  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
12  * Marius Groeger <mgroeger@sysgo.de>
13  *
14  * (C) Copyright 2002
15  * Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
16  *
17  * See file CREDITS for list of people who contributed to this
18  * project.
19  *
20  * This program is free software; you can redistribute it and/or
21  * modify it under the terms of the GNU General Public License as
22  * published by the Free Software Foundation; either version 2 of
23  * the License, or (at your option) any later version.
24  *
25  * This program is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28  * GNU General Public License for more details.
29  *
30  * You should have received a copy of the GNU General Public License
31  * along with this program; if not, write to the Free Software
32  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
33  * MA 02111-1307 USA
34  */
35
36 #include <asm/arch/omap3.h>
37
38 /*
39  * omap3 cache code
40  */
41
42 .align 5
43 .global invalidate_dcache
44 .global l2_cache_enable
45 .global l2_cache_disable
46 .global setup_auxcr
47
48 /*
49  *      invalidate_dcache()
50  *
51  *      Invalidate the whole D-cache.
52  *
53  *      Corrupted registers: r0-r5, r7, r9-r11
54  *
55  *      - mm    - mm_struct describing address space
56  */
57 invalidate_dcache:
58         stmfd   r13!, {r0 - r5, r7, r9 - r12, r14}
59
60         mov     r7, r0                          @ take a backup of device type
61         cmp     r0, #0x3                        @ check if the device type is
62                                                 @ GP
63         moveq r12, #0x1                         @ set up to invalide L2
64 smi:    .word 0x01600070                        @ Call SMI monitor (smieq)
65         cmp     r7, #0x3                        @ compare again in case its
66                                                 @ lost
67         beq     finished_inval                  @ if GP device, inval done
68                                                 @ above
69
70         mrc     p15, 1, r0, c0, c0, 1           @ read clidr
71         ands    r3, r0, #0x7000000              @ extract loc from clidr
72         mov     r3, r3, lsr #23                 @ left align loc bit field
73         beq     finished_inval                  @ if loc is 0, then no need to
74                                                 @ clean
75         mov     r10, #0                         @ start clean at cache level 0
76 inval_loop1:
77         add     r2, r10, r10, lsr #1            @ work out 3x current cache
78                                                 @ level
79         mov     r1, r0, lsr r2                  @ extract cache type bits from
80                                                 @ clidr
81         and     r1, r1, #7                      @ mask of the bits for current
82                                                 @ cache only
83         cmp     r1, #2                          @ see what cache we have at
84                                                 @ this level
85         blt     skip_inval                      @ skip if no cache, or just
86                                                 @ i-cache
87         mcr     p15, 2, r10, c0, c0, 0          @ select current cache level
88                                                 @ in cssr
89         mov     r2, #0                          @ operand for mcr SBZ
90         mcr     p15, 0, r2, c7, c5, 4           @ flush prefetch buffer to
91                                                 @ sych the new cssr&csidr,
92                                                 @ with armv7 this is 'isb',
93                                                 @ but we compile with armv5
94         mrc     p15, 1, r1, c0, c0, 0           @ read the new csidr
95         and     r2, r1, #7                      @ extract the length of the
96                                                 @ cache lines
97         add     r2, r2, #4                      @ add 4 (line length offset)
98         ldr     r4, =0x3ff
99         ands    r4, r4, r1, lsr #3              @ find maximum number on the
100                                                 @ way size
101         clz     r5, r4                          @ find bit position of way
102                                                 @ size increment
103         ldr     r7, =0x7fff
104         ands    r7, r7, r1, lsr #13             @ extract max number of the
105                                                 @ index size
106 inval_loop2:
107         mov     r9, r4                          @ create working copy of max
108                                                 @ way size
109 inval_loop3:
110         orr     r11, r10, r9, lsl r5            @ factor way and cache number
111                                                 @ into r11
112         orr     r11, r11, r7, lsl r2            @ factor index number into r11
113         mcr     p15, 0, r11, c7, c6, 2          @ invalidate by set/way
114         subs    r9, r9, #1                      @ decrement the way
115         bge     inval_loop3
116         subs    r7, r7, #1                      @ decrement the index
117         bge     inval_loop2
118 skip_inval:
119         add     r10, r10, #2                    @ increment cache number
120         cmp     r3, r10
121         bgt     inval_loop1
122 finished_inval:
123         mov     r10, #0                         @ swith back to cache level 0
124         mcr     p15, 2, r10, c0, c0, 0          @ select current cache level
125                                                 @ in cssr
126         mcr     p15, 0, r10, c7, c5, 4          @ flush prefetch buffer,
127                                                 @ with armv7 this is 'isb',
128                                                 @ but we compile with armv5
129
130         ldmfd   r13!, {r0 - r5, r7, r9 - r12, pc}
131
132 l2_cache_set:
133         stmfd   r13!, {r4 - r6, lr}
134         mov     r5,  r0
135         bl      get_cpu_rev
136         mov     r4,  r0
137         bl      get_cpu_family
138         @ ES2 onwards we can disable/enable L2 ourselves
139         cmp     r0,  #CPU_OMAP34XX
140         cmpeq   r4,  #CPU_3XX_ES10
141         mrc     15, 0, r0, cr1, cr0, 1
142         bic     r0, r0, #2
143         orr     r0, r0, r5, lsl #1
144         mcreq   15, 0, r0, cr1, cr0, 1
145         @ GP Device ROM code API usage here
146         @ r12 = AUXCR Write function and r0 value
147         mov     ip, #3
148         @ SMCNE instruction to call ROM Code API
149         .word   0x11600070
150         ldmfd   r13!, {r4 - r6, pc}
151
152 l2_cache_enable:
153         mov     r0, #1
154         b       l2_cache_set
155
156 l2_cache_disable:
157         mov     r0, #0
158         b       l2_cache_set
159
160 /******************************************************************************
161  * Routine: setup_auxcr()
162  * Description: Write to AuxCR desired value using SMI.
163  *              general use.
164  *****************************************************************************/
165 setup_auxcr:
166         mov     r12, #0x3
167         mrc     p15, 0, r0, c1, c0, 1
168         orr     r0, r0, #0x10                   @ Enable ASA
169         orr     r0, r0, #1 << 5                 @ Enable L1NEON
170         .word 0xE1600070                        @ SMC
171         mov     r12, #0x2
172         mrc     p15, 1, r0, c9, c0, 2
173         @ Set PLD_FWD bit in L2AUXCR (Cortex-A8 erratum 725233 workaround)
174         orr     r0, r0, #1 << 27
175         .word 0xE1600070                        @ SMC
176         bx      lr
177