blob: 9ee1d89cced0cf054032ec39231d0a225b07d149 [file] [log] [blame]
Florian Fainellif6f9be12017-12-01 01:10:09 +01001/*
2 * Broadcom Brahma-B15 CPU read-ahead cache management functions
3 *
4 * Copyright (C) 2015-2016 Broadcom
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/err.h>
12#include <linux/spinlock.h>
13#include <linux/io.h>
14#include <linux/bitops.h>
15#include <linux/of_address.h>
Florian Fainelli55de8872017-12-01 01:10:11 +010016#include <linux/notifier.h>
17#include <linux/cpu.h>
Florian Fainelli534f5f32017-12-01 01:10:12 +010018#include <linux/syscore_ops.h>
Florian Fainellif6f9be12017-12-01 01:10:09 +010019
20#include <asm/cacheflush.h>
21#include <asm/hardware/cache-b15-rac.h>
22
23extern void v7_flush_kern_cache_all(void);
24
25/* RAC register offsets, relative to the HIF_CPU_BIUCTRL register base */
26#define RAC_CONFIG0_REG (0x78)
27#define RACENPREF_MASK (0x3)
28#define RACPREFINST_SHIFT (0)
29#define RACENINST_SHIFT (2)
30#define RACPREFDATA_SHIFT (4)
31#define RACENDATA_SHIFT (6)
32#define RAC_CPU_SHIFT (8)
33#define RACCFG_MASK (0xff)
34#define RAC_CONFIG1_REG (0x7c)
35#define RAC_FLUSH_REG (0x80)
36#define FLUSH_RAC (1 << 0)
37
38/* Bitmask to enable instruction and data prefetching with a 256-bytes stride */
39#define RAC_DATA_INST_EN_MASK (1 << RACPREFINST_SHIFT | \
40 RACENPREF_MASK << RACENINST_SHIFT | \
41 1 << RACPREFDATA_SHIFT | \
42 RACENPREF_MASK << RACENDATA_SHIFT)
43
44#define RAC_ENABLED 0
Florian Fainelli534f5f32017-12-01 01:10:12 +010045/* Special state where we want to bypass the spinlock and call directly
46 * into the v7 cache maintenance operations during suspend/resume
47 */
48#define RAC_SUSPENDED 1
Florian Fainellif6f9be12017-12-01 01:10:09 +010049
50static void __iomem *b15_rac_base;
51static DEFINE_SPINLOCK(rac_lock);
Florian Fainelli55de8872017-12-01 01:10:11 +010052static u32 rac_config0_reg;
Florian Fainellif6f9be12017-12-01 01:10:09 +010053
54/* Initialization flag to avoid checking for b15_rac_base, and to prevent
55 * multi-platform kernels from crashing here as well.
56 */
57static unsigned long b15_rac_flags;
58
59static inline u32 __b15_rac_disable(void)
60{
61 u32 val = __raw_readl(b15_rac_base + RAC_CONFIG0_REG);
62 __raw_writel(0, b15_rac_base + RAC_CONFIG0_REG);
63 dmb();
64 return val;
65}
66
67static inline void __b15_rac_flush(void)
68{
69 u32 reg;
70
71 __raw_writel(FLUSH_RAC, b15_rac_base + RAC_FLUSH_REG);
72 do {
73 /* This dmb() is required to force the Bus Interface Unit
74 * to clean oustanding writes, and forces an idle cycle
75 * to be inserted.
76 */
77 dmb();
78 reg = __raw_readl(b15_rac_base + RAC_FLUSH_REG);
79 } while (reg & FLUSH_RAC);
80}
81
82static inline u32 b15_rac_disable_and_flush(void)
83{
84 u32 reg;
85
86 reg = __b15_rac_disable();
87 __b15_rac_flush();
88 return reg;
89}
90
91static inline void __b15_rac_enable(u32 val)
92{
93 __raw_writel(val, b15_rac_base + RAC_CONFIG0_REG);
94 /* dsb() is required here to be consistent with __flush_icache_all() */
95 dsb();
96}
97
98#define BUILD_RAC_CACHE_OP(name, bar) \
99void b15_flush_##name(void) \
100{ \
101 unsigned int do_flush; \
102 u32 val = 0; \
103 \
Florian Fainelli534f5f32017-12-01 01:10:12 +0100104 if (test_bit(RAC_SUSPENDED, &b15_rac_flags)) { \
105 v7_flush_##name(); \
106 bar; \
107 return; \
108 } \
109 \
Florian Fainellif6f9be12017-12-01 01:10:09 +0100110 spin_lock(&rac_lock); \
111 do_flush = test_bit(RAC_ENABLED, &b15_rac_flags); \
112 if (do_flush) \
113 val = b15_rac_disable_and_flush(); \
114 v7_flush_##name(); \
115 if (!do_flush) \
116 bar; \
117 else \
118 __b15_rac_enable(val); \
119 spin_unlock(&rac_lock); \
120}
121
122#define nobarrier
123
124/* The readahead cache present in the Brahma-B15 CPU is a special piece of
125 * hardware after the integrated L2 cache of the B15 CPU complex whose purpose
126 * is to prefetch instruction and/or data with a line size of either 64 bytes
127 * or 256 bytes. The rationale is that the data-bus of the CPU interface is
128 * optimized for 256-bytes transactions, and enabling the readahead cache
129 * provides a significant performance boost we want it enabled (typically
130 * twice the performance for a memcpy benchmark application).
131 *
132 * The readahead cache is transparent for Modified Virtual Addresses
133 * cache maintenance operations: ICIMVAU, DCIMVAC, DCCMVAC, DCCMVAU and
134 * DCCIMVAC.
135 *
136 * It is however not transparent for the following cache maintenance
137 * operations: DCISW, DCCSW, DCCISW, ICIALLUIS and ICIALLU which is precisely
138 * what we are patching here with our BUILD_RAC_CACHE_OP here.
139 */
140BUILD_RAC_CACHE_OP(kern_cache_all, nobarrier);
141
142static void b15_rac_enable(void)
143{
144 unsigned int cpu;
145 u32 enable = 0;
146
147 for_each_possible_cpu(cpu)
148 enable |= (RAC_DATA_INST_EN_MASK << (cpu * RAC_CPU_SHIFT));
149
150 b15_rac_disable_and_flush();
151 __b15_rac_enable(enable);
152}
153
Florian Fainelli55de8872017-12-01 01:10:11 +0100154#ifdef CONFIG_HOTPLUG_CPU
155/* The CPU hotplug case is the most interesting one, we basically need to make
156 * sure that the RAC is disabled for the entire system prior to having a CPU
157 * die, in particular prior to this dying CPU having exited the coherency
158 * domain.
159 *
160 * Once this CPU is marked dead, we can safely re-enable the RAC for the
161 * remaining CPUs in the system which are still online.
162 *
163 * Offlining a CPU is the problematic case, onlining a CPU is not much of an
164 * issue since the CPU and its cache-level hierarchy will start filling with
165 * the RAC disabled, so L1 and L2 only.
166 *
167 * In this function, we should NOT have to verify any unsafe setting/condition
168 * b15_rac_base:
169 *
170 * It is protected by the RAC_ENABLED flag which is cleared by default, and
171 * being cleared when initial procedure is done. b15_rac_base had been set at
172 * that time.
173 *
174 * RAC_ENABLED:
175 * There is a small timing windows, in b15_rac_init(), between
176 * cpuhp_setup_state_*()
177 * ...
178 * set RAC_ENABLED
179 * However, there is no hotplug activity based on the Linux booting procedure.
180 *
181 * Since we have to disable RAC for all cores, we keep RAC on as long as as
182 * possible (disable it as late as possible) to gain the cache benefit.
183 *
184 * Thus, dying/dead states are chosen here
185 *
186 * We are choosing not do disable the RAC on a per-CPU basis, here, if we did
187 * we would want to consider disabling it as early as possible to benefit the
188 * other active CPUs.
189 */
190
191/* Running on the dying CPU */
192static int b15_rac_dying_cpu(unsigned int cpu)
193{
194 spin_lock(&rac_lock);
195
196 /* Indicate that we are starting a hotplug procedure */
197 __clear_bit(RAC_ENABLED, &b15_rac_flags);
198
199 /* Disable the readahead cache and save its value to a global */
200 rac_config0_reg = b15_rac_disable_and_flush();
201
202 spin_unlock(&rac_lock);
203
204 return 0;
205}
206
207/* Running on a non-dying CPU */
208static int b15_rac_dead_cpu(unsigned int cpu)
209{
210 spin_lock(&rac_lock);
211
212 /* And enable it */
213 __b15_rac_enable(rac_config0_reg);
214 __set_bit(RAC_ENABLED, &b15_rac_flags);
215
216 spin_unlock(&rac_lock);
217
218 return 0;
219}
220#endif /* CONFIG_HOTPLUG_CPU */
221
Florian Fainelli534f5f32017-12-01 01:10:12 +0100222#ifdef CONFIG_PM_SLEEP
223static int b15_rac_suspend(void)
224{
225 /* Suspend the read-ahead cache oeprations, forcing our cache
226 * implementation to fallback to the regular ARMv7 calls.
227 *
228 * We are guaranteed to be running on the boot CPU at this point and
229 * with every other CPU quiesced, so setting RAC_SUSPENDED is not racy
230 * here.
231 */
232 rac_config0_reg = b15_rac_disable_and_flush();
233 set_bit(RAC_SUSPENDED, &b15_rac_flags);
234
235 return 0;
236}
237
238static void b15_rac_resume(void)
239{
240 /* Coming out of a S3 suspend/resume cycle, the read-ahead cache
241 * register RAC_CONFIG0_REG will be restored to its default value, make
242 * sure we re-enable it and set the enable flag, we are also guaranteed
243 * to run on the boot CPU, so not racy again.
244 */
245 __b15_rac_enable(rac_config0_reg);
246 clear_bit(RAC_SUSPENDED, &b15_rac_flags);
247}
248
249static struct syscore_ops b15_rac_syscore_ops = {
250 .suspend = b15_rac_suspend,
251 .resume = b15_rac_resume,
252};
253#endif
254
Florian Fainellif6f9be12017-12-01 01:10:09 +0100255static int __init b15_rac_init(void)
256{
257 struct device_node *dn;
258 int ret = 0, cpu;
259 u32 reg, en_mask = 0;
260
261 dn = of_find_compatible_node(NULL, NULL, "brcm,brcmstb-cpu-biu-ctrl");
262 if (!dn)
263 return -ENODEV;
264
265 if (WARN(num_possible_cpus() > 4, "RAC only supports 4 CPUs\n"))
266 goto out;
267
268 b15_rac_base = of_iomap(dn, 0);
269 if (!b15_rac_base) {
270 pr_err("failed to remap BIU control base\n");
271 ret = -ENOMEM;
272 goto out;
273 }
274
Florian Fainelli55de8872017-12-01 01:10:11 +0100275#ifdef CONFIG_HOTPLUG_CPU
276 ret = cpuhp_setup_state_nocalls(CPUHP_AP_ARM_CACHE_B15_RAC_DEAD,
277 "arm/cache-b15-rac:dead",
278 NULL, b15_rac_dead_cpu);
279 if (ret)
280 goto out_unmap;
281
282 ret = cpuhp_setup_state_nocalls(CPUHP_AP_ARM_CACHE_B15_RAC_DYING,
283 "arm/cache-b15-rac:dying",
284 NULL, b15_rac_dying_cpu);
285 if (ret)
286 goto out_cpu_dead;
287#endif
288
Florian Fainelli534f5f32017-12-01 01:10:12 +0100289#ifdef CONFIG_PM_SLEEP
290 register_syscore_ops(&b15_rac_syscore_ops);
291#endif
292
Florian Fainellif6f9be12017-12-01 01:10:09 +0100293 spin_lock(&rac_lock);
294 reg = __raw_readl(b15_rac_base + RAC_CONFIG0_REG);
295 for_each_possible_cpu(cpu)
296 en_mask |= ((1 << RACPREFDATA_SHIFT) << (cpu * RAC_CPU_SHIFT));
297 WARN(reg & en_mask, "Read-ahead cache not previously disabled\n");
298
299 b15_rac_enable();
300 set_bit(RAC_ENABLED, &b15_rac_flags);
301 spin_unlock(&rac_lock);
302
303 pr_info("Broadcom Brahma-B15 readahead cache at: 0x%p\n",
304 b15_rac_base + RAC_CONFIG0_REG);
305
Florian Fainelli55de8872017-12-01 01:10:11 +0100306 goto out;
307
308out_cpu_dead:
309 cpuhp_remove_state_nocalls(CPUHP_AP_ARM_CACHE_B15_RAC_DYING);
310out_unmap:
311 iounmap(b15_rac_base);
Florian Fainellif6f9be12017-12-01 01:10:09 +0100312out:
313 of_node_put(dn);
314 return ret;
315}
316arch_initcall(b15_rac_init);