blob: 679d44f003fd5d0f56b310f52ce2f2c6abe9ea05 [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>
16
17#include <asm/cacheflush.h>
18#include <asm/hardware/cache-b15-rac.h>
19
20extern void v7_flush_kern_cache_all(void);
21
22/* RAC register offsets, relative to the HIF_CPU_BIUCTRL register base */
23#define RAC_CONFIG0_REG (0x78)
24#define RACENPREF_MASK (0x3)
25#define RACPREFINST_SHIFT (0)
26#define RACENINST_SHIFT (2)
27#define RACPREFDATA_SHIFT (4)
28#define RACENDATA_SHIFT (6)
29#define RAC_CPU_SHIFT (8)
30#define RACCFG_MASK (0xff)
31#define RAC_CONFIG1_REG (0x7c)
32#define RAC_FLUSH_REG (0x80)
33#define FLUSH_RAC (1 << 0)
34
35/* Bitmask to enable instruction and data prefetching with a 256-bytes stride */
36#define RAC_DATA_INST_EN_MASK (1 << RACPREFINST_SHIFT | \
37 RACENPREF_MASK << RACENINST_SHIFT | \
38 1 << RACPREFDATA_SHIFT | \
39 RACENPREF_MASK << RACENDATA_SHIFT)
40
41#define RAC_ENABLED 0
42
43static void __iomem *b15_rac_base;
44static DEFINE_SPINLOCK(rac_lock);
45
46/* Initialization flag to avoid checking for b15_rac_base, and to prevent
47 * multi-platform kernels from crashing here as well.
48 */
49static unsigned long b15_rac_flags;
50
51static inline u32 __b15_rac_disable(void)
52{
53 u32 val = __raw_readl(b15_rac_base + RAC_CONFIG0_REG);
54 __raw_writel(0, b15_rac_base + RAC_CONFIG0_REG);
55 dmb();
56 return val;
57}
58
59static inline void __b15_rac_flush(void)
60{
61 u32 reg;
62
63 __raw_writel(FLUSH_RAC, b15_rac_base + RAC_FLUSH_REG);
64 do {
65 /* This dmb() is required to force the Bus Interface Unit
66 * to clean oustanding writes, and forces an idle cycle
67 * to be inserted.
68 */
69 dmb();
70 reg = __raw_readl(b15_rac_base + RAC_FLUSH_REG);
71 } while (reg & FLUSH_RAC);
72}
73
74static inline u32 b15_rac_disable_and_flush(void)
75{
76 u32 reg;
77
78 reg = __b15_rac_disable();
79 __b15_rac_flush();
80 return reg;
81}
82
83static inline void __b15_rac_enable(u32 val)
84{
85 __raw_writel(val, b15_rac_base + RAC_CONFIG0_REG);
86 /* dsb() is required here to be consistent with __flush_icache_all() */
87 dsb();
88}
89
90#define BUILD_RAC_CACHE_OP(name, bar) \
91void b15_flush_##name(void) \
92{ \
93 unsigned int do_flush; \
94 u32 val = 0; \
95 \
96 spin_lock(&rac_lock); \
97 do_flush = test_bit(RAC_ENABLED, &b15_rac_flags); \
98 if (do_flush) \
99 val = b15_rac_disable_and_flush(); \
100 v7_flush_##name(); \
101 if (!do_flush) \
102 bar; \
103 else \
104 __b15_rac_enable(val); \
105 spin_unlock(&rac_lock); \
106}
107
108#define nobarrier
109
110/* The readahead cache present in the Brahma-B15 CPU is a special piece of
111 * hardware after the integrated L2 cache of the B15 CPU complex whose purpose
112 * is to prefetch instruction and/or data with a line size of either 64 bytes
113 * or 256 bytes. The rationale is that the data-bus of the CPU interface is
114 * optimized for 256-bytes transactions, and enabling the readahead cache
115 * provides a significant performance boost we want it enabled (typically
116 * twice the performance for a memcpy benchmark application).
117 *
118 * The readahead cache is transparent for Modified Virtual Addresses
119 * cache maintenance operations: ICIMVAU, DCIMVAC, DCCMVAC, DCCMVAU and
120 * DCCIMVAC.
121 *
122 * It is however not transparent for the following cache maintenance
123 * operations: DCISW, DCCSW, DCCISW, ICIALLUIS and ICIALLU which is precisely
124 * what we are patching here with our BUILD_RAC_CACHE_OP here.
125 */
126BUILD_RAC_CACHE_OP(kern_cache_all, nobarrier);
127
128static void b15_rac_enable(void)
129{
130 unsigned int cpu;
131 u32 enable = 0;
132
133 for_each_possible_cpu(cpu)
134 enable |= (RAC_DATA_INST_EN_MASK << (cpu * RAC_CPU_SHIFT));
135
136 b15_rac_disable_and_flush();
137 __b15_rac_enable(enable);
138}
139
140static int __init b15_rac_init(void)
141{
142 struct device_node *dn;
143 int ret = 0, cpu;
144 u32 reg, en_mask = 0;
145
146 dn = of_find_compatible_node(NULL, NULL, "brcm,brcmstb-cpu-biu-ctrl");
147 if (!dn)
148 return -ENODEV;
149
150 if (WARN(num_possible_cpus() > 4, "RAC only supports 4 CPUs\n"))
151 goto out;
152
153 b15_rac_base = of_iomap(dn, 0);
154 if (!b15_rac_base) {
155 pr_err("failed to remap BIU control base\n");
156 ret = -ENOMEM;
157 goto out;
158 }
159
160 spin_lock(&rac_lock);
161 reg = __raw_readl(b15_rac_base + RAC_CONFIG0_REG);
162 for_each_possible_cpu(cpu)
163 en_mask |= ((1 << RACPREFDATA_SHIFT) << (cpu * RAC_CPU_SHIFT));
164 WARN(reg & en_mask, "Read-ahead cache not previously disabled\n");
165
166 b15_rac_enable();
167 set_bit(RAC_ENABLED, &b15_rac_flags);
168 spin_unlock(&rac_lock);
169
170 pr_info("Broadcom Brahma-B15 readahead cache at: 0x%p\n",
171 b15_rac_base + RAC_CONFIG0_REG);
172
173out:
174 of_node_put(dn);
175 return ret;
176}
177arch_initcall(b15_rac_init);