blob: e7ed0d8ebacb158833ea248c2d3efb6d2d6379de [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +053028 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:
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 System Programming Guide; Section 9.11. (1997 edition - PPro).
32*/
33
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +053034#define DEBUG
35
36#include <linux/types.h> /* FIXME: kvm_para.h needs this */
37
Suresh Siddha68f202e2010-07-30 11:46:42 -070038#include <linux/stop_machine.h>
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +053039#include <linux/kvm_para.h>
40#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/module.h>
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +053042#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/init.h>
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +053044#include <linux/sort.h>
45#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/pci.h>
47#include <linux/smp.h>
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +010048#include <linux/syscore_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +053050#include <asm/processor.h>
Jesse Barnes99fc8d42008-01-30 13:33:18 +010051#include <asm/e820.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/mtrr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/msr.h>
Andy Lutomirskid0d98ee2013-05-13 23:58:40 +000054#include <asm/pat.h>
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +053055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include "mtrr.h"
57
Andy Lutomirskid0d98ee2013-05-13 23:58:40 +000058/* arch_phys_wc_add returns an MTRR register index plus this offset. */
59#define MTRR_TO_PHYS_WC_OFFSET 1000
60
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +053061u32 num_var_ranges;
Luis R. Rodriguezf9626102015-05-26 10:28:14 +020062static bool __mtrr_enabled;
63
64static bool mtrr_enabled(void)
65{
66 return __mtrr_enabled;
67}
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Sheng Yangb558bc02008-10-09 16:01:52 +080069unsigned int mtrr_usage_table[MTRR_MAX_VAR_RANGES];
Ingo Molnar14cc3e22006-03-26 01:37:14 -080070static DEFINE_MUTEX(mtrr_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Andreas Herrmann6c5806c2007-02-13 13:26:23 +010072u64 size_or_mask, size_and_mask;
H. Peter Anvin54007432009-08-21 17:00:02 -070073static bool mtrr_aps_delayed_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Emese Revfy3b9cfc02010-01-31 20:16:34 +010075static const struct mtrr_ops *mtrr_ops[X86_VENDOR_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Emese Revfy3b9cfc02010-01-31 20:16:34 +010077const struct mtrr_ops *mtrr_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79static void set_mtrr(unsigned int reg, unsigned long base,
80 unsigned long size, mtrr_type type);
81
Emese Revfy3b9cfc02010-01-31 20:16:34 +010082void set_mtrr_ops(const struct mtrr_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 if (ops->vendor && ops->vendor < X86_VENDOR_NUM)
85 mtrr_ops[ops->vendor] = ops;
86}
87
88/* Returns non-zero if we have the write-combining memory type */
89static int have_wrcomb(void)
90{
91 struct pci_dev *dev;
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +053092
93 dev = pci_get_class(PCI_CLASS_BRIDGE_HOST << 8, NULL);
94 if (dev != NULL) {
95 /*
96 * ServerWorks LE chipsets < rev 6 have problems with
97 * write-combining. Don't allow it and leave room for other
98 * chipsets to be tagged
99 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (dev->vendor == PCI_VENDOR_ID_SERVERWORKS &&
Sergei Shtylyov50c31e42011-07-01 22:42:08 +0400101 dev->device == PCI_DEVICE_ID_SERVERWORKS_LE &&
102 dev->revision <= 5) {
103 pr_info("mtrr: Serverworks LE rev < 6 detected. Write-combining disabled.\n");
104 pci_dev_put(dev);
105 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530107 /*
108 * Intel 450NX errata # 23. Non ascending cacheline evictions to
109 * write combining memory may resulting in data corruption
110 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if (dev->vendor == PCI_VENDOR_ID_INTEL &&
112 dev->device == PCI_DEVICE_ID_INTEL_82451NX) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530113 pr_info("mtrr: Intel 450NX MMC detected. Write-combining disabled.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 pci_dev_put(dev);
115 return 0;
116 }
117 pci_dev_put(dev);
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530118 }
119 return mtrr_if->have_wrcomb ? mtrr_if->have_wrcomb() : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
122/* This function returns the number of variable MTRRs */
123static void __init set_num_var_ranges(void)
124{
125 unsigned long config = 0, dummy;
126
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530127 if (use_intel())
Jaswinder Singh Rajputd9bcc012009-05-14 12:06:12 +0530128 rdmsr(MSR_MTRRcap, config, dummy);
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530129 else if (is_cpu(AMD))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 config = 2;
131 else if (is_cpu(CYRIX) || is_cpu(CENTAUR))
132 config = 8;
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 num_var_ranges = config & 0xff;
135}
136
137static void __init init_table(void)
138{
139 int i, max;
140
141 max = num_var_ranges;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 for (i = 0; i < max; i++)
Jesse Barnes99fc8d42008-01-30 13:33:18 +0100143 mtrr_usage_table[i] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146struct set_mtrr_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 unsigned long smp_base;
148 unsigned long smp_size;
149 unsigned int smp_reg;
150 mtrr_type smp_type;
151};
152
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530153/**
Suresh Siddha192d8852011-06-23 11:19:29 -0700154 * mtrr_rendezvous_handler - Work done in the synchronization handler. Executed
155 * by all the CPUs.
Randy Dunlap6c550ee2010-03-05 09:52:52 -0800156 * @info: pointer to mtrr configuration data
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530157 *
158 * Returns nothing.
159 */
Suresh Siddha192d8852011-06-23 11:19:29 -0700160static int mtrr_rendezvous_handler(void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 struct set_mtrr_data *data = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Suresh Siddha192d8852011-06-23 11:19:29 -0700164 /*
165 * We use this same function to initialize the mtrrs during boot,
166 * resume, runtime cpu online and on an explicit request to set a
167 * specific MTRR.
168 *
169 * During boot or suspend, the state of the boot cpu's mtrrs has been
170 * saved, and we want to replicate that across all the cpus that come
171 * online (either at the end of boot or resume or during a runtime cpu
172 * online). If we're doing that, @reg is set to something special and on
173 * all the cpu's we do mtrr_if->set_all() (On the logical cpu that
174 * started the boot/resume sequence, this might be a duplicate
175 * set_all()).
176 */
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530177 if (data->smp_reg != ~0U) {
178 mtrr_if->set(data->smp_reg, data->smp_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 data->smp_size, data->smp_type);
Suresh Siddha192d8852011-06-23 11:19:29 -0700180 } else if (mtrr_aps_delayed_init || !cpu_online(smp_processor_id())) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 mtrr_if->set_all();
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530182 }
Suresh Siddha68f202e2010-07-30 11:46:42 -0700183 return 0;
Ingo Molnar4e2947f2007-11-09 22:39:38 +0100184}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530186static inline int types_compatible(mtrr_type type1, mtrr_type type2)
187{
Jan Beulich365bff82006-12-07 02:14:09 +0100188 return type1 == MTRR_TYPE_UNCACHABLE ||
189 type2 == MTRR_TYPE_UNCACHABLE ||
190 (type1 == MTRR_TYPE_WRTHROUGH && type2 == MTRR_TYPE_WRBACK) ||
191 (type1 == MTRR_TYPE_WRBACK && type2 == MTRR_TYPE_WRTHROUGH);
192}
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/**
195 * set_mtrr - update mtrrs on all processors
196 * @reg: mtrr in question
197 * @base: mtrr base
198 * @size: mtrr size
199 * @type: mtrr type
200 *
201 * This is kinda tricky, but fortunately, Intel spelled it out for us cleanly:
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530202 *
Suresh Siddha68f202e2010-07-30 11:46:42 -0700203 * 1. Queue work to do the following on all processors:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 * 2. Disable Interrupts
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530205 * 3. Wait for all procs to do so
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 * 4. Enter no-fill cache mode
207 * 5. Flush caches
208 * 6. Clear PGE bit
209 * 7. Flush all TLBs
210 * 8. Disable all range registers
211 * 9. Update the MTRRs
212 * 10. Enable all range registers
213 * 11. Flush all TLBs and caches again
214 * 12. Enter normal cache mode and reenable caching
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530215 * 13. Set PGE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 * 14. Wait for buddies to catch up
217 * 15. Enable interrupts.
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530218 *
Suresh Siddha192d8852011-06-23 11:19:29 -0700219 * What does that mean for us? Well, stop_machine() will ensure that
220 * the rendezvous handler is started on each CPU. And in lockstep they
221 * do the state transition of disabling interrupts, updating MTRR's
222 * (the CPU vendors may each do it differently, so we call mtrr_if->set()
223 * callback and let them take care of it.) and enabling interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 *
225 * Note that the mechanism is the same for UP systems, too; all the SMP stuff
226 * becomes nops.
227 */
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530228static void
229set_mtrr(unsigned int reg, unsigned long base, unsigned long size, mtrr_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Suresh Siddha192d8852011-06-23 11:19:29 -0700231 struct set_mtrr_data data = { .smp_reg = reg,
232 .smp_base = base,
233 .smp_size = size,
234 .smp_type = type
235 };
Suresh Siddha68f202e2010-07-30 11:46:42 -0700236
Suresh Siddha192d8852011-06-23 11:19:29 -0700237 stop_machine(mtrr_rendezvous_handler, &data, cpu_online_mask);
238}
Suresh Siddha6d3321e2011-06-23 11:19:26 -0700239
Suresh Siddha192d8852011-06-23 11:19:29 -0700240static void set_mtrr_from_inactive_cpu(unsigned int reg, unsigned long base,
241 unsigned long size, mtrr_type type)
242{
243 struct set_mtrr_data data = { .smp_reg = reg,
244 .smp_base = base,
245 .smp_size = size,
246 .smp_type = type
247 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Suresh Siddha192d8852011-06-23 11:19:29 -0700249 stop_machine_from_inactive_cpu(mtrr_rendezvous_handler, &data,
250 cpu_callout_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253/**
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530254 * mtrr_add_page - Add a memory type region
255 * @base: Physical base address of region in pages (in units of 4 kB!)
256 * @size: Physical size of region in pages (4 kB)
257 * @type: Type of MTRR desired
258 * @increment: If this is true do usage counting on the region
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530260 * Memory type region registers control the caching on newer Intel and
261 * non Intel processors. This function allows drivers to request an
262 * MTRR is added. The details and hardware specifics of each processor's
263 * implementation are hidden from the caller, but nevertheless the
264 * caller should expect to need to provide a power of two size on an
265 * equivalent power of two boundary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530267 * If the region cannot be added either because all regions are in use
268 * or the CPU cannot support it a negative value is returned. On success
269 * the register number for this entry is returned, but should be treated
270 * as a cookie only.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530272 * On a multiprocessor machine the changes are made to all processors.
273 * This is required on x86 by the Intel processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530275 * The available types are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530277 * %MTRR_TYPE_UNCACHABLE - No caching
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530279 * %MTRR_TYPE_WRBACK - Write data back in bursts whenever
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530281 * %MTRR_TYPE_WRCOMB - Write data back soon but allow bursts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530283 * %MTRR_TYPE_WRTHROUGH - Cache reads but not writes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530285 * BUGS: Needs a quiet flag for the cases where drivers do not mind
286 * failures and do not wish system log messages to be sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 */
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530288int mtrr_add_page(unsigned long base, unsigned long size,
Paul Jimenez2d2ee8d2008-01-30 13:30:31 +0100289 unsigned int type, bool increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530291 unsigned long lbase, lsize;
Jan Beulich365bff82006-12-07 02:14:09 +0100292 int i, replace, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 mtrr_type ltype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Luis R. Rodriguezf9626102015-05-26 10:28:14 +0200295 if (!mtrr_enabled())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return -ENXIO;
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530297
298 error = mtrr_if->validate_add_page(base, size, type);
299 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return error;
301
302 if (type >= MTRR_NUM_TYPES) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530303 pr_warning("mtrr: type: %u invalid\n", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return -EINVAL;
305 }
306
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530307 /* If the type is WC, check that this processor supports it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if ((type == MTRR_TYPE_WRCOMB) && !have_wrcomb()) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530309 pr_warning("mtrr: your processor doesn't support write-combining\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return -ENOSYS;
311 }
312
Jan Beulich365bff82006-12-07 02:14:09 +0100313 if (!size) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530314 pr_warning("mtrr: zero sized request\n");
Jan Beulich365bff82006-12-07 02:14:09 +0100315 return -EINVAL;
316 }
317
Yinghai Lud5c78672013-06-13 15:33:35 -0700318 if ((base | (base + size - 1)) >>
319 (boot_cpu_data.x86_phys_bits - PAGE_SHIFT)) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530320 pr_warning("mtrr: base or size exceeds the MTRR width\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return -EINVAL;
322 }
323
324 error = -EINVAL;
Jan Beulich365bff82006-12-07 02:14:09 +0100325 replace = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Shaohua Li3b520b22005-07-07 17:56:38 -0700327 /* No CPU hotplug when we change MTRR entries */
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100328 get_online_cpus();
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530329
330 /* Search for existing MTRR */
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800331 mutex_lock(&mtrr_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 for (i = 0; i < num_var_ranges; ++i) {
333 mtrr_if->get(i, &lbase, &lsize, &ltype);
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530334 if (!lsize || base > lbase + lsize - 1 ||
335 base + size - 1 < lbase)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 continue;
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530337 /*
338 * At this point we know there is some kind of
339 * overlap/enclosure
340 */
Jan Beulich365bff82006-12-07 02:14:09 +0100341 if (base < lbase || base + size - 1 > lbase + lsize - 1) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530342 if (base <= lbase &&
343 base + size - 1 >= lbase + lsize - 1) {
Jan Beulich365bff82006-12-07 02:14:09 +0100344 /* New region encloses an existing region */
345 if (type == ltype) {
346 replace = replace == -1 ? i : -2;
347 continue;
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530348 } else if (types_compatible(type, ltype))
Jan Beulich365bff82006-12-07 02:14:09 +0100349 continue;
350 }
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530351 pr_warning("mtrr: 0x%lx000,0x%lx000 overlaps existing"
352 " 0x%lx000,0x%lx000\n", base, size, lbase,
353 lsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 goto out;
355 }
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530356 /* New region is enclosed by an existing region */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (ltype != type) {
Jan Beulich365bff82006-12-07 02:14:09 +0100358 if (types_compatible(type, ltype))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 continue;
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530360 pr_warning("mtrr: type mismatch for %lx000,%lx000 old: %s new: %s\n",
361 base, size, mtrr_attrib_to_str(ltype),
362 mtrr_attrib_to_str(type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 goto out;
364 }
365 if (increment)
Jesse Barnes99fc8d42008-01-30 13:33:18 +0100366 ++mtrr_usage_table[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 error = i;
368 goto out;
369 }
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530370 /* Search for an empty MTRR */
Jan Beulich365bff82006-12-07 02:14:09 +0100371 i = mtrr_if->get_free_region(base, size, replace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (i >= 0) {
373 set_mtrr(i, base, size, type);
Jesse Barnes99fc8d42008-01-30 13:33:18 +0100374 if (likely(replace < 0)) {
375 mtrr_usage_table[i] = 1;
376 } else {
377 mtrr_usage_table[i] = mtrr_usage_table[replace];
Paul Jimenez2d2ee8d2008-01-30 13:30:31 +0100378 if (increment)
Jesse Barnes99fc8d42008-01-30 13:33:18 +0100379 mtrr_usage_table[i]++;
Jan Beulich365bff82006-12-07 02:14:09 +0100380 if (unlikely(replace != i)) {
381 set_mtrr(replace, 0, 0, 0);
Jesse Barnes99fc8d42008-01-30 13:33:18 +0100382 mtrr_usage_table[replace] = 0;
Jan Beulich365bff82006-12-07 02:14:09 +0100383 }
384 }
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530385 } else {
386 pr_info("mtrr: no more MTRRs available\n");
387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 error = i;
389 out:
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800390 mutex_unlock(&mtrr_mutex);
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100391 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return error;
393}
394
Andrew Mortonc92c6ff2005-06-23 00:08:35 -0700395static int mtrr_check(unsigned long base, unsigned long size)
396{
397 if ((base & (PAGE_SIZE - 1)) || (size & (PAGE_SIZE - 1))) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530398 pr_warning("mtrr: size and base must be multiples of 4 kiB\n");
399 pr_debug("mtrr: size: 0x%lx base: 0x%lx\n", size, base);
Andrew Mortonc92c6ff2005-06-23 00:08:35 -0700400 dump_stack();
401 return -1;
402 }
403 return 0;
404}
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406/**
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530407 * mtrr_add - Add a memory type region
408 * @base: Physical base address of region
409 * @size: Physical size of region
410 * @type: Type of MTRR desired
411 * @increment: If this is true do usage counting on the region
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530413 * Memory type region registers control the caching on newer Intel and
414 * non Intel processors. This function allows drivers to request an
415 * MTRR is added. The details and hardware specifics of each processor's
416 * implementation are hidden from the caller, but nevertheless the
417 * caller should expect to need to provide a power of two size on an
418 * equivalent power of two boundary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530420 * If the region cannot be added either because all regions are in use
421 * or the CPU cannot support it a negative value is returned. On success
422 * the register number for this entry is returned, but should be treated
423 * as a cookie only.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530425 * On a multiprocessor machine the changes are made to all processors.
426 * This is required on x86 by the Intel processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530428 * The available types are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530430 * %MTRR_TYPE_UNCACHABLE - No caching
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530432 * %MTRR_TYPE_WRBACK - Write data back in bursts whenever
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530434 * %MTRR_TYPE_WRCOMB - Write data back soon but allow bursts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530436 * %MTRR_TYPE_WRTHROUGH - Cache reads but not writes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530438 * BUGS: Needs a quiet flag for the cases where drivers do not mind
439 * failures and do not wish system log messages to be sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 */
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530441int mtrr_add(unsigned long base, unsigned long size, unsigned int type,
442 bool increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Luis R. Rodriguezf9626102015-05-26 10:28:14 +0200444 if (!mtrr_enabled())
445 return -ENODEV;
Andrew Mortonc92c6ff2005-06-23 00:08:35 -0700446 if (mtrr_check(base, size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return mtrr_add_page(base >> PAGE_SHIFT, size >> PAGE_SHIFT, type,
449 increment);
450}
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530451EXPORT_SYMBOL(mtrr_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453/**
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530454 * mtrr_del_page - delete a memory type region
455 * @reg: Register returned by mtrr_add
456 * @base: Physical base address
457 * @size: Size of region
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530459 * If register is supplied then base and size are ignored. This is
460 * how drivers should call it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530462 * Releases an MTRR region. If the usage count drops to zero the
463 * register is freed and the region returns to default state.
464 * On success the register is returned, on failure a negative error
465 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467int mtrr_del_page(int reg, unsigned long base, unsigned long size)
468{
469 int i, max;
470 mtrr_type ltype;
Jan Beulich365bff82006-12-07 02:14:09 +0100471 unsigned long lbase, lsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 int error = -EINVAL;
473
Luis R. Rodriguezf9626102015-05-26 10:28:14 +0200474 if (!mtrr_enabled())
475 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 max = num_var_ranges;
Shaohua Li3b520b22005-07-07 17:56:38 -0700478 /* No CPU hotplug when we change MTRR entries */
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100479 get_online_cpus();
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800480 mutex_lock(&mtrr_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (reg < 0) {
482 /* Search for existing MTRR */
483 for (i = 0; i < max; ++i) {
484 mtrr_if->get(i, &lbase, &lsize, &ltype);
485 if (lbase == base && lsize == size) {
486 reg = i;
487 break;
488 }
489 }
490 if (reg < 0) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530491 pr_debug("mtrr: no MTRR for %lx000,%lx000 found\n",
492 base, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 goto out;
494 }
495 }
496 if (reg >= max) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530497 pr_warning("mtrr: register: %d too big\n", reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 goto out;
499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 mtrr_if->get(reg, &lbase, &lsize, &ltype);
501 if (lsize < 1) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530502 pr_warning("mtrr: MTRR %d not used\n", reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 goto out;
504 }
Jesse Barnes99fc8d42008-01-30 13:33:18 +0100505 if (mtrr_usage_table[reg] < 1) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530506 pr_warning("mtrr: reg: %d has count=0\n", reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 goto out;
508 }
Jesse Barnes99fc8d42008-01-30 13:33:18 +0100509 if (--mtrr_usage_table[reg] < 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 set_mtrr(reg, 0, 0, 0);
511 error = reg;
512 out:
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800513 mutex_unlock(&mtrr_mutex);
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100514 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return error;
516}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530518/**
519 * mtrr_del - delete a memory type region
520 * @reg: Register returned by mtrr_add
521 * @base: Physical base address
522 * @size: Size of region
523 *
524 * If register is supplied then base and size are ignored. This is
525 * how drivers should call it.
526 *
527 * Releases an MTRR region. If the usage count drops to zero the
528 * register is freed and the region returns to default state.
529 * On success the register is returned, on failure a negative error
530 * code.
531 */
532int mtrr_del(int reg, unsigned long base, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Luis R. Rodriguezf9626102015-05-26 10:28:14 +0200534 if (!mtrr_enabled())
535 return -ENODEV;
Andrew Mortonc92c6ff2005-06-23 00:08:35 -0700536 if (mtrr_check(base, size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return mtrr_del_page(reg, base >> PAGE_SHIFT, size >> PAGE_SHIFT);
539}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540EXPORT_SYMBOL(mtrr_del);
541
Andy Lutomirskid0d98ee2013-05-13 23:58:40 +0000542/**
543 * arch_phys_wc_add - add a WC MTRR and handle errors if PAT is unavailable
544 * @base: Physical base address
545 * @size: Size of region
546 *
547 * If PAT is available, this does nothing. If PAT is unavailable, it
548 * attempts to add a WC MTRR covering size bytes starting at base and
549 * logs an error if this fails.
550 *
Luis R. Rodriguez2f9e8972015-05-26 10:28:12 +0200551 * The called should provide a power of two size on an equivalent
552 * power of two boundary.
553 *
Andy Lutomirskid0d98ee2013-05-13 23:58:40 +0000554 * Drivers must store the return value to pass to mtrr_del_wc_if_needed,
555 * but drivers should not try to interpret that return value.
556 */
557int arch_phys_wc_add(unsigned long base, unsigned long size)
558{
559 int ret;
560
Luis R. Rodriguezcb32edf2015-05-26 10:28:15 +0200561 if (pat_enabled() || !mtrr_enabled())
Andy Lutomirskid0d98ee2013-05-13 23:58:40 +0000562 return 0; /* Success! (We don't need to do anything.) */
563
564 ret = mtrr_add(base, size, MTRR_TYPE_WRCOMB, true);
565 if (ret < 0) {
566 pr_warn("Failed to add WC MTRR for [%p-%p]; performance may suffer.",
567 (void *)base, (void *)(base + size - 1));
568 return ret;
569 }
570 return ret + MTRR_TO_PHYS_WC_OFFSET;
571}
572EXPORT_SYMBOL(arch_phys_wc_add);
573
574/*
575 * arch_phys_wc_del - undoes arch_phys_wc_add
576 * @handle: Return value from arch_phys_wc_add
577 *
578 * This cleans up after mtrr_add_wc_if_needed.
579 *
580 * The API guarantees that mtrr_del_wc_if_needed(error code) and
581 * mtrr_del_wc_if_needed(0) do nothing.
582 */
583void arch_phys_wc_del(int handle)
584{
585 if (handle >= 1) {
586 WARN_ON(handle < MTRR_TO_PHYS_WC_OFFSET);
587 mtrr_del(handle - MTRR_TO_PHYS_WC_OFFSET, 0, 0);
588 }
589}
590EXPORT_SYMBOL(arch_phys_wc_del);
591
592/*
Luis R. Rodriguez7d010fd2015-05-26 10:28:13 +0200593 * arch_phys_wc_index - translates arch_phys_wc_add's return value
Andy Lutomirskid0d98ee2013-05-13 23:58:40 +0000594 * @handle: Return value from arch_phys_wc_add
595 *
596 * This will turn the return value from arch_phys_wc_add into an mtrr
597 * index suitable for debugging.
598 *
599 * Note: There is no legitimate use for this function, except possibly
600 * in printk line. Alas there is an illegitimate use in some ancient
601 * drm ioctls.
602 */
Luis R. Rodriguez7d010fd2015-05-26 10:28:13 +0200603int arch_phys_wc_index(int handle)
Andy Lutomirskid0d98ee2013-05-13 23:58:40 +0000604{
605 if (handle < MTRR_TO_PHYS_WC_OFFSET)
606 return -1;
607 else
608 return handle - MTRR_TO_PHYS_WC_OFFSET;
609}
Luis R. Rodriguez7d010fd2015-05-26 10:28:13 +0200610EXPORT_SYMBOL_GPL(arch_phys_wc_index);
Andy Lutomirskid0d98ee2013-05-13 23:58:40 +0000611
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530612/*
613 * HACK ALERT!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 * These should be called implicitly, but we can't yet until all the initcall
615 * stuff is done...
616 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617static void __init init_ifs(void)
618{
Jan Beulich475850c2006-12-07 02:14:09 +0100619#ifndef CONFIG_X86_64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 amd_init_mtrr();
621 cyrix_init_mtrr();
622 centaur_init_mtrr();
Jan Beulich475850c2006-12-07 02:14:09 +0100623#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Shaohua Li3b520b22005-07-07 17:56:38 -0700626/* The suspend/resume methods are only for CPU without MTRR. CPU using generic
627 * MTRR driver doesn't require this
628 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629struct mtrr_value {
630 mtrr_type ltype;
631 unsigned long lbase;
Jan Beulich365bff82006-12-07 02:14:09 +0100632 unsigned long lsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633};
634
Yinghai Luf0348c42009-03-16 16:33:59 -0700635static struct mtrr_value mtrr_value[MTRR_MAX_VAR_RANGES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +0100637static int mtrr_save(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 for (i = 0; i < num_var_ranges; i++) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530642 mtrr_if->get(i, &mtrr_value[i].lbase,
643 &mtrr_value[i].lsize,
644 &mtrr_value[i].ltype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646 return 0;
647}
648
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +0100649static void mtrr_restore(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
651 int i;
652
653 for (i = 0; i < num_var_ranges; i++) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530654 if (mtrr_value[i].lsize) {
655 set_mtrr(i, mtrr_value[i].lbase,
656 mtrr_value[i].lsize,
657 mtrr_value[i].ltype);
658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
662
663
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +0100664static struct syscore_ops mtrr_syscore_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 .suspend = mtrr_save,
666 .resume = mtrr_restore,
667};
668
Yinghai Lu0d890352009-03-11 20:07:39 -0700669int __initdata changed_by_mtrr_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Yinghai Lud5c78672013-06-13 15:33:35 -0700671#define SIZE_OR_MASK_BITS(n) (~((1ULL << ((n) - PAGE_SHIFT)) - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672/**
Shaohua Li3b520b22005-07-07 17:56:38 -0700673 * mtrr_bp_init - initialize mtrrs on the boot CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 *
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530675 * This needs to be called early; before any of the other CPUs are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 * initialized (i.e. before smp_init()).
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530677 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 */
Sam Ravnborg9ef231a2007-07-21 17:10:39 +0200679void __init mtrr_bp_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Yinghai Lu95ffa242008-04-29 03:52:33 -0700681 u32 phys_addr;
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 init_ifs();
684
Yinghai Lu95ffa242008-04-29 03:52:33 -0700685 phys_addr = 32;
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (cpu_has_mtrr) {
688 mtrr_if = &generic_mtrr_ops;
Yinghai Lud5c78672013-06-13 15:33:35 -0700689 size_or_mask = SIZE_OR_MASK_BITS(36);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 size_and_mask = 0x00f00000;
Yinghai Lu95ffa242008-04-29 03:52:33 -0700691 phys_addr = 36;
Andi Kleen1f2c9582005-04-16 15:25:10 -0700692
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530693 /*
694 * This is an AMD specific MSR, but we assume(hope?) that
Olaf Hering4319eb42012-12-06 21:16:11 +0100695 * Intel will implement it too when they extend the address
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530696 * bus of the Xeon.
697 */
Andi Kleen1f2c9582005-04-16 15:25:10 -0700698 if (cpuid_eax(0x80000000) >= 0x80000008) {
Andi Kleen1f2c9582005-04-16 15:25:10 -0700699 phys_addr = cpuid_eax(0x80000008) & 0xff;
Shaohua Liaf9c1422005-11-05 17:25:54 +0100700 /* CPUID workaround for Intel 0F33/0F34 CPU */
701 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
702 boot_cpu_data.x86 == 0xF &&
703 boot_cpu_data.x86_model == 0x3 &&
704 (boot_cpu_data.x86_mask == 0x3 ||
705 boot_cpu_data.x86_mask == 0x4))
706 phys_addr = 36;
707
Yinghai Lud5c78672013-06-13 15:33:35 -0700708 size_or_mask = SIZE_OR_MASK_BITS(phys_addr);
Andreas Herrmann6c5806c2007-02-13 13:26:23 +0100709 size_and_mask = ~size_or_mask & 0xfffff00000ULL;
Andi Kleen1f2c9582005-04-16 15:25:10 -0700710 } else if (boot_cpu_data.x86_vendor == X86_VENDOR_CENTAUR &&
711 boot_cpu_data.x86 == 6) {
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530712 /*
713 * VIA C* family have Intel style MTRRs,
714 * but don't support PAE
715 */
Yinghai Lud5c78672013-06-13 15:33:35 -0700716 size_or_mask = SIZE_OR_MASK_BITS(32);
Andi Kleen1f2c9582005-04-16 15:25:10 -0700717 size_and_mask = 0;
Yinghai Lu95ffa242008-04-29 03:52:33 -0700718 phys_addr = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720 } else {
721 switch (boot_cpu_data.x86_vendor) {
722 case X86_VENDOR_AMD:
Dave Hansen9298b812014-09-11 14:15:24 -0700723 if (cpu_feature_enabled(X86_FEATURE_K6_MTRR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 /* Pre-Athlon (K6) AMD CPU MTRRs */
725 mtrr_if = mtrr_ops[X86_VENDOR_AMD];
Yinghai Lud5c78672013-06-13 15:33:35 -0700726 size_or_mask = SIZE_OR_MASK_BITS(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 size_and_mask = 0;
728 }
729 break;
730 case X86_VENDOR_CENTAUR:
Dave Hansen9298b812014-09-11 14:15:24 -0700731 if (cpu_feature_enabled(X86_FEATURE_CENTAUR_MCR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 mtrr_if = mtrr_ops[X86_VENDOR_CENTAUR];
Yinghai Lud5c78672013-06-13 15:33:35 -0700733 size_or_mask = SIZE_OR_MASK_BITS(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 size_and_mask = 0;
735 }
736 break;
737 case X86_VENDOR_CYRIX:
Dave Hansen9298b812014-09-11 14:15:24 -0700738 if (cpu_feature_enabled(X86_FEATURE_CYRIX_ARR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 mtrr_if = mtrr_ops[X86_VENDOR_CYRIX];
Yinghai Lud5c78672013-06-13 15:33:35 -0700740 size_or_mask = SIZE_OR_MASK_BITS(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 size_and_mask = 0;
742 }
743 break;
744 default:
745 break;
746 }
747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 if (mtrr_if) {
Luis R. Rodriguezf9626102015-05-26 10:28:14 +0200750 __mtrr_enabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 set_num_var_ranges();
752 init_table();
Yinghai Lu95ffa242008-04-29 03:52:33 -0700753 if (use_intel()) {
Luis R. Rodriguezf9626102015-05-26 10:28:14 +0200754 /* BIOS may override */
755 __mtrr_enabled = get_mtrr_state();
Yinghai Lu95ffa242008-04-29 03:52:33 -0700756
Yinghai Lu12031a62008-05-02 02:40:22 -0700757 if (mtrr_cleanup(phys_addr)) {
758 changed_by_mtrr_cleanup = 1;
Yinghai Lu95ffa242008-04-29 03:52:33 -0700759 mtrr_if->set_all();
Yinghai Lu12031a62008-05-02 02:40:22 -0700760 }
Yinghai Lu95ffa242008-04-29 03:52:33 -0700761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Luis R. Rodriguezf9626102015-05-26 10:28:14 +0200763
764 if (!mtrr_enabled())
765 pr_info("MTRR: Disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Shaohua Li3b520b22005-07-07 17:56:38 -0700768void mtrr_ap_init(void)
769{
Luis R. Rodriguezf9626102015-05-26 10:28:14 +0200770 if (!mtrr_enabled())
771 return;
772
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700773 if (!use_intel() || mtrr_aps_delayed_init)
Shaohua Li3b520b22005-07-07 17:56:38 -0700774 return;
775 /*
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530776 * Ideally we should hold mtrr_mutex here to avoid mtrr entries
777 * changed, but this routine will be called in cpu boot time,
778 * holding the lock breaks it.
779 *
780 * This routine is called in two cases:
781 *
782 * 1. very earily time of software resume, when there absolutely
783 * isn't mtrr entry changes;
784 *
785 * 2. cpu hotadd time. We let mtrr_add/del_page hold cpuhotplug
786 * lock to prevent mtrr entry changes
Shaohua Li3b520b22005-07-07 17:56:38 -0700787 */
Suresh Siddha192d8852011-06-23 11:19:29 -0700788 set_mtrr_from_inactive_cpu(~0U, 0, 0, 0);
Shaohua Li3b520b22005-07-07 17:56:38 -0700789}
790
Bernhard Kaindl2b1f6272007-05-02 19:27:17 +0200791/**
Fenghua Yu30242aa2012-11-13 11:32:48 -0800792 * Save current fixed-range MTRR state of the first cpu in cpu_online_mask.
Bernhard Kaindl2b1f6272007-05-02 19:27:17 +0200793 */
794void mtrr_save_state(void)
795{
Fenghua Yu30242aa2012-11-13 11:32:48 -0800796 int first_cpu;
797
Luis R. Rodriguezf9626102015-05-26 10:28:14 +0200798 if (!mtrr_enabled())
799 return;
800
Fenghua Yu30242aa2012-11-13 11:32:48 -0800801 get_online_cpus();
802 first_cpu = cpumask_first(cpu_online_mask);
803 smp_call_function_single(first_cpu, mtrr_save_fixed_ranges, NULL, 1);
804 put_online_cpus();
Bernhard Kaindl2b1f6272007-05-02 19:27:17 +0200805}
806
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700807void set_mtrr_aps_delayed_init(void)
808{
Luis R. Rodriguezf9626102015-05-26 10:28:14 +0200809 if (!mtrr_enabled())
810 return;
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700811 if (!use_intel())
812 return;
813
H. Peter Anvin54007432009-08-21 17:00:02 -0700814 mtrr_aps_delayed_init = true;
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700815}
816
817/*
Suresh Siddhaf7448542011-02-02 17:02:55 -0800818 * Delayed MTRR initialization for all AP's
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700819 */
820void mtrr_aps_init(void)
821{
Luis R. Rodriguezf9626102015-05-26 10:28:14 +0200822 if (!use_intel() || !mtrr_enabled())
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700823 return;
824
Suresh Siddhaf7448542011-02-02 17:02:55 -0800825 /*
826 * Check if someone has requested the delay of AP MTRR initialization,
827 * by doing set_mtrr_aps_delayed_init(), prior to this point. If not,
828 * then we are done.
829 */
830 if (!mtrr_aps_delayed_init)
831 return;
832
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700833 set_mtrr(~0U, 0, 0, 0);
H. Peter Anvin54007432009-08-21 17:00:02 -0700834 mtrr_aps_delayed_init = false;
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700835}
836
837void mtrr_bp_restore(void)
838{
Luis R. Rodriguezf9626102015-05-26 10:28:14 +0200839 if (!use_intel() || !mtrr_enabled())
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700840 return;
841
842 mtrr_if->set_all();
843}
844
Shaohua Li3b520b22005-07-07 17:56:38 -0700845static int __init mtrr_init_finialize(void)
846{
Luis R. Rodriguezf9626102015-05-26 10:28:14 +0200847 if (!mtrr_enabled())
Shaohua Li3b520b22005-07-07 17:56:38 -0700848 return 0;
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530849
Yinghai Lu95ffa242008-04-29 03:52:33 -0700850 if (use_intel()) {
Yinghai Lu12031a62008-05-02 02:40:22 -0700851 if (!changed_by_mtrr_cleanup)
Yinghai Lu95ffa242008-04-29 03:52:33 -0700852 mtrr_state_warn();
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530853 return 0;
Shaohua Li3b520b22005-07-07 17:56:38 -0700854 }
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530855
856 /*
857 * The CPU has no MTRR and seems to not support SMP. They have
858 * specific drivers, we use a tricky method to support
859 * suspend/resume for them.
860 *
861 * TBD: is there any system with such CPU which supports
862 * suspend/resume? If no, we should remove the code.
863 */
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +0100864 register_syscore_ops(&mtrr_syscore_ops);
Jaswinder Singh Rajputdbd51be2009-07-04 07:56:28 +0530865
Shaohua Li3b520b22005-07-07 17:56:38 -0700866 return 0;
867}
868subsys_initcall(mtrr_init_finialize);