blob: 91b037f87d7240c3a17bce4540564d9d6e29bc19 [file] [log] [blame]
Paul Burton4ff6b102015-01-29 01:27:57 +00001/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
9#include <asm/cacheops.h>
Paul Burton3d6864a2017-05-12 13:26:11 +020010#ifdef CONFIG_MIPS_L2_CACHE
Paul Burton81560782016-09-21 11:18:54 +010011#include <asm/cm.h>
Paul Burton3d6864a2017-05-12 13:26:11 +020012#endif
Paul Burton4ff6b102015-01-29 01:27:57 +000013#include <asm/mipsregs.h>
14
Paul Burtondc2037e2016-09-21 11:18:48 +010015DECLARE_GLOBAL_DATA_PTR;
Paul Burton4ff6b102015-01-29 01:27:57 +000016
Paul Burton81560782016-09-21 11:18:54 +010017static void probe_l2(void)
18{
19#ifdef CONFIG_MIPS_L2_CACHE
20 unsigned long conf2, sl;
21 bool l2c = false;
22
23 if (!(read_c0_config1() & MIPS_CONF_M))
24 return;
25
26 conf2 = read_c0_config2();
27
28 if (__mips_isa_rev >= 6) {
29 l2c = conf2 & MIPS_CONF_M;
30 if (l2c)
31 l2c = read_c0_config3() & MIPS_CONF_M;
32 if (l2c)
33 l2c = read_c0_config4() & MIPS_CONF_M;
34 if (l2c)
35 l2c = read_c0_config5() & MIPS_CONF5_L2C;
36 }
37
38 if (l2c && config_enabled(CONFIG_MIPS_CM)) {
39 gd->arch.l2_line_size = mips_cm_l2_line_size();
40 } else if (l2c) {
41 /* We don't know how to retrieve L2 config on this system */
42 BUG();
43 } else {
44 sl = (conf2 & MIPS_CONF2_SL) >> MIPS_CONF2_SL_SHF;
45 gd->arch.l2_line_size = sl ? (2 << sl) : 0;
46 }
47#endif
48}
49
Paul Burtondc2037e2016-09-21 11:18:48 +010050void mips_cache_probe(void)
51{
52#ifdef CONFIG_SYS_CACHE_SIZE_AUTO
53 unsigned long conf1, il, dl;
Paul Burton4ff6b102015-01-29 01:27:57 +000054
Paul Burton4ff6b102015-01-29 01:27:57 +000055 conf1 = read_c0_config1();
Paul Burtondc2037e2016-09-21 11:18:48 +010056
Daniel Schwierzecka6dae712016-01-12 21:48:26 +010057 il = (conf1 & MIPS_CONF1_IL) >> MIPS_CONF1_IL_SHF;
Paul Burtondc2037e2016-09-21 11:18:48 +010058 dl = (conf1 & MIPS_CONF1_DL) >> MIPS_CONF1_DL_SHF;
59
60 gd->arch.l1i_line_size = il ? (2 << il) : 0;
61 gd->arch.l1d_line_size = dl ? (2 << dl) : 0;
62#endif
Paul Burton81560782016-09-21 11:18:54 +010063 probe_l2();
Paul Burton4ff6b102015-01-29 01:27:57 +000064}
65
Paul Burtondc2037e2016-09-21 11:18:48 +010066static inline unsigned long icache_line_size(void)
Paul Burton4ff6b102015-01-29 01:27:57 +000067{
Paul Burtondc2037e2016-09-21 11:18:48 +010068#ifdef CONFIG_SYS_CACHE_SIZE_AUTO
69 return gd->arch.l1i_line_size;
70#else
71 return CONFIG_SYS_ICACHE_LINE_SIZE;
72#endif
73}
Paul Burton62f13522016-05-27 14:28:05 +010074
Paul Burtondc2037e2016-09-21 11:18:48 +010075static inline unsigned long dcache_line_size(void)
76{
77#ifdef CONFIG_SYS_CACHE_SIZE_AUTO
78 return gd->arch.l1d_line_size;
79#else
80 return CONFIG_SYS_DCACHE_LINE_SIZE;
81#endif
Paul Burton4ff6b102015-01-29 01:27:57 +000082}
83
Paul Burton81560782016-09-21 11:18:54 +010084static inline unsigned long scache_line_size(void)
85{
86#ifdef CONFIG_MIPS_L2_CACHE
87 return gd->arch.l2_line_size;
88#else
89 return 0;
90#endif
91}
92
Paul Burtona97d5932016-05-27 14:28:06 +010093#define cache_loop(start, end, lsize, ops...) do { \
94 const void *addr = (const void *)(start & ~(lsize - 1)); \
95 const void *aend = (const void *)((end - 1) & ~(lsize - 1)); \
96 const unsigned int cache_ops[] = { ops }; \
97 unsigned int i; \
98 \
99 for (; addr <= aend; addr += lsize) { \
100 for (i = 0; i < ARRAY_SIZE(cache_ops); i++) \
101 mips_cache(cache_ops[i], addr); \
102 } \
103} while (0)
104
Paul Burton4ff6b102015-01-29 01:27:57 +0000105void flush_cache(ulong start_addr, ulong size)
106{
107 unsigned long ilsize = icache_line_size();
108 unsigned long dlsize = dcache_line_size();
Paul Burton81560782016-09-21 11:18:54 +0100109 unsigned long slsize = scache_line_size();
Paul Burton4ff6b102015-01-29 01:27:57 +0000110
111 /* aend will be miscalculated when size is zero, so we return here */
112 if (size == 0)
113 return;
114
Paul Burton81560782016-09-21 11:18:54 +0100115 if ((ilsize == dlsize) && !slsize) {
Paul Burton4ff6b102015-01-29 01:27:57 +0000116 /* flush I-cache & D-cache simultaneously */
Paul Burtona97d5932016-05-27 14:28:06 +0100117 cache_loop(start_addr, start_addr + size, ilsize,
118 HIT_WRITEBACK_INV_D, HIT_INVALIDATE_I);
Paul Burton4ff6b102015-01-29 01:27:57 +0000119 return;
120 }
121
122 /* flush D-cache */
Paul Burtona97d5932016-05-27 14:28:06 +0100123 cache_loop(start_addr, start_addr + size, dlsize, HIT_WRITEBACK_INV_D);
Paul Burton4ff6b102015-01-29 01:27:57 +0000124
Paul Burton81560782016-09-21 11:18:54 +0100125 /* flush L2 cache */
126 if (slsize)
127 cache_loop(start_addr, start_addr + size, slsize,
128 HIT_WRITEBACK_INV_SD);
129
Paul Burton4ff6b102015-01-29 01:27:57 +0000130 /* flush I-cache */
Paul Burtona97d5932016-05-27 14:28:06 +0100131 cache_loop(start_addr, start_addr + size, ilsize, HIT_INVALIDATE_I);
Paul Burton4ff6b102015-01-29 01:27:57 +0000132}
133
134void flush_dcache_range(ulong start_addr, ulong stop)
135{
136 unsigned long lsize = dcache_line_size();
Paul Burton81560782016-09-21 11:18:54 +0100137 unsigned long slsize = scache_line_size();
Paul Burton4ff6b102015-01-29 01:27:57 +0000138
Marek Vasut0e50ffc2016-01-27 03:13:59 +0100139 /* aend will be miscalculated when size is zero, so we return here */
140 if (start_addr == stop)
141 return;
142
Paul Burtona97d5932016-05-27 14:28:06 +0100143 cache_loop(start_addr, stop, lsize, HIT_WRITEBACK_INV_D);
Paul Burton81560782016-09-21 11:18:54 +0100144
145 /* flush L2 cache */
146 if (slsize)
147 cache_loop(start_addr, stop, slsize, HIT_WRITEBACK_INV_SD);
Paul Burton4ff6b102015-01-29 01:27:57 +0000148}
149
150void invalidate_dcache_range(ulong start_addr, ulong stop)
151{
152 unsigned long lsize = dcache_line_size();
Paul Burton81560782016-09-21 11:18:54 +0100153 unsigned long slsize = scache_line_size();
Paul Burton4ff6b102015-01-29 01:27:57 +0000154
Marek Vasut0e50ffc2016-01-27 03:13:59 +0100155 /* aend will be miscalculated when size is zero, so we return here */
156 if (start_addr == stop)
157 return;
158
Paul Burton81560782016-09-21 11:18:54 +0100159 /* invalidate L2 cache */
160 if (slsize)
161 cache_loop(start_addr, stop, slsize, HIT_INVALIDATE_SD);
162
Paul Burton1194f942016-06-09 13:09:51 +0100163 cache_loop(start_addr, stop, lsize, HIT_INVALIDATE_D);
Paul Burton4ff6b102015-01-29 01:27:57 +0000164}