cb7ca11dabf4b54ee0e9eaeb65e8af7dfeb73757
[platform/kernel/u-boot.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
47 /*
48  *      invalidate_dcache()
49  *
50  *      Invalidate the whole D-cache.
51  *
52  *      Corrupted registers: r0-r5, r7, r9-r11
53  *
54  *      - mm    - mm_struct describing address space
55  */
56 invalidate_dcache:
57         stmfd   r13!, {r0 - r5, r7, r9 - r12, r14}
58
59         mov     r7, r0                          @ take a backup of device type
60         cmp     r0, #0x3                        @ check if the device type is
61                                                 @ GP
62         moveq r12, #0x1                         @ set up to invalide L2
63 smi:    .word 0x01600070                        @ Call SMI monitor (smieq)
64         cmp     r7, #0x3                        @ compare again in case its
65                                                 @ lost
66         beq     finished_inval                  @ if GP device, inval done
67                                                 @ above
68
69         mrc     p15, 1, r0, c0, c0, 1           @ read clidr
70         ands    r3, r0, #0x7000000              @ extract loc from clidr
71         mov     r3, r3, lsr #23                 @ left align loc bit field
72         beq     finished_inval                  @ if loc is 0, then no need to
73                                                 @ clean
74         mov     r10, #0                         @ start clean at cache level 0
75 inval_loop1:
76         add     r2, r10, r10, lsr #1            @ work out 3x current cache
77                                                 @ level
78         mov     r1, r0, lsr r2                  @ extract cache type bits from
79                                                 @ clidr
80         and     r1, r1, #7                      @ mask of the bits for current
81                                                 @ cache only
82         cmp     r1, #2                          @ see what cache we have at
83                                                 @ this level
84         blt     skip_inval                      @ skip if no cache, or just
85                                                 @ i-cache
86         mcr     p15, 2, r10, c0, c0, 0          @ select current cache level
87                                                 @ in cssr
88         mov     r2, #0                          @ operand for mcr SBZ
89         mcr     p15, 0, r2, c7, c5, 4           @ flush prefetch buffer to
90                                                 @ sych the new cssr&csidr,
91                                                 @ with armv7 this is 'isb',
92                                                 @ but we compile with armv5
93         mrc     p15, 1, r1, c0, c0, 0           @ read the new csidr
94         and     r2, r1, #7                      @ extract the length of the
95                                                 @ cache lines
96         add     r2, r2, #4                      @ add 4 (line length offset)
97         ldr     r4, =0x3ff
98         ands    r4, r4, r1, lsr #3              @ find maximum number on the
99                                                 @ way size
100         clz     r5, r4                          @ find bit position of way
101                                                 @ size increment
102         ldr     r7, =0x7fff
103         ands    r7, r7, r1, lsr #13             @ extract max number of the
104                                                 @ index size
105 inval_loop2:
106         mov     r9, r4                          @ create working copy of max
107                                                 @ way size
108 inval_loop3:
109         orr     r11, r10, r9, lsl r5            @ factor way and cache number
110                                                 @ into r11
111         orr     r11, r11, r7, lsl r2            @ factor index number into r11
112         mcr     p15, 0, r11, c7, c6, 2          @ invalidate by set/way
113         subs    r9, r9, #1                      @ decrement the way
114         bge     inval_loop3
115         subs    r7, r7, #1                      @ decrement the index
116         bge     inval_loop2
117 skip_inval:
118         add     r10, r10, #2                    @ increment cache number
119         cmp     r3, r10
120         bgt     inval_loop1
121 finished_inval:
122         mov     r10, #0                         @ swith back to cache level 0
123         mcr     p15, 2, r10, c0, c0, 0          @ select current cache level
124                                                 @ in cssr
125         mcr     p15, 0, r10, c7, c5, 4          @ flush prefetch buffer,
126                                                 @ with armv7 this is 'isb',
127                                                 @ but we compile with armv5
128
129         ldmfd   r13!, {r0 - r5, r7, r9 - r12, pc}
130
131 l2_cache_set:
132         stmfd   r13!, {r4 - r6, lr}
133         mov     r5,  r0
134         bl      get_cpu_rev
135         mov     r4,  r0
136         bl      get_cpu_family
137         @ ES2 onwards we can disable/enable L2 ourselves
138         cmp     r0,  #CPU_OMAP34XX
139         cmpeq   r4,  #CPU_3XX_ES10
140         mrc     15, 0, r0, cr1, cr0, 1
141         bic     r0, r0, #2
142         orr     r0, r0, r5, lsl #1
143         mcreq   15, 0, r0, cr1, cr0, 1
144         @ GP Device ROM code API usage here
145         @ r12 = AUXCR Write function and r0 value
146         mov     ip, #3
147         @ SMCNE instruction to call ROM Code API
148         .word   0x11600070
149         ldmfd   r13!, {r4 - r6, pc}
150
151 l2_cache_enable:
152         mov     r0, #1
153         b       l2_cache_set
154
155 l2_cache_disable:
156         mov     r0, #0
157         b       l2_cache_set
158