blob: dc207a6a1ce6bad0ec4e3ee32390b2bea55c5b52 [file] [log] [blame]
wdenkc0218802003-03-27 12:09:35 +00001/*
Shinya Kuribayashi373b16f2008-03-25 21:30:07 +09002 * Cache-handling routined for MIPS CPUs
wdenkc0218802003-03-27 12:09:35 +00003 *
4 * Copyright (c) 2003 Wolfgang Denk <wd@denx.de>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
wdenkc0218802003-03-27 12:09:35 +00007 */
8
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +02009#include <asm-offsets.h>
wdenkc0218802003-03-27 12:09:35 +000010#include <config.h>
Shinya Kuribayashi2f5d4142008-03-25 21:30:06 +090011#include <asm/asm.h>
wdenkc0218802003-03-27 12:09:35 +000012#include <asm/regdef.h>
13#include <asm/mipsregs.h>
14#include <asm/addrspace.h>
15#include <asm/cacheops.h>
16
Daniel Schwierzeck979cfea2012-04-02 02:57:55 +000017#ifndef CONFIG_SYS_MIPS_CACHE_MODE
18#define CONFIG_SYS_MIPS_CACHE_MODE CONF_CM_CACHABLE_NONCOHERENT
19#endif
20
Paul Burton4a5d8892015-01-29 01:27:58 +000021#ifdef CONFIG_64BIT
22# define RA ta3
23#else
24# define RA t7
25#endif
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +090026
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +090027#define INDEX_BASE CKSEG0
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +090028
Shinya Kuribayashi18988402008-03-25 21:30:06 +090029 .macro f_fill64 dst, offset, val
30 LONG_S \val, (\offset + 0 * LONGSIZE)(\dst)
31 LONG_S \val, (\offset + 1 * LONGSIZE)(\dst)
32 LONG_S \val, (\offset + 2 * LONGSIZE)(\dst)
33 LONG_S \val, (\offset + 3 * LONGSIZE)(\dst)
34 LONG_S \val, (\offset + 4 * LONGSIZE)(\dst)
35 LONG_S \val, (\offset + 5 * LONGSIZE)(\dst)
36 LONG_S \val, (\offset + 6 * LONGSIZE)(\dst)
37 LONG_S \val, (\offset + 7 * LONGSIZE)(\dst)
38#if LONGSIZE == 4
39 LONG_S \val, (\offset + 8 * LONGSIZE)(\dst)
40 LONG_S \val, (\offset + 9 * LONGSIZE)(\dst)
41 LONG_S \val, (\offset + 10 * LONGSIZE)(\dst)
42 LONG_S \val, (\offset + 11 * LONGSIZE)(\dst)
43 LONG_S \val, (\offset + 12 * LONGSIZE)(\dst)
44 LONG_S \val, (\offset + 13 * LONGSIZE)(\dst)
45 LONG_S \val, (\offset + 14 * LONGSIZE)(\dst)
46 LONG_S \val, (\offset + 15 * LONGSIZE)(\dst)
47#endif
48 .endm
49
Paul Burtonac22fec2015-01-29 01:28:00 +000050 .macro cache_loop curr, end, line_sz, op
5110: cache \op, 0(\curr)
52 PTR_ADDU \curr, \curr, \line_sz
53 bne \curr, \end, 10b
54 .endm
55
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +090056/*
57 * mips_init_icache(uint PRId, ulong icache_size, unchar icache_linesz)
58 */
59LEAF(mips_init_icache)
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +090060 blez a1, 9f
61 mtc0 zero, CP0_TAGLO
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +090062 PTR_LI t0, INDEX_BASE
63 PTR_ADDU t1, t0, a1
Paul Burtonac22fec2015-01-29 01:28:00 +000064 /* clear tag to invalidate */
65 cache_loop t0, t1, a2, INDEX_STORE_TAG_I
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +090066 /* fill once, so data field parity is correct */
67 PTR_LI t0, INDEX_BASE
Paul Burtonac22fec2015-01-29 01:28:00 +000068 cache_loop t0, t1, a2, FILL
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +090069 /* invalidate again - prudent but not strictly neccessary */
70 PTR_LI t0, INDEX_BASE
Paul Burtonac22fec2015-01-29 01:28:00 +000071 cache_loop t0, t1, a2, INDEX_STORE_TAG_I
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900729: jr ra
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +090073 END(mips_init_icache)
74
75/*
76 * mips_init_dcache(uint PRId, ulong dcache_size, unchar dcache_linesz)
77 */
78LEAF(mips_init_dcache)
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +090079 blez a1, 9f
80 mtc0 zero, CP0_TAGLO
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +090081 PTR_LI t0, INDEX_BASE
82 PTR_ADDU t1, t0, a1
Paul Burtonac22fec2015-01-29 01:28:00 +000083 /* clear all tags */
84 cache_loop t0, t1, a2, INDEX_STORE_TAG_D
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +090085 /* load from each line (in cached space) */
86 PTR_LI t0, INDEX_BASE
872: LONG_L zero, 0(t0)
88 PTR_ADDU t0, a2
89 bne t0, t1, 2b
90 /* clear all tags */
91 PTR_LI t0, INDEX_BASE
Paul Burtonac22fec2015-01-29 01:28:00 +000092 cache_loop t0, t1, a2, INDEX_STORE_TAG_D
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900939: jr ra
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +090094 END(mips_init_dcache)
95
Paul Burton536cb7c2015-01-29 01:27:59 +000096 .macro l1_info sz, line_sz, off
97 .set push
98 .set noat
99
100 mfc0 $1, CP0_CONFIG, 1
101
102 /* detect line size */
103 srl \line_sz, $1, \off + MIPS_CONF1_DL_SHIFT - MIPS_CONF1_DA_SHIFT
104 andi \line_sz, \line_sz, (MIPS_CONF1_DL >> MIPS_CONF1_DL_SHIFT)
105 move \sz, zero
106 beqz \line_sz, 10f
107 li \sz, 2
108 sllv \line_sz, \sz, \line_sz
109
110 /* detect associativity */
111 srl \sz, $1, \off + MIPS_CONF1_DA_SHIFT - MIPS_CONF1_DA_SHIFT
112 andi \sz, \sz, (MIPS_CONF1_DA >> MIPS_CONF1_DA_SHIFT)
113 addi \sz, \sz, 1
114
115 /* sz *= line_sz */
116 mul \sz, \sz, \line_sz
117
118 /* detect log32(sets) */
119 srl $1, $1, \off + MIPS_CONF1_DS_SHIFT - MIPS_CONF1_DA_SHIFT
120 andi $1, $1, (MIPS_CONF1_DS >> MIPS_CONF1_DS_SHIFT)
121 addiu $1, $1, 1
122 andi $1, $1, 0x7
123
124 /* sz <<= log32(sets) */
125 sllv \sz, \sz, $1
126
127 /* sz *= 32 */
128 li $1, 32
129 mul \sz, \sz, $1
13010:
131 .set pop
132 .endm
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900133/*
134 * mips_cache_reset - low level initialisation of the primary caches
135 *
136 * This routine initialises the primary caches to ensure that they have good
137 * parity. It must be called by the ROM before any cached locations are used
138 * to prevent the possibility of data with bad parity being written to memory.
139 *
140 * To initialise the instruction cache it is essential that a source of data
141 * with good parity is available. This routine will initialise an area of
142 * memory starting at location zero to be used as a source of parity.
143 *
144 * RETURNS: N/A
145 *
146 */
Shinya Kuribayashi2f5d4142008-03-25 21:30:06 +0900147NESTED(mips_cache_reset, 0, ra)
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +0900148 move RA, ra
Paul Burtonfa476f72013-11-08 11:18:42 +0000149
Paul Burtonfa476f72013-11-08 11:18:42 +0000150#ifdef CONFIG_SYS_ICACHE_SIZE
151 li t2, CONFIG_SYS_ICACHE_SIZE
Paul Burton536cb7c2015-01-29 01:27:59 +0000152 li t8, CONFIG_SYS_CACHELINE_SIZE
Paul Burtonfa476f72013-11-08 11:18:42 +0000153#else
Paul Burton536cb7c2015-01-29 01:27:59 +0000154 l1_info t2, t8, MIPS_CONF1_IA_SHIFT
Paul Burtonfa476f72013-11-08 11:18:42 +0000155#endif
156
157#ifdef CONFIG_SYS_DCACHE_SIZE
158 li t3, CONFIG_SYS_DCACHE_SIZE
Paul Burton536cb7c2015-01-29 01:27:59 +0000159 li t9, CONFIG_SYS_CACHELINE_SIZE
Paul Burtonfa476f72013-11-08 11:18:42 +0000160#else
Paul Burton536cb7c2015-01-29 01:27:59 +0000161 l1_info t3, t9, MIPS_CONF1_DA_SHIFT
Paul Burtonfa476f72013-11-08 11:18:42 +0000162#endif
163
164 /* Determine the largest L1 cache size */
165#if defined(CONFIG_SYS_ICACHE_SIZE) && defined(CONFIG_SYS_DCACHE_SIZE)
166#if CONFIG_SYS_ICACHE_SIZE > CONFIG_SYS_DCACHE_SIZE
167 li v0, CONFIG_SYS_ICACHE_SIZE
168#else
169 li v0, CONFIG_SYS_DCACHE_SIZE
170#endif
171#else
172 move v0, t2
173 sltu t1, t2, t3
174 movn v0, t3, t1
175#endif
Shinya Kuribayashi18988402008-03-25 21:30:06 +0900176 /*
177 * Now clear that much memory starting from zero.
wdenkc0218802003-03-27 12:09:35 +0000178 */
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +0900179 PTR_LI a0, CKSEG1
Shinya Kuribayashi18988402008-03-25 21:30:06 +0900180 PTR_ADDU a1, a0, v0
1812: PTR_ADDIU a0, 64
182 f_fill64 a0, -64, zero
183 bne a0, a1, 2b
wdenk8bde7f72003-06-27 21:31:46 +0000184
Shinya Kuribayashi03c031d2007-10-27 15:27:06 +0900185 /*
186 * The caches are probably in an indeterminate state,
187 * so we force good parity into them by doing an
188 * invalidate, load/fill, invalidate for each line.
189 */
wdenkc0218802003-03-27 12:09:35 +0000190
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +0900191 /*
192 * Assume bottom of RAM will generate good parity for the cache.
wdenkc0218802003-03-27 12:09:35 +0000193 */
194
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +0900195 /*
196 * Initialize the I-cache first,
wdenkc0218802003-03-27 12:09:35 +0000197 */
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +0900198 move a1, t2
Gabor Juhosee8b1e22013-06-13 12:59:35 +0200199 move a2, t8
Gabor Juhosdb2c86d2013-06-13 12:59:36 +0200200 PTR_LA v1, mips_init_icache
201 jalr v1
wdenkc0218802003-03-27 12:09:35 +0000202
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +0900203 /*
204 * then initialize D-cache.
wdenkc0218802003-03-27 12:09:35 +0000205 */
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +0900206 move a1, t3
Paul Burton4a5d8892015-01-29 01:27:58 +0000207 move a2, t9
Gabor Juhosdb2c86d2013-06-13 12:59:36 +0200208 PTR_LA v1, mips_init_dcache
209 jalr v1
wdenkc0218802003-03-27 12:09:35 +0000210
Shinya Kuribayashi2e0e5272008-03-25 21:30:06 +0900211 jr RA
Shinya Kuribayashi2f5d4142008-03-25 21:30:06 +0900212 END(mips_cache_reset)
wdenkc0218802003-03-27 12:09:35 +0000213
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900214/*
215 * dcache_status - get cache status
216 *
217 * RETURNS: 0 - cache disabled; 1 - cache enabled
218 *
219 */
Shinya Kuribayashi2f5d4142008-03-25 21:30:06 +0900220LEAF(dcache_status)
Shinya Kuribayashid98e3482008-03-25 21:30:07 +0900221 mfc0 t0, CP0_CONFIG
222 li t1, CONF_CM_UNCACHED
223 andi t0, t0, CONF_CM_CMASK
224 move v0, zero
225 beq t0, t1, 2f
226 li v0, 1
2272: jr ra
Shinya Kuribayashi2f5d4142008-03-25 21:30:06 +0900228 END(dcache_status)
wdenkc0218802003-03-27 12:09:35 +0000229
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900230/*
231 * dcache_disable - disable cache
232 *
233 * RETURNS: N/A
234 *
235 */
Shinya Kuribayashi2f5d4142008-03-25 21:30:06 +0900236LEAF(dcache_disable)
wdenkc0218802003-03-27 12:09:35 +0000237 mfc0 t0, CP0_CONFIG
238 li t1, -8
239 and t0, t0, t1
240 ori t0, t0, CONF_CM_UNCACHED
Shinya Kuribayashi03c031d2007-10-27 15:27:06 +0900241 mtc0 t0, CP0_CONFIG
Shinya Kuribayashi43c50922008-04-17 23:35:13 +0900242 jr ra
Shinya Kuribayashi2f5d4142008-03-25 21:30:06 +0900243 END(dcache_disable)
wdenkc0218802003-03-27 12:09:35 +0000244
Shinya Kuribayashi7aa1f192011-05-07 00:18:13 +0900245/*
246 * dcache_enable - enable cache
247 *
248 * RETURNS: N/A
249 *
250 */
Shinya Kuribayashiea638952008-05-03 13:51:28 +0900251LEAF(dcache_enable)
252 mfc0 t0, CP0_CONFIG
253 ori t0, CONF_CM_CMASK
254 xori t0, CONF_CM_CMASK
Daniel Schwierzeck979cfea2012-04-02 02:57:55 +0000255 ori t0, CONFIG_SYS_MIPS_CACHE_MODE
Shinya Kuribayashiea638952008-05-03 13:51:28 +0900256 mtc0 t0, CP0_CONFIG
257 jr ra
258 END(dcache_enable)