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