blob: 2afe55e21d594ce7ef6b02af993621a7ef944806 [file] [log] [blame]
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001/*
2 * Machine specific setup for xen
3 *
4 * Jeremy Fitzhardinge <jeremy@xensource.com>, XenSource Inc, 2007
5 */
6
7#include <linux/module.h>
8#include <linux/sched.h>
9#include <linux/mm.h>
10#include <linux/pm.h>
Yinghai Lua9ce6bc2010-08-25 13:39:17 -070011#include <linux/memblock.h>
Len Brownd91ee582011-04-01 18:28:35 -040012#include <linux/cpuidle.h>
Konrad Rzeszutek Wilk48cdd822012-03-13 20:06:57 -040013#include <linux/cpufreq.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070014
15#include <asm/elf.h>
Roland McGrath6c3652e2008-01-30 13:30:42 +010016#include <asm/vdso.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070017#include <asm/e820.h>
18#include <asm/setup.h>
Jeremy Fitzhardingeb792c752008-06-16 14:54:49 -070019#include <asm/acpi.h>
Konrad Rzeszutek Wilk8d54db792012-08-17 10:22:37 -040020#include <asm/numa.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070021#include <asm/xen/hypervisor.h>
22#include <asm/xen/hypercall.h>
23
Ian Campbell45263cb2010-10-25 16:32:29 -070024#include <xen/xen.h>
Jeremy Fitzhardinge8006ec32008-05-26 23:31:19 +010025#include <xen/page.h>
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -070026#include <xen/interface/callback.h>
Ian Campbell35ae11f2009-02-06 19:09:48 -080027#include <xen/interface/memory.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070028#include <xen/interface/physdev.h>
29#include <xen/features.h>
Mukesh Rathor9103bb02013-12-13 13:02:58 -050030#include "mmu.h"
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070031#include "xen-ops.h"
Roland McGrathd2eea682007-07-20 00:31:43 -070032#include "vdso.h"
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070033
34/* These are code, but not functions. Defined in entry.S */
35extern const char xen_hypervisor_callback[];
36extern const char xen_failsafe_callback[];
Konrad Rzeszutek Wilk6efa20e2013-07-19 11:51:31 -040037#ifdef CONFIG_X86_64
Andi Kleen07ba06d2013-10-22 09:07:59 -070038extern asmlinkage void nmi(void);
Konrad Rzeszutek Wilk6efa20e2013-07-19 11:51:31 -040039#endif
Tejf63c2f22008-12-16 11:56:06 -080040extern void xen_sysenter_target(void);
41extern void xen_syscall_target(void);
42extern void xen_syscall32_target(void);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070043
Jeremy Fitzhardinge42ee1472010-08-30 16:41:02 -070044/* Amount of extra memory space we add to the e820 ranges */
David Vrabel8b5d44a2011-09-28 17:46:34 +010045struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
Jeremy Fitzhardinge42ee1472010-08-30 16:41:02 -070046
David Vrabelaa244112011-09-28 17:46:32 +010047/* Number of pages released from the initial allocation. */
48unsigned long xen_released_pages;
49
Jeremy Fitzhardinge698bb8d2010-09-14 10:19:14 -070050/*
51 * The maximum amount of extra memory compared to the base size. The
52 * main scaling factor is the size of struct page. At extreme ratios
53 * of base:extra, all the base memory can be filled with page
54 * structures for the extra memory, leaving no space for anything
55 * else.
56 *
57 * 10x seems like a reasonable balance between scaling flexibility and
58 * leaving a practically usable system.
59 */
60#define EXTRA_MEM_RATIO (10)
61
David Vrabeldc91c722011-09-29 12:26:19 +010062static void __init xen_add_extra_mem(u64 start, u64 size)
Jeremy Fitzhardinge42ee1472010-08-30 16:41:02 -070063{
Konrad Rzeszutek Wilk6eaa4122011-01-18 20:09:41 -050064 unsigned long pfn;
David Vrabeldc91c722011-09-29 12:26:19 +010065 int i;
Konrad Rzeszutek Wilk6eaa4122011-01-18 20:09:41 -050066
David Vrabeldc91c722011-09-29 12:26:19 +010067 for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
68 /* Add new region. */
69 if (xen_extra_mem[i].size == 0) {
70 xen_extra_mem[i].start = start;
71 xen_extra_mem[i].size = size;
72 break;
73 }
74 /* Append to existing region. */
75 if (xen_extra_mem[i].start + xen_extra_mem[i].size == start) {
76 xen_extra_mem[i].size += size;
77 break;
78 }
79 }
80 if (i == XEN_EXTRA_MEM_MAX_REGIONS)
81 printk(KERN_WARNING "Warning: not enough extra memory regions\n");
Jeremy Fitzhardinge42ee1472010-08-30 16:41:02 -070082
Tejun Heod4bbf7e2011-11-28 09:46:22 -080083 memblock_reserve(start, size);
Jeremy Fitzhardinge42ee1472010-08-30 16:41:02 -070084
Mukesh Rathor9103bb02013-12-13 13:02:58 -050085 if (xen_feature(XENFEAT_auto_translated_physmap))
86 return;
87
David Vrabeldc91c722011-09-29 12:26:19 +010088 xen_max_p2m_pfn = PFN_DOWN(start + size);
Konrad Rzeszutek Wilkc96aae12012-08-17 16:43:28 -040089 for (pfn = PFN_DOWN(start); pfn < xen_max_p2m_pfn; pfn++) {
90 unsigned long mfn = pfn_to_mfn(pfn);
Jeremy Fitzhardinge42ee1472010-08-30 16:41:02 -070091
David Vrabel2dcc9a32014-01-07 11:36:53 +000092 if (WARN_ONCE(mfn == pfn, "Trying to over-write 1-1 mapping (pfn: %lx)\n", pfn))
Konrad Rzeszutek Wilkc96aae12012-08-17 16:43:28 -040093 continue;
David Vrabel2dcc9a32014-01-07 11:36:53 +000094 WARN_ONCE(mfn != INVALID_P2M_ENTRY, "Trying to remove %lx which has %lx mfn!\n",
95 pfn, mfn);
Konrad Rzeszutek Wilkc96aae12012-08-17 16:43:28 -040096
Konrad Rzeszutek Wilk6eaa4122011-01-18 20:09:41 -050097 __set_phys_to_machine(pfn, INVALID_P2M_ENTRY);
Konrad Rzeszutek Wilkc96aae12012-08-17 16:43:28 -040098 }
Jeremy Fitzhardinge42ee1472010-08-30 16:41:02 -070099}
100
Konrad Rzeszutek Wilk96dc08b2012-04-06 16:10:20 -0400101static unsigned long __init xen_do_chunk(unsigned long start,
102 unsigned long end, bool release)
Miroslav Rezanina093d7b42009-09-16 03:56:17 -0400103{
104 struct xen_memory_reservation reservation = {
105 .address_bits = 0,
106 .extent_order = 0,
107 .domid = DOMID_SELF
108 };
Jeremy Fitzhardingef89e0482009-09-16 12:38:33 -0700109 unsigned long len = 0;
Mukesh Rathor9103bb02013-12-13 13:02:58 -0500110 int xlated_phys = xen_feature(XENFEAT_auto_translated_physmap);
Miroslav Rezanina093d7b42009-09-16 03:56:17 -0400111 unsigned long pfn;
112 int ret;
113
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400114 for (pfn = start; pfn < end; pfn++) {
115 unsigned long frame;
Konrad Rzeszutek Wilk96dc08b2012-04-06 16:10:20 -0400116 unsigned long mfn = pfn_to_mfn(pfn);
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400117
Konrad Rzeszutek Wilk96dc08b2012-04-06 16:10:20 -0400118 if (release) {
119 /* Make sure pfn exists to start with */
120 if (mfn == INVALID_P2M_ENTRY || mfn_to_pfn(mfn) != pfn)
121 continue;
122 frame = mfn;
123 } else {
Mukesh Rathor9103bb02013-12-13 13:02:58 -0500124 if (!xlated_phys && mfn != INVALID_P2M_ENTRY)
Konrad Rzeszutek Wilk96dc08b2012-04-06 16:10:20 -0400125 continue;
126 frame = pfn;
127 }
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400128 set_xen_guest_handle(reservation.extent_start, &frame);
129 reservation.nr_extents = 1;
130
Konrad Rzeszutek Wilk96dc08b2012-04-06 16:10:20 -0400131 ret = HYPERVISOR_memory_op(release ? XENMEM_decrease_reservation : XENMEM_populate_physmap,
132 &reservation);
133 WARN(ret != 1, "Failed to %s pfn %lx err=%d\n",
134 release ? "release" : "populate", pfn, ret);
135
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400136 if (ret == 1) {
Konrad Rzeszutek Wilk96dc08b2012-04-06 16:10:20 -0400137 if (!early_set_phys_to_machine(pfn, release ? INVALID_P2M_ENTRY : frame)) {
138 if (release)
139 break;
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400140 set_xen_guest_handle(reservation.extent_start, &frame);
141 reservation.nr_extents = 1;
142 ret = HYPERVISOR_memory_op(XENMEM_decrease_reservation,
Konrad Rzeszutek Wilk96dc08b2012-04-06 16:10:20 -0400143 &reservation);
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400144 break;
145 }
146 len++;
147 } else
148 break;
149 }
150 if (len)
Konrad Rzeszutek Wilk96dc08b2012-04-06 16:10:20 -0400151 printk(KERN_INFO "%s %lx-%lx pfn range: %lu pages %s\n",
152 release ? "Freeing" : "Populating",
153 start, end, len,
154 release ? "freed" : "added");
155
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400156 return len;
157}
David Vrabel83d51ab2012-05-03 16:15:42 +0100158
159static unsigned long __init xen_release_chunk(unsigned long start,
160 unsigned long end)
161{
Mukesh Rathor9103bb02013-12-13 13:02:58 -0500162 /*
163 * Xen already ballooned out the E820 non RAM regions for us
164 * and set them up properly in EPT.
165 */
166 if (xen_feature(XENFEAT_auto_translated_physmap))
167 return end - start;
168
David Vrabel83d51ab2012-05-03 16:15:42 +0100169 return xen_do_chunk(start, end, true);
170}
171
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400172static unsigned long __init xen_populate_chunk(
173 const struct e820entry *list, size_t map_size,
174 unsigned long max_pfn, unsigned long *last_pfn,
175 unsigned long credits_left)
176{
177 const struct e820entry *entry;
178 unsigned int i;
179 unsigned long done = 0;
180 unsigned long dest_pfn;
181
182 for (i = 0, entry = list; i < map_size; i++, entry++) {
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400183 unsigned long s_pfn;
184 unsigned long e_pfn;
185 unsigned long pfns;
186 long capacity;
187
zhenzhong.duanc3d93f82012-07-18 13:06:39 +0800188 if (credits_left <= 0)
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400189 break;
190
191 if (entry->type != E820_RAM)
192 continue;
193
zhenzhong.duanc3d93f82012-07-18 13:06:39 +0800194 e_pfn = PFN_DOWN(entry->addr + entry->size);
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400195
196 /* We only care about E820 after the xen_start_info->nr_pages */
197 if (e_pfn <= max_pfn)
198 continue;
199
zhenzhong.duanc3d93f82012-07-18 13:06:39 +0800200 s_pfn = PFN_UP(entry->addr);
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400201 /* If the E820 falls within the nr_pages, we want to start
202 * at the nr_pages PFN.
203 * If that would mean going past the E820 entry, skip it
204 */
205 if (s_pfn <= max_pfn) {
206 capacity = e_pfn - max_pfn;
207 dest_pfn = max_pfn;
208 } else {
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400209 capacity = e_pfn - s_pfn;
210 dest_pfn = s_pfn;
211 }
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400212
zhenzhong.duanc3d93f82012-07-18 13:06:39 +0800213 if (credits_left < capacity)
214 capacity = credits_left;
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400215
zhenzhong.duanc3d93f82012-07-18 13:06:39 +0800216 pfns = xen_do_chunk(dest_pfn, dest_pfn + capacity, false);
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400217 done += pfns;
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400218 *last_pfn = (dest_pfn + pfns);
zhenzhong.duanc3d93f82012-07-18 13:06:39 +0800219 if (pfns < capacity)
220 break;
221 credits_left -= pfns;
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400222 }
223 return done;
224}
David Vrabel83d51ab2012-05-03 16:15:42 +0100225
226static void __init xen_set_identity_and_release_chunk(
227 unsigned long start_pfn, unsigned long end_pfn, unsigned long nr_pages,
228 unsigned long *released, unsigned long *identity)
229{
230 unsigned long pfn;
231
232 /*
David Vrabele201bfc2013-07-22 15:29:00 +0100233 * If the PFNs are currently mapped, clear the mappings
234 * (except for the ISA region which must be 1:1 mapped) to
235 * release the refcounts (in Xen) on the original frames.
David Vrabel83d51ab2012-05-03 16:15:42 +0100236 */
Mukesh Rathor9103bb02013-12-13 13:02:58 -0500237
238 /*
239 * PVH E820 matches the hypervisor's P2M which means we need to
240 * account for the proper values of *release and *identity.
241 */
242 for (pfn = start_pfn; !xen_feature(XENFEAT_auto_translated_physmap) &&
243 pfn <= max_pfn_mapped && pfn < end_pfn; pfn++) {
David Vrabele201bfc2013-07-22 15:29:00 +0100244 pte_t pte = __pte_ma(0);
245
246 if (pfn < PFN_UP(ISA_END_ADDRESS))
247 pte = mfn_pte(pfn, PAGE_KERNEL_IO);
248
David Vrabel83d51ab2012-05-03 16:15:42 +0100249 (void)HYPERVISOR_update_va_mapping(
David Vrabele201bfc2013-07-22 15:29:00 +0100250 (unsigned long)__va(pfn << PAGE_SHIFT), pte, 0);
251 }
David Vrabel83d51ab2012-05-03 16:15:42 +0100252
253 if (start_pfn < nr_pages)
254 *released += xen_release_chunk(
255 start_pfn, min(end_pfn, nr_pages));
256
257 *identity += set_phys_range_identity(start_pfn, end_pfn);
258}
259
David Vrabelf3f436e2011-09-28 17:46:36 +0100260static unsigned long __init xen_set_identity_and_release(
261 const struct e820entry *list, size_t map_size, unsigned long nr_pages)
Miroslav Rezanina093d7b42009-09-16 03:56:17 -0400262{
David Vrabelf3f436e2011-09-28 17:46:36 +0100263 phys_addr_t start = 0;
Miroslav Rezanina093d7b42009-09-16 03:56:17 -0400264 unsigned long released = 0;
Konrad Rzeszutek Wilk68df0da2011-02-01 17:15:30 -0500265 unsigned long identity = 0;
David Vrabelf3f436e2011-09-28 17:46:36 +0100266 const struct e820entry *entry;
Konrad Rzeszutek Wilk68df0da2011-02-01 17:15:30 -0500267 int i;
268
David Vrabelf3f436e2011-09-28 17:46:36 +0100269 /*
270 * Combine non-RAM regions and gaps until a RAM region (or the
271 * end of the map) is reached, then set the 1:1 map and
272 * release the pages (if available) in those non-RAM regions.
273 *
274 * The combined non-RAM regions are rounded to a whole number
275 * of pages so any partial pages are accessible via the 1:1
276 * mapping. This is needed for some BIOSes that put (for
277 * example) the DMI tables in a reserved region that begins on
278 * a non-page boundary.
279 */
Konrad Rzeszutek Wilk68df0da2011-02-01 17:15:30 -0500280 for (i = 0, entry = list; i < map_size; i++, entry++) {
David Vrabelf3f436e2011-09-28 17:46:36 +0100281 phys_addr_t end = entry->addr + entry->size;
David Vrabelf3f436e2011-09-28 17:46:36 +0100282 if (entry->type == E820_RAM || i == map_size - 1) {
283 unsigned long start_pfn = PFN_DOWN(start);
284 unsigned long end_pfn = PFN_UP(end);
Konrad Rzeszutek Wilk68df0da2011-02-01 17:15:30 -0500285
David Vrabelf3f436e2011-09-28 17:46:36 +0100286 if (entry->type == E820_RAM)
287 end_pfn = PFN_UP(entry->addr);
Konrad Rzeszutek Wilk68df0da2011-02-01 17:15:30 -0500288
David Vrabel83d51ab2012-05-03 16:15:42 +0100289 if (start_pfn < end_pfn)
290 xen_set_identity_and_release_chunk(
291 start_pfn, end_pfn, nr_pages,
292 &released, &identity);
Konrad Rzeszutek Wilk68df0da2011-02-01 17:15:30 -0500293
David Vrabelf3f436e2011-09-28 17:46:36 +0100294 start = end;
Konrad Rzeszutek Wilk68df0da2011-02-01 17:15:30 -0500295 }
Konrad Rzeszutek Wilk68df0da2011-02-01 17:15:30 -0500296 }
David Vrabelf3f436e2011-09-28 17:46:36 +0100297
Konrad Rzeszutek Wilkca118232012-03-30 15:37:07 -0400298 if (released)
299 printk(KERN_INFO "Released %lu pages of unused memory\n", released);
300 if (identity)
301 printk(KERN_INFO "Set %ld page(s) to 1-1 mapping\n", identity);
David Vrabelf3f436e2011-09-28 17:46:36 +0100302
303 return released;
Konrad Rzeszutek Wilk68df0da2011-02-01 17:15:30 -0500304}
David Vrabeld312ae872011-08-19 15:57:16 +0100305
306static unsigned long __init xen_get_max_pages(void)
307{
308 unsigned long max_pages = MAX_DOMAIN_PAGES;
309 domid_t domid = DOMID_SELF;
310 int ret;
311
Ian Campbelld3db7282011-12-14 12:16:08 +0000312 /*
313 * For the initial domain we use the maximum reservation as
314 * the maximum page.
315 *
316 * For guest domains the current maximum reservation reflects
317 * the current maximum rather than the static maximum. In this
318 * case the e820 map provided to us will cover the static
319 * maximum region.
320 */
321 if (xen_initial_domain()) {
322 ret = HYPERVISOR_memory_op(XENMEM_maximum_reservation, &domid);
323 if (ret > 0)
324 max_pages = ret;
325 }
326
David Vrabeld312ae872011-08-19 15:57:16 +0100327 return min(max_pages, MAX_DOMAIN_PAGES);
328}
329
David Vrabeldc91c722011-09-29 12:26:19 +0100330static void xen_align_and_add_e820_region(u64 start, u64 size, int type)
331{
332 u64 end = start + size;
333
334 /* Align RAM regions to page boundaries. */
335 if (type == E820_RAM) {
336 start = PAGE_ALIGN(start);
337 end &= ~((u64)PAGE_SIZE - 1);
338 }
339
340 e820_add_region(start, end - start, type);
341}
342
David Vrabel3bc38cb2013-08-16 15:42:55 +0100343void xen_ignore_unusable(struct e820entry *list, size_t map_size)
344{
345 struct e820entry *entry;
346 unsigned int i;
347
348 for (i = 0, entry = list; i < map_size; i++, entry++) {
349 if (entry->type == E820_UNUSABLE)
350 entry->type = E820_RAM;
351 }
352}
353
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700354/**
355 * machine_specific_memory_setup - Hook for machine specific memory setup.
356 **/
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700357char * __init xen_memory_setup(void)
358{
Ian Campbell35ae11f2009-02-06 19:09:48 -0800359 static struct e820entry map[E820MAX] __initdata;
360
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700361 unsigned long max_pfn = xen_start_info->nr_pages;
Ian Campbell35ae11f2009-02-06 19:09:48 -0800362 unsigned long long mem_end;
363 int rc;
364 struct xen_memory_map memmap;
David Vrabeldc91c722011-09-29 12:26:19 +0100365 unsigned long max_pages;
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400366 unsigned long last_pfn = 0;
Jeremy Fitzhardinge42ee1472010-08-30 16:41:02 -0700367 unsigned long extra_pages = 0;
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400368 unsigned long populated;
Ian Campbell35ae11f2009-02-06 19:09:48 -0800369 int i;
Ian Campbell9e9a5fc2010-09-02 16:16:00 +0100370 int op;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700371
Jeremy Fitzhardinge8006ec32008-05-26 23:31:19 +0100372 max_pfn = min(MAX_DOMAIN_PAGES, max_pfn);
Ian Campbell35ae11f2009-02-06 19:09:48 -0800373 mem_end = PFN_PHYS(max_pfn);
374
375 memmap.nr_entries = E820MAX;
376 set_xen_guest_handle(memmap.buffer, map);
377
Ian Campbell9e9a5fc2010-09-02 16:16:00 +0100378 op = xen_initial_domain() ?
379 XENMEM_machine_memory_map :
380 XENMEM_memory_map;
381 rc = HYPERVISOR_memory_op(op, &memmap);
Ian Campbell35ae11f2009-02-06 19:09:48 -0800382 if (rc == -ENOSYS) {
Ian Campbell9ec23a7f2010-10-28 11:32:29 -0700383 BUG_ON(xen_initial_domain());
Ian Campbell35ae11f2009-02-06 19:09:48 -0800384 memmap.nr_entries = 1;
385 map[0].addr = 0ULL;
386 map[0].size = mem_end;
387 /* 8MB slack (to balance backend allocations). */
388 map[0].size += 8ULL << 20;
389 map[0].type = E820_RAM;
390 rc = 0;
391 }
392 BUG_ON(rc);
Jeremy Fitzhardinge8006ec32008-05-26 23:31:19 +0100393
David Vrabel3bc38cb2013-08-16 15:42:55 +0100394 /*
395 * Xen won't allow a 1:1 mapping to be created to UNUSABLE
396 * regions, so if we're using the machine memory map leave the
397 * region as RAM as it is in the pseudo-physical map.
398 *
399 * UNUSABLE regions in domUs are not handled and will need
400 * a patch in the future.
401 */
402 if (xen_initial_domain())
403 xen_ignore_unusable(map, memmap.nr_entries);
404
David Vrabeldc91c722011-09-29 12:26:19 +0100405 /* Make sure the Xen-supplied memory map is well-ordered. */
406 sanitize_e820_map(map, memmap.nr_entries, &memmap.nr_entries);
Jeremy Fitzhardingebe5bf9f2008-06-16 14:54:46 -0700407
David Vrabeldc91c722011-09-29 12:26:19 +0100408 max_pages = xen_get_max_pages();
409 if (max_pages > max_pfn)
410 extra_pages += max_pages - max_pfn;
Stefano Stabellini7cb31b72011-01-27 10:13:25 -0500411
David Vrabelf3f436e2011-09-28 17:46:36 +0100412 /*
413 * Set P2M for all non-RAM pages and E820 gaps to be identity
414 * type PFNs. Any RAM pages that would be made inaccesible by
415 * this are first released.
416 */
417 xen_released_pages = xen_set_identity_and_release(
418 map, memmap.nr_entries, max_pfn);
Jeremy Fitzhardinge42ee1472010-08-30 16:41:02 -0700419
David Vrabeldc91c722011-09-29 12:26:19 +0100420 /*
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400421 * Populate back the non-RAM pages and E820 gaps that had been
422 * released. */
423 populated = xen_populate_chunk(map, memmap.nr_entries,
424 max_pfn, &last_pfn, xen_released_pages);
425
Konrad Rzeszutek Wilk58b7b532012-05-29 12:36:43 -0400426 xen_released_pages -= populated;
427 extra_pages += xen_released_pages;
Konrad Rzeszutek Wilk2e2fb752012-04-06 10:07:11 -0400428
429 if (last_pfn > max_pfn) {
430 max_pfn = min(MAX_DOMAIN_PAGES, last_pfn);
431 mem_end = PFN_PHYS(max_pfn);
432 }
433 /*
David Vrabeldc91c722011-09-29 12:26:19 +0100434 * Clamp the amount of extra memory to a EXTRA_MEM_RATIO
435 * factor the base size. On non-highmem systems, the base
436 * size is the full initial memory allocation; on highmem it
437 * is limited to the max size of lowmem, so that it doesn't
438 * get completely filled.
439 *
440 * In principle there could be a problem in lowmem systems if
441 * the initial memory is also very large with respect to
442 * lowmem, but we won't try to deal with that here.
443 */
444 extra_pages = min(EXTRA_MEM_RATIO * min(max_pfn, PFN_DOWN(MAXMEM)),
445 extra_pages);
David Vrabeldc91c722011-09-29 12:26:19 +0100446 i = 0;
447 while (i < memmap.nr_entries) {
448 u64 addr = map[i].addr;
449 u64 size = map[i].size;
450 u32 type = map[i].type;
451
452 if (type == E820_RAM) {
453 if (addr < mem_end) {
454 size = min(size, mem_end - addr);
455 } else if (extra_pages) {
456 size = min(size, (u64)extra_pages * PAGE_SIZE);
457 extra_pages -= size / PAGE_SIZE;
458 xen_add_extra_mem(addr, size);
459 } else
460 type = E820_UNUSABLE;
Jeremy Fitzhardinge36545812010-09-29 16:54:33 -0700461 }
462
David Vrabeldc91c722011-09-29 12:26:19 +0100463 xen_align_and_add_e820_region(addr, size, type);
Jeremy Fitzhardingeb5b43ce2010-09-02 17:10:12 -0700464
David Vrabeldc91c722011-09-29 12:26:19 +0100465 map[i].addr += size;
466 map[i].size -= size;
467 if (map[i].size == 0)
468 i++;
Ian Campbell35ae11f2009-02-06 19:09:48 -0800469 }
Jeremy Fitzhardingeb792c752008-06-16 14:54:49 -0700470
471 /*
Ian Campbell9ec23a7f2010-10-28 11:32:29 -0700472 * In domU, the ISA region is normal, usable memory, but we
473 * reserve ISA memory anyway because too many things poke
Jeremy Fitzhardingeb792c752008-06-16 14:54:49 -0700474 * about in there.
475 */
476 e820_add_region(ISA_START_ADDRESS, ISA_END_ADDRESS - ISA_START_ADDRESS,
477 E820_RESERVED);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700478
Jeremy Fitzhardingebe5bf9f2008-06-16 14:54:46 -0700479 /*
480 * Reserve Xen bits:
481 * - mfn_list
482 * - xen_start_info
483 * See comment above "struct start_info" in <xen/interface/xen.h>
Konrad Rzeszutek Wilk51faaf22012-08-22 13:00:10 -0400484 * We tried to make the the memblock_reserve more selective so
485 * that it would be clear what region is reserved. Sadly we ran
486 * in the problem wherein on a 64-bit hypervisor with a 32-bit
487 * initial domain, the pt_base has the cr3 value which is not
488 * neccessarily where the pagetable starts! As Jan put it: "
489 * Actually, the adjustment turns out to be correct: The page
490 * tables for a 32-on-64 dom0 get allocated in the order "first L1",
491 * "first L2", "first L3", so the offset to the page table base is
492 * indeed 2. When reading xen/include/public/xen.h's comment
493 * very strictly, this is not a violation (since there nothing is said
494 * that the first thing in the page table space is pointed to by
495 * pt_base; I admit that this seems to be implied though, namely
496 * do I think that it is implied that the page table space is the
497 * range [pt_base, pt_base + nt_pt_frames), whereas that
498 * range here indeed is [pt_base - 2, pt_base - 2 + nt_pt_frames),
499 * which - without a priori knowledge - the kernel would have
500 * difficulty to figure out)." - so lets just fall back to the
501 * easy way and reserve the whole region.
Jeremy Fitzhardingebe5bf9f2008-06-16 14:54:46 -0700502 */
Tejun Heo24aa0782011-07-12 11:16:06 +0200503 memblock_reserve(__pa(xen_start_info->mfn_list),
504 xen_start_info->pt_base - xen_start_info->mfn_list);
Jeremy Fitzhardingebe5bf9f2008-06-16 14:54:46 -0700505
506 sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
507
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700508 return "Xen";
509}
510
Roland McGrathd2eea682007-07-20 00:31:43 -0700511/*
512 * Set the bit indicating "nosegneg" library variants should be used.
Jeremy Fitzhardinge6a52e4b2008-07-12 02:22:00 -0700513 * We only need to bother in pure 32-bit mode; compat 32-bit processes
514 * can have un-truncated segments, so wrapping around is allowed.
Roland McGrathd2eea682007-07-20 00:31:43 -0700515 */
Sam Ravnborg08b6d292008-01-30 13:33:25 +0100516static void __init fiddle_vdso(void)
Roland McGrathd2eea682007-07-20 00:31:43 -0700517{
Jeremy Fitzhardinge6a52e4b2008-07-12 02:22:00 -0700518#ifdef CONFIG_X86_32
519 u32 *mask;
520 mask = VDSO32_SYMBOL(&vdso32_int80_start, NOTE_MASK);
521 *mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
522 mask = VDSO32_SYMBOL(&vdso32_sysenter_start, NOTE_MASK);
Roland McGrathd2eea682007-07-20 00:31:43 -0700523 *mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700524#endif
Roland McGrathd2eea682007-07-20 00:31:43 -0700525}
526
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400527static int register_callback(unsigned type, const void *func)
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -0700528{
Jeremy Fitzhardinge88459d42008-07-08 15:07:02 -0700529 struct callback_register callback = {
530 .type = type,
531 .address = XEN_CALLBACK(__KERNEL_CS, func),
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -0700532 .flags = CALLBACKF_mask_events,
533 };
534
Jeremy Fitzhardinge88459d42008-07-08 15:07:02 -0700535 return HYPERVISOR_callback_op(CALLBACKOP_register, &callback);
536}
537
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400538void xen_enable_sysenter(void)
Jeremy Fitzhardinge88459d42008-07-08 15:07:02 -0700539{
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700540 int ret;
Jeremy Fitzhardinge62541c32008-07-10 16:24:08 -0700541 unsigned sysenter_feature;
Jeremy Fitzhardinge88459d42008-07-08 15:07:02 -0700542
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700543#ifdef CONFIG_X86_32
Jeremy Fitzhardinge62541c32008-07-10 16:24:08 -0700544 sysenter_feature = X86_FEATURE_SEP;
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700545#else
Jeremy Fitzhardinge62541c32008-07-10 16:24:08 -0700546 sysenter_feature = X86_FEATURE_SYSENTER32;
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700547#endif
548
Jeremy Fitzhardinge62541c32008-07-10 16:24:08 -0700549 if (!boot_cpu_has(sysenter_feature))
550 return;
551
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700552 ret = register_callback(CALLBACKTYPE_sysenter, xen_sysenter_target);
Jeremy Fitzhardinge62541c32008-07-10 16:24:08 -0700553 if(ret != 0)
554 setup_clear_cpu_cap(sysenter_feature);
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -0700555}
556
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400557void xen_enable_syscall(void)
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700558{
559#ifdef CONFIG_X86_64
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700560 int ret;
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700561
562 ret = register_callback(CALLBACKTYPE_syscall, xen_syscall_target);
563 if (ret != 0) {
Jeremy Fitzhardinged5303b82008-07-12 02:22:06 -0700564 printk(KERN_ERR "Failed to set syscall callback: %d\n", ret);
Jeremy Fitzhardinge62541c32008-07-10 16:24:08 -0700565 /* Pretty fatal; 64-bit userspace has no other
566 mechanism for syscalls. */
567 }
568
569 if (boot_cpu_has(X86_FEATURE_SYSCALL32)) {
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700570 ret = register_callback(CALLBACKTYPE_syscall32,
571 xen_syscall32_target);
Jeremy Fitzhardinged5303b82008-07-12 02:22:06 -0700572 if (ret != 0)
Jeremy Fitzhardinge62541c32008-07-10 16:24:08 -0700573 setup_clear_cpu_cap(X86_FEATURE_SYSCALL32);
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700574 }
575#endif /* CONFIG_X86_64 */
576}
Paul Gortmaker3b284bd2013-11-08 11:21:51 -0500577void xen_enable_nmi(void)
Konrad Rzeszutek Wilk6efa20e2013-07-19 11:51:31 -0400578{
579#ifdef CONFIG_X86_64
Andi Kleen07ba06d2013-10-22 09:07:59 -0700580 if (register_callback(CALLBACKTYPE_nmi, (char *)nmi))
Konrad Rzeszutek Wilk6efa20e2013-07-19 11:51:31 -0400581 BUG();
582#endif
583}
Mukesh Rathord285d682013-12-13 12:45:31 -0500584void __init xen_pvmmu_arch_setup(void)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700585{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700586 HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_4gb_segments);
587 HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_writable_pagetables);
588
Mukesh Rathord285d682013-12-13 12:45:31 -0500589 HYPERVISOR_vm_assist(VMASST_CMD_enable,
590 VMASST_TYPE_pae_extended_cr3);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700591
Jeremy Fitzhardinge88459d42008-07-08 15:07:02 -0700592 if (register_callback(CALLBACKTYPE_event, xen_hypervisor_callback) ||
593 register_callback(CALLBACKTYPE_failsafe, xen_failsafe_callback))
594 BUG();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700595
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -0700596 xen_enable_sysenter();
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700597 xen_enable_syscall();
Konrad Rzeszutek Wilk6efa20e2013-07-19 11:51:31 -0400598 xen_enable_nmi();
Mukesh Rathord285d682013-12-13 12:45:31 -0500599}
600
601/* This function is not called for HVM domains */
602void __init xen_arch_setup(void)
603{
604 xen_panic_handler_init();
605 if (!xen_feature(XENFEAT_auto_translated_physmap))
606 xen_pvmmu_arch_setup();
607
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700608#ifdef CONFIG_ACPI
609 if (!(xen_start_info->flags & SIF_INITDOMAIN)) {
610 printk(KERN_INFO "ACPI in unprivileged domain disabled\n");
611 disable_acpi();
612 }
613#endif
614
615 memcpy(boot_command_line, xen_start_info->cmd_line,
616 MAX_GUEST_CMDLINE > COMMAND_LINE_SIZE ?
617 COMMAND_LINE_SIZE : MAX_GUEST_CMDLINE);
618
Jeremy Fitzhardingebc15fde2010-11-22 17:17:50 -0800619 /* Set up idle, making sure it calls safe_halt() pvop */
Len Brownd91ee582011-04-01 18:28:35 -0400620 disable_cpuidle();
Konrad Rzeszutek Wilk48cdd822012-03-13 20:06:57 -0400621 disable_cpufreq();
Len Brown6a377dd2013-02-09 23:08:07 -0500622 WARN_ON(xen_set_default_idle());
Roland McGrathd2eea682007-07-20 00:31:43 -0700623 fiddle_vdso();
Konrad Rzeszutek Wilk8d54db792012-08-17 10:22:37 -0400624#ifdef CONFIG_NUMA
625 numa_off = 1;
626#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700627}