Linux Audio

Check our new training course

Loading...
v3.15
  1/*
  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>
 11#include <linux/memblock.h>
 12#include <linux/cpuidle.h>
 13#include <linux/cpufreq.h>
 14
 15#include <asm/elf.h>
 16#include <asm/vdso.h>
 17#include <asm/e820.h>
 18#include <asm/setup.h>
 19#include <asm/acpi.h>
 20#include <asm/numa.h>
 21#include <asm/xen/hypervisor.h>
 22#include <asm/xen/hypercall.h>
 23
 24#include <xen/xen.h>
 25#include <xen/page.h>
 26#include <xen/interface/callback.h>
 27#include <xen/interface/memory.h>
 28#include <xen/interface/physdev.h>
 29#include <xen/features.h>
 30#include "mmu.h"
 31#include "xen-ops.h"
 32#include "vdso.h"
 33
 34/* These are code, but not functions.  Defined in entry.S */
 35extern const char xen_hypervisor_callback[];
 36extern const char xen_failsafe_callback[];
 37#ifdef CONFIG_X86_64
 38extern asmlinkage void nmi(void);
 39#endif
 40extern void xen_sysenter_target(void);
 41extern void xen_syscall_target(void);
 42extern void xen_syscall32_target(void);
 43
 44/* Amount of extra memory space we add to the e820 ranges */
 45struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
 46
 47/* Number of pages released from the initial allocation. */
 48unsigned long xen_released_pages;
 49
 50/* 
 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
 62static void __init xen_add_extra_mem(u64 start, u64 size)
 63{
 64	unsigned long pfn;
 65	int i;
 66
 67	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");
 82
 83	memblock_reserve(start, size);
 84
 85	if (xen_feature(XENFEAT_auto_translated_physmap))
 86		return;
 87
 88	xen_max_p2m_pfn = PFN_DOWN(start + size);
 89	for (pfn = PFN_DOWN(start); pfn < xen_max_p2m_pfn; pfn++) {
 90		unsigned long mfn = pfn_to_mfn(pfn);
 91
 92		if (WARN(mfn == pfn, "Trying to over-write 1-1 mapping (pfn: %lx)\n", pfn))
 93			continue;
 94		WARN(mfn != INVALID_P2M_ENTRY, "Trying to remove %lx which has %lx mfn!\n",
 95			pfn, mfn);
 96
 
 
 
 97		__set_phys_to_machine(pfn, INVALID_P2M_ENTRY);
 98	}
 99}
100
101static unsigned long __init xen_do_chunk(unsigned long start,
102					 unsigned long end, bool release)
103{
104	struct xen_memory_reservation reservation = {
105		.address_bits = 0,
106		.extent_order = 0,
107		.domid        = DOMID_SELF
108	};
 
109	unsigned long len = 0;
110	int xlated_phys = xen_feature(XENFEAT_auto_translated_physmap);
111	unsigned long pfn;
112	int ret;
113
114	for (pfn = start; pfn < end; pfn++) {
115		unsigned long frame;
 
 
 
 
 
116		unsigned long mfn = pfn_to_mfn(pfn);
117
118		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 {
124			if (!xlated_phys && mfn != INVALID_P2M_ENTRY)
125				continue;
126			frame = pfn;
127		}
128		set_xen_guest_handle(reservation.extent_start, &frame);
129		reservation.nr_extents = 1;
130
131		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
136		if (ret == 1) {
137			if (!early_set_phys_to_machine(pfn, release ? INVALID_P2M_ENTRY : frame)) {
138				if (release)
139					break;
140				set_xen_guest_handle(reservation.extent_start, &frame);
141				reservation.nr_extents = 1;
142				ret = HYPERVISOR_memory_op(XENMEM_decrease_reservation,
143							   &reservation);
144				break;
145			}
146			len++;
147		} else
148			break;
149	}
150	if (len)
151		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
156	return len;
157}
158
159static unsigned long __init xen_release_chunk(unsigned long start,
160					      unsigned long end)
161{
162	/*
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
169	return xen_do_chunk(start, end, true);
170}
171
172static 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++) {
183		unsigned long s_pfn;
184		unsigned long e_pfn;
185		unsigned long pfns;
186		long capacity;
187
188		if (credits_left <= 0)
189			break;
190
191		if (entry->type != E820_RAM)
192			continue;
193
194		e_pfn = PFN_DOWN(entry->addr + entry->size);
195
196		/* We only care about E820 after the xen_start_info->nr_pages */
197		if (e_pfn <= max_pfn)
198			continue;
199
200		s_pfn = PFN_UP(entry->addr);
201		/* 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 {
209			capacity = e_pfn - s_pfn;
210			dest_pfn = s_pfn;
211		}
212
213		if (credits_left < capacity)
214			capacity = credits_left;
215
216		pfns = xen_do_chunk(dest_pfn, dest_pfn + capacity, false);
217		done += pfns;
218		*last_pfn = (dest_pfn + pfns);
219		if (pfns < capacity)
220			break;
221		credits_left -= pfns;
222	}
223	return done;
224}
225
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	/*
233	 * 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.
236	 */
237
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++) {
244		pte_t pte = __pte_ma(0);
245
246		if (pfn < PFN_UP(ISA_END_ADDRESS))
247			pte = mfn_pte(pfn, PAGE_KERNEL_IO);
 
 
248
249		(void)HYPERVISOR_update_va_mapping(
250			(unsigned long)__va(pfn << PAGE_SHIFT), pte, 0);
 
251	}
252
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
260static unsigned long __init xen_set_identity_and_release(
261	const struct e820entry *list, size_t map_size, unsigned long nr_pages)
262{
263	phys_addr_t start = 0;
264	unsigned long released = 0;
265	unsigned long identity = 0;
266	const struct e820entry *entry;
 
267	int i;
268
269	/*
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	 */
280	for (i = 0, entry = list; i < map_size; i++, entry++) {
281		phys_addr_t end = entry->addr + entry->size;
282		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);
285
286			if (entry->type == E820_RAM)
287				end_pfn = PFN_UP(entry->addr);
288
289			if (start_pfn < end_pfn)
290				xen_set_identity_and_release_chunk(
291					start_pfn, end_pfn, nr_pages,
292					&released, &identity);
293
294			start = end;
295		}
296	}
 
 
297
298	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);
302
303	return released;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
304}
305
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
312	/*
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
327	return min(max_pages, MAX_DOMAIN_PAGES);
328}
329
330static 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
343void 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
354/**
355 * machine_specific_memory_setup - Hook for machine specific memory setup.
356 **/
357char * __init xen_memory_setup(void)
358{
359	static struct e820entry map[E820MAX] __initdata;
 
360
361	unsigned long max_pfn = xen_start_info->nr_pages;
362	unsigned long long mem_end;
363	int rc;
364	struct xen_memory_map memmap;
365	unsigned long max_pages;
366	unsigned long last_pfn = 0;
367	unsigned long extra_pages = 0;
368	unsigned long populated;
 
369	int i;
370	int op;
371
372	max_pfn = min(MAX_DOMAIN_PAGES, max_pfn);
373	mem_end = PFN_PHYS(max_pfn);
374
375	memmap.nr_entries = E820MAX;
376	set_xen_guest_handle(memmap.buffer, map);
377
378	op = xen_initial_domain() ?
379		XENMEM_machine_memory_map :
380		XENMEM_memory_map;
381	rc = HYPERVISOR_memory_op(op, &memmap);
382	if (rc == -ENOSYS) {
383		BUG_ON(xen_initial_domain());
384		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);
393
394	/*
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
405	/* Make sure the Xen-supplied memory map is well-ordered. */
406	sanitize_e820_map(map, memmap.nr_entries, &memmap.nr_entries);
407
408	max_pages = xen_get_max_pages();
409	if (max_pages > max_pfn)
410		extra_pages += max_pages - max_pfn;
 
 
 
 
 
 
 
411
412	/*
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);
419
420	/*
421	 * 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
426	xen_released_pages -= populated;
427	extra_pages += xen_released_pages;
428
429	if (last_pfn > max_pfn) {
430		max_pfn = min(MAX_DOMAIN_PAGES, last_pfn);
431		mem_end = PFN_PHYS(max_pfn);
 
 
 
 
 
 
432	}
 
 
 
433	/*
434	 * 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);
446	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;
461		}
462
463		xen_align_and_add_e820_region(addr, size, type);
 
 
 
464
465		map[i].addr += size;
466		map[i].size -= size;
467		if (map[i].size == 0)
468			i++;
469	}
470
471	/*
472	 * In domU, the ISA region is normal, usable memory, but we
473	 * reserve ISA memory anyway because too many things poke
474	 * about in there.
475	 */
476	e820_add_region(ISA_START_ADDRESS, ISA_END_ADDRESS - ISA_START_ADDRESS,
477			E820_RESERVED);
478
479	/*
480	 * Reserve Xen bits:
481	 *  - mfn_list
482	 *  - xen_start_info
483	 * See comment above "struct start_info" in <xen/interface/xen.h>
484	 * 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.
502	 */
503	memblock_reserve(__pa(xen_start_info->mfn_list),
504			 xen_start_info->pt_base - xen_start_info->mfn_list);
505
506	sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
507
508	return "Xen";
509}
510
511/*
512 * Set the bit indicating "nosegneg" library variants should be used.
513 * 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.
515 */
516static void __init fiddle_vdso(void)
517{
518#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);
523	*mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
524#endif
525}
526
527static int register_callback(unsigned type, const void *func)
528{
529	struct callback_register callback = {
530		.type = type,
531		.address = XEN_CALLBACK(__KERNEL_CS, func),
532		.flags = CALLBACKF_mask_events,
533	};
534
535	return HYPERVISOR_callback_op(CALLBACKOP_register, &callback);
536}
537
538void xen_enable_sysenter(void)
539{
540	int ret;
541	unsigned sysenter_feature;
542
543#ifdef CONFIG_X86_32
544	sysenter_feature = X86_FEATURE_SEP;
545#else
546	sysenter_feature = X86_FEATURE_SYSENTER32;
547#endif
548
549	if (!boot_cpu_has(sysenter_feature))
550		return;
551
552	ret = register_callback(CALLBACKTYPE_sysenter, xen_sysenter_target);
553	if(ret != 0)
554		setup_clear_cpu_cap(sysenter_feature);
555}
556
557void xen_enable_syscall(void)
558{
559#ifdef CONFIG_X86_64
560	int ret;
561
562	ret = register_callback(CALLBACKTYPE_syscall, xen_syscall_target);
563	if (ret != 0) {
564		printk(KERN_ERR "Failed to set syscall callback: %d\n", ret);
565		/* Pretty fatal; 64-bit userspace has no other
566		   mechanism for syscalls. */
567	}
568
569	if (boot_cpu_has(X86_FEATURE_SYSCALL32)) {
570		ret = register_callback(CALLBACKTYPE_syscall32,
571					xen_syscall32_target);
572		if (ret != 0)
573			setup_clear_cpu_cap(X86_FEATURE_SYSCALL32);
574	}
575#endif /* CONFIG_X86_64 */
576}
577void xen_enable_nmi(void)
578{
579#ifdef CONFIG_X86_64
580	if (register_callback(CALLBACKTYPE_nmi, (char *)nmi))
581		BUG();
582#endif
583}
584void __init xen_pvmmu_arch_setup(void)
585{
 
 
586	HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_4gb_segments);
587	HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_writable_pagetables);
588
589	HYPERVISOR_vm_assist(VMASST_CMD_enable,
590			     VMASST_TYPE_pae_extended_cr3);
 
591
592	if (register_callback(CALLBACKTYPE_event, xen_hypervisor_callback) ||
593	    register_callback(CALLBACKTYPE_failsafe, xen_failsafe_callback))
594		BUG();
595
596	xen_enable_sysenter();
597	xen_enable_syscall();
598	xen_enable_nmi();
599}
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
608#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
619	/* Set up idle, making sure it calls safe_halt() pvop */
 
 
 
620	disable_cpuidle();
621	disable_cpufreq();
622	WARN_ON(xen_set_default_idle());
623	fiddle_vdso();
624#ifdef CONFIG_NUMA
625	numa_off = 1;
626#endif
627}
v3.1
  1/*
  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>
 11#include <linux/memblock.h>
 12#include <linux/cpuidle.h>
 
 13
 14#include <asm/elf.h>
 15#include <asm/vdso.h>
 16#include <asm/e820.h>
 17#include <asm/setup.h>
 18#include <asm/acpi.h>
 
 19#include <asm/xen/hypervisor.h>
 20#include <asm/xen/hypercall.h>
 21
 22#include <xen/xen.h>
 23#include <xen/page.h>
 24#include <xen/interface/callback.h>
 25#include <xen/interface/memory.h>
 26#include <xen/interface/physdev.h>
 27#include <xen/features.h>
 28
 29#include "xen-ops.h"
 30#include "vdso.h"
 31
 32/* These are code, but not functions.  Defined in entry.S */
 33extern const char xen_hypervisor_callback[];
 34extern const char xen_failsafe_callback[];
 
 
 
 35extern void xen_sysenter_target(void);
 36extern void xen_syscall_target(void);
 37extern void xen_syscall32_target(void);
 38
 39/* Amount of extra memory space we add to the e820 ranges */
 40phys_addr_t xen_extra_mem_start, xen_extra_mem_size;
 
 
 
 41
 42/* 
 43 * The maximum amount of extra memory compared to the base size.  The
 44 * main scaling factor is the size of struct page.  At extreme ratios
 45 * of base:extra, all the base memory can be filled with page
 46 * structures for the extra memory, leaving no space for anything
 47 * else.
 48 * 
 49 * 10x seems like a reasonable balance between scaling flexibility and
 50 * leaving a practically usable system.
 51 */
 52#define EXTRA_MEM_RATIO		(10)
 53
 54static void __init xen_add_extra_mem(unsigned long pages)
 55{
 56	unsigned long pfn;
 
 57
 58	u64 size = (u64)pages * PAGE_SIZE;
 59	u64 extra_start = xen_extra_mem_start + xen_extra_mem_size;
 
 
 
 
 
 
 
 
 
 
 
 
 
 60
 61	if (!pages)
 
 
 62		return;
 63
 64	e820_add_region(extra_start, size, E820_RAM);
 65	sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
 
 66
 67	memblock_x86_reserve_range(extra_start, extra_start + size, "XEN EXTRA");
 68
 69	xen_extra_mem_size += size;
 
 70
 71	xen_max_p2m_pfn = PFN_DOWN(extra_start + size);
 72
 73	for (pfn = PFN_DOWN(extra_start); pfn <= xen_max_p2m_pfn; pfn++)
 74		__set_phys_to_machine(pfn, INVALID_P2M_ENTRY);
 
 75}
 76
 77static unsigned long __init xen_release_chunk(phys_addr_t start_addr,
 78					      phys_addr_t end_addr)
 79{
 80	struct xen_memory_reservation reservation = {
 81		.address_bits = 0,
 82		.extent_order = 0,
 83		.domid        = DOMID_SELF
 84	};
 85	unsigned long start, end;
 86	unsigned long len = 0;
 
 87	unsigned long pfn;
 88	int ret;
 89
 90	start = PFN_UP(start_addr);
 91	end = PFN_DOWN(end_addr);
 92
 93	if (end <= start)
 94		return 0;
 95
 96	for(pfn = start; pfn < end; pfn++) {
 97		unsigned long mfn = pfn_to_mfn(pfn);
 98
 99		/* Make sure pfn exists to start with */
100		if (mfn == INVALID_P2M_ENTRY || mfn_to_pfn(mfn) != pfn)
101			continue;
102
103		set_xen_guest_handle(reservation.extent_start, &mfn);
 
 
 
 
 
 
104		reservation.nr_extents = 1;
105
106		ret = HYPERVISOR_memory_op(XENMEM_decrease_reservation,
107					   &reservation);
108		WARN(ret != 1, "Failed to release pfn %lx err=%d\n", pfn, ret);
 
 
109		if (ret == 1) {
110			__set_phys_to_machine(pfn, INVALID_P2M_ENTRY);
 
 
 
 
 
 
 
 
111			len++;
112		}
 
113	}
114	printk(KERN_INFO "Freeing  %lx-%lx pfn range: %lu pages freed\n",
115	       start, end, len);
 
 
 
116
117	return len;
118}
119
120static unsigned long __init xen_return_unused_memory(unsigned long max_pfn,
121						     const struct e820map *e820)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122{
123	phys_addr_t max_addr = PFN_PHYS(max_pfn);
124	phys_addr_t last_end = ISA_END_ADDRESS;
125	unsigned long released = 0;
126	int i;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
128	/* Free any unused memory above the low 1Mbyte. */
129	for (i = 0; i < e820->nr_map && last_end < max_addr; i++) {
130		phys_addr_t end = e820->map[i].addr;
131		end = min(max_addr, end);
132
133		if (last_end < end)
134			released += xen_release_chunk(last_end, end);
135		last_end = max(last_end, e820->map[i].addr + e820->map[i].size);
136	}
137
138	if (last_end < max_addr)
139		released += xen_release_chunk(last_end, max_addr);
 
140
141	printk(KERN_INFO "released %lu pages of unused memory\n", released);
142	return released;
143}
144
145static unsigned long __init xen_set_identity(const struct e820entry *list,
146					     ssize_t map_size)
147{
148	phys_addr_t last = xen_initial_domain() ? 0 : ISA_END_ADDRESS;
149	phys_addr_t start_pci = last;
 
150	const struct e820entry *entry;
151	unsigned long identity = 0;
152	int i;
153
 
 
 
 
 
 
 
 
 
 
 
154	for (i = 0, entry = list; i < map_size; i++, entry++) {
155		phys_addr_t start = entry->addr;
156		phys_addr_t end = start + entry->size;
 
 
 
 
 
 
 
 
 
 
157
158		if (start < last)
159			start = last;
160
161		if (end <= start)
162			continue;
163
164		/* Skip over the 1MB region. */
165		if (last > end)
166			continue;
 
167
168		if ((entry->type == E820_RAM) || (entry->type == E820_UNUSABLE)) {
169			if (start > start_pci)
170				identity += set_phys_range_identity(
171						PFN_UP(start_pci), PFN_DOWN(start));
172
173			/* Without saving 'last' we would gooble RAM too
174			 * at the end of the loop. */
175			last = end;
176			start_pci = end;
177			continue;
178		}
179		start_pci = min(start, start_pci);
180		last = end;
181	}
182	if (last > start_pci)
183		identity += set_phys_range_identity(
184					PFN_UP(start_pci), PFN_DOWN(last));
185	return identity;
186}
187
188static unsigned long __init xen_get_max_pages(void)
189{
190	unsigned long max_pages = MAX_DOMAIN_PAGES;
191	domid_t domid = DOMID_SELF;
192	int ret;
193
194	ret = HYPERVISOR_memory_op(XENMEM_maximum_reservation, &domid);
195	if (ret > 0)
196		max_pages = ret;
 
 
 
 
 
 
 
 
 
 
 
 
197	return min(max_pages, MAX_DOMAIN_PAGES);
198}
199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
200/**
201 * machine_specific_memory_setup - Hook for machine specific memory setup.
202 **/
203char * __init xen_memory_setup(void)
204{
205	static struct e820entry map[E820MAX] __initdata;
206	static struct e820entry map_raw[E820MAX] __initdata;
207
208	unsigned long max_pfn = xen_start_info->nr_pages;
209	unsigned long long mem_end;
210	int rc;
211	struct xen_memory_map memmap;
 
 
212	unsigned long extra_pages = 0;
213	unsigned long extra_limit;
214	unsigned long identity_pages = 0;
215	int i;
216	int op;
217
218	max_pfn = min(MAX_DOMAIN_PAGES, max_pfn);
219	mem_end = PFN_PHYS(max_pfn);
220
221	memmap.nr_entries = E820MAX;
222	set_xen_guest_handle(memmap.buffer, map);
223
224	op = xen_initial_domain() ?
225		XENMEM_machine_memory_map :
226		XENMEM_memory_map;
227	rc = HYPERVISOR_memory_op(op, &memmap);
228	if (rc == -ENOSYS) {
229		BUG_ON(xen_initial_domain());
230		memmap.nr_entries = 1;
231		map[0].addr = 0ULL;
232		map[0].size = mem_end;
233		/* 8MB slack (to balance backend allocations). */
234		map[0].size += 8ULL << 20;
235		map[0].type = E820_RAM;
236		rc = 0;
237	}
238	BUG_ON(rc);
239
240	memcpy(map_raw, map, sizeof(map));
241	e820.nr_map = 0;
242	xen_extra_mem_start = mem_end;
243	for (i = 0; i < memmap.nr_entries; i++) {
244		unsigned long long end;
245
246		/* Guard against non-page aligned E820 entries. */
247		if (map[i].type == E820_RAM)
248			map[i].size -= (map[i].size + map[i].addr) % PAGE_SIZE;
249
250		end = map[i].addr + map[i].size;
251		if (map[i].type == E820_RAM && end > mem_end) {
252			/* RAM off the end - may be partially included */
253			u64 delta = min(map[i].size, end - mem_end);
254
255			map[i].size -= delta;
256			end -= delta;
257
258			extra_pages += PFN_DOWN(delta);
259			/*
260			 * Set RAM below 4GB that is not for us to be unusable.
261			 * This prevents "System RAM" address space from being
262			 * used as potential resource for I/O address (happens
263			 * when 'allocate_resource' is called).
264			 */
265			if (delta &&
266				(xen_initial_domain() && end < 0x100000000ULL))
267				e820_add_region(end, delta, E820_UNUSABLE);
268		}
269
270		if (map[i].size > 0 && end > xen_extra_mem_start)
271			xen_extra_mem_start = end;
272
273		/* Add region if any remains */
274		if (map[i].size > 0)
275			e820_add_region(map[i].addr, map[i].size, map[i].type);
276	}
277	/* Align the balloon area so that max_low_pfn does not get set
278	 * to be at the _end_ of the PCI gap at the far end (fee01000).
279	 * Note that xen_extra_mem_start gets set in the loop above to be
280	 * past the last E820 region. */
281	if (xen_initial_domain() && (xen_extra_mem_start < (1ULL<<32)))
282		xen_extra_mem_start = (1ULL<<32);
283
284	/*
285	 * In domU, the ISA region is normal, usable memory, but we
286	 * reserve ISA memory anyway because too many things poke
287	 * about in there.
288	 *
289	 * In Dom0, the host E820 information can leave gaps in the
290	 * ISA range, which would cause us to release those pages.  To
291	 * avoid this, we unconditionally reserve them here.
292	 */
293	e820_add_region(ISA_START_ADDRESS, ISA_END_ADDRESS - ISA_START_ADDRESS,
294			E820_RESERVED);
295
296	/*
297	 * Reserve Xen bits:
298	 *  - mfn_list
299	 *  - xen_start_info
300	 * See comment above "struct start_info" in <xen/interface/xen.h>
301	 */
302	memblock_x86_reserve_range(__pa(xen_start_info->mfn_list),
303		      __pa(xen_start_info->pt_base),
304			"XEN START INFO");
305
306	sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
307
308	extra_limit = xen_get_max_pages();
309	if (max_pfn + extra_pages > extra_limit) {
310		if (extra_limit > max_pfn)
311			extra_pages = extra_limit - max_pfn;
312		else
313			extra_pages = 0;
314	}
315
316	extra_pages += xen_return_unused_memory(xen_start_info->nr_pages, &e820);
317
318	/*
319	 * Clamp the amount of extra memory to a EXTRA_MEM_RATIO
320	 * factor the base size.  On non-highmem systems, the base
321	 * size is the full initial memory allocation; on highmem it
322	 * is limited to the max size of lowmem, so that it doesn't
323	 * get completely filled.
324	 *
325	 * In principle there could be a problem in lowmem systems if
326	 * the initial memory is also very large with respect to
327	 * lowmem, but we won't try to deal with that here.
328	 */
329	extra_limit = min(EXTRA_MEM_RATIO * min(max_pfn, PFN_DOWN(MAXMEM)),
330			  max_pfn + extra_pages);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
332	if (extra_limit >= max_pfn)
333		extra_pages = extra_limit - max_pfn;
334	else
335		extra_pages = 0;
336
337	xen_add_extra_mem(extra_pages);
 
 
 
 
338
339	/*
340	 * Set P2M for all non-RAM pages and E820 gaps to be identity
341	 * type PFNs. We supply it with the non-sanitized version
342	 * of the E820.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343	 */
344	identity_pages = xen_set_identity(map_raw, memmap.nr_entries);
345	printk(KERN_INFO "Set %ld page(s) to 1-1 mapping.\n", identity_pages);
 
 
 
346	return "Xen";
347}
348
349/*
350 * Set the bit indicating "nosegneg" library variants should be used.
351 * We only need to bother in pure 32-bit mode; compat 32-bit processes
352 * can have un-truncated segments, so wrapping around is allowed.
353 */
354static void __init fiddle_vdso(void)
355{
356#ifdef CONFIG_X86_32
357	u32 *mask;
358	mask = VDSO32_SYMBOL(&vdso32_int80_start, NOTE_MASK);
359	*mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
360	mask = VDSO32_SYMBOL(&vdso32_sysenter_start, NOTE_MASK);
361	*mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
362#endif
363}
364
365static int __cpuinit register_callback(unsigned type, const void *func)
366{
367	struct callback_register callback = {
368		.type = type,
369		.address = XEN_CALLBACK(__KERNEL_CS, func),
370		.flags = CALLBACKF_mask_events,
371	};
372
373	return HYPERVISOR_callback_op(CALLBACKOP_register, &callback);
374}
375
376void __cpuinit xen_enable_sysenter(void)
377{
378	int ret;
379	unsigned sysenter_feature;
380
381#ifdef CONFIG_X86_32
382	sysenter_feature = X86_FEATURE_SEP;
383#else
384	sysenter_feature = X86_FEATURE_SYSENTER32;
385#endif
386
387	if (!boot_cpu_has(sysenter_feature))
388		return;
389
390	ret = register_callback(CALLBACKTYPE_sysenter, xen_sysenter_target);
391	if(ret != 0)
392		setup_clear_cpu_cap(sysenter_feature);
393}
394
395void __cpuinit xen_enable_syscall(void)
396{
397#ifdef CONFIG_X86_64
398	int ret;
399
400	ret = register_callback(CALLBACKTYPE_syscall, xen_syscall_target);
401	if (ret != 0) {
402		printk(KERN_ERR "Failed to set syscall callback: %d\n", ret);
403		/* Pretty fatal; 64-bit userspace has no other
404		   mechanism for syscalls. */
405	}
406
407	if (boot_cpu_has(X86_FEATURE_SYSCALL32)) {
408		ret = register_callback(CALLBACKTYPE_syscall32,
409					xen_syscall32_target);
410		if (ret != 0)
411			setup_clear_cpu_cap(X86_FEATURE_SYSCALL32);
412	}
413#endif /* CONFIG_X86_64 */
414}
415
416void __init xen_arch_setup(void)
 
 
 
 
 
 
417{
418	xen_panic_handler_init();
419
420	HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_4gb_segments);
421	HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_writable_pagetables);
422
423	if (!xen_feature(XENFEAT_auto_translated_physmap))
424		HYPERVISOR_vm_assist(VMASST_CMD_enable,
425				     VMASST_TYPE_pae_extended_cr3);
426
427	if (register_callback(CALLBACKTYPE_event, xen_hypervisor_callback) ||
428	    register_callback(CALLBACKTYPE_failsafe, xen_failsafe_callback))
429		BUG();
430
431	xen_enable_sysenter();
432	xen_enable_syscall();
 
 
 
 
 
 
 
 
 
433
434#ifdef CONFIG_ACPI
435	if (!(xen_start_info->flags & SIF_INITDOMAIN)) {
436		printk(KERN_INFO "ACPI in unprivileged domain disabled\n");
437		disable_acpi();
438	}
439#endif
440
441	memcpy(boot_command_line, xen_start_info->cmd_line,
442	       MAX_GUEST_CMDLINE > COMMAND_LINE_SIZE ?
443	       COMMAND_LINE_SIZE : MAX_GUEST_CMDLINE);
444
445	/* Set up idle, making sure it calls safe_halt() pvop */
446#ifdef CONFIG_X86_32
447	boot_cpu_data.hlt_works_ok = 1;
448#endif
449	disable_cpuidle();
450	boot_option_idle_override = IDLE_HALT;
451
452	fiddle_vdso();
 
 
 
453}