blob: bd14ba6ea7c5fdc82f31ede48d6ea3c569565fc4 [file] [log] [blame]
Paul Burton30374f92015-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 Burton4baa0ab2016-09-21 11:18:54 +010010#include <asm/cm.h>
Paul Burton30374f92015-01-29 01:27:57 +000011#include <asm/mipsregs.h>
12
Paul Burton8cb48172016-09-21 11:18:48 +010013DECLARE_GLOBAL_DATA_PTR;
Paul Burton37228622016-05-27 14:28:05 +010014
Paul Burton4baa0ab2016-09-21 11:18:54 +010015static void probe_l2(void)
16{
17#ifdef CONFIG_MIPS_L2_CACHE
18 unsigned long conf2, sl;
19 bool l2c = false;
20
21 if (!(read_c0_config1() & MIPS_CONF_M))
22 return;
23
24 conf2 = read_c0_config2();
25
26 if (__mips_isa_rev >= 6) {
27 l2c = conf2 & MIPS_CONF_M;
28 if (l2c)
29 l2c = read_c0_config3() & MIPS_CONF_M;
30 if (l2c)
31 l2c = read_c0_config4() & MIPS_CONF_M;
32 if (l2c)
33 l2c = read_c0_config5() & MIPS_CONF5_L2C;
34 }
35
36 if (l2c && config_enabled(CONFIG_MIPS_CM)) {
37 gd->arch.l2_line_size = mips_cm_l2_line_size();
38 } else if (l2c) {
39 /* We don't know how to retrieve L2 config on this system */
40 BUG();
41 } else {
42 sl = (conf2 & MIPS_CONF2_SL) >> MIPS_CONF2_SL_SHF;
43 gd->arch.l2_line_size = sl ? (2 << sl) : 0;
44 }
45#endif
46}
47
Paul Burton8cb48172016-09-21 11:18:48 +010048void mips_cache_probe(void)
49{
50#ifdef CONFIG_SYS_CACHE_SIZE_AUTO
51 unsigned long conf1, il, dl;
Paul Burton37228622016-05-27 14:28:05 +010052
Paul Burton30374f92015-01-29 01:27:57 +000053 conf1 = read_c0_config1();
Paul Burton8cb48172016-09-21 11:18:48 +010054
Daniel Schwierzecka3ab2ae2016-01-12 21:48:26 +010055 il = (conf1 & MIPS_CONF1_IL) >> MIPS_CONF1_IL_SHF;
Paul Burton8cb48172016-09-21 11:18:48 +010056 dl = (conf1 & MIPS_CONF1_DL) >> MIPS_CONF1_DL_SHF;
57
58 gd->arch.l1i_line_size = il ? (2 << il) : 0;
59 gd->arch.l1d_line_size = dl ? (2 << dl) : 0;
60#endif
Paul Burton4baa0ab2016-09-21 11:18:54 +010061 probe_l2();
Paul Burton8cb48172016-09-21 11:18:48 +010062}
63
64static inline unsigned long icache_line_size(void)
65{
66#ifdef CONFIG_SYS_CACHE_SIZE_AUTO
67 return gd->arch.l1i_line_size;
68#else
69 return CONFIG_SYS_ICACHE_LINE_SIZE;
70#endif
Paul Burton30374f92015-01-29 01:27:57 +000071}
72
73static inline unsigned long dcache_line_size(void)
74{
Paul Burton8cb48172016-09-21 11:18:48 +010075#ifdef CONFIG_SYS_CACHE_SIZE_AUTO
76 return gd->arch.l1d_line_size;
77#else
78 return CONFIG_SYS_DCACHE_LINE_SIZE;
79#endif
Paul Burton30374f92015-01-29 01:27:57 +000080}
81
Paul Burton4baa0ab2016-09-21 11:18:54 +010082static inline unsigned long scache_line_size(void)
83{
84#ifdef CONFIG_MIPS_L2_CACHE
85 return gd->arch.l2_line_size;
86#else
87 return 0;
88#endif
89}
90
Paul Burtonfb64cda2016-05-27 14:28:06 +010091#define cache_loop(start, end, lsize, ops...) do { \
92 const void *addr = (const void *)(start & ~(lsize - 1)); \
93 const void *aend = (const void *)((end - 1) & ~(lsize - 1)); \
94 const unsigned int cache_ops[] = { ops }; \
95 unsigned int i; \
96 \
97 for (; addr <= aend; addr += lsize) { \
98 for (i = 0; i < ARRAY_SIZE(cache_ops); i++) \
99 mips_cache(cache_ops[i], addr); \
100 } \
101} while (0)
102
Paul Burton30374f92015-01-29 01:27:57 +0000103void flush_cache(ulong start_addr, ulong size)
104{
105 unsigned long ilsize = icache_line_size();
106 unsigned long dlsize = dcache_line_size();
Paul Burton4baa0ab2016-09-21 11:18:54 +0100107 unsigned long slsize = scache_line_size();
Paul Burton30374f92015-01-29 01:27:57 +0000108
109 /* aend will be miscalculated when size is zero, so we return here */
110 if (size == 0)
111 return;
112
Paul Burton4baa0ab2016-09-21 11:18:54 +0100113 if ((ilsize == dlsize) && !slsize) {
Paul Burton30374f92015-01-29 01:27:57 +0000114 /* flush I-cache & D-cache simultaneously */
Paul Burtonfb64cda2016-05-27 14:28:06 +0100115 cache_loop(start_addr, start_addr + size, ilsize,
116 HIT_WRITEBACK_INV_D, HIT_INVALIDATE_I);
Paul Burton30374f92015-01-29 01:27:57 +0000117 return;
118 }
119
120 /* flush D-cache */
Paul Burtonfb64cda2016-05-27 14:28:06 +0100121 cache_loop(start_addr, start_addr + size, dlsize, HIT_WRITEBACK_INV_D);
Paul Burton30374f92015-01-29 01:27:57 +0000122
Paul Burton4baa0ab2016-09-21 11:18:54 +0100123 /* flush L2 cache */
124 if (slsize)
125 cache_loop(start_addr, start_addr + size, slsize,
126 HIT_WRITEBACK_INV_SD);
127
Paul Burton30374f92015-01-29 01:27:57 +0000128 /* flush I-cache */
Paul Burtonfb64cda2016-05-27 14:28:06 +0100129 cache_loop(start_addr, start_addr + size, ilsize, HIT_INVALIDATE_I);
Paul Burton30374f92015-01-29 01:27:57 +0000130}
131
132void flush_dcache_range(ulong start_addr, ulong stop)
133{
134 unsigned long lsize = dcache_line_size();
Paul Burton4baa0ab2016-09-21 11:18:54 +0100135 unsigned long slsize = scache_line_size();
Paul Burton30374f92015-01-29 01:27:57 +0000136
Marek Vasutfbb0de02016-01-27 03:13:59 +0100137 /* aend will be miscalculated when size is zero, so we return here */
138 if (start_addr == stop)
139 return;
140
Paul Burtonfb64cda2016-05-27 14:28:06 +0100141 cache_loop(start_addr, stop, lsize, HIT_WRITEBACK_INV_D);
Paul Burton4baa0ab2016-09-21 11:18:54 +0100142
143 /* flush L2 cache */
144 if (slsize)
145 cache_loop(start_addr, stop, slsize, HIT_WRITEBACK_INV_SD);
Paul Burton30374f92015-01-29 01:27:57 +0000146}
147
148void invalidate_dcache_range(ulong start_addr, ulong stop)
149{
150 unsigned long lsize = dcache_line_size();
Paul Burton4baa0ab2016-09-21 11:18:54 +0100151 unsigned long slsize = scache_line_size();
Paul Burton30374f92015-01-29 01:27:57 +0000152
Marek Vasutfbb0de02016-01-27 03:13:59 +0100153 /* aend will be miscalculated when size is zero, so we return here */
154 if (start_addr == stop)
155 return;
156
Paul Burton4baa0ab2016-09-21 11:18:54 +0100157 /* invalidate L2 cache */
158 if (slsize)
159 cache_loop(start_addr, stop, slsize, HIT_INVALIDATE_SD);
160
Paul Burtona95800e2016-06-09 13:09:51 +0100161 cache_loop(start_addr, stop, lsize, HIT_INVALIDATE_D);
Paul Burton30374f92015-01-29 01:27:57 +0000162}