blob: 13fe85f5a66a9ae615280f2c29ccaf78a773cb14 [file] [log] [blame]
Eric Biedermanfcd5ace2004-10-14 19:29:29 +00001/*
Stefan Reinauercdc5cc62007-04-24 18:40:02 +00002 * mtrr.c: setting MTRR to decent values for cache initialization on P6
Eric Biedermanfcd5ace2004-10-14 19:29:29 +00003 *
4 * Derived from intel_set_mtrr in intel_subr.c and mtrr.c in linux kernel
5 *
6 * Copyright 2000 Silicon Integrated System Corporation
Aaron Durbinbb4e79a2013-03-26 14:09:47 -05007 * Copyright 2013 Google Inc.
Eric Biedermanfcd5ace2004-10-14 19:29:29 +00008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000019 *
Lee Leahyc5917072017-03-15 16:38:51 -070020 * Reference: Intel Architecture Software Developer's Manual, Volume 3: System
21 * Programming
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000022 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000023
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +000024#include <stddef.h>
Aaron Durbinbb4e79a2013-03-26 14:09:47 -050025#include <stdlib.h>
26#include <string.h>
Aaron Durbinbebf6692013-04-24 20:59:43 -050027#include <bootstate.h>
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000028#include <console/console.h>
29#include <device/device.h>
Aaron Durbinca4f4b82014-02-08 15:41:52 -060030#include <device/pci_ids.h>
Aaron Durbinebf142a2013-03-29 16:23:23 -050031#include <cpu/cpu.h>
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000032#include <cpu/x86/msr.h>
33#include <cpu/x86/mtrr.h>
34#include <cpu/x86/cache.h>
Stefan Reinauer00093a82011-11-02 16:12:34 -070035#include <cpu/x86/lapic.h>
Sven Schnelleadfbcb792012-01-10 12:01:43 +010036#include <arch/cpu.h>
Stefan Reinauer00093a82011-11-02 16:12:34 -070037#include <arch/acpi.h>
Aaron Durbinbb4e79a2013-03-26 14:09:47 -050038#include <memrange.h>
Aaron Durbin57686f82013-03-20 15:50:59 -050039#include <cpu/amd/mtrr.h>
Marshall Dawsonc0dbeda2017-10-19 09:45:16 -060040#if IS_ENABLED(CONFIG_X86_AMD_FIXED_MTRRS)
Aaron Durbin57686f82013-03-20 15:50:59 -050041#define MTRR_FIXED_WRBACK_BITS (MTRR_READ_MEM | MTRR_WRITE_MEM)
42#else
43#define MTRR_FIXED_WRBACK_BITS 0
44#endif
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000045
Stefan Reinauerc00dfbc2012-04-03 16:24:37 -070046/* 2 MTRRS are reserved for the operating system */
47#define BIOS_MTRRS 6
48#define OS_MTRRS 2
49#define MTRRS (BIOS_MTRRS + OS_MTRRS)
Gabe Black7756fe72014-02-25 01:40:34 -080050/*
Isaac Christensen81f90c52014-09-24 14:59:32 -060051 * Static storage size for variable MTRRs. It's sized sufficiently large to
52 * handle different types of CPUs. Empirically, 16 variable MTRRs has not
Gabe Black7756fe72014-02-25 01:40:34 -080053 * yet been observed.
54 */
55#define NUM_MTRR_STATIC_STORAGE 16
Stefan Reinauerc00dfbc2012-04-03 16:24:37 -070056
57static int total_mtrrs = MTRRS;
58static int bios_mtrrs = BIOS_MTRRS;
59
60static void detect_var_mtrrs(void)
61{
62 msr_t msr;
63
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070064 msr = rdmsr(MTRR_CAP_MSR);
Stefan Reinauerc00dfbc2012-04-03 16:24:37 -070065
66 total_mtrrs = msr.lo & 0xff;
Gabe Black7756fe72014-02-25 01:40:34 -080067
68 if (total_mtrrs > NUM_MTRR_STATIC_STORAGE) {
69 printk(BIOS_WARNING,
70 "MTRRs detected (%d) > NUM_MTRR_STATIC_STORAGE (%d)\n",
71 total_mtrrs, NUM_MTRR_STATIC_STORAGE);
72 total_mtrrs = NUM_MTRR_STATIC_STORAGE;
73 }
Stefan Reinauerc00dfbc2012-04-03 16:24:37 -070074 bios_mtrrs = total_mtrrs - OS_MTRRS;
75}
76
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000077void enable_fixed_mtrr(void)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000078{
79 msr_t msr;
80
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070081 msr = rdmsr(MTRR_DEF_TYPE_MSR);
82 msr.lo |= MTRR_DEF_TYPE_EN | MTRR_DEF_TYPE_FIX_EN;
83 wrmsr(MTRR_DEF_TYPE_MSR, msr);
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000084}
85
Marshall Dawsonc0dbeda2017-10-19 09:45:16 -060086void fixed_mtrrs_expose_amd_rwdram(void)
87{
88 msr_t syscfg;
89
90 if (!IS_ENABLED(CONFIG_X86_AMD_FIXED_MTRRS))
91 return;
92
93 syscfg = rdmsr(SYSCFG_MSR);
94 syscfg.lo |= SYSCFG_MSR_MtrrFixDramModEn;
95 wrmsr(SYSCFG_MSR, syscfg);
96}
97
98void fixed_mtrrs_hide_amd_rwdram(void)
99{
100 msr_t syscfg;
101
102 if (!IS_ENABLED(CONFIG_X86_AMD_FIXED_MTRRS))
103 return;
104
105 syscfg = rdmsr(SYSCFG_MSR);
106 syscfg.lo &= ~SYSCFG_MSR_MtrrFixDramModEn;
107 wrmsr(SYSCFG_MSR, syscfg);
108}
109
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500110static void enable_var_mtrr(unsigned char deftype)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000111{
112 msr_t msr;
113
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700114 msr = rdmsr(MTRR_DEF_TYPE_MSR);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500115 msr.lo &= ~0xff;
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700116 msr.lo |= MTRR_DEF_TYPE_EN | deftype;
117 wrmsr(MTRR_DEF_TYPE_MSR, msr);
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000118}
119
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500120#define MTRR_VERBOSE_LEVEL BIOS_NEVER
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000121
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500122/* MTRRs are at a 4KiB granularity. Therefore all address calculations can
123 * be done with 32-bit numbers. This allows for the MTRR code to handle
124 * up to 2^44 bytes (16 TiB) of address space. */
125#define RANGE_SHIFT 12
126#define ADDR_SHIFT_TO_RANGE_SHIFT(x) \
127 (((x) > RANGE_SHIFT) ? ((x) - RANGE_SHIFT) : RANGE_SHIFT)
128#define PHYS_TO_RANGE_ADDR(x) ((x) >> RANGE_SHIFT)
129#define RANGE_TO_PHYS_ADDR(x) (((resource_t)(x)) << RANGE_SHIFT)
130#define NUM_FIXED_MTRRS (NUM_FIXED_RANGES / RANGES_PER_FIXED_MTRR)
131
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500132/* Helpful constants. */
133#define RANGE_1MB PHYS_TO_RANGE_ADDR(1 << 20)
134#define RANGE_4GB (1 << (ADDR_SHIFT_TO_RANGE_SHIFT(32)))
135
Aaron Durbine3834422013-03-28 20:48:51 -0500136#define MTRR_ALGO_SHIFT (8)
137#define MTRR_TAG_MASK ((1 << MTRR_ALGO_SHIFT) - 1)
Aaron Durbine3834422013-03-28 20:48:51 -0500138
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500139static inline uint32_t range_entry_base_mtrr_addr(struct range_entry *r)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000140{
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500141 return PHYS_TO_RANGE_ADDR(range_entry_base(r));
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000142}
143
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500144static inline uint32_t range_entry_end_mtrr_addr(struct range_entry *r)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000145{
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500146 return PHYS_TO_RANGE_ADDR(range_entry_end(r));
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000147}
148
Aaron Durbine3834422013-03-28 20:48:51 -0500149static inline int range_entry_mtrr_type(struct range_entry *r)
150{
151 return range_entry_tag(r) & MTRR_TAG_MASK;
152}
153
Aaron Durbinca4f4b82014-02-08 15:41:52 -0600154static int filter_vga_wrcomb(struct device *dev, struct resource *res)
155{
156 /* Only handle PCI devices. */
157 if (dev->path.type != DEVICE_PATH_PCI)
158 return 0;
159
160 /* Only handle VGA class devices. */
161 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
162 return 0;
163
164 /* Add resource as write-combining in the address space. */
165 return 1;
166}
167
Aaron Durbin2bebd7b2016-11-10 15:15:35 -0600168static void print_physical_address_space(const struct memranges *addr_space,
169 const char *identifier)
170{
171 const struct range_entry *r;
172
173 if (identifier)
174 printk(BIOS_DEBUG, "MTRR: %s Physical address space:\n",
175 identifier);
176 else
177 printk(BIOS_DEBUG, "MTRR: Physical address space:\n");
178
179 memranges_each_entry(r, addr_space)
180 printk(BIOS_DEBUG,
181 "0x%016llx - 0x%016llx size 0x%08llx type %ld\n",
182 range_entry_base(r), range_entry_end(r),
183 range_entry_size(r), range_entry_tag(r));
184}
185
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500186static struct memranges *get_physical_address_space(void)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000187{
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500188 static struct memranges *addr_space;
189 static struct memranges addr_space_storage;
Duncan Laurie7389fa92011-12-22 10:59:40 -0800190
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500191 /* In order to handle some chipsets not being able to pre-determine
Martin Roth4c3ab732013-07-08 16:23:54 -0600192 * uncacheable ranges, such as graphics memory, at resource insertion
193 * time remove uncacheable regions from the cacheable ones. */
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500194 if (addr_space == NULL) {
Aaron Durbin9b027fe2013-03-26 14:10:34 -0500195 unsigned long mask;
196 unsigned long match;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500197
198 addr_space = &addr_space_storage;
199
Aaron Durbin9b027fe2013-03-26 14:10:34 -0500200 mask = IORESOURCE_CACHEABLE;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500201 /* Collect cacheable and uncacheable address ranges. The
202 * uncacheable regions take precedence over the cacheable
203 * regions. */
204 memranges_init(addr_space, mask, mask, MTRR_TYPE_WRBACK);
205 memranges_add_resources(addr_space, mask, 0,
Lee Leahya07d0dd2017-03-15 14:25:22 -0700206 MTRR_TYPE_UNCACHEABLE);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500207
Aaron Durbin9b027fe2013-03-26 14:10:34 -0500208 /* Handle any write combining resources. Only prefetchable
Vladimir Serbinenko30fe6122014-02-05 23:25:28 +0100209 * resources are appropriate for this MTRR type. */
210 match = IORESOURCE_PREFETCH;
Aaron Durbin9b027fe2013-03-26 14:10:34 -0500211 mask |= match;
Lee Leahyc5917072017-03-15 16:38:51 -0700212 memranges_add_resources_filter(addr_space, mask, match,
213 MTRR_TYPE_WRCOMB, filter_vga_wrcomb);
Aaron Durbin9b027fe2013-03-26 14:10:34 -0500214
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500215 /* The address space below 4GiB is special. It needs to be
Martin Roth2f914032016-01-15 10:20:11 -0700216 * covered entirely by range entries so that MTRR calculations
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500217 * can be properly done for the full 32-bit address space.
218 * Therefore, ensure holes are filled up to 4GiB as
219 * uncacheable */
220 memranges_fill_holes_up_to(addr_space,
Lee Leahya07d0dd2017-03-15 14:25:22 -0700221 RANGE_TO_PHYS_ADDR(RANGE_4GB),
222 MTRR_TYPE_UNCACHEABLE);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500223
Aaron Durbin2bebd7b2016-11-10 15:15:35 -0600224 print_physical_address_space(addr_space, NULL);
Carl-Daniel Hailfinger7dde1da2009-02-11 16:57:32 +0000225 }
Stefan Reinauer7f86ed12009-02-12 16:02:16 +0000226
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500227 return addr_space;
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000228}
229
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500230/* Fixed MTRR descriptor. This structure defines the step size and begin
Martin Roth4c3ab732013-07-08 16:23:54 -0600231 * and end (exclusive) address covered by a set of fixed MTRR MSRs.
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500232 * It also describes the offset in byte intervals to store the calculated MTRR
233 * type in an array. */
234struct fixed_mtrr_desc {
235 uint32_t begin;
236 uint32_t end;
237 uint32_t step;
238 int range_index;
239 int msr_index_base;
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000240};
241
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500242/* Shared MTRR calculations. Can be reused by APs. */
243static uint8_t fixed_mtrr_types[NUM_FIXED_RANGES];
244
245/* Fixed MTRR descriptors. */
246static const struct fixed_mtrr_desc fixed_mtrr_desc[] = {
247 { PHYS_TO_RANGE_ADDR(0x000000), PHYS_TO_RANGE_ADDR(0x080000),
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700248 PHYS_TO_RANGE_ADDR(64 * 1024), 0, MTRR_FIX_64K_00000 },
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500249 { PHYS_TO_RANGE_ADDR(0x080000), PHYS_TO_RANGE_ADDR(0x0C0000),
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700250 PHYS_TO_RANGE_ADDR(16 * 1024), 8, MTRR_FIX_16K_80000 },
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500251 { PHYS_TO_RANGE_ADDR(0x0C0000), PHYS_TO_RANGE_ADDR(0x100000),
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700252 PHYS_TO_RANGE_ADDR(4 * 1024), 24, MTRR_FIX_4K_C0000 },
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500253};
254
255static void calc_fixed_mtrrs(void)
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000256{
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500257 static int fixed_mtrr_types_initialized;
258 struct memranges *phys_addr_space;
259 struct range_entry *r;
260 const struct fixed_mtrr_desc *desc;
261 const struct fixed_mtrr_desc *last_desc;
262 uint32_t begin;
263 uint32_t end;
264 int type_index;
265
266 if (fixed_mtrr_types_initialized)
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000267 return;
Kyösti Mälkki2d42b342012-07-12 00:18:22 +0300268
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500269 phys_addr_space = get_physical_address_space();
Kyösti Mälkki2d42b342012-07-12 00:18:22 +0300270
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500271 /* Set all fixed ranges to uncacheable first. */
272 memset(&fixed_mtrr_types[0], MTRR_TYPE_UNCACHEABLE, NUM_FIXED_RANGES);
Kyösti Mälkki2d42b342012-07-12 00:18:22 +0300273
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500274 desc = &fixed_mtrr_desc[0];
275 last_desc = &fixed_mtrr_desc[ARRAY_SIZE(fixed_mtrr_desc) - 1];
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300276
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500277 memranges_each_entry(r, phys_addr_space) {
278 begin = range_entry_base_mtrr_addr(r);
279 end = range_entry_end_mtrr_addr(r);
Kyösti Mälkki2d42b342012-07-12 00:18:22 +0300280
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500281 if (begin >= last_desc->end)
282 break;
283
284 if (end > last_desc->end)
285 end = last_desc->end;
286
287 /* Get to the correct fixed mtrr descriptor. */
288 while (begin >= desc->end)
289 desc++;
290
291 type_index = desc->range_index;
292 type_index += (begin - desc->begin) / desc->step;
293
294 while (begin != end) {
295 unsigned char type;
296
297 type = range_entry_tag(r);
298 printk(MTRR_VERBOSE_LEVEL,
299 "MTRR addr 0x%x-0x%x set to %d type @ %d\n",
300 begin, begin + desc->step, type, type_index);
301 if (type == MTRR_TYPE_WRBACK)
302 type |= MTRR_FIXED_WRBACK_BITS;
303 fixed_mtrr_types[type_index] = type;
304 type_index++;
305 begin += desc->step;
306 if (begin == desc->end)
307 desc++;
Yinghai Lu63601872005-01-27 22:48:12 +0000308 }
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000309 }
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500310 fixed_mtrr_types_initialized = 1;
311}
312
313static void commit_fixed_mtrrs(void)
314{
315 int i;
316 int j;
317 int msr_num;
318 int type_index;
319 /* 8 ranges per msr. */
320 msr_t fixed_msrs[NUM_FIXED_MTRRS];
321 unsigned long msr_index[NUM_FIXED_MTRRS];
322
Marshall Dawsonc0dbeda2017-10-19 09:45:16 -0600323 fixed_mtrrs_expose_amd_rwdram();
324
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500325 memset(&fixed_msrs, 0, sizeof(fixed_msrs));
326
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500327 msr_num = 0;
328 type_index = 0;
329 for (i = 0; i < ARRAY_SIZE(fixed_mtrr_desc); i++) {
330 const struct fixed_mtrr_desc *desc;
331 int num_ranges;
332
333 desc = &fixed_mtrr_desc[i];
334 num_ranges = (desc->end - desc->begin) / desc->step;
335 for (j = 0; j < num_ranges; j += RANGES_PER_FIXED_MTRR) {
336 msr_index[msr_num] = desc->msr_index_base +
337 (j / RANGES_PER_FIXED_MTRR);
338 fixed_msrs[msr_num].lo |=
339 fixed_mtrr_types[type_index++] << 0;
340 fixed_msrs[msr_num].lo |=
341 fixed_mtrr_types[type_index++] << 8;
342 fixed_msrs[msr_num].lo |=
343 fixed_mtrr_types[type_index++] << 16;
344 fixed_msrs[msr_num].lo |=
345 fixed_mtrr_types[type_index++] << 24;
346 fixed_msrs[msr_num].hi |=
347 fixed_mtrr_types[type_index++] << 0;
348 fixed_msrs[msr_num].hi |=
349 fixed_mtrr_types[type_index++] << 8;
350 fixed_msrs[msr_num].hi |=
351 fixed_mtrr_types[type_index++] << 16;
352 fixed_msrs[msr_num].hi |=
353 fixed_mtrr_types[type_index++] << 24;
354 msr_num++;
355 }
356 }
357
Gabe Black7756fe72014-02-25 01:40:34 -0800358 for (i = 0; i < ARRAY_SIZE(fixed_msrs); i++)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500359 printk(BIOS_DEBUG, "MTRR: Fixed MSR 0x%lx 0x%08x%08x\n",
360 msr_index[i], fixed_msrs[i].hi, fixed_msrs[i].lo);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500361
Gabe Black7756fe72014-02-25 01:40:34 -0800362 disable_cache();
363 for (i = 0; i < ARRAY_SIZE(fixed_msrs); i++)
364 wrmsr(msr_index[i], fixed_msrs[i]);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500365 enable_cache();
Marshall Dawsonc0dbeda2017-10-19 09:45:16 -0600366 fixed_mtrrs_hide_amd_rwdram();
367
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000368}
369
Aaron Durbin57686f82013-03-20 15:50:59 -0500370void x86_setup_fixed_mtrrs_no_enable(void)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000371{
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500372 calc_fixed_mtrrs();
373 commit_fixed_mtrrs();
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000374}
Stefan Reinauer7f86ed12009-02-12 16:02:16 +0000375
Aaron Durbin57686f82013-03-20 15:50:59 -0500376void x86_setup_fixed_mtrrs(void)
377{
378 x86_setup_fixed_mtrrs_no_enable();
379
380 printk(BIOS_SPEW, "call enable_fixed_mtrr()\n");
381 enable_fixed_mtrr();
382}
383
Gabe Black7756fe72014-02-25 01:40:34 -0800384struct var_mtrr_regs {
385 msr_t base;
386 msr_t mask;
387};
388
389struct var_mtrr_solution {
390 int mtrr_default_type;
391 int num_used;
392 struct var_mtrr_regs regs[NUM_MTRR_STATIC_STORAGE];
393};
394
395/* Global storage for variable MTRR solution. */
396static struct var_mtrr_solution mtrr_global_solution;
397
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500398struct var_mtrr_state {
399 struct memranges *addr_space;
400 int above4gb;
401 int address_bits;
Gabe Black7756fe72014-02-25 01:40:34 -0800402 int prepare_msrs;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500403 int mtrr_index;
404 int def_mtrr_type;
Gabe Black7756fe72014-02-25 01:40:34 -0800405 struct var_mtrr_regs *regs;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500406};
Aaron Durbin57686f82013-03-20 15:50:59 -0500407
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500408static void clear_var_mtrr(int index)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000409{
Aaron Durbin2bebd7b2016-11-10 15:15:35 -0600410 msr_t msr = { .lo = 0, .hi = 0 };
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500411
Aaron Durbin2bebd7b2016-11-10 15:15:35 -0600412 wrmsr(MTRR_PHYS_BASE(index), msr);
413 wrmsr(MTRR_PHYS_MASK(index), msr);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500414}
415
Gabe Black7756fe72014-02-25 01:40:34 -0800416static void prep_var_mtrr(struct var_mtrr_state *var_state,
Lee Leahya07d0dd2017-03-15 14:25:22 -0700417 uint32_t base, uint32_t size, int mtrr_type)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500418{
Gabe Black7756fe72014-02-25 01:40:34 -0800419 struct var_mtrr_regs *regs;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500420 resource_t rbase;
421 resource_t rsize;
422 resource_t mask;
423
424 /* Some variable MTRRs are attempted to be saved for the OS use.
425 * However, it's more important to try to map the full address space
426 * properly. */
427 if (var_state->mtrr_index >= bios_mtrrs)
428 printk(BIOS_WARNING, "Taking a reserved OS MTRR.\n");
429 if (var_state->mtrr_index >= total_mtrrs) {
Paul Menzel6a70dbc2015-10-15 12:41:53 +0200430 printk(BIOS_ERR, "ERROR: Not enough MTRRs available! MTRR index"
431 "is %d with %d MTTRs in total.\n",
432 var_state->mtrr_index, total_mtrrs);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500433 return;
434 }
435
436 rbase = base;
437 rsize = size;
438
439 rbase = RANGE_TO_PHYS_ADDR(rbase);
440 rsize = RANGE_TO_PHYS_ADDR(rsize);
441 rsize = -rsize;
442
443 mask = (1ULL << var_state->address_bits) - 1;
444 rsize = rsize & mask;
445
446 printk(BIOS_DEBUG, "MTRR: %d base 0x%016llx mask 0x%016llx type %d\n",
447 var_state->mtrr_index, rbase, rsize, mtrr_type);
448
Gabe Black7756fe72014-02-25 01:40:34 -0800449 regs = &var_state->regs[var_state->mtrr_index];
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500450
Gabe Black7756fe72014-02-25 01:40:34 -0800451 regs->base.lo = rbase;
452 regs->base.lo |= mtrr_type;
453 regs->base.hi = rbase >> 32;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500454
Gabe Black7756fe72014-02-25 01:40:34 -0800455 regs->mask.lo = rsize;
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700456 regs->mask.lo |= MTRR_PHYS_MASK_VALID;
Gabe Black7756fe72014-02-25 01:40:34 -0800457 regs->mask.hi = rsize >> 32;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500458}
459
460static void calc_var_mtrr_range(struct var_mtrr_state *var_state,
Lee Leahya07d0dd2017-03-15 14:25:22 -0700461 uint32_t base, uint32_t size, int mtrr_type)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500462{
463 while (size != 0) {
464 uint32_t addr_lsb;
465 uint32_t size_msb;
466 uint32_t mtrr_size;
467
468 addr_lsb = fls(base);
469 size_msb = fms(size);
470
471 /* All MTRR entries need to have their base aligned to the mask
472 * size. The maximum size is calculated by a function of the
473 * min base bit set and maximum size bit set. */
474 if (addr_lsb > size_msb)
475 mtrr_size = 1 << size_msb;
476 else
477 mtrr_size = 1 << addr_lsb;
478
Gabe Black7756fe72014-02-25 01:40:34 -0800479 if (var_state->prepare_msrs)
480 prep_var_mtrr(var_state, base, mtrr_size, mtrr_type);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500481
482 size -= mtrr_size;
483 base += mtrr_size;
484 var_state->mtrr_index++;
485 }
486}
487
Nico Huberbd5fb662017-10-07 13:40:19 +0200488static uint32_t optimize_var_mtrr_hole(const uint32_t base,
489 const uint32_t hole,
490 const uint64_t limit,
491 const int carve_hole)
492{
493 /*
494 * With default type UC, we can potentially optimize a WB
495 * range with unaligned upper end, by aligning it up and
496 * carving the added "hole" out again.
497 *
498 * To optimize the upper end of the hole, we will test
499 * how many MTRRs calc_var_mtrr_range() will spend for any
500 * alignment of the hole's upper end.
501 *
502 * We take four parameters, the lower end of the WB range
503 * `base`, upper end of the WB range as start of the `hole`,
504 * a `limit` how far we may align the upper end of the hole
505 * up and a flag `carve_hole` whether we should count MTRRs
506 * for carving the hole out. We return the optimal upper end
507 * for the hole (which may be the same as the end of the WB
508 * range in case we don't gain anything by aligning up).
509 */
510
511 const int dont_care = 0;
512 struct var_mtrr_state var_state = { 0, };
513
514 unsigned int align, best_count;
515 uint32_t best_end = hole;
516
517 /* calculate MTRR count for the WB range alone (w/o a hole) */
518 calc_var_mtrr_range(&var_state, base, hole - base, dont_care);
519 best_count = var_state.mtrr_index;
520 var_state.mtrr_index = 0;
521
522 for (align = fls(hole) + 1; align <= fms(hole); ++align) {
523 const uint64_t hole_end = ALIGN_UP((uint64_t)hole, 1 << align);
524 if (hole_end > limit)
525 break;
526
527 /* calculate MTRR count for this alignment */
528 calc_var_mtrr_range(
529 &var_state, base, hole_end - base, dont_care);
530 if (carve_hole)
531 calc_var_mtrr_range(
532 &var_state, hole, hole_end - hole, dont_care);
533
534 if (var_state.mtrr_index < best_count) {
535 best_count = var_state.mtrr_index;
536 best_end = hole_end;
537 }
538 var_state.mtrr_index = 0;
539 }
540
541 return best_end;
542}
543
Aaron Durbine3834422013-03-28 20:48:51 -0500544static void calc_var_mtrrs_with_hole(struct var_mtrr_state *var_state,
Lee Leahya07d0dd2017-03-15 14:25:22 -0700545 struct range_entry *r)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500546{
Aaron Durbine3834422013-03-28 20:48:51 -0500547 uint32_t a1, a2, b1, b2;
Nico Huberbd5fb662017-10-07 13:40:19 +0200548 int mtrr_type, carve_hole;
Aaron Durbine3834422013-03-28 20:48:51 -0500549
550 /*
Martin Roth4c3ab732013-07-08 16:23:54 -0600551 * Determine MTRRs based on the following algorithm for the given entry:
Aaron Durbine3834422013-03-28 20:48:51 -0500552 * +------------------+ b2 = ALIGN_UP(end)
553 * | 0 or more bytes | <-- hole is carved out between b1 and b2
Nico Huberbd5fb662017-10-07 13:40:19 +0200554 * +------------------+ a2 = b1 = original end
Aaron Durbine3834422013-03-28 20:48:51 -0500555 * | |
556 * +------------------+ a1 = begin
557 *
Nico Huberbd5fb662017-10-07 13:40:19 +0200558 * Thus, there are up to 2 sub-ranges to configure variable MTRRs for.
Aaron Durbine3834422013-03-28 20:48:51 -0500559 */
560 mtrr_type = range_entry_mtrr_type(r);
561
562 a1 = range_entry_base_mtrr_addr(r);
563 a2 = range_entry_end_mtrr_addr(r);
564
Aaron Durbina38677b2016-07-21 14:26:34 -0500565 /* The end address is within the first 1MiB. The fixed MTRRs take
Aaron Durbine3834422013-03-28 20:48:51 -0500566 * precedence over the variable ones. Therefore this range
567 * can be ignored. */
Aaron Durbina38677b2016-07-21 14:26:34 -0500568 if (a2 <= RANGE_1MB)
Aaron Durbine3834422013-03-28 20:48:51 -0500569 return;
570
571 /* Again, the fixed MTRRs take precedence so the beginning
Aaron Durbina38677b2016-07-21 14:26:34 -0500572 * of the range can be set to 0 if it starts at or below 1MiB. */
573 if (a1 <= RANGE_1MB)
Aaron Durbine3834422013-03-28 20:48:51 -0500574 a1 = 0;
575
576 /* If the range starts above 4GiB the processing is done. */
577 if (!var_state->above4gb && a1 >= RANGE_4GB)
578 return;
579
580 /* Clip the upper address to 4GiB if addresses above 4GiB
581 * are not being processed. */
582 if (!var_state->above4gb && a2 > RANGE_4GB)
583 a2 = RANGE_4GB;
584
585 b1 = a2;
Nico Huber64f0bcb2017-10-07 16:37:04 +0200586 b2 = a2;
587 carve_hole = 0;
Aaron Durbin53924242013-03-29 11:48:27 -0500588
Nico Huber64f0bcb2017-10-07 16:37:04 +0200589 /* We only consider WB type ranges for hole-carving. */
590 if (mtrr_type == MTRR_TYPE_WRBACK) {
591 struct range_entry *next;
592 uint64_t b2_limit;
593 /*
594 * Depending on the type of the next range, there are three
595 * different situations to handle:
596 *
597 * 1. WB range is last in address space:
598 * Aligning up, up to the next power of 2, may gain us
599 * something.
600 *
601 * 2. The next range is of type UC:
602 * We may align up, up to the _end_ of the next range. If
603 * there is a gap between the current and the next range,
604 * it would have been covered by the default type UC anyway.
605 *
606 * 3. The next range is not of type UC:
607 * We may align up, up to the _base_ of the next range. This
608 * may either be the end of the current range (if the next
609 * range follows immediately) or the end of the gap between
610 * the ranges.
611 */
612 next = memranges_next_entry(var_state->addr_space, r);
613 if (next == NULL) {
614 b2_limit = ALIGN_UP((uint64_t)b1, 1 << fms(b1));
615 /* If it's the last range above 4GiB, we won't carve
616 the hole out. If an OS wanted to move MMIO there,
617 it would have to override the MTRR setting using
618 PAT just like it would with WB as default type. */
619 carve_hole = a1 < RANGE_4GB;
620 } else if (range_entry_mtrr_type(next)
621 == MTRR_TYPE_UNCACHEABLE) {
622 b2_limit = range_entry_end_mtrr_addr(next);
623 carve_hole = 1;
624 } else {
625 b2_limit = range_entry_base_mtrr_addr(next);
626 carve_hole = 1;
627 }
628 b2 = optimize_var_mtrr_hole(a1, b1, b2_limit, carve_hole);
Aaron Durbin53924242013-03-29 11:48:27 -0500629 }
Aaron Durbine3834422013-03-28 20:48:51 -0500630
631 calc_var_mtrr_range(var_state, a1, b2 - a1, mtrr_type);
Nico Huberbd5fb662017-10-07 13:40:19 +0200632 if (carve_hole && b2 != b1) {
633 calc_var_mtrr_range(var_state, b1, b2 - b1,
634 MTRR_TYPE_UNCACHEABLE);
635 }
Aaron Durbine3834422013-03-28 20:48:51 -0500636}
637
Aaron Durbin5b9e3b62014-02-05 16:00:43 -0600638static void __calc_var_mtrrs(struct memranges *addr_space,
Lee Leahya07d0dd2017-03-15 14:25:22 -0700639 int above4gb, int address_bits,
640 int *num_def_wb_mtrrs, int *num_def_uc_mtrrs)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500641{
642 int wb_deftype_count;
643 int uc_deftype_count;
Aaron Durbine3834422013-03-28 20:48:51 -0500644 struct range_entry *r;
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000645 struct var_mtrr_state var_state;
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000646
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500647 /* The default MTRR cacheability type is determined by calculating
Paul Menzel4fe98132014-01-25 15:55:28 +0100648 * the number of MTRRs required for each MTRR type as if it was the
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500649 * default. */
650 var_state.addr_space = addr_space;
Scott Duplichanf3cce2f2010-11-13 19:07:59 +0000651 var_state.above4gb = above4gb;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500652 var_state.address_bits = address_bits;
Gabe Black7756fe72014-02-25 01:40:34 -0800653 var_state.prepare_msrs = 0;
Stefan Reinauer7f86ed12009-02-12 16:02:16 +0000654
Aaron Durbine3834422013-03-28 20:48:51 -0500655 wb_deftype_count = 0;
656 uc_deftype_count = 0;
Duncan Laurie7389fa92011-12-22 10:59:40 -0800657
Aaron Durbine3834422013-03-28 20:48:51 -0500658 /*
Nico Huber64f0bcb2017-10-07 16:37:04 +0200659 * For each range do 2 calculations:
660 * 1. UC as default type with possible holes at top of range.
661 * 2. WB as default.
Martin Roth4c3ab732013-07-08 16:23:54 -0600662 * The lowest count is then used as default after totaling all
Nico Huber64f0bcb2017-10-07 16:37:04 +0200663 * MTRRs. UC takes precedence in the MTRR architecture. There-
664 * fore, only holes can be used when the type of the region is
665 * MTRR_TYPE_WRBACK with MTRR_TYPE_UNCACHEABLE as the default
666 * type.
Aaron Durbine3834422013-03-28 20:48:51 -0500667 */
668 memranges_each_entry(r, var_state.addr_space) {
669 int mtrr_type;
670
671 mtrr_type = range_entry_mtrr_type(r);
672
673 if (mtrr_type != MTRR_TYPE_UNCACHEABLE) {
Aaron Durbine3834422013-03-28 20:48:51 -0500674 var_state.mtrr_index = 0;
Nico Huber64f0bcb2017-10-07 16:37:04 +0200675 var_state.def_mtrr_type = MTRR_TYPE_UNCACHEABLE;
676 calc_var_mtrrs_with_hole(&var_state, r);
677 uc_deftype_count += var_state.mtrr_index;
Aaron Durbine3834422013-03-28 20:48:51 -0500678 }
679
680 if (mtrr_type != MTRR_TYPE_WRBACK) {
681 var_state.mtrr_index = 0;
682 var_state.def_mtrr_type = MTRR_TYPE_WRBACK;
Nico Huber64f0bcb2017-10-07 16:37:04 +0200683 calc_var_mtrrs_with_hole(&var_state, r);
Aaron Durbine3834422013-03-28 20:48:51 -0500684 wb_deftype_count += var_state.mtrr_index;
685 }
686 }
Aaron Durbin5b9e3b62014-02-05 16:00:43 -0600687 *num_def_wb_mtrrs = wb_deftype_count;
688 *num_def_uc_mtrrs = uc_deftype_count;
689}
690
691static int calc_var_mtrrs(struct memranges *addr_space,
Lee Leahya07d0dd2017-03-15 14:25:22 -0700692 int above4gb, int address_bits)
Aaron Durbin5b9e3b62014-02-05 16:00:43 -0600693{
694 int wb_deftype_count = 0;
695 int uc_deftype_count = 0;
696
697 __calc_var_mtrrs(addr_space, above4gb, address_bits, &wb_deftype_count,
Lee Leahya07d0dd2017-03-15 14:25:22 -0700698 &uc_deftype_count);
Aaron Durbin5b9e3b62014-02-05 16:00:43 -0600699
700 if (wb_deftype_count > bios_mtrrs && uc_deftype_count > bios_mtrrs) {
701 printk(BIOS_DEBUG, "MTRR: Removing WRCOMB type. "
702 "WB/UC MTRR counts: %d/%d > %d.\n",
703 wb_deftype_count, uc_deftype_count, bios_mtrrs);
704 memranges_update_tag(addr_space, MTRR_TYPE_WRCOMB,
Lee Leahya07d0dd2017-03-15 14:25:22 -0700705 MTRR_TYPE_UNCACHEABLE);
Aaron Durbin5b9e3b62014-02-05 16:00:43 -0600706 __calc_var_mtrrs(addr_space, above4gb, address_bits,
Lee Leahya07d0dd2017-03-15 14:25:22 -0700707 &wb_deftype_count, &uc_deftype_count);
Aaron Durbin5b9e3b62014-02-05 16:00:43 -0600708 }
Scott Duplichanf3cce2f2010-11-13 19:07:59 +0000709
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500710 printk(BIOS_DEBUG, "MTRR: default type WB/UC MTRR counts: %d/%d.\n",
711 wb_deftype_count, uc_deftype_count);
Kyösti Mälkkiffc1fb32012-07-11 14:40:19 +0300712
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500713 if (wb_deftype_count < uc_deftype_count) {
714 printk(BIOS_DEBUG, "MTRR: WB selected as default type.\n");
715 return MTRR_TYPE_WRBACK;
716 }
717 printk(BIOS_DEBUG, "MTRR: UC selected as default type.\n");
718 return MTRR_TYPE_UNCACHEABLE;
719}
Kyösti Mälkkiffc1fb32012-07-11 14:40:19 +0300720
Gabe Black7756fe72014-02-25 01:40:34 -0800721static void prepare_var_mtrrs(struct memranges *addr_space, int def_type,
722 int above4gb, int address_bits,
723 struct var_mtrr_solution *sol)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500724{
Aaron Durbine3834422013-03-28 20:48:51 -0500725 struct range_entry *r;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500726 struct var_mtrr_state var_state;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500727
728 var_state.addr_space = addr_space;
729 var_state.above4gb = above4gb;
730 var_state.address_bits = address_bits;
Gabe Black7756fe72014-02-25 01:40:34 -0800731 /* Prepare the MSRs. */
732 var_state.prepare_msrs = 1;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500733 var_state.mtrr_index = 0;
734 var_state.def_mtrr_type = def_type;
Gabe Black7756fe72014-02-25 01:40:34 -0800735 var_state.regs = &sol->regs[0];
Aaron Durbine3834422013-03-28 20:48:51 -0500736
737 memranges_each_entry(r, var_state.addr_space) {
738 if (range_entry_mtrr_type(r) == def_type)
739 continue;
Nico Huber64f0bcb2017-10-07 16:37:04 +0200740 calc_var_mtrrs_with_hole(&var_state, r);
Aaron Durbine3834422013-03-28 20:48:51 -0500741 }
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500742
Gabe Black7756fe72014-02-25 01:40:34 -0800743 /* Update the solution. */
744 sol->num_used = var_state.mtrr_index;
745}
746
Aaron Durbind9762f72017-06-12 12:48:38 -0500747static int commit_var_mtrrs(const struct var_mtrr_solution *sol)
Gabe Black7756fe72014-02-25 01:40:34 -0800748{
749 int i;
750
Aaron Durbind9762f72017-06-12 12:48:38 -0500751 if (sol->num_used > total_mtrrs) {
752 printk(BIOS_WARNING, "Not enough MTRRs: %d vs %d\n",
753 sol->num_used, total_mtrrs);
754 return -1;
755 }
756
Isaac Christensen81f90c52014-09-24 14:59:32 -0600757 /* Write out the variable MTRRs. */
Gabe Black7756fe72014-02-25 01:40:34 -0800758 disable_cache();
759 for (i = 0; i < sol->num_used; i++) {
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700760 wrmsr(MTRR_PHYS_BASE(i), sol->regs[i].base);
761 wrmsr(MTRR_PHYS_MASK(i), sol->regs[i].mask);
Gabe Black7756fe72014-02-25 01:40:34 -0800762 }
763 /* Clear the ones that are unused. */
764 for (; i < total_mtrrs; i++)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500765 clear_var_mtrr(i);
Isaac Christensen81f90c52014-09-24 14:59:32 -0600766 enable_var_mtrr(sol->mtrr_default_type);
Gabe Black7756fe72014-02-25 01:40:34 -0800767 enable_cache();
768
Aaron Durbind9762f72017-06-12 12:48:38 -0500769 return 0;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500770}
771
772void x86_setup_var_mtrrs(unsigned int address_bits, unsigned int above4gb)
773{
Gabe Black7756fe72014-02-25 01:40:34 -0800774 static struct var_mtrr_solution *sol = NULL;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500775 struct memranges *addr_space;
776
777 addr_space = get_physical_address_space();
778
Gabe Black7756fe72014-02-25 01:40:34 -0800779 if (sol == NULL) {
Gabe Black7756fe72014-02-25 01:40:34 -0800780 sol = &mtrr_global_solution;
781 sol->mtrr_default_type =
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500782 calc_var_mtrrs(addr_space, !!above4gb, address_bits);
Gabe Black7756fe72014-02-25 01:40:34 -0800783 prepare_var_mtrrs(addr_space, sol->mtrr_default_type,
784 !!above4gb, address_bits, sol);
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000785 }
Stefan Reinauer00093a82011-11-02 16:12:34 -0700786
Gabe Black7756fe72014-02-25 01:40:34 -0800787 commit_var_mtrrs(sol);
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000788}
789
Sven Schnelleadfbcb792012-01-10 12:01:43 +0100790void x86_setup_mtrrs(void)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000791{
Sven Schnelleadfbcb792012-01-10 12:01:43 +0100792 int address_size;
Aaron Durbine63be892016-03-07 16:05:36 -0600793
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000794 x86_setup_fixed_mtrrs();
Sven Schnelleadfbcb792012-01-10 12:01:43 +0100795 address_size = cpu_phys_address_size();
Aaron Durbine63be892016-03-07 16:05:36 -0600796 printk(BIOS_DEBUG, "CPU physical address size: %d bits\n",
797 address_size);
798 /* Always handle addresses above 4GiB. */
Sven Schnelleadfbcb792012-01-10 12:01:43 +0100799 x86_setup_var_mtrrs(address_size, 1);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000800}
801
Aaron Durbine63be892016-03-07 16:05:36 -0600802void x86_setup_mtrrs_with_detect(void)
803{
804 detect_var_mtrrs();
805 x86_setup_mtrrs();
806}
807
Kyösti Mälkki38a8fb02014-06-30 13:48:18 +0300808void x86_mtrr_check(void)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000809{
810 /* Only Pentium Pro and later have MTRR */
811 msr_t msr;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000812 printk(BIOS_DEBUG, "\nMTRR check\n");
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000813
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700814 msr = rdmsr(MTRR_DEF_TYPE_MSR);
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000815
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000816 printk(BIOS_DEBUG, "Fixed MTRRs : ");
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700817 if (msr.lo & MTRR_DEF_TYPE_FIX_EN)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000818 printk(BIOS_DEBUG, "Enabled\n");
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000819 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000820 printk(BIOS_DEBUG, "Disabled\n");
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000821
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000822 printk(BIOS_DEBUG, "Variable MTRRs: ");
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700823 if (msr.lo & MTRR_DEF_TYPE_EN)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000824 printk(BIOS_DEBUG, "Enabled\n");
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000825 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000826 printk(BIOS_DEBUG, "Disabled\n");
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000827
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000828 printk(BIOS_DEBUG, "\n");
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000829
830 post_code(0x93);
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000831}
Aaron Durbin2bebd7b2016-11-10 15:15:35 -0600832
833static bool put_back_original_solution;
834
835void mtrr_use_temp_range(uintptr_t begin, size_t size, int type)
836{
837 const struct range_entry *r;
838 const struct memranges *orig;
839 struct var_mtrr_solution sol;
840 struct memranges addr_space;
841 const int above4gb = 1; /* Cover above 4GiB by default. */
842 int address_bits;
843
844 /* Make a copy of the original address space and tweak it with the
845 * provided range. */
846 memranges_init_empty(&addr_space, NULL, 0);
847 orig = get_physical_address_space();
848 memranges_each_entry(r, orig) {
849 unsigned long tag = range_entry_tag(r);
850
Aaron Durbin2bebd7b2016-11-10 15:15:35 -0600851 /* Remove any write combining MTRRs from the temporary
852 * solution as it just fragments the address space. */
853 if (tag == MTRR_TYPE_WRCOMB)
854 tag = MTRR_TYPE_UNCACHEABLE;
855
856 memranges_insert(&addr_space, range_entry_base(r),
857 range_entry_size(r), tag);
858 }
859
860 /* Place new range into the address space. */
861 memranges_insert(&addr_space, begin, size, type);
862
863 print_physical_address_space(&addr_space, "TEMPORARY");
864
865 /* Calculate a new solution with the updated address space. */
866 address_bits = cpu_phys_address_size();
867 memset(&sol, 0, sizeof(sol));
868 sol.mtrr_default_type =
869 calc_var_mtrrs(&addr_space, above4gb, address_bits);
870 prepare_var_mtrrs(&addr_space, sol.mtrr_default_type,
871 above4gb, address_bits, &sol);
Aaron Durbind9762f72017-06-12 12:48:38 -0500872
873 if (commit_var_mtrrs(&sol) < 0)
874 printk(BIOS_WARNING, "Unable to insert temporary MTRR range: 0x%016llx - 0x%016llx size 0x%08llx type %d\n",
875 (long long)begin, (long long)begin + size,
876 (long long)size, type);
877 else
878 put_back_original_solution = true;
Aaron Durbin2bebd7b2016-11-10 15:15:35 -0600879
880 memranges_teardown(&addr_space);
Aaron Durbin2bebd7b2016-11-10 15:15:35 -0600881}
882
883static void remove_temp_solution(void *unused)
884{
885 if (put_back_original_solution)
886 commit_var_mtrrs(&mtrr_global_solution);
887}
888
889BOOT_STATE_INIT_ENTRY(BS_OS_RESUME, BS_ON_ENTRY, remove_temp_solution, NULL);
890BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_LOAD, BS_ON_EXIT, remove_temp_solution, NULL);