blob: 2468d88a80ab99295440d5c74c68b6252db7703e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass7bf5b9e2015-01-01 16:18:07 -07002/*
3 * (C) Copyright 2014 Google, Inc
4 *
Simon Glass7bf5b9e2015-01-01 16:18:07 -07005 * Memory Type Range Regsters - these are used to tell the CPU whether
6 * memory is cacheable and if so the cache write mode to use.
7 *
8 * These can speed up booting. See the mtrr command.
9 *
10 * Reference: Intel Architecture Software Developer's Manual, Volume 3:
11 * System Programming
12 */
13
Simon Glass8fafd012018-10-01 12:22:37 -060014/*
15 * Note that any console output (e.g. debug()) in this file will likely fail
16 * since the MTRR registers are sometimes in flux.
17 */
18
Simon Glass7bf5b9e2015-01-01 16:18:07 -070019#include <common.h>
Simon Glass1d91ba72019-11-14 12:57:37 -070020#include <cpu_func.h>
Simon Glass0f2af882020-05-10 11:40:05 -060021#include <log.h>
Simon Glass274e0b02020-05-10 11:39:56 -060022#include <asm/cache.h>
Simon Glass7bf5b9e2015-01-01 16:18:07 -070023#include <asm/io.h>
Simon Glass7403c262020-07-17 08:48:22 -060024#include <asm/mp.h>
Simon Glass7bf5b9e2015-01-01 16:18:07 -070025#include <asm/msr.h>
26#include <asm/mtrr.h>
27
Bin Meng068fb352015-01-22 11:29:39 +080028DECLARE_GLOBAL_DATA_PTR;
29
Simon Glass7bf5b9e2015-01-01 16:18:07 -070030/* Prepare to adjust MTRRs */
Simon Glass8fafd012018-10-01 12:22:37 -060031void mtrr_open(struct mtrr_state *state, bool do_caches)
Simon Glass7bf5b9e2015-01-01 16:18:07 -070032{
Bin Meng80d29762015-01-22 11:29:41 +080033 if (!gd->arch.has_mtrr)
34 return;
35
Simon Glass8fafd012018-10-01 12:22:37 -060036 if (do_caches) {
37 state->enable_cache = dcache_status();
Simon Glass7bf5b9e2015-01-01 16:18:07 -070038
Simon Glass8fafd012018-10-01 12:22:37 -060039 if (state->enable_cache)
40 disable_caches();
41 }
Simon Glass7bf5b9e2015-01-01 16:18:07 -070042 state->deftype = native_read_msr(MTRR_DEF_TYPE_MSR);
43 wrmsrl(MTRR_DEF_TYPE_MSR, state->deftype & ~MTRR_DEF_TYPE_EN);
44}
45
46/* Clean up after adjusting MTRRs, and enable them */
Simon Glass8fafd012018-10-01 12:22:37 -060047void mtrr_close(struct mtrr_state *state, bool do_caches)
Simon Glass7bf5b9e2015-01-01 16:18:07 -070048{
Bin Meng80d29762015-01-22 11:29:41 +080049 if (!gd->arch.has_mtrr)
50 return;
51
Simon Glass7bf5b9e2015-01-01 16:18:07 -070052 wrmsrl(MTRR_DEF_TYPE_MSR, state->deftype | MTRR_DEF_TYPE_EN);
Simon Glass8fafd012018-10-01 12:22:37 -060053 if (do_caches && state->enable_cache)
Simon Glass7bf5b9e2015-01-01 16:18:07 -070054 enable_caches();
55}
56
Simon Glass35520592019-09-25 08:56:45 -060057static void set_var_mtrr(uint reg, uint type, uint64_t start, uint64_t size)
58{
59 u64 mask;
60
61 wrmsrl(MTRR_PHYS_BASE_MSR(reg), start | type);
62 mask = ~(size - 1);
63 mask &= (1ULL << CONFIG_CPU_ADDR_BITS) - 1;
64 wrmsrl(MTRR_PHYS_MASK_MSR(reg), mask | MTRR_PHYS_MASK_VALID);
65}
66
Simon Glass7403c262020-07-17 08:48:22 -060067void mtrr_read_all(struct mtrr_info *info)
68{
69 int i;
70
71 for (i = 0; i < MTRR_COUNT; i++) {
72 info->mtrr[i].base = native_read_msr(MTRR_PHYS_BASE_MSR(i));
73 info->mtrr[i].mask = native_read_msr(MTRR_PHYS_MASK_MSR(i));
74 }
75}
76
Simon Glass00dc52f2020-07-17 08:48:25 -060077void mtrr_write_all(struct mtrr_info *info)
78{
79 struct mtrr_state state;
80 int i;
81
82 for (i = 0; i < MTRR_COUNT; i++) {
83 mtrr_open(&state, true);
84 wrmsrl(MTRR_PHYS_BASE_MSR(i), info->mtrr[i].base);
85 wrmsrl(MTRR_PHYS_MASK_MSR(i), info->mtrr[i].mask);
86 mtrr_close(&state, true);
87 }
88}
89
90static void write_mtrrs(void *arg)
91{
92 struct mtrr_info *info = arg;
93
94 mtrr_write_all(info);
95}
96
97static void read_mtrrs(void *arg)
98{
99 struct mtrr_info *info = arg;
100
101 mtrr_read_all(info);
102}
103
104/**
105 * mtrr_copy_to_aps() - Copy the MTRRs from the boot CPU to other CPUs
106 *
107 * @return 0 on success, -ve on failure
108 */
109static int mtrr_copy_to_aps(void)
110{
111 struct mtrr_info info;
112 int ret;
113
114 ret = mp_run_on_cpus(MP_SELECT_BSP, read_mtrrs, &info);
115 if (ret == -ENXIO)
116 return 0;
117 else if (ret)
118 return log_msg_ret("bsp", ret);
119
120 ret = mp_run_on_cpus(MP_SELECT_APS, write_mtrrs, &info);
121 if (ret)
122 return log_msg_ret("bsp", ret);
123
124 return 0;
125}
126
Simon Glass7bf5b9e2015-01-01 16:18:07 -0700127int mtrr_commit(bool do_caches)
128{
129 struct mtrr_request *req = gd->arch.mtrr_req;
130 struct mtrr_state state;
Simon Glass00dc52f2020-07-17 08:48:25 -0600131 int ret;
Simon Glass7bf5b9e2015-01-01 16:18:07 -0700132 int i;
133
Simon Glass8fafd012018-10-01 12:22:37 -0600134 debug("%s: enabled=%d, count=%d\n", __func__, gd->arch.has_mtrr,
135 gd->arch.mtrr_req_count);
Bin Meng80d29762015-01-22 11:29:41 +0800136 if (!gd->arch.has_mtrr)
137 return -ENOSYS;
138
Simon Glass8fafd012018-10-01 12:22:37 -0600139 debug("open\n");
140 mtrr_open(&state, do_caches);
141 debug("open done\n");
Simon Glass35520592019-09-25 08:56:45 -0600142 for (i = 0; i < gd->arch.mtrr_req_count; i++, req++)
143 set_var_mtrr(i, req->type, req->start, req->size);
Simon Glass7bf5b9e2015-01-01 16:18:07 -0700144
145 /* Clear the ones that are unused */
Simon Glass8fafd012018-10-01 12:22:37 -0600146 debug("clear\n");
Simon Glass7bf5b9e2015-01-01 16:18:07 -0700147 for (; i < MTRR_COUNT; i++)
148 wrmsrl(MTRR_PHYS_MASK_MSR(i), 0);
Simon Glass8fafd012018-10-01 12:22:37 -0600149 debug("close\n");
150 mtrr_close(&state, do_caches);
151 debug("mtrr done\n");
Simon Glass7bf5b9e2015-01-01 16:18:07 -0700152
Simon Glass00dc52f2020-07-17 08:48:25 -0600153 if (gd->flags & GD_FLG_RELOC) {
154 ret = mtrr_copy_to_aps();
155 if (ret)
156 return log_msg_ret("copy", ret);
157 }
158
Simon Glass7bf5b9e2015-01-01 16:18:07 -0700159 return 0;
160}
161
162int mtrr_add_request(int type, uint64_t start, uint64_t size)
163{
164 struct mtrr_request *req;
165 uint64_t mask;
166
Simon Glass8fafd012018-10-01 12:22:37 -0600167 debug("%s: count=%d\n", __func__, gd->arch.mtrr_req_count);
Bin Meng80d29762015-01-22 11:29:41 +0800168 if (!gd->arch.has_mtrr)
169 return -ENOSYS;
170
Simon Glass7bf5b9e2015-01-01 16:18:07 -0700171 if (gd->arch.mtrr_req_count == MAX_MTRR_REQUESTS)
172 return -ENOSPC;
173 req = &gd->arch.mtrr_req[gd->arch.mtrr_req_count++];
174 req->type = type;
175 req->start = start;
176 req->size = size;
177 debug("%d: type=%d, %08llx %08llx\n", gd->arch.mtrr_req_count - 1,
178 req->type, req->start, req->size);
179 mask = ~(req->size - 1);
180 mask &= (1ULL << CONFIG_CPU_ADDR_BITS) - 1;
181 mask |= MTRR_PHYS_MASK_VALID;
182 debug(" %016llx %016llx\n", req->start | req->type, mask);
183
184 return 0;
185}
Simon Glass753297d2019-09-25 08:56:46 -0600186
187static int get_var_mtrr_count(void)
188{
189 return msr_read(MSR_MTRR_CAP_MSR).lo & MSR_MTRR_CAP_VCNT;
190}
191
192static int get_free_var_mtrr(void)
193{
194 struct msr_t maskm;
195 int vcnt;
196 int i;
197
198 vcnt = get_var_mtrr_count();
199
200 /* Identify the first var mtrr which is not valid */
201 for (i = 0; i < vcnt; i++) {
202 maskm = msr_read(MTRR_PHYS_MASK_MSR(i));
203 if ((maskm.lo & MTRR_PHYS_MASK_VALID) == 0)
204 return i;
205 }
206
207 /* No free var mtrr */
208 return -ENOSPC;
209}
210
211int mtrr_set_next_var(uint type, uint64_t start, uint64_t size)
212{
213 int mtrr;
214
215 mtrr = get_free_var_mtrr();
216 if (mtrr < 0)
217 return mtrr;
218
219 set_var_mtrr(mtrr, type, start, size);
220 debug("MTRR %x: start=%x, size=%x\n", mtrr, (uint)start, (uint)size);
221
222 return 0;
223}
Simon Glassd89e15f2020-07-17 08:48:26 -0600224
225/** enum mtrr_opcode - supported operations for mtrr_do_oper() */
226enum mtrr_opcode {
227 MTRR_OP_SET,
228 MTRR_OP_SET_VALID,
229};
230
231/**
232 * struct mtrr_oper - An MTRR operation to perform on a CPU
233 *
234 * @opcode: Indicates operation to perform
235 * @reg: MTRR reg number to select (0-7, -1 = all)
236 * @valid: Valid value to write for MTRR_OP_SET_VALID
237 * @base: Base value to write for MTRR_OP_SET
238 * @mask: Mask value to write for MTRR_OP_SET
239 */
240struct mtrr_oper {
241 enum mtrr_opcode opcode;
242 int reg;
243 bool valid;
244 u64 base;
245 u64 mask;
246};
247
248static void mtrr_do_oper(void *arg)
249{
250 struct mtrr_oper *oper = arg;
251 u64 mask;
252
253 switch (oper->opcode) {
254 case MTRR_OP_SET_VALID:
255 mask = native_read_msr(MTRR_PHYS_MASK_MSR(oper->reg));
256 if (oper->valid)
257 mask |= MTRR_PHYS_MASK_VALID;
258 else
259 mask &= ~MTRR_PHYS_MASK_VALID;
260 wrmsrl(MTRR_PHYS_MASK_MSR(oper->reg), mask);
261 break;
262 case MTRR_OP_SET:
263 wrmsrl(MTRR_PHYS_BASE_MSR(oper->reg), oper->base);
264 wrmsrl(MTRR_PHYS_MASK_MSR(oper->reg), oper->mask);
265 break;
266 }
267}
268
269static int mtrr_start_op(int cpu_select, struct mtrr_oper *oper)
270{
271 struct mtrr_state state;
272 int ret;
273
274 mtrr_open(&state, true);
275 ret = mp_run_on_cpus(cpu_select, mtrr_do_oper, oper);
276 mtrr_close(&state, true);
277 if (ret)
278 return log_msg_ret("run", ret);
279
280 return 0;
281}
282
283int mtrr_set_valid(int cpu_select, int reg, bool valid)
284{
285 struct mtrr_oper oper;
286
287 oper.opcode = MTRR_OP_SET_VALID;
288 oper.reg = reg;
289 oper.valid = valid;
290
291 return mtrr_start_op(cpu_select, &oper);
292}
293
294int mtrr_set(int cpu_select, int reg, u64 base, u64 mask)
295{
296 struct mtrr_oper oper;
297
298 oper.opcode = MTRR_OP_SET;
299 oper.reg = reg;
300 oper.base = base;
301 oper.mask = mask;
302
303 return mtrr_start_op(cpu_select, &oper);
304}