Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzi...
[pandora-kernel.git] / arch / x86 / kernel / cpu / mtrr / main.c
1 /*  Generic MTRR (Memory Type Range Register) driver.
2
3     Copyright (C) 1997-2000  Richard Gooch
4     Copyright (c) 2002       Patrick Mochel
5
6     This library is free software; you can redistribute it and/or
7     modify it under the terms of the GNU Library General Public
8     License as published by the Free Software Foundation; either
9     version 2 of the License, or (at your option) any later version.
10
11     This library is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14     Library General Public License for more details.
15
16     You should have received a copy of the GNU Library General Public
17     License along with this library; if not, write to the Free
18     Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     Richard Gooch may be reached by email at  rgooch@atnf.csiro.au
21     The postal address is:
22       Richard Gooch, c/o ATNF, P. O. Box 76, Epping, N.S.W., 2121, Australia.
23
24     Source: "Pentium Pro Family Developer's Manual, Volume 3:
25     Operating System Writer's Guide" (Intel document number 242692),
26     section 11.11.7
27
28     This was cleaned and made readable by Patrick Mochel <mochel@osdl.org>
29     on 6-7 March 2002.
30     Source: Intel Architecture Software Developers Manual, Volume 3:
31     System Programming Guide; Section 9.11. (1997 edition - PPro).
32 */
33
34 #define DEBUG
35
36 #include <linux/types.h> /* FIXME: kvm_para.h needs this */
37
38 #include <linux/stop_machine.h>
39 #include <linux/kvm_para.h>
40 #include <linux/uaccess.h>
41 #include <linux/module.h>
42 #include <linux/mutex.h>
43 #include <linux/init.h>
44 #include <linux/sort.h>
45 #include <linux/cpu.h>
46 #include <linux/pci.h>
47 #include <linux/smp.h>
48 #include <linux/syscore_ops.h>
49
50 #include <asm/processor.h>
51 #include <asm/e820.h>
52 #include <asm/mtrr.h>
53 #include <asm/msr.h>
54
55 #include "mtrr.h"
56
57 u32 num_var_ranges;
58
59 unsigned int mtrr_usage_table[MTRR_MAX_VAR_RANGES];
60 static DEFINE_MUTEX(mtrr_mutex);
61
62 u64 size_or_mask, size_and_mask;
63 static bool mtrr_aps_delayed_init;
64
65 static const struct mtrr_ops *mtrr_ops[X86_VENDOR_NUM];
66
67 const struct mtrr_ops *mtrr_if;
68
69 static void set_mtrr(unsigned int reg, unsigned long base,
70                      unsigned long size, mtrr_type type);
71
72 void set_mtrr_ops(const struct mtrr_ops *ops)
73 {
74         if (ops->vendor && ops->vendor < X86_VENDOR_NUM)
75                 mtrr_ops[ops->vendor] = ops;
76 }
77
78 /*  Returns non-zero if we have the write-combining memory type  */
79 static int have_wrcomb(void)
80 {
81         struct pci_dev *dev;
82
83         dev = pci_get_class(PCI_CLASS_BRIDGE_HOST << 8, NULL);
84         if (dev != NULL) {
85                 /*
86                  * ServerWorks LE chipsets < rev 6 have problems with
87                  * write-combining. Don't allow it and leave room for other
88                  * chipsets to be tagged
89                  */
90                 if (dev->vendor == PCI_VENDOR_ID_SERVERWORKS &&
91                     dev->device == PCI_DEVICE_ID_SERVERWORKS_LE &&
92                     dev->revision <= 5) {
93                         pr_info("mtrr: Serverworks LE rev < 6 detected. Write-combining disabled.\n");
94                         pci_dev_put(dev);
95                         return 0;
96                 }
97                 /*
98                  * Intel 450NX errata # 23. Non ascending cacheline evictions to
99                  * write combining memory may resulting in data corruption
100                  */
101                 if (dev->vendor == PCI_VENDOR_ID_INTEL &&
102                     dev->device == PCI_DEVICE_ID_INTEL_82451NX) {
103                         pr_info("mtrr: Intel 450NX MMC detected. Write-combining disabled.\n");
104                         pci_dev_put(dev);
105                         return 0;
106                 }
107                 pci_dev_put(dev);
108         }
109         return mtrr_if->have_wrcomb ? mtrr_if->have_wrcomb() : 0;
110 }
111
112 /*  This function returns the number of variable MTRRs  */
113 static void __init set_num_var_ranges(void)
114 {
115         unsigned long config = 0, dummy;
116
117         if (use_intel())
118                 rdmsr(MSR_MTRRcap, config, dummy);
119         else if (is_cpu(AMD))
120                 config = 2;
121         else if (is_cpu(CYRIX) || is_cpu(CENTAUR))
122                 config = 8;
123
124         num_var_ranges = config & 0xff;
125 }
126
127 static void __init init_table(void)
128 {
129         int i, max;
130
131         max = num_var_ranges;
132         for (i = 0; i < max; i++)
133                 mtrr_usage_table[i] = 1;
134 }
135
136 struct set_mtrr_data {
137         unsigned long   smp_base;
138         unsigned long   smp_size;
139         unsigned int    smp_reg;
140         mtrr_type       smp_type;
141 };
142
143 /**
144  * mtrr_rendezvous_handler - Work done in the synchronization handler. Executed
145  * by all the CPUs.
146  * @info: pointer to mtrr configuration data
147  *
148  * Returns nothing.
149  */
150 static int mtrr_rendezvous_handler(void *info)
151 {
152 #ifdef CONFIG_SMP
153         struct set_mtrr_data *data = info;
154
155         /*
156          * We use this same function to initialize the mtrrs during boot,
157          * resume, runtime cpu online and on an explicit request to set a
158          * specific MTRR.
159          *
160          * During boot or suspend, the state of the boot cpu's mtrrs has been
161          * saved, and we want to replicate that across all the cpus that come
162          * online (either at the end of boot or resume or during a runtime cpu
163          * online). If we're doing that, @reg is set to something special and on
164          * all the cpu's we do mtrr_if->set_all() (On the logical cpu that
165          * started the boot/resume sequence, this might be a duplicate
166          * set_all()).
167          */
168         if (data->smp_reg != ~0U) {
169                 mtrr_if->set(data->smp_reg, data->smp_base,
170                              data->smp_size, data->smp_type);
171         } else if (mtrr_aps_delayed_init || !cpu_online(smp_processor_id())) {
172                 mtrr_if->set_all();
173         }
174 #endif
175         return 0;
176 }
177
178 static inline int types_compatible(mtrr_type type1, mtrr_type type2)
179 {
180         return type1 == MTRR_TYPE_UNCACHABLE ||
181                type2 == MTRR_TYPE_UNCACHABLE ||
182                (type1 == MTRR_TYPE_WRTHROUGH && type2 == MTRR_TYPE_WRBACK) ||
183                (type1 == MTRR_TYPE_WRBACK && type2 == MTRR_TYPE_WRTHROUGH);
184 }
185
186 /**
187  * set_mtrr - update mtrrs on all processors
188  * @reg:        mtrr in question
189  * @base:       mtrr base
190  * @size:       mtrr size
191  * @type:       mtrr type
192  *
193  * This is kinda tricky, but fortunately, Intel spelled it out for us cleanly:
194  *
195  * 1. Queue work to do the following on all processors:
196  * 2. Disable Interrupts
197  * 3. Wait for all procs to do so
198  * 4. Enter no-fill cache mode
199  * 5. Flush caches
200  * 6. Clear PGE bit
201  * 7. Flush all TLBs
202  * 8. Disable all range registers
203  * 9. Update the MTRRs
204  * 10. Enable all range registers
205  * 11. Flush all TLBs and caches again
206  * 12. Enter normal cache mode and reenable caching
207  * 13. Set PGE
208  * 14. Wait for buddies to catch up
209  * 15. Enable interrupts.
210  *
211  * What does that mean for us? Well, stop_machine() will ensure that
212  * the rendezvous handler is started on each CPU. And in lockstep they
213  * do the state transition of disabling interrupts, updating MTRR's
214  * (the CPU vendors may each do it differently, so we call mtrr_if->set()
215  * callback and let them take care of it.) and enabling interrupts.
216  *
217  * Note that the mechanism is the same for UP systems, too; all the SMP stuff
218  * becomes nops.
219  */
220 static void
221 set_mtrr(unsigned int reg, unsigned long base, unsigned long size, mtrr_type type)
222 {
223         struct set_mtrr_data data = { .smp_reg = reg,
224                                       .smp_base = base,
225                                       .smp_size = size,
226                                       .smp_type = type
227                                     };
228
229         stop_machine(mtrr_rendezvous_handler, &data, cpu_online_mask);
230 }
231
232 static void set_mtrr_from_inactive_cpu(unsigned int reg, unsigned long base,
233                                       unsigned long size, mtrr_type type)
234 {
235         struct set_mtrr_data data = { .smp_reg = reg,
236                                       .smp_base = base,
237                                       .smp_size = size,
238                                       .smp_type = type
239                                     };
240
241         stop_machine_from_inactive_cpu(mtrr_rendezvous_handler, &data,
242                                        cpu_callout_mask);
243 }
244
245 /**
246  * mtrr_add_page - Add a memory type region
247  * @base: Physical base address of region in pages (in units of 4 kB!)
248  * @size: Physical size of region in pages (4 kB)
249  * @type: Type of MTRR desired
250  * @increment: If this is true do usage counting on the region
251  *
252  * Memory type region registers control the caching on newer Intel and
253  * non Intel processors. This function allows drivers to request an
254  * MTRR is added. The details and hardware specifics of each processor's
255  * implementation are hidden from the caller, but nevertheless the
256  * caller should expect to need to provide a power of two size on an
257  * equivalent power of two boundary.
258  *
259  * If the region cannot be added either because all regions are in use
260  * or the CPU cannot support it a negative value is returned. On success
261  * the register number for this entry is returned, but should be treated
262  * as a cookie only.
263  *
264  * On a multiprocessor machine the changes are made to all processors.
265  * This is required on x86 by the Intel processors.
266  *
267  * The available types are
268  *
269  * %MTRR_TYPE_UNCACHABLE - No caching
270  *
271  * %MTRR_TYPE_WRBACK - Write data back in bursts whenever
272  *
273  * %MTRR_TYPE_WRCOMB - Write data back soon but allow bursts
274  *
275  * %MTRR_TYPE_WRTHROUGH - Cache reads but not writes
276  *
277  * BUGS: Needs a quiet flag for the cases where drivers do not mind
278  * failures and do not wish system log messages to be sent.
279  */
280 int mtrr_add_page(unsigned long base, unsigned long size,
281                   unsigned int type, bool increment)
282 {
283         unsigned long lbase, lsize;
284         int i, replace, error;
285         mtrr_type ltype;
286
287         if (!mtrr_if)
288                 return -ENXIO;
289
290         error = mtrr_if->validate_add_page(base, size, type);
291         if (error)
292                 return error;
293
294         if (type >= MTRR_NUM_TYPES) {
295                 pr_warning("mtrr: type: %u invalid\n", type);
296                 return -EINVAL;
297         }
298
299         /* If the type is WC, check that this processor supports it */
300         if ((type == MTRR_TYPE_WRCOMB) && !have_wrcomb()) {
301                 pr_warning("mtrr: your processor doesn't support write-combining\n");
302                 return -ENOSYS;
303         }
304
305         if (!size) {
306                 pr_warning("mtrr: zero sized request\n");
307                 return -EINVAL;
308         }
309
310         if (base & size_or_mask || size & size_or_mask) {
311                 pr_warning("mtrr: base or size exceeds the MTRR width\n");
312                 return -EINVAL;
313         }
314
315         error = -EINVAL;
316         replace = -1;
317
318         /* No CPU hotplug when we change MTRR entries */
319         get_online_cpus();
320
321         /* Search for existing MTRR  */
322         mutex_lock(&mtrr_mutex);
323         for (i = 0; i < num_var_ranges; ++i) {
324                 mtrr_if->get(i, &lbase, &lsize, &ltype);
325                 if (!lsize || base > lbase + lsize - 1 ||
326                     base + size - 1 < lbase)
327                         continue;
328                 /*
329                  * At this point we know there is some kind of
330                  * overlap/enclosure
331                  */
332                 if (base < lbase || base + size - 1 > lbase + lsize - 1) {
333                         if (base <= lbase &&
334                             base + size - 1 >= lbase + lsize - 1) {
335                                 /*  New region encloses an existing region  */
336                                 if (type == ltype) {
337                                         replace = replace == -1 ? i : -2;
338                                         continue;
339                                 } else if (types_compatible(type, ltype))
340                                         continue;
341                         }
342                         pr_warning("mtrr: 0x%lx000,0x%lx000 overlaps existing"
343                                 " 0x%lx000,0x%lx000\n", base, size, lbase,
344                                 lsize);
345                         goto out;
346                 }
347                 /* New region is enclosed by an existing region */
348                 if (ltype != type) {
349                         if (types_compatible(type, ltype))
350                                 continue;
351                         pr_warning("mtrr: type mismatch for %lx000,%lx000 old: %s new: %s\n",
352                                 base, size, mtrr_attrib_to_str(ltype),
353                                 mtrr_attrib_to_str(type));
354                         goto out;
355                 }
356                 if (increment)
357                         ++mtrr_usage_table[i];
358                 error = i;
359                 goto out;
360         }
361         /* Search for an empty MTRR */
362         i = mtrr_if->get_free_region(base, size, replace);
363         if (i >= 0) {
364                 set_mtrr(i, base, size, type);
365                 if (likely(replace < 0)) {
366                         mtrr_usage_table[i] = 1;
367                 } else {
368                         mtrr_usage_table[i] = mtrr_usage_table[replace];
369                         if (increment)
370                                 mtrr_usage_table[i]++;
371                         if (unlikely(replace != i)) {
372                                 set_mtrr(replace, 0, 0, 0);
373                                 mtrr_usage_table[replace] = 0;
374                         }
375                 }
376         } else {
377                 pr_info("mtrr: no more MTRRs available\n");
378         }
379         error = i;
380  out:
381         mutex_unlock(&mtrr_mutex);
382         put_online_cpus();
383         return error;
384 }
385
386 static int mtrr_check(unsigned long base, unsigned long size)
387 {
388         if ((base & (PAGE_SIZE - 1)) || (size & (PAGE_SIZE - 1))) {
389                 pr_warning("mtrr: size and base must be multiples of 4 kiB\n");
390                 pr_debug("mtrr: size: 0x%lx  base: 0x%lx\n", size, base);
391                 dump_stack();
392                 return -1;
393         }
394         return 0;
395 }
396
397 /**
398  * mtrr_add - Add a memory type region
399  * @base: Physical base address of region
400  * @size: Physical size of region
401  * @type: Type of MTRR desired
402  * @increment: If this is true do usage counting on the region
403  *
404  * Memory type region registers control the caching on newer Intel and
405  * non Intel processors. This function allows drivers to request an
406  * MTRR is added. The details and hardware specifics of each processor's
407  * implementation are hidden from the caller, but nevertheless the
408  * caller should expect to need to provide a power of two size on an
409  * equivalent power of two boundary.
410  *
411  * If the region cannot be added either because all regions are in use
412  * or the CPU cannot support it a negative value is returned. On success
413  * the register number for this entry is returned, but should be treated
414  * as a cookie only.
415  *
416  * On a multiprocessor machine the changes are made to all processors.
417  * This is required on x86 by the Intel processors.
418  *
419  * The available types are
420  *
421  * %MTRR_TYPE_UNCACHABLE - No caching
422  *
423  * %MTRR_TYPE_WRBACK - Write data back in bursts whenever
424  *
425  * %MTRR_TYPE_WRCOMB - Write data back soon but allow bursts
426  *
427  * %MTRR_TYPE_WRTHROUGH - Cache reads but not writes
428  *
429  * BUGS: Needs a quiet flag for the cases where drivers do not mind
430  * failures and do not wish system log messages to be sent.
431  */
432 int mtrr_add(unsigned long base, unsigned long size, unsigned int type,
433              bool increment)
434 {
435         if (mtrr_check(base, size))
436                 return -EINVAL;
437         return mtrr_add_page(base >> PAGE_SHIFT, size >> PAGE_SHIFT, type,
438                              increment);
439 }
440 EXPORT_SYMBOL(mtrr_add);
441
442 /**
443  * mtrr_del_page - delete a memory type region
444  * @reg: Register returned by mtrr_add
445  * @base: Physical base address
446  * @size: Size of region
447  *
448  * If register is supplied then base and size are ignored. This is
449  * how drivers should call it.
450  *
451  * Releases an MTRR region. If the usage count drops to zero the
452  * register is freed and the region returns to default state.
453  * On success the register is returned, on failure a negative error
454  * code.
455  */
456 int mtrr_del_page(int reg, unsigned long base, unsigned long size)
457 {
458         int i, max;
459         mtrr_type ltype;
460         unsigned long lbase, lsize;
461         int error = -EINVAL;
462
463         if (!mtrr_if)
464                 return -ENXIO;
465
466         max = num_var_ranges;
467         /* No CPU hotplug when we change MTRR entries */
468         get_online_cpus();
469         mutex_lock(&mtrr_mutex);
470         if (reg < 0) {
471                 /*  Search for existing MTRR  */
472                 for (i = 0; i < max; ++i) {
473                         mtrr_if->get(i, &lbase, &lsize, &ltype);
474                         if (lbase == base && lsize == size) {
475                                 reg = i;
476                                 break;
477                         }
478                 }
479                 if (reg < 0) {
480                         pr_debug("mtrr: no MTRR for %lx000,%lx000 found\n",
481                                  base, size);
482                         goto out;
483                 }
484         }
485         if (reg >= max) {
486                 pr_warning("mtrr: register: %d too big\n", reg);
487                 goto out;
488         }
489         mtrr_if->get(reg, &lbase, &lsize, &ltype);
490         if (lsize < 1) {
491                 pr_warning("mtrr: MTRR %d not used\n", reg);
492                 goto out;
493         }
494         if (mtrr_usage_table[reg] < 1) {
495                 pr_warning("mtrr: reg: %d has count=0\n", reg);
496                 goto out;
497         }
498         if (--mtrr_usage_table[reg] < 1)
499                 set_mtrr(reg, 0, 0, 0);
500         error = reg;
501  out:
502         mutex_unlock(&mtrr_mutex);
503         put_online_cpus();
504         return error;
505 }
506
507 /**
508  * mtrr_del - delete a memory type region
509  * @reg: Register returned by mtrr_add
510  * @base: Physical base address
511  * @size: Size of region
512  *
513  * If register is supplied then base and size are ignored. This is
514  * how drivers should call it.
515  *
516  * Releases an MTRR region. If the usage count drops to zero the
517  * register is freed and the region returns to default state.
518  * On success the register is returned, on failure a negative error
519  * code.
520  */
521 int mtrr_del(int reg, unsigned long base, unsigned long size)
522 {
523         if (mtrr_check(base, size))
524                 return -EINVAL;
525         return mtrr_del_page(reg, base >> PAGE_SHIFT, size >> PAGE_SHIFT);
526 }
527 EXPORT_SYMBOL(mtrr_del);
528
529 /*
530  * HACK ALERT!
531  * These should be called implicitly, but we can't yet until all the initcall
532  * stuff is done...
533  */
534 static void __init init_ifs(void)
535 {
536 #ifndef CONFIG_X86_64
537         amd_init_mtrr();
538         cyrix_init_mtrr();
539         centaur_init_mtrr();
540 #endif
541 }
542
543 /* The suspend/resume methods are only for CPU without MTRR. CPU using generic
544  * MTRR driver doesn't require this
545  */
546 struct mtrr_value {
547         mtrr_type       ltype;
548         unsigned long   lbase;
549         unsigned long   lsize;
550 };
551
552 static struct mtrr_value mtrr_value[MTRR_MAX_VAR_RANGES];
553
554 static int mtrr_save(void)
555 {
556         int i;
557
558         for (i = 0; i < num_var_ranges; i++) {
559                 mtrr_if->get(i, &mtrr_value[i].lbase,
560                                 &mtrr_value[i].lsize,
561                                 &mtrr_value[i].ltype);
562         }
563         return 0;
564 }
565
566 static void mtrr_restore(void)
567 {
568         int i;
569
570         for (i = 0; i < num_var_ranges; i++) {
571                 if (mtrr_value[i].lsize) {
572                         set_mtrr(i, mtrr_value[i].lbase,
573                                     mtrr_value[i].lsize,
574                                     mtrr_value[i].ltype);
575                 }
576         }
577 }
578
579
580
581 static struct syscore_ops mtrr_syscore_ops = {
582         .suspend        = mtrr_save,
583         .resume         = mtrr_restore,
584 };
585
586 int __initdata changed_by_mtrr_cleanup;
587
588 /**
589  * mtrr_bp_init - initialize mtrrs on the boot CPU
590  *
591  * This needs to be called early; before any of the other CPUs are
592  * initialized (i.e. before smp_init()).
593  *
594  */
595 void __init mtrr_bp_init(void)
596 {
597         u32 phys_addr;
598
599         init_ifs();
600
601         phys_addr = 32;
602
603         if (cpu_has_mtrr) {
604                 mtrr_if = &generic_mtrr_ops;
605                 size_or_mask = 0xff000000;                      /* 36 bits */
606                 size_and_mask = 0x00f00000;
607                 phys_addr = 36;
608
609                 /*
610                  * This is an AMD specific MSR, but we assume(hope?) that
611                  * Intel will implement it to when they extend the address
612                  * bus of the Xeon.
613                  */
614                 if (cpuid_eax(0x80000000) >= 0x80000008) {
615                         phys_addr = cpuid_eax(0x80000008) & 0xff;
616                         /* CPUID workaround for Intel 0F33/0F34 CPU */
617                         if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
618                             boot_cpu_data.x86 == 0xF &&
619                             boot_cpu_data.x86_model == 0x3 &&
620                             (boot_cpu_data.x86_mask == 0x3 ||
621                              boot_cpu_data.x86_mask == 0x4))
622                                 phys_addr = 36;
623
624                         size_or_mask = ~((1ULL << (phys_addr - PAGE_SHIFT)) - 1);
625                         size_and_mask = ~size_or_mask & 0xfffff00000ULL;
626                 } else if (boot_cpu_data.x86_vendor == X86_VENDOR_CENTAUR &&
627                            boot_cpu_data.x86 == 6) {
628                         /*
629                          * VIA C* family have Intel style MTRRs,
630                          * but don't support PAE
631                          */
632                         size_or_mask = 0xfff00000;              /* 32 bits */
633                         size_and_mask = 0;
634                         phys_addr = 32;
635                 }
636         } else {
637                 switch (boot_cpu_data.x86_vendor) {
638                 case X86_VENDOR_AMD:
639                         if (cpu_has_k6_mtrr) {
640                                 /* Pre-Athlon (K6) AMD CPU MTRRs */
641                                 mtrr_if = mtrr_ops[X86_VENDOR_AMD];
642                                 size_or_mask = 0xfff00000;      /* 32 bits */
643                                 size_and_mask = 0;
644                         }
645                         break;
646                 case X86_VENDOR_CENTAUR:
647                         if (cpu_has_centaur_mcr) {
648                                 mtrr_if = mtrr_ops[X86_VENDOR_CENTAUR];
649                                 size_or_mask = 0xfff00000;      /* 32 bits */
650                                 size_and_mask = 0;
651                         }
652                         break;
653                 case X86_VENDOR_CYRIX:
654                         if (cpu_has_cyrix_arr) {
655                                 mtrr_if = mtrr_ops[X86_VENDOR_CYRIX];
656                                 size_or_mask = 0xfff00000;      /* 32 bits */
657                                 size_and_mask = 0;
658                         }
659                         break;
660                 default:
661                         break;
662                 }
663         }
664
665         if (mtrr_if) {
666                 set_num_var_ranges();
667                 init_table();
668                 if (use_intel()) {
669                         get_mtrr_state();
670
671                         if (mtrr_cleanup(phys_addr)) {
672                                 changed_by_mtrr_cleanup = 1;
673                                 mtrr_if->set_all();
674                         }
675                 }
676         }
677 }
678
679 void mtrr_ap_init(void)
680 {
681         if (!use_intel() || mtrr_aps_delayed_init)
682                 return;
683         /*
684          * Ideally we should hold mtrr_mutex here to avoid mtrr entries
685          * changed, but this routine will be called in cpu boot time,
686          * holding the lock breaks it.
687          *
688          * This routine is called in two cases:
689          *
690          *   1. very earily time of software resume, when there absolutely
691          *      isn't mtrr entry changes;
692          *
693          *   2. cpu hotadd time. We let mtrr_add/del_page hold cpuhotplug
694          *      lock to prevent mtrr entry changes
695          */
696         set_mtrr_from_inactive_cpu(~0U, 0, 0, 0);
697 }
698
699 /**
700  * Save current fixed-range MTRR state of the BSP
701  */
702 void mtrr_save_state(void)
703 {
704         smp_call_function_single(0, mtrr_save_fixed_ranges, NULL, 1);
705 }
706
707 void set_mtrr_aps_delayed_init(void)
708 {
709         if (!use_intel())
710                 return;
711
712         mtrr_aps_delayed_init = true;
713 }
714
715 /*
716  * Delayed MTRR initialization for all AP's
717  */
718 void mtrr_aps_init(void)
719 {
720         if (!use_intel())
721                 return;
722
723         /*
724          * Check if someone has requested the delay of AP MTRR initialization,
725          * by doing set_mtrr_aps_delayed_init(), prior to this point. If not,
726          * then we are done.
727          */
728         if (!mtrr_aps_delayed_init)
729                 return;
730
731         set_mtrr(~0U, 0, 0, 0);
732         mtrr_aps_delayed_init = false;
733 }
734
735 void mtrr_bp_restore(void)
736 {
737         if (!use_intel())
738                 return;
739
740         mtrr_if->set_all();
741 }
742
743 static int __init mtrr_init_finialize(void)
744 {
745         if (!mtrr_if)
746                 return 0;
747
748         if (use_intel()) {
749                 if (!changed_by_mtrr_cleanup)
750                         mtrr_state_warn();
751                 return 0;
752         }
753
754         /*
755          * The CPU has no MTRR and seems to not support SMP. They have
756          * specific drivers, we use a tricky method to support
757          * suspend/resume for them.
758          *
759          * TBD: is there any system with such CPU which supports
760          * suspend/resume? If no, we should remove the code.
761          */
762         register_syscore_ops(&mtrr_syscore_ops);
763
764         return 0;
765 }
766 subsys_initcall(mtrr_init_finialize);