wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 1 | /* |
Shinya Kuribayashi | 373b16f | 2008-03-25 21:30:07 +0900 | [diff] [blame] | 2 | * Cache-handling routined for MIPS CPUs |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 3 | * |
| 4 | * Copyright (c) 2003 Wolfgang Denk <wd@denx.de> |
| 5 | * |
| 6 | * See file CREDITS for list of people who contributed to this |
| 7 | * project. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of |
| 12 | * the License, or (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 22 | * MA 02111-1307 USA |
| 23 | */ |
| 24 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 25 | #include <config.h> |
| 26 | #include <version.h> |
Shinya Kuribayashi | 2f5d414 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 27 | #include <asm/asm.h> |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 28 | #include <asm/regdef.h> |
| 29 | #include <asm/mipsregs.h> |
| 30 | #include <asm/addrspace.h> |
| 31 | #include <asm/cacheops.h> |
| 32 | |
Shinya Kuribayashi | 2e0e527 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 33 | #define RA t8 |
| 34 | |
Shinya Kuribayashi | 373b16f | 2008-03-25 21:30:07 +0900 | [diff] [blame] | 35 | /* |
| 36 | * 16kB is the maximum size of instruction and data caches on MIPS 4K, |
| 37 | * 64kB is on 4KE, 24K, 5K, etc. Set bigger size for convenience. |
| 38 | * |
| 39 | * Note that the above size is the maximum size of primary cache. U-Boot |
| 40 | * doesn't have L2 cache support for now. |
| 41 | */ |
| 42 | #define MIPS_MAX_CACHE_SIZE 0x10000 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 43 | |
Shinya Kuribayashi | 2e0e527 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 44 | #define INDEX_BASE KSEG0 |
| 45 | |
| 46 | .macro cache_op op addr |
| 47 | .set push |
| 48 | .set noreorder |
| 49 | .set mips3 |
| 50 | cache \op, 0(\addr) |
| 51 | .set pop |
| 52 | .endm |
| 53 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 54 | /* |
| 55 | * cacheop macro to automate cache operations |
| 56 | * first some helpers... |
| 57 | */ |
| 58 | #define _mincache(size, maxsize) \ |
| 59 | bltu size,maxsize,9f ; \ |
| 60 | move size,maxsize ; \ |
| 61 | 9: |
| 62 | |
| 63 | #define _align(minaddr, maxaddr, linesize) \ |
| 64 | .set noat ; \ |
| 65 | subu AT,linesize,1 ; \ |
| 66 | not AT ; \ |
| 67 | and minaddr,AT ; \ |
| 68 | addu maxaddr,-1 ; \ |
| 69 | and maxaddr,AT ; \ |
| 70 | .set at |
| 71 | |
| 72 | /* general operations */ |
| 73 | #define doop1(op1) \ |
| 74 | cache op1,0(a0) |
| 75 | #define doop2(op1, op2) \ |
| 76 | cache op1,0(a0) ; \ |
| 77 | nop ; \ |
| 78 | cache op2,0(a0) |
| 79 | |
| 80 | /* specials for cache initialisation */ |
| 81 | #define doop1lw(op1) \ |
| 82 | lw zero,0(a0) |
| 83 | #define doop1lw1(op1) \ |
| 84 | cache op1,0(a0) ; \ |
| 85 | lw zero,0(a0) ; \ |
| 86 | cache op1,0(a0) |
| 87 | #define doop121(op1,op2) \ |
| 88 | cache op1,0(a0) ; \ |
| 89 | nop; \ |
| 90 | cache op2,0(a0) ; \ |
| 91 | nop; \ |
| 92 | cache op1,0(a0) |
| 93 | |
| 94 | #define _oploopn(minaddr, maxaddr, linesize, tag, ops) \ |
| 95 | .set noreorder ; \ |
| 96 | 10: doop##tag##ops ; \ |
| 97 | bne minaddr,maxaddr,10b ; \ |
| 98 | add minaddr,linesize ; \ |
| 99 | .set reorder |
| 100 | |
| 101 | /* finally the cache operation macros */ |
| 102 | #define vcacheopn(kva, n, cacheSize, cacheLineSize, tag, ops) \ |
| 103 | blez n,11f ; \ |
| 104 | addu n,kva ; \ |
| 105 | _align(kva, n, cacheLineSize) ; \ |
| 106 | _oploopn(kva, n, cacheLineSize, tag, ops) ; \ |
| 107 | 11: |
| 108 | |
| 109 | #define icacheopn(kva, n, cacheSize, cacheLineSize, tag, ops) \ |
| 110 | _mincache(n, cacheSize); \ |
| 111 | blez n,11f ; \ |
| 112 | addu n,kva ; \ |
| 113 | _align(kva, n, cacheLineSize) ; \ |
| 114 | _oploopn(kva, n, cacheLineSize, tag, ops) ; \ |
| 115 | 11: |
| 116 | |
| 117 | #define vcacheop(kva, n, cacheSize, cacheLineSize, op) \ |
| 118 | vcacheopn(kva, n, cacheSize, cacheLineSize, 1, (op)) |
| 119 | |
| 120 | #define icacheop(kva, n, cacheSize, cacheLineSize, op) \ |
| 121 | icacheopn(kva, n, cacheSize, cacheLineSize, 1, (op)) |
| 122 | |
Shinya Kuribayashi | 1898840 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 123 | .macro f_fill64 dst, offset, val |
| 124 | LONG_S \val, (\offset + 0 * LONGSIZE)(\dst) |
| 125 | LONG_S \val, (\offset + 1 * LONGSIZE)(\dst) |
| 126 | LONG_S \val, (\offset + 2 * LONGSIZE)(\dst) |
| 127 | LONG_S \val, (\offset + 3 * LONGSIZE)(\dst) |
| 128 | LONG_S \val, (\offset + 4 * LONGSIZE)(\dst) |
| 129 | LONG_S \val, (\offset + 5 * LONGSIZE)(\dst) |
| 130 | LONG_S \val, (\offset + 6 * LONGSIZE)(\dst) |
| 131 | LONG_S \val, (\offset + 7 * LONGSIZE)(\dst) |
| 132 | #if LONGSIZE == 4 |
| 133 | LONG_S \val, (\offset + 8 * LONGSIZE)(\dst) |
| 134 | LONG_S \val, (\offset + 9 * LONGSIZE)(\dst) |
| 135 | LONG_S \val, (\offset + 10 * LONGSIZE)(\dst) |
| 136 | LONG_S \val, (\offset + 11 * LONGSIZE)(\dst) |
| 137 | LONG_S \val, (\offset + 12 * LONGSIZE)(\dst) |
| 138 | LONG_S \val, (\offset + 13 * LONGSIZE)(\dst) |
| 139 | LONG_S \val, (\offset + 14 * LONGSIZE)(\dst) |
| 140 | LONG_S \val, (\offset + 15 * LONGSIZE)(\dst) |
| 141 | #endif |
| 142 | .endm |
| 143 | |
Shinya Kuribayashi | 2e0e527 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 144 | /* |
| 145 | * mips_init_icache(uint PRId, ulong icache_size, unchar icache_linesz) |
| 146 | */ |
| 147 | LEAF(mips_init_icache) |
| 148 | blez a1, 9f |
| 149 | mtc0 zero, CP0_TAGLO |
| 150 | /* clear tag to invalidate */ |
| 151 | PTR_LI t0, INDEX_BASE |
| 152 | PTR_ADDU t1, t0, a1 |
| 153 | 1: cache_op Index_Store_Tag_I t0 |
| 154 | PTR_ADDU t0, a2 |
| 155 | bne t0, t1, 1b |
| 156 | /* fill once, so data field parity is correct */ |
| 157 | PTR_LI t0, INDEX_BASE |
| 158 | 2: cache_op Fill t0 |
| 159 | PTR_ADDU t0, a2 |
| 160 | bne t0, t1, 2b |
| 161 | /* invalidate again - prudent but not strictly neccessary */ |
| 162 | PTR_LI t0, INDEX_BASE |
| 163 | 1: cache_op Index_Store_Tag_I t0 |
| 164 | PTR_ADDU t0, a2 |
| 165 | bne t0, t1, 1b |
| 166 | 9: jr ra |
| 167 | END(mips_init_icache) |
| 168 | |
| 169 | /* |
| 170 | * mips_init_dcache(uint PRId, ulong dcache_size, unchar dcache_linesz) |
| 171 | */ |
| 172 | LEAF(mips_init_dcache) |
| 173 | blez a1, 9f |
| 174 | mtc0 zero, CP0_TAGLO |
| 175 | /* clear all tags */ |
| 176 | PTR_LI t0, INDEX_BASE |
| 177 | PTR_ADDU t1, t0, a1 |
| 178 | 1: cache_op Index_Store_Tag_D t0 |
| 179 | PTR_ADDU t0, a2 |
| 180 | bne t0, t1, 1b |
| 181 | /* load from each line (in cached space) */ |
| 182 | PTR_LI t0, INDEX_BASE |
| 183 | 2: LONG_L zero, 0(t0) |
| 184 | PTR_ADDU t0, a2 |
| 185 | bne t0, t1, 2b |
| 186 | /* clear all tags */ |
| 187 | PTR_LI t0, INDEX_BASE |
| 188 | 1: cache_op Index_Store_Tag_D t0 |
| 189 | PTR_ADDU t0, a2 |
| 190 | bne t0, t1, 1b |
| 191 | 9: jr ra |
| 192 | END(mips_init_dcache) |
| 193 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 194 | /******************************************************************************* |
| 195 | * |
| 196 | * mips_cache_reset - low level initialisation of the primary caches |
| 197 | * |
| 198 | * This routine initialises the primary caches to ensure that they |
| 199 | * have good parity. It must be called by the ROM before any cached locations |
| 200 | * are used to prevent the possibility of data with bad parity being written to |
| 201 | * memory. |
| 202 | * To initialise the instruction cache it is essential that a source of data |
| 203 | * with good parity is available. This routine |
| 204 | * will initialise an area of memory starting at location zero to be used as |
| 205 | * a source of parity. |
| 206 | * |
| 207 | * RETURNS: N/A |
| 208 | * |
| 209 | */ |
Shinya Kuribayashi | 2f5d414 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 210 | NESTED(mips_cache_reset, 0, ra) |
Shinya Kuribayashi | 2e0e527 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 211 | move RA, ra |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 212 | li t2, CFG_ICACHE_SIZE |
| 213 | li t3, CFG_DCACHE_SIZE |
| 214 | li t4, CFG_CACHELINE_SIZE |
| 215 | move t5, t4 |
| 216 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 217 | li v0, MIPS_MAX_CACHE_SIZE |
| 218 | |
Shinya Kuribayashi | 1898840 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 219 | /* |
| 220 | * Now clear that much memory starting from zero. |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 221 | */ |
Shinya Kuribayashi | 1898840 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 222 | PTR_LI a0, KSEG1 |
| 223 | PTR_ADDU a1, a0, v0 |
| 224 | 2: PTR_ADDIU a0, 64 |
| 225 | f_fill64 a0, -64, zero |
| 226 | bne a0, a1, 2b |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 227 | |
Shinya Kuribayashi | 03c031d | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 228 | /* |
| 229 | * The caches are probably in an indeterminate state, |
| 230 | * so we force good parity into them by doing an |
| 231 | * invalidate, load/fill, invalidate for each line. |
| 232 | */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 233 | |
Shinya Kuribayashi | 2e0e527 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 234 | /* |
| 235 | * Assume bottom of RAM will generate good parity for the cache. |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 236 | */ |
| 237 | |
Shinya Kuribayashi | 2e0e527 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 238 | /* |
| 239 | * Initialize the I-cache first, |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 240 | */ |
Shinya Kuribayashi | 2e0e527 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 241 | move a1, t2 |
| 242 | move a2, t4 |
| 243 | bal mips_init_icache |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 244 | |
Shinya Kuribayashi | 2e0e527 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 245 | /* |
| 246 | * then initialize D-cache. |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 247 | */ |
Shinya Kuribayashi | 2e0e527 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 248 | move a1, t3 |
| 249 | move a2, t5 |
| 250 | bal mips_init_dcache |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 251 | |
Shinya Kuribayashi | 2e0e527 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 252 | jr RA |
Shinya Kuribayashi | 2f5d414 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 253 | END(mips_cache_reset) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 254 | |
| 255 | /******************************************************************************* |
| 256 | * |
| 257 | * dcache_status - get cache status |
| 258 | * |
| 259 | * RETURNS: 0 - cache disabled; 1 - cache enabled |
| 260 | * |
| 261 | */ |
Shinya Kuribayashi | 2f5d414 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 262 | LEAF(dcache_status) |
Shinya Kuribayashi | d98e348 | 2008-03-25 21:30:07 +0900 | [diff] [blame] | 263 | mfc0 t0, CP0_CONFIG |
| 264 | li t1, CONF_CM_UNCACHED |
| 265 | andi t0, t0, CONF_CM_CMASK |
| 266 | move v0, zero |
| 267 | beq t0, t1, 2f |
| 268 | li v0, 1 |
| 269 | 2: jr ra |
Shinya Kuribayashi | 2f5d414 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 270 | END(dcache_status) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 271 | |
| 272 | /******************************************************************************* |
| 273 | * |
| 274 | * dcache_disable - disable cache |
| 275 | * |
| 276 | * RETURNS: N/A |
| 277 | * |
| 278 | */ |
Shinya Kuribayashi | 2f5d414 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 279 | LEAF(dcache_disable) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 280 | mfc0 t0, CP0_CONFIG |
| 281 | li t1, -8 |
| 282 | and t0, t0, t1 |
| 283 | ori t0, t0, CONF_CM_UNCACHED |
Shinya Kuribayashi | 03c031d | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 284 | mtc0 t0, CP0_CONFIG |
Shinya Kuribayashi | 43c5092 | 2008-04-17 23:35:13 +0900 | [diff] [blame] | 285 | jr ra |
Shinya Kuribayashi | 2f5d414 | 2008-03-25 21:30:06 +0900 | [diff] [blame] | 286 | END(dcache_disable) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 287 | |
Shinya Kuribayashi | e139080 | 2008-03-25 11:39:29 +0900 | [diff] [blame] | 288 | #ifdef CFG_INIT_RAM_LOCK_MIPS |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 289 | /******************************************************************************* |
| 290 | * |
| 291 | * mips_cache_lock - lock RAM area pointed to by a0 in cache. |
| 292 | * |
| 293 | * RETURNS: N/A |
| 294 | * |
| 295 | */ |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 296 | #if defined(CONFIG_PURPLE) |
wdenk | 60fbe25 | 2003-04-08 23:25:21 +0000 | [diff] [blame] | 297 | # define CACHE_LOCK_SIZE (CFG_DCACHE_SIZE/2) |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 298 | #else |
| 299 | # define CACHE_LOCK_SIZE (CFG_DCACHE_SIZE) |
wdenk | 60fbe25 | 2003-04-08 23:25:21 +0000 | [diff] [blame] | 300 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 301 | .globl mips_cache_lock |
| 302 | .ent mips_cache_lock |
| 303 | mips_cache_lock: |
wdenk | 60fbe25 | 2003-04-08 23:25:21 +0000 | [diff] [blame] | 304 | li a1, K0BASE - CACHE_LOCK_SIZE |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 305 | addu a0, a1 |
wdenk | 60fbe25 | 2003-04-08 23:25:21 +0000 | [diff] [blame] | 306 | li a2, CACHE_LOCK_SIZE |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 307 | li a3, CFG_CACHELINE_SIZE |
| 308 | move a1, a2 |
| 309 | icacheop(a0,a1,a2,a3,0x1d) |
| 310 | |
Shinya Kuribayashi | 43c5092 | 2008-04-17 23:35:13 +0900 | [diff] [blame] | 311 | jr ra |
Shinya Kuribayashi | 03c031d | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 312 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 313 | .end mips_cache_lock |
Shinya Kuribayashi | e139080 | 2008-03-25 11:39:29 +0900 | [diff] [blame] | 314 | #endif /* CFG_INIT_RAM_LOCK_MIPS */ |