1 /* This only handles 32bit MTRR on 32bit hosts. This is strictly wrong
2 because MTRRs can span upto 40 bits (36bits on most modern x86) */
3 #include <linux/init.h>
4 #include <linux/slab.h>
9 #include <asm/system.h>
10 #include <asm/cpufeature.h>
11 #include <asm/tlbflush.h>
15 struct mtrr_var_range *var_ranges;
16 mtrr_type fixed_ranges[NUM_FIXED_RANGES];
17 unsigned char enabled;
21 static unsigned long smp_changes_mask;
22 static struct mtrr_state mtrr_state = {};
24 /* Get the MSR pair relating to a var range */
26 get_mtrr_var_range(unsigned int index, struct mtrr_var_range *vr)
28 rdmsr(MTRRphysBase_MSR(index), vr->base_lo, vr->base_hi);
29 rdmsr(MTRRphysMask_MSR(index), vr->mask_lo, vr->mask_hi);
33 get_fixed_ranges(mtrr_type * frs)
35 unsigned int *p = (unsigned int *) frs;
38 rdmsr(MTRRfix64K_00000_MSR, p[0], p[1]);
40 for (i = 0; i < 2; i++)
41 rdmsr(MTRRfix16K_80000_MSR + i, p[2 + i * 2], p[3 + i * 2]);
42 for (i = 0; i < 8; i++)
43 rdmsr(MTRRfix4K_C0000_MSR + i, p[6 + i * 2], p[7 + i * 2]);
46 /* Grab all of the MTRR state for this CPU into *state */
47 void __init get_mtrr_state(void)
50 struct mtrr_var_range *vrs;
53 if (!mtrr_state.var_ranges) {
54 mtrr_state.var_ranges = kmalloc(num_var_ranges * sizeof (struct mtrr_var_range),
56 if (!mtrr_state.var_ranges)
59 vrs = mtrr_state.var_ranges;
61 for (i = 0; i < num_var_ranges; i++)
62 get_mtrr_var_range(i, &vrs[i]);
63 get_fixed_ranges(mtrr_state.fixed_ranges);
65 rdmsr(MTRRdefType_MSR, lo, dummy);
66 mtrr_state.def_type = (lo & 0xff);
67 mtrr_state.enabled = (lo & 0xc00) >> 10;
70 /* Some BIOS's are fucked and don't set all MTRRs the same! */
71 void __init mtrr_state_warn(void)
73 unsigned long mask = smp_changes_mask;
77 if (mask & MTRR_CHANGE_MASK_FIXED)
78 printk(KERN_WARNING "mtrr: your CPUs had inconsistent fixed MTRR settings\n");
79 if (mask & MTRR_CHANGE_MASK_VARIABLE)
80 printk(KERN_WARNING "mtrr: your CPUs had inconsistent variable MTRR settings\n");
81 if (mask & MTRR_CHANGE_MASK_DEFTYPE)
82 printk(KERN_WARNING "mtrr: your CPUs had inconsistent MTRRdefType settings\n");
83 printk(KERN_INFO "mtrr: probably your BIOS does not setup all CPUs.\n");
84 printk(KERN_INFO "mtrr: corrected configuration.\n");
87 /* Doesn't attempt to pass an error out to MTRR users
88 because it's quite complicated in some cases and probably not
89 worth it because the best error handling is to ignore it. */
90 void mtrr_wrmsr(unsigned msr, unsigned a, unsigned b)
92 if (wrmsr_safe(msr, a, b) < 0)
94 "MTRR: CPU %u: Writing MSR %x to %x:%x failed\n",
95 smp_processor_id(), msr, a, b);
98 int generic_get_free_region(unsigned long base, unsigned long size)
99 /* [SUMMARY] Get a free MTRR.
100 <base> The starting (base) address of the region.
101 <size> The size (in bytes) of the region.
102 [RETURNS] The index of the region on success, else -1 on error.
110 max = num_var_ranges;
111 for (i = 0; i < max; ++i) {
112 mtrr_if->get(i, &lbase, &lsize, <ype);
119 static void generic_get_mtrr(unsigned int reg, unsigned long *base,
120 unsigned int *size, mtrr_type * type)
122 unsigned int mask_lo, mask_hi, base_lo, base_hi;
124 rdmsr(MTRRphysMask_MSR(reg), mask_lo, mask_hi);
125 if ((mask_lo & 0x800) == 0) {
126 /* Invalid (i.e. free) range */
133 rdmsr(MTRRphysBase_MSR(reg), base_lo, base_hi);
135 /* Work out the shifted address mask. */
136 mask_lo = size_or_mask | mask_hi << (32 - PAGE_SHIFT)
137 | mask_lo >> PAGE_SHIFT;
139 /* This works correctly if size is a power of two, i.e. a
142 *base = base_hi << (32 - PAGE_SHIFT) | base_lo >> PAGE_SHIFT;
143 *type = base_lo & 0xff;
146 static int set_fixed_ranges(mtrr_type * frs)
148 unsigned int *p = (unsigned int *) frs;
153 rdmsr(MTRRfix64K_00000_MSR, lo, hi);
154 if (p[0] != lo || p[1] != hi) {
155 mtrr_wrmsr(MTRRfix64K_00000_MSR, p[0], p[1]);
159 for (i = 0; i < 2; i++) {
160 rdmsr(MTRRfix16K_80000_MSR + i, lo, hi);
161 if (p[2 + i * 2] != lo || p[3 + i * 2] != hi) {
162 mtrr_wrmsr(MTRRfix16K_80000_MSR + i, p[2 + i * 2],
168 for (i = 0; i < 8; i++) {
169 rdmsr(MTRRfix4K_C0000_MSR + i, lo, hi);
170 if (p[6 + i * 2] != lo || p[7 + i * 2] != hi) {
171 mtrr_wrmsr(MTRRfix4K_C0000_MSR + i, p[6 + i * 2],
179 /* Set the MSR pair relating to a var range. Returns TRUE if
181 static int set_mtrr_var_ranges(unsigned int index, struct mtrr_var_range *vr)
186 rdmsr(MTRRphysBase_MSR(index), lo, hi);
187 if ((vr->base_lo & 0xfffff0ffUL) != (lo & 0xfffff0ffUL)
188 || (vr->base_hi & (size_and_mask >> (32 - PAGE_SHIFT))) !=
189 (hi & (size_and_mask >> (32 - PAGE_SHIFT)))) {
190 mtrr_wrmsr(MTRRphysBase_MSR(index), vr->base_lo, vr->base_hi);
194 rdmsr(MTRRphysMask_MSR(index), lo, hi);
196 if ((vr->mask_lo & 0xfffff800UL) != (lo & 0xfffff800UL)
197 || (vr->mask_hi & (size_and_mask >> (32 - PAGE_SHIFT))) !=
198 (hi & (size_and_mask >> (32 - PAGE_SHIFT)))) {
199 mtrr_wrmsr(MTRRphysMask_MSR(index), vr->mask_lo, vr->mask_hi);
205 static unsigned long set_mtrr_state(u32 deftype_lo, u32 deftype_hi)
206 /* [SUMMARY] Set the MTRR state for this CPU.
207 <state> The MTRR state information to read.
208 <ctxt> Some relevant CPU context.
209 [NOTE] The CPU must already be in a safe state for MTRR changes.
210 [RETURNS] 0 if no changes made, else a mask indication what was changed.
214 unsigned long change_mask = 0;
216 for (i = 0; i < num_var_ranges; i++)
217 if (set_mtrr_var_ranges(i, &mtrr_state.var_ranges[i]))
218 change_mask |= MTRR_CHANGE_MASK_VARIABLE;
220 if (set_fixed_ranges(mtrr_state.fixed_ranges))
221 change_mask |= MTRR_CHANGE_MASK_FIXED;
223 /* Set_mtrr_restore restores the old value of MTRRdefType,
224 so to set it we fiddle with the saved value */
225 if ((deftype_lo & 0xff) != mtrr_state.def_type
226 || ((deftype_lo & 0xc00) >> 10) != mtrr_state.enabled) {
227 deftype_lo |= (mtrr_state.def_type | mtrr_state.enabled << 10);
228 change_mask |= MTRR_CHANGE_MASK_DEFTYPE;
235 static unsigned long cr4 = 0;
236 static u32 deftype_lo, deftype_hi;
237 static DEFINE_SPINLOCK(set_atomicity_lock);
240 * Since we are disabling the cache don't allow any interrupts - they
241 * would run extremely slow and would only increase the pain. The caller must
242 * ensure that local interrupts are disabled and are reenabled after post_set()
246 static void prepare_set(void)
250 /* Note that this is not ideal, since the cache is only flushed/disabled
251 for this CPU while the MTRRs are changed, but changing this requires
252 more invasive changes to the way the kernel boots */
254 spin_lock(&set_atomicity_lock);
256 /* Enter the no-fill (CD=1, NW=0) cache mode and flush caches. */
257 cr0 = read_cr0() | 0x40000000; /* set CD flag */
261 /* Save value of CR4 and clear Page Global Enable (bit 7) */
264 write_cr4(cr4 & ~X86_CR4_PGE);
267 /* Flush all TLBs via a mov %cr3, %reg; mov %reg, %cr3 */
270 /* Save MTRR state */
271 rdmsr(MTRRdefType_MSR, deftype_lo, deftype_hi);
273 /* Disable MTRRs, and set the default type to uncached */
274 mtrr_wrmsr(MTRRdefType_MSR, deftype_lo & 0xf300UL, deftype_hi);
277 static void post_set(void)
279 /* Flush TLBs (no need to flush caches - they are disabled) */
282 /* Intel (P6) standard MTRRs */
283 mtrr_wrmsr(MTRRdefType_MSR, deftype_lo, deftype_hi);
286 write_cr0(read_cr0() & 0xbfffffff);
288 /* Restore value of CR4 */
291 spin_unlock(&set_atomicity_lock);
294 static void generic_set_all(void)
296 unsigned long mask, count;
299 local_irq_save(flags);
302 /* Actually set the state */
303 mask = set_mtrr_state(deftype_lo,deftype_hi);
306 local_irq_restore(flags);
308 /* Use the atomic bitops to update the global mask */
309 for (count = 0; count < sizeof mask * 8; ++count) {
311 set_bit(count, &smp_changes_mask);
317 static void generic_set_mtrr(unsigned int reg, unsigned long base,
318 unsigned long size, mtrr_type type)
319 /* [SUMMARY] Set variable MTRR register on the local CPU.
320 <reg> The register to set.
321 <base> The base address of the region.
322 <size> The size of the region. If this is 0 the region is disabled.
323 <type> The type of the region.
324 <do_safe> If TRUE, do the change safely. If FALSE, safety measures should
330 struct mtrr_var_range *vr;
332 vr = &mtrr_state.var_ranges[reg];
334 local_irq_save(flags);
338 /* The invalid bit is kept in the mask, so we simply clear the
339 relevant mask register to disable a range. */
340 mtrr_wrmsr(MTRRphysMask_MSR(reg), 0, 0);
341 memset(vr, 0, sizeof(struct mtrr_var_range));
343 vr->base_lo = base << PAGE_SHIFT | type;
344 vr->base_hi = (base & size_and_mask) >> (32 - PAGE_SHIFT);
345 vr->mask_lo = -size << PAGE_SHIFT | 0x800;
346 vr->mask_hi = (-size & size_and_mask) >> (32 - PAGE_SHIFT);
348 mtrr_wrmsr(MTRRphysBase_MSR(reg), vr->base_lo, vr->base_hi);
349 mtrr_wrmsr(MTRRphysMask_MSR(reg), vr->mask_lo, vr->mask_hi);
353 local_irq_restore(flags);
356 int generic_validate_add_page(unsigned long base, unsigned long size, unsigned int type)
358 unsigned long lbase, last;
360 /* For Intel PPro stepping <= 7, must be 4 MiB aligned
361 and not touch 0x70000000->0x7003FFFF */
362 if (is_cpu(INTEL) && boot_cpu_data.x86 == 6 &&
363 boot_cpu_data.x86_model == 1 &&
364 boot_cpu_data.x86_mask <= 7) {
365 if (base & ((1 << (22 - PAGE_SHIFT)) - 1)) {
366 printk(KERN_WARNING "mtrr: base(0x%lx000) is not 4 MiB aligned\n", base);
369 if (!(base + size < 0x70000000 || base > 0x7003FFFF) &&
370 (type == MTRR_TYPE_WRCOMB
371 || type == MTRR_TYPE_WRBACK)) {
372 printk(KERN_WARNING "mtrr: writable mtrr between 0x70000000 and 0x7003FFFF may hang the CPU.\n");
377 if (base + size < 0x100) {
378 printk(KERN_WARNING "mtrr: cannot set region below 1 MiB (0x%lx000,0x%lx000)\n",
382 /* Check upper bits of base and last are equal and lower bits are 0
383 for base and 1 for last */
384 last = base + size - 1;
385 for (lbase = base; !(lbase & 1) && (last & 1);
386 lbase = lbase >> 1, last = last >> 1) ;
388 printk(KERN_WARNING "mtrr: base(0x%lx000) is not aligned on a size(0x%lx000) boundary\n",
396 static int generic_have_wrcomb(void)
398 unsigned long config, dummy;
399 rdmsr(MTRRcap_MSR, config, dummy);
400 return (config & (1 << 10));
403 int positive_have_wrcomb(void)
408 /* generic structure...
410 struct mtrr_ops generic_mtrr_ops = {
412 .set_all = generic_set_all,
413 .get = generic_get_mtrr,
414 .get_free_region = generic_get_free_region,
415 .set = generic_set_mtrr,
416 .validate_add_page = generic_validate_add_page,
417 .have_wrcomb = generic_have_wrcomb,