blob: d1559dc235647ed8cc2ddf797d03a8f0429076a0 [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 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010021 * Foundation, Inc.
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000022 *
23 *
24 * Reference: Intel Architecture Software Developer's Manual, Volume 3: System Programming
25 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000026
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +000027#include <stddef.h>
Aaron Durbinbb4e79a2013-03-26 14:09:47 -050028#include <stdlib.h>
29#include <string.h>
Aaron Durbinbebf6692013-04-24 20:59:43 -050030#include <bootstate.h>
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000031#include <console/console.h>
32#include <device/device.h>
Aaron Durbinca4f4b82014-02-08 15:41:52 -060033#include <device/pci_ids.h>
Aaron Durbinebf142a2013-03-29 16:23:23 -050034#include <cpu/cpu.h>
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000035#include <cpu/x86/msr.h>
36#include <cpu/x86/mtrr.h>
37#include <cpu/x86/cache.h>
Stefan Reinauer00093a82011-11-02 16:12:34 -070038#include <cpu/x86/lapic.h>
Sven Schnelleadfbcb792012-01-10 12:01:43 +010039#include <arch/cpu.h>
Stefan Reinauer00093a82011-11-02 16:12:34 -070040#include <arch/acpi.h>
Aaron Durbinbb4e79a2013-03-26 14:09:47 -050041#include <memrange.h>
Aaron Durbin57686f82013-03-20 15:50:59 -050042#if CONFIG_X86_AMD_FIXED_MTRRS
43#include <cpu/amd/mtrr.h>
44#define MTRR_FIXED_WRBACK_BITS (MTRR_READ_MEM | MTRR_WRITE_MEM)
45#else
46#define MTRR_FIXED_WRBACK_BITS 0
47#endif
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000048
Stefan Reinauerc00dfbc2012-04-03 16:24:37 -070049/* 2 MTRRS are reserved for the operating system */
50#define BIOS_MTRRS 6
51#define OS_MTRRS 2
52#define MTRRS (BIOS_MTRRS + OS_MTRRS)
Gabe Black7756fe72014-02-25 01:40:34 -080053/*
Isaac Christensen81f90c52014-09-24 14:59:32 -060054 * Static storage size for variable MTRRs. It's sized sufficiently large to
55 * handle different types of CPUs. Empirically, 16 variable MTRRs has not
Gabe Black7756fe72014-02-25 01:40:34 -080056 * yet been observed.
57 */
58#define NUM_MTRR_STATIC_STORAGE 16
Stefan Reinauerc00dfbc2012-04-03 16:24:37 -070059
60static int total_mtrrs = MTRRS;
61static int bios_mtrrs = BIOS_MTRRS;
62
63static void detect_var_mtrrs(void)
64{
65 msr_t msr;
66
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070067 msr = rdmsr(MTRR_CAP_MSR);
Stefan Reinauerc00dfbc2012-04-03 16:24:37 -070068
69 total_mtrrs = msr.lo & 0xff;
Gabe Black7756fe72014-02-25 01:40:34 -080070
71 if (total_mtrrs > NUM_MTRR_STATIC_STORAGE) {
72 printk(BIOS_WARNING,
73 "MTRRs detected (%d) > NUM_MTRR_STATIC_STORAGE (%d)\n",
74 total_mtrrs, NUM_MTRR_STATIC_STORAGE);
75 total_mtrrs = NUM_MTRR_STATIC_STORAGE;
76 }
Stefan Reinauerc00dfbc2012-04-03 16:24:37 -070077 bios_mtrrs = total_mtrrs - OS_MTRRS;
78}
79
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000080void enable_fixed_mtrr(void)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000081{
82 msr_t msr;
83
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070084 msr = rdmsr(MTRR_DEF_TYPE_MSR);
85 msr.lo |= MTRR_DEF_TYPE_EN | MTRR_DEF_TYPE_FIX_EN;
86 wrmsr(MTRR_DEF_TYPE_MSR, msr);
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000087}
88
Aaron Durbinbb4e79a2013-03-26 14:09:47 -050089static void enable_var_mtrr(unsigned char deftype)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000090{
91 msr_t msr;
92
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070093 msr = rdmsr(MTRR_DEF_TYPE_MSR);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -050094 msr.lo &= ~0xff;
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070095 msr.lo |= MTRR_DEF_TYPE_EN | deftype;
96 wrmsr(MTRR_DEF_TYPE_MSR, msr);
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000097}
98
Eric Biedermanfcd5ace2004-10-14 19:29:29 +000099/* fms: find most sigificant bit set, stolen from Linux Kernel Source. */
100static inline unsigned int fms(unsigned int x)
101{
102 int r;
103
104 __asm__("bsrl %1,%0\n\t"
105 "jnz 1f\n\t"
106 "movl $0,%0\n"
107 "1:" : "=r" (r) : "g" (x));
108 return r;
109}
110
Martin Roth4c3ab732013-07-08 16:23:54 -0600111/* fls: find least significant bit set */
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000112static inline unsigned int fls(unsigned int x)
113{
114 int r;
115
116 __asm__("bsfl %1,%0\n\t"
117 "jnz 1f\n\t"
118 "movl $32,%0\n"
119 "1:" : "=r" (r) : "g" (x));
120 return r;
121}
122
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500123#define MTRR_VERBOSE_LEVEL BIOS_NEVER
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000124
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500125/* MTRRs are at a 4KiB granularity. Therefore all address calculations can
126 * be done with 32-bit numbers. This allows for the MTRR code to handle
127 * up to 2^44 bytes (16 TiB) of address space. */
128#define RANGE_SHIFT 12
129#define ADDR_SHIFT_TO_RANGE_SHIFT(x) \
130 (((x) > RANGE_SHIFT) ? ((x) - RANGE_SHIFT) : RANGE_SHIFT)
131#define PHYS_TO_RANGE_ADDR(x) ((x) >> RANGE_SHIFT)
132#define RANGE_TO_PHYS_ADDR(x) (((resource_t)(x)) << RANGE_SHIFT)
133#define NUM_FIXED_MTRRS (NUM_FIXED_RANGES / RANGES_PER_FIXED_MTRR)
134
135/* The minimum alignment while handling variable MTRR ranges is 64MiB. */
136#define MTRR_MIN_ALIGN PHYS_TO_RANGE_ADDR(64 << 20)
137/* Helpful constants. */
138#define RANGE_1MB PHYS_TO_RANGE_ADDR(1 << 20)
139#define RANGE_4GB (1 << (ADDR_SHIFT_TO_RANGE_SHIFT(32)))
140
Aaron Durbine3834422013-03-28 20:48:51 -0500141/*
142 * The default MTRR type selection uses 3 approaches for selecting the
143 * optimal number of variable MTRRs. For each range do 3 calculations:
144 * 1. UC as default type with no holes at top of range.
145 * 2. UC as default using holes at top of range.
146 * 3. WB as default.
147 * If using holes is optimal for a range when UC is the default type the
148 * tag is updated to direct the commit routine to use a hole at the top
149 * of a range.
150 */
151#define MTRR_ALGO_SHIFT (8)
152#define MTRR_TAG_MASK ((1 << MTRR_ALGO_SHIFT) - 1)
153/* If the default type is UC use the hole carving algorithm for a range. */
154#define MTRR_RANGE_UC_USE_HOLE (1 << MTRR_ALGO_SHIFT)
155
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500156static inline uint32_t range_entry_base_mtrr_addr(struct range_entry *r)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000157{
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500158 return PHYS_TO_RANGE_ADDR(range_entry_base(r));
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000159}
160
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500161static inline uint32_t range_entry_end_mtrr_addr(struct range_entry *r)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000162{
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500163 return PHYS_TO_RANGE_ADDR(range_entry_end(r));
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000164}
165
Aaron Durbine3834422013-03-28 20:48:51 -0500166static inline int range_entry_mtrr_type(struct range_entry *r)
167{
168 return range_entry_tag(r) & MTRR_TAG_MASK;
169}
170
Aaron Durbinca4f4b82014-02-08 15:41:52 -0600171static int filter_vga_wrcomb(struct device *dev, struct resource *res)
172{
173 /* Only handle PCI devices. */
174 if (dev->path.type != DEVICE_PATH_PCI)
175 return 0;
176
177 /* Only handle VGA class devices. */
178 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
179 return 0;
180
181 /* Add resource as write-combining in the address space. */
182 return 1;
183}
184
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500185static struct memranges *get_physical_address_space(void)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000186{
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500187 static struct memranges *addr_space;
188 static struct memranges addr_space_storage;
Duncan Laurie7389fa92011-12-22 10:59:40 -0800189
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500190 /* In order to handle some chipsets not being able to pre-determine
Martin Roth4c3ab732013-07-08 16:23:54 -0600191 * uncacheable ranges, such as graphics memory, at resource insertion
192 * time remove uncacheable regions from the cacheable ones. */
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500193 if (addr_space == NULL) {
194 struct range_entry *r;
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,
206 MTRR_TYPE_UNCACHEABLE);
207
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;
Aaron Durbinca4f4b82014-02-08 15:41:52 -0600212 memranges_add_resources_filter(addr_space, mask, match, MTRR_TYPE_WRCOMB,
213 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
216 * covered entirly by range entries so that MTRR calculations
217 * 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,
221 RANGE_TO_PHYS_ADDR(RANGE_4GB),
222 MTRR_TYPE_UNCACHEABLE);
223
224 printk(BIOS_DEBUG, "MTRR: Physical address space:\n");
225 memranges_each_entry(r, addr_space)
226 printk(BIOS_DEBUG,
227 "0x%016llx - 0x%016llx size 0x%08llx type %ld\n",
228 range_entry_base(r), range_entry_end(r),
229 range_entry_size(r), range_entry_tag(r));
Carl-Daniel Hailfinger7dde1da2009-02-11 16:57:32 +0000230 }
Stefan Reinauer7f86ed12009-02-12 16:02:16 +0000231
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500232 return addr_space;
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000233}
234
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500235/* Fixed MTRR descriptor. This structure defines the step size and begin
Martin Roth4c3ab732013-07-08 16:23:54 -0600236 * and end (exclusive) address covered by a set of fixed MTRR MSRs.
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500237 * It also describes the offset in byte intervals to store the calculated MTRR
238 * type in an array. */
239struct fixed_mtrr_desc {
240 uint32_t begin;
241 uint32_t end;
242 uint32_t step;
243 int range_index;
244 int msr_index_base;
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000245};
246
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500247/* Shared MTRR calculations. Can be reused by APs. */
248static uint8_t fixed_mtrr_types[NUM_FIXED_RANGES];
249
250/* Fixed MTRR descriptors. */
251static const struct fixed_mtrr_desc fixed_mtrr_desc[] = {
252 { PHYS_TO_RANGE_ADDR(0x000000), PHYS_TO_RANGE_ADDR(0x080000),
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700253 PHYS_TO_RANGE_ADDR(64 * 1024), 0, MTRR_FIX_64K_00000 },
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500254 { PHYS_TO_RANGE_ADDR(0x080000), PHYS_TO_RANGE_ADDR(0x0C0000),
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700255 PHYS_TO_RANGE_ADDR(16 * 1024), 8, MTRR_FIX_16K_80000 },
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500256 { PHYS_TO_RANGE_ADDR(0x0C0000), PHYS_TO_RANGE_ADDR(0x100000),
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700257 PHYS_TO_RANGE_ADDR(4 * 1024), 24, MTRR_FIX_4K_C0000 },
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500258};
259
260static void calc_fixed_mtrrs(void)
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000261{
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500262 static int fixed_mtrr_types_initialized;
263 struct memranges *phys_addr_space;
264 struct range_entry *r;
265 const struct fixed_mtrr_desc *desc;
266 const struct fixed_mtrr_desc *last_desc;
267 uint32_t begin;
268 uint32_t end;
269 int type_index;
270
271 if (fixed_mtrr_types_initialized)
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000272 return;
Kyösti Mälkki2d42b342012-07-12 00:18:22 +0300273
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500274 phys_addr_space = get_physical_address_space();
Kyösti Mälkki2d42b342012-07-12 00:18:22 +0300275
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500276 /* Set all fixed ranges to uncacheable first. */
277 memset(&fixed_mtrr_types[0], MTRR_TYPE_UNCACHEABLE, NUM_FIXED_RANGES);
Kyösti Mälkki2d42b342012-07-12 00:18:22 +0300278
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500279 desc = &fixed_mtrr_desc[0];
280 last_desc = &fixed_mtrr_desc[ARRAY_SIZE(fixed_mtrr_desc) - 1];
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300281
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500282 memranges_each_entry(r, phys_addr_space) {
283 begin = range_entry_base_mtrr_addr(r);
284 end = range_entry_end_mtrr_addr(r);
Kyösti Mälkki2d42b342012-07-12 00:18:22 +0300285
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500286 if (begin >= last_desc->end)
287 break;
288
289 if (end > last_desc->end)
290 end = last_desc->end;
291
292 /* Get to the correct fixed mtrr descriptor. */
293 while (begin >= desc->end)
294 desc++;
295
296 type_index = desc->range_index;
297 type_index += (begin - desc->begin) / desc->step;
298
299 while (begin != end) {
300 unsigned char type;
301
302 type = range_entry_tag(r);
303 printk(MTRR_VERBOSE_LEVEL,
304 "MTRR addr 0x%x-0x%x set to %d type @ %d\n",
305 begin, begin + desc->step, type, type_index);
306 if (type == MTRR_TYPE_WRBACK)
307 type |= MTRR_FIXED_WRBACK_BITS;
308 fixed_mtrr_types[type_index] = type;
309 type_index++;
310 begin += desc->step;
311 if (begin == desc->end)
312 desc++;
Yinghai Lu63601872005-01-27 22:48:12 +0000313 }
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000314 }
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500315 fixed_mtrr_types_initialized = 1;
316}
317
318static void commit_fixed_mtrrs(void)
319{
320 int i;
321 int j;
322 int msr_num;
323 int type_index;
324 /* 8 ranges per msr. */
325 msr_t fixed_msrs[NUM_FIXED_MTRRS];
326 unsigned long msr_index[NUM_FIXED_MTRRS];
327
328 memset(&fixed_msrs, 0, sizeof(fixed_msrs));
329
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500330 msr_num = 0;
331 type_index = 0;
332 for (i = 0; i < ARRAY_SIZE(fixed_mtrr_desc); i++) {
333 const struct fixed_mtrr_desc *desc;
334 int num_ranges;
335
336 desc = &fixed_mtrr_desc[i];
337 num_ranges = (desc->end - desc->begin) / desc->step;
338 for (j = 0; j < num_ranges; j += RANGES_PER_FIXED_MTRR) {
339 msr_index[msr_num] = desc->msr_index_base +
340 (j / RANGES_PER_FIXED_MTRR);
341 fixed_msrs[msr_num].lo |=
342 fixed_mtrr_types[type_index++] << 0;
343 fixed_msrs[msr_num].lo |=
344 fixed_mtrr_types[type_index++] << 8;
345 fixed_msrs[msr_num].lo |=
346 fixed_mtrr_types[type_index++] << 16;
347 fixed_msrs[msr_num].lo |=
348 fixed_mtrr_types[type_index++] << 24;
349 fixed_msrs[msr_num].hi |=
350 fixed_mtrr_types[type_index++] << 0;
351 fixed_msrs[msr_num].hi |=
352 fixed_mtrr_types[type_index++] << 8;
353 fixed_msrs[msr_num].hi |=
354 fixed_mtrr_types[type_index++] << 16;
355 fixed_msrs[msr_num].hi |=
356 fixed_mtrr_types[type_index++] << 24;
357 msr_num++;
358 }
359 }
360
Gabe Black7756fe72014-02-25 01:40:34 -0800361 for (i = 0; i < ARRAY_SIZE(fixed_msrs); i++)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500362 printk(BIOS_DEBUG, "MTRR: Fixed MSR 0x%lx 0x%08x%08x\n",
363 msr_index[i], fixed_msrs[i].hi, fixed_msrs[i].lo);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500364
Gabe Black7756fe72014-02-25 01:40:34 -0800365 disable_cache();
366 for (i = 0; i < ARRAY_SIZE(fixed_msrs); i++)
367 wrmsr(msr_index[i], fixed_msrs[i]);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500368 enable_cache();
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000369}
370
Aaron Durbin57686f82013-03-20 15:50:59 -0500371void x86_setup_fixed_mtrrs_no_enable(void)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000372{
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500373 calc_fixed_mtrrs();
374 commit_fixed_mtrrs();
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000375}
Stefan Reinauer7f86ed12009-02-12 16:02:16 +0000376
Aaron Durbin57686f82013-03-20 15:50:59 -0500377void x86_setup_fixed_mtrrs(void)
378{
379 x86_setup_fixed_mtrrs_no_enable();
380
381 printk(BIOS_SPEW, "call enable_fixed_mtrr()\n");
382 enable_fixed_mtrr();
383}
384
Gabe Black7756fe72014-02-25 01:40:34 -0800385struct var_mtrr_regs {
386 msr_t base;
387 msr_t mask;
388};
389
390struct var_mtrr_solution {
391 int mtrr_default_type;
392 int num_used;
393 struct var_mtrr_regs regs[NUM_MTRR_STATIC_STORAGE];
394};
395
396/* Global storage for variable MTRR solution. */
397static struct var_mtrr_solution mtrr_global_solution;
398
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500399struct var_mtrr_state {
400 struct memranges *addr_space;
401 int above4gb;
402 int address_bits;
Gabe Black7756fe72014-02-25 01:40:34 -0800403 int prepare_msrs;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500404 int mtrr_index;
405 int def_mtrr_type;
Gabe Black7756fe72014-02-25 01:40:34 -0800406 struct var_mtrr_regs *regs;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500407};
Aaron Durbin57686f82013-03-20 15:50:59 -0500408
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500409static void clear_var_mtrr(int index)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000410{
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500411 msr_t msr_val;
412
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700413 msr_val = rdmsr(MTRR_PHYS_MASK(index));
414 msr_val.lo &= ~MTRR_PHYS_MASK_VALID;
415 wrmsr(MTRR_PHYS_MASK(index), msr_val);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500416}
417
Gabe Black7756fe72014-02-25 01:40:34 -0800418static void prep_var_mtrr(struct var_mtrr_state *var_state,
419 uint32_t base, uint32_t size, int mtrr_type)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500420{
Gabe Black7756fe72014-02-25 01:40:34 -0800421 struct var_mtrr_regs *regs;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500422 resource_t rbase;
423 resource_t rsize;
424 resource_t mask;
425
426 /* Some variable MTRRs are attempted to be saved for the OS use.
427 * However, it's more important to try to map the full address space
428 * properly. */
429 if (var_state->mtrr_index >= bios_mtrrs)
430 printk(BIOS_WARNING, "Taking a reserved OS MTRR.\n");
431 if (var_state->mtrr_index >= total_mtrrs) {
Paul Menzel6a70dbc2015-10-15 12:41:53 +0200432 printk(BIOS_ERR, "ERROR: Not enough MTRRs available! MTRR index"
433 "is %d with %d MTTRs in total.\n",
434 var_state->mtrr_index, total_mtrrs);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500435 return;
436 }
437
438 rbase = base;
439 rsize = size;
440
441 rbase = RANGE_TO_PHYS_ADDR(rbase);
442 rsize = RANGE_TO_PHYS_ADDR(rsize);
443 rsize = -rsize;
444
445 mask = (1ULL << var_state->address_bits) - 1;
446 rsize = rsize & mask;
447
448 printk(BIOS_DEBUG, "MTRR: %d base 0x%016llx mask 0x%016llx type %d\n",
449 var_state->mtrr_index, rbase, rsize, mtrr_type);
450
Gabe Black7756fe72014-02-25 01:40:34 -0800451 regs = &var_state->regs[var_state->mtrr_index];
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500452
Gabe Black7756fe72014-02-25 01:40:34 -0800453 regs->base.lo = rbase;
454 regs->base.lo |= mtrr_type;
455 regs->base.hi = rbase >> 32;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500456
Gabe Black7756fe72014-02-25 01:40:34 -0800457 regs->mask.lo = rsize;
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700458 regs->mask.lo |= MTRR_PHYS_MASK_VALID;
Gabe Black7756fe72014-02-25 01:40:34 -0800459 regs->mask.hi = rsize >> 32;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500460}
461
462static void calc_var_mtrr_range(struct var_mtrr_state *var_state,
463 uint32_t base, uint32_t size, int mtrr_type)
464{
465 while (size != 0) {
466 uint32_t addr_lsb;
467 uint32_t size_msb;
468 uint32_t mtrr_size;
469
470 addr_lsb = fls(base);
471 size_msb = fms(size);
472
473 /* All MTRR entries need to have their base aligned to the mask
474 * size. The maximum size is calculated by a function of the
475 * min base bit set and maximum size bit set. */
476 if (addr_lsb > size_msb)
477 mtrr_size = 1 << size_msb;
478 else
479 mtrr_size = 1 << addr_lsb;
480
Gabe Black7756fe72014-02-25 01:40:34 -0800481 if (var_state->prepare_msrs)
482 prep_var_mtrr(var_state, base, mtrr_size, mtrr_type);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500483
484 size -= mtrr_size;
485 base += mtrr_size;
486 var_state->mtrr_index++;
487 }
488}
489
Aaron Durbine3834422013-03-28 20:48:51 -0500490static void calc_var_mtrrs_with_hole(struct var_mtrr_state *var_state,
491 struct range_entry *r)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500492{
Aaron Durbine3834422013-03-28 20:48:51 -0500493 uint32_t a1, a2, b1, b2;
494 int mtrr_type;
495 struct range_entry *next;
496
497 /*
Martin Roth4c3ab732013-07-08 16:23:54 -0600498 * Determine MTRRs based on the following algorithm for the given entry:
Aaron Durbine3834422013-03-28 20:48:51 -0500499 * +------------------+ b2 = ALIGN_UP(end)
500 * | 0 or more bytes | <-- hole is carved out between b1 and b2
501 * +------------------+ a2 = b1 = end
502 * | |
503 * +------------------+ a1 = begin
504 *
505 * Thus, there are 3 sub-ranges to configure variable MTRRs for.
506 */
507 mtrr_type = range_entry_mtrr_type(r);
508
509 a1 = range_entry_base_mtrr_addr(r);
510 a2 = range_entry_end_mtrr_addr(r);
511
512 /* The end address is under 1MiB. The fixed MTRRs take
513 * precedence over the variable ones. Therefore this range
514 * can be ignored. */
515 if (a2 < RANGE_1MB)
516 return;
517
518 /* Again, the fixed MTRRs take precedence so the beginning
519 * of the range can be set to 0 if it starts below 1MiB. */
520 if (a1 < RANGE_1MB)
521 a1 = 0;
522
523 /* If the range starts above 4GiB the processing is done. */
524 if (!var_state->above4gb && a1 >= RANGE_4GB)
525 return;
526
527 /* Clip the upper address to 4GiB if addresses above 4GiB
528 * are not being processed. */
529 if (!var_state->above4gb && a2 > RANGE_4GB)
530 a2 = RANGE_4GB;
531
Aaron Durbin53924242013-03-29 11:48:27 -0500532 next = memranges_next_entry(var_state->addr_space, r);
533
Aaron Durbine3834422013-03-28 20:48:51 -0500534 b1 = a2;
Aaron Durbin53924242013-03-29 11:48:27 -0500535
Martin Roth4c3ab732013-07-08 16:23:54 -0600536 /* First check if a1 is >= 4GiB and the current entry is the last
Aaron Durbin53924242013-03-29 11:48:27 -0500537 * entry. If so perform an optimization of covering a larger range
538 * defined by the base address' alignment. */
539 if (a1 >= RANGE_4GB && next == NULL) {
540 uint32_t addr_lsb;
541
542 addr_lsb = fls(a1);
543 b2 = (1 << addr_lsb) + a1;
544 if (b2 >= a2) {
545 calc_var_mtrr_range(var_state, a1, b2 - a1, mtrr_type);
546 return;
547 }
548 }
549
550 /* Handle the min alignment roundup case. */
Aaron Durbine3834422013-03-28 20:48:51 -0500551 b2 = ALIGN_UP(a2, MTRR_MIN_ALIGN);
552
553 /* Check against the next range. If the current range_entry is the
554 * last entry then carving a hole is no problem. If the current entry
555 * isn't the last entry then check that the last entry covers the
556 * entire hole range with the default mtrr type. */
Aaron Durbine3834422013-03-28 20:48:51 -0500557 if (next != NULL &&
558 (range_entry_mtrr_type(next) != var_state->def_mtrr_type ||
559 range_entry_end_mtrr_addr(next) < b2)) {
560 calc_var_mtrr_range(var_state, a1, a2 - a1, mtrr_type);
561 return;
562 }
563
564 calc_var_mtrr_range(var_state, a1, b2 - a1, mtrr_type);
565 calc_var_mtrr_range(var_state, b1, b2 - b1, var_state->def_mtrr_type);
566}
567
568static void calc_var_mtrrs_without_hole(struct var_mtrr_state *var_state,
569 struct range_entry *r)
570{
571 uint32_t a1, a2, b1, b2, c1, c2;
572 int mtrr_type;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500573
574 /*
575 * For each range that meets the non-default type process it in the
576 * following manner:
577 * +------------------+ c2 = end
578 * | 0 or more bytes |
579 * +------------------+ b2 = c1 = ALIGN_DOWN(end)
580 * | |
581 * +------------------+ b1 = a2 = ALIGN_UP(begin)
582 * | 0 or more bytes |
583 * +------------------+ a1 = begin
584 *
585 * Thus, there are 3 sub-ranges to configure variable MTRRs for.
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000586 */
Aaron Durbine3834422013-03-28 20:48:51 -0500587 mtrr_type = range_entry_mtrr_type(r);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500588
Aaron Durbine3834422013-03-28 20:48:51 -0500589 a1 = range_entry_base_mtrr_addr(r);
590 c2 = range_entry_end_mtrr_addr(r);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500591
Aaron Durbine3834422013-03-28 20:48:51 -0500592 /* The end address is under 1MiB. The fixed MTRRs take
593 * precedence over the variable ones. Therefore this range
594 * can be ignored. */
595 if (c2 < RANGE_1MB)
596 return;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500597
Aaron Durbine3834422013-03-28 20:48:51 -0500598 /* Again, the fixed MTRRs take precedence so the beginning
599 * of the range can be set to 0 if it starts below 1MiB. */
600 if (a1 < RANGE_1MB)
601 a1 = 0;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500602
Aaron Durbine3834422013-03-28 20:48:51 -0500603 /* If the range starts above 4GiB the processing is done. */
604 if (!var_state->above4gb && a1 >= RANGE_4GB)
605 return;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500606
Aaron Durbine3834422013-03-28 20:48:51 -0500607 /* Clip the upper address to 4GiB if addresses above 4GiB
608 * are not being processed. */
609 if (!var_state->above4gb && c2 > RANGE_4GB)
610 c2 = RANGE_4GB;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500611
Aaron Durbine3834422013-03-28 20:48:51 -0500612 /* Don't align up or down on the range if it is smaller
613 * than the minimum granularity. */
614 if ((c2 - a1) < MTRR_MIN_ALIGN) {
615 calc_var_mtrr_range(var_state, a1, c2 - a1, mtrr_type);
616 return;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500617 }
Aaron Durbine3834422013-03-28 20:48:51 -0500618
619 b1 = a2 = ALIGN_UP(a1, MTRR_MIN_ALIGN);
620 b2 = c1 = ALIGN_DOWN(c2, MTRR_MIN_ALIGN);
621
622 calc_var_mtrr_range(var_state, a1, a2 - a1, mtrr_type);
623 calc_var_mtrr_range(var_state, b1, b2 - b1, mtrr_type);
624 calc_var_mtrr_range(var_state, c1, c2 - c1, mtrr_type);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500625}
626
Aaron Durbin5b9e3b62014-02-05 16:00:43 -0600627static void __calc_var_mtrrs(struct memranges *addr_space,
628 int above4gb, int address_bits,
629 int *num_def_wb_mtrrs, int *num_def_uc_mtrrs)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500630{
631 int wb_deftype_count;
632 int uc_deftype_count;
Aaron Durbine3834422013-03-28 20:48:51 -0500633 struct range_entry *r;
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000634 struct var_mtrr_state var_state;
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000635
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500636 /* The default MTRR cacheability type is determined by calculating
Paul Menzel4fe98132014-01-25 15:55:28 +0100637 * the number of MTRRs required for each MTRR type as if it was the
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500638 * default. */
639 var_state.addr_space = addr_space;
Scott Duplichanf3cce2f2010-11-13 19:07:59 +0000640 var_state.above4gb = above4gb;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500641 var_state.address_bits = address_bits;
Gabe Black7756fe72014-02-25 01:40:34 -0800642 var_state.prepare_msrs = 0;
Stefan Reinauer7f86ed12009-02-12 16:02:16 +0000643
Aaron Durbine3834422013-03-28 20:48:51 -0500644 wb_deftype_count = 0;
645 uc_deftype_count = 0;
Duncan Laurie7389fa92011-12-22 10:59:40 -0800646
Aaron Durbine3834422013-03-28 20:48:51 -0500647 /*
648 * For each range do 3 calculations:
649 * 1. UC as default type with no holes at top of range.
650 * 2. UC as default using holes at top of range.
651 * 3. WB as default.
Martin Roth4c3ab732013-07-08 16:23:54 -0600652 * The lowest count is then used as default after totaling all
653 * MTRRs. Note that the optimal algorithm for UC default is marked in
Aaron Durbine3834422013-03-28 20:48:51 -0500654 * the tag of each range regardless of final decision. UC takes
Martin Roth4c3ab732013-07-08 16:23:54 -0600655 * precedence in the MTRR architecture. Therefore, only holes can be
Aaron Durbine3834422013-03-28 20:48:51 -0500656 * used when the type of the region is MTRR_TYPE_WRBACK with
657 * MTRR_TYPE_UNCACHEABLE as the default type.
658 */
659 memranges_each_entry(r, var_state.addr_space) {
660 int mtrr_type;
661
662 mtrr_type = range_entry_mtrr_type(r);
663
664 if (mtrr_type != MTRR_TYPE_UNCACHEABLE) {
665 int uc_hole_count;
666 int uc_no_hole_count;
667
668 var_state.def_mtrr_type = MTRR_TYPE_UNCACHEABLE;
669 var_state.mtrr_index = 0;
670
671 /* No hole calculation. */
672 calc_var_mtrrs_without_hole(&var_state, r);
673 uc_no_hole_count = var_state.mtrr_index;
674
675 /* Hole calculation only if type is WB. The 64 number
676 * is a count that is unachievable, thus making it
677 * a default large number in the case of not doing
678 * the hole calculation. */
679 uc_hole_count = 64;
680 if (mtrr_type == MTRR_TYPE_WRBACK) {
681 var_state.mtrr_index = 0;
682 calc_var_mtrrs_with_hole(&var_state, r);
683 uc_hole_count = var_state.mtrr_index;
684 }
685
686 /* Mark the entry with the optimal algorithm. */
687 if (uc_no_hole_count < uc_hole_count) {
688 uc_deftype_count += uc_no_hole_count;
689 } else {
690 unsigned long new_tag;
691
692 new_tag = mtrr_type | MTRR_RANGE_UC_USE_HOLE;
693 range_entry_update_tag(r, new_tag);
694 uc_deftype_count += uc_hole_count;
695 }
696 }
697
698 if (mtrr_type != MTRR_TYPE_WRBACK) {
699 var_state.mtrr_index = 0;
700 var_state.def_mtrr_type = MTRR_TYPE_WRBACK;
701 calc_var_mtrrs_without_hole(&var_state, r);
702 wb_deftype_count += var_state.mtrr_index;
703 }
704 }
Aaron Durbin5b9e3b62014-02-05 16:00:43 -0600705 *num_def_wb_mtrrs = wb_deftype_count;
706 *num_def_uc_mtrrs = uc_deftype_count;
707}
708
709static int calc_var_mtrrs(struct memranges *addr_space,
710 int above4gb, int address_bits)
711{
712 int wb_deftype_count = 0;
713 int uc_deftype_count = 0;
714
715 __calc_var_mtrrs(addr_space, above4gb, address_bits, &wb_deftype_count,
716 &uc_deftype_count);
717
718 if (wb_deftype_count > bios_mtrrs && uc_deftype_count > bios_mtrrs) {
719 printk(BIOS_DEBUG, "MTRR: Removing WRCOMB type. "
720 "WB/UC MTRR counts: %d/%d > %d.\n",
721 wb_deftype_count, uc_deftype_count, bios_mtrrs);
722 memranges_update_tag(addr_space, MTRR_TYPE_WRCOMB,
723 MTRR_TYPE_UNCACHEABLE);
724 __calc_var_mtrrs(addr_space, above4gb, address_bits,
725 &wb_deftype_count, &uc_deftype_count);
726 }
Scott Duplichanf3cce2f2010-11-13 19:07:59 +0000727
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500728 printk(BIOS_DEBUG, "MTRR: default type WB/UC MTRR counts: %d/%d.\n",
729 wb_deftype_count, uc_deftype_count);
Kyösti Mälkkiffc1fb32012-07-11 14:40:19 +0300730
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500731 if (wb_deftype_count < uc_deftype_count) {
732 printk(BIOS_DEBUG, "MTRR: WB selected as default type.\n");
733 return MTRR_TYPE_WRBACK;
734 }
735 printk(BIOS_DEBUG, "MTRR: UC selected as default type.\n");
736 return MTRR_TYPE_UNCACHEABLE;
737}
Kyösti Mälkkiffc1fb32012-07-11 14:40:19 +0300738
Gabe Black7756fe72014-02-25 01:40:34 -0800739static void prepare_var_mtrrs(struct memranges *addr_space, int def_type,
740 int above4gb, int address_bits,
741 struct var_mtrr_solution *sol)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500742{
Aaron Durbine3834422013-03-28 20:48:51 -0500743 struct range_entry *r;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500744 struct var_mtrr_state var_state;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500745
746 var_state.addr_space = addr_space;
747 var_state.above4gb = above4gb;
748 var_state.address_bits = address_bits;
Gabe Black7756fe72014-02-25 01:40:34 -0800749 /* Prepare the MSRs. */
750 var_state.prepare_msrs = 1;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500751 var_state.mtrr_index = 0;
752 var_state.def_mtrr_type = def_type;
Gabe Black7756fe72014-02-25 01:40:34 -0800753 var_state.regs = &sol->regs[0];
Aaron Durbine3834422013-03-28 20:48:51 -0500754
755 memranges_each_entry(r, var_state.addr_space) {
756 if (range_entry_mtrr_type(r) == def_type)
757 continue;
758
759 if (def_type == MTRR_TYPE_UNCACHEABLE &&
760 (range_entry_tag(r) & MTRR_RANGE_UC_USE_HOLE))
761 calc_var_mtrrs_with_hole(&var_state, r);
762 else
763 calc_var_mtrrs_without_hole(&var_state, r);
764 }
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500765
Gabe Black7756fe72014-02-25 01:40:34 -0800766 /* Update the solution. */
767 sol->num_used = var_state.mtrr_index;
768}
769
770static void commit_var_mtrrs(const struct var_mtrr_solution *sol)
771{
772 int i;
773
Isaac Christensen81f90c52014-09-24 14:59:32 -0600774 /* Write out the variable MTRRs. */
Gabe Black7756fe72014-02-25 01:40:34 -0800775 disable_cache();
776 for (i = 0; i < sol->num_used; i++) {
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700777 wrmsr(MTRR_PHYS_BASE(i), sol->regs[i].base);
778 wrmsr(MTRR_PHYS_MASK(i), sol->regs[i].mask);
Gabe Black7756fe72014-02-25 01:40:34 -0800779 }
780 /* Clear the ones that are unused. */
781 for (; i < total_mtrrs; i++)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500782 clear_var_mtrr(i);
Isaac Christensen81f90c52014-09-24 14:59:32 -0600783 enable_var_mtrr(sol->mtrr_default_type);
Gabe Black7756fe72014-02-25 01:40:34 -0800784 enable_cache();
785
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500786}
787
788void x86_setup_var_mtrrs(unsigned int address_bits, unsigned int above4gb)
789{
Gabe Black7756fe72014-02-25 01:40:34 -0800790 static struct var_mtrr_solution *sol = NULL;
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500791 struct memranges *addr_space;
792
793 addr_space = get_physical_address_space();
794
Gabe Black7756fe72014-02-25 01:40:34 -0800795 if (sol == NULL) {
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500796 if (above4gb == 2)
797 detect_var_mtrrs();
Gabe Black7756fe72014-02-25 01:40:34 -0800798 sol = &mtrr_global_solution;
799 sol->mtrr_default_type =
Aaron Durbinbb4e79a2013-03-26 14:09:47 -0500800 calc_var_mtrrs(addr_space, !!above4gb, address_bits);
Gabe Black7756fe72014-02-25 01:40:34 -0800801 prepare_var_mtrrs(addr_space, sol->mtrr_default_type,
802 !!above4gb, address_bits, sol);
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000803 }
Stefan Reinauer00093a82011-11-02 16:12:34 -0700804
Gabe Black7756fe72014-02-25 01:40:34 -0800805 commit_var_mtrrs(sol);
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000806}
807
Sven Schnelleadfbcb792012-01-10 12:01:43 +0100808void x86_setup_mtrrs(void)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000809{
Sven Schnelleadfbcb792012-01-10 12:01:43 +0100810 int address_size;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000811 x86_setup_fixed_mtrrs();
Sven Schnelleadfbcb792012-01-10 12:01:43 +0100812 address_size = cpu_phys_address_size();
813 printk(BIOS_DEBUG, "CPU physical address size: %d bits\n", address_size);
814 x86_setup_var_mtrrs(address_size, 1);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000815}
816
Kyösti Mälkki38a8fb02014-06-30 13:48:18 +0300817void x86_mtrr_check(void)
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000818{
819 /* Only Pentium Pro and later have MTRR */
820 msr_t msr;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000821 printk(BIOS_DEBUG, "\nMTRR check\n");
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000822
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700823 msr = rdmsr(MTRR_DEF_TYPE_MSR);
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000824
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000825 printk(BIOS_DEBUG, "Fixed MTRRs : ");
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700826 if (msr.lo & MTRR_DEF_TYPE_FIX_EN)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000827 printk(BIOS_DEBUG, "Enabled\n");
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000828 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000829 printk(BIOS_DEBUG, "Disabled\n");
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000830
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000831 printk(BIOS_DEBUG, "Variable MTRRs: ");
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700832 if (msr.lo & MTRR_DEF_TYPE_EN)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000833 printk(BIOS_DEBUG, "Enabled\n");
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000834 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000835 printk(BIOS_DEBUG, "Disabled\n");
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000836
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000837 printk(BIOS_DEBUG, "\n");
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000838
839 post_code(0x93);
Eric Biedermanfcd5ace2004-10-14 19:29:29 +0000840}