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.5.6
  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 "xen-ops.h"
 31#include "vdso.h"
 32
 33/* These are code, but not functions.  Defined in entry.S */
 34extern const char xen_hypervisor_callback[];
 35extern const char xen_failsafe_callback[];
 
 
 
 36extern void xen_sysenter_target(void);
 37extern void xen_syscall_target(void);
 38extern void xen_syscall32_target(void);
 39
 40/* Amount of extra memory space we add to the e820 ranges */
 41struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
 42
 43/* Number of pages released from the initial allocation. */
 44unsigned long xen_released_pages;
 45
 46/* 
 47 * The maximum amount of extra memory compared to the base size.  The
 48 * main scaling factor is the size of struct page.  At extreme ratios
 49 * of base:extra, all the base memory can be filled with page
 50 * structures for the extra memory, leaving no space for anything
 51 * else.
 52 * 
 53 * 10x seems like a reasonable balance between scaling flexibility and
 54 * leaving a practically usable system.
 55 */
 56#define EXTRA_MEM_RATIO		(10)
 57
 58static void __init xen_add_extra_mem(u64 start, u64 size)
 59{
 60	unsigned long pfn;
 61	int i;
 62
 63	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
 64		/* Add new region. */
 65		if (xen_extra_mem[i].size == 0) {
 66			xen_extra_mem[i].start = start;
 67			xen_extra_mem[i].size  = size;
 68			break;
 69		}
 70		/* Append to existing region. */
 71		if (xen_extra_mem[i].start + xen_extra_mem[i].size == start) {
 72			xen_extra_mem[i].size += size;
 73			break;
 74		}
 75	}
 76	if (i == XEN_EXTRA_MEM_MAX_REGIONS)
 77		printk(KERN_WARNING "Warning: not enough extra memory regions\n");
 78
 79	memblock_reserve(start, size);
 80
 
 
 
 81	xen_max_p2m_pfn = PFN_DOWN(start + size);
 82	for (pfn = PFN_DOWN(start); pfn < xen_max_p2m_pfn; pfn++) {
 83		unsigned long mfn = pfn_to_mfn(pfn);
 84
 85		if (WARN(mfn == pfn, "Trying to over-write 1-1 mapping (pfn: %lx)\n", pfn))
 86			continue;
 87		WARN(mfn != INVALID_P2M_ENTRY, "Trying to remove %lx which has %lx mfn!\n",
 88			pfn, mfn);
 89
 90		__set_phys_to_machine(pfn, INVALID_P2M_ENTRY);
 91	}
 92}
 93
 94static unsigned long __init xen_do_chunk(unsigned long start,
 95					 unsigned long end, bool release)
 96{
 97	struct xen_memory_reservation reservation = {
 98		.address_bits = 0,
 99		.extent_order = 0,
100		.domid        = DOMID_SELF
101	};
102	unsigned long len = 0;
 
103	unsigned long pfn;
104	int ret;
105
106	for (pfn = start; pfn < end; pfn++) {
107		unsigned long frame;
108		unsigned long mfn = pfn_to_mfn(pfn);
109
110		if (release) {
111			/* Make sure pfn exists to start with */
112			if (mfn == INVALID_P2M_ENTRY || mfn_to_pfn(mfn) != pfn)
113				continue;
114			frame = mfn;
115		} else {
116			if (mfn != INVALID_P2M_ENTRY)
117				continue;
118			frame = pfn;
119		}
120		set_xen_guest_handle(reservation.extent_start, &frame);
121		reservation.nr_extents = 1;
122
123		ret = HYPERVISOR_memory_op(release ? XENMEM_decrease_reservation : XENMEM_populate_physmap,
124					   &reservation);
125		WARN(ret != 1, "Failed to %s pfn %lx err=%d\n",
126		     release ? "release" : "populate", pfn, ret);
127
128		if (ret == 1) {
129			if (!early_set_phys_to_machine(pfn, release ? INVALID_P2M_ENTRY : frame)) {
130				if (release)
131					break;
132				set_xen_guest_handle(reservation.extent_start, &frame);
133				reservation.nr_extents = 1;
134				ret = HYPERVISOR_memory_op(XENMEM_decrease_reservation,
135							   &reservation);
136				break;
137			}
138			len++;
139		} else
140			break;
141	}
142	if (len)
143		printk(KERN_INFO "%s %lx-%lx pfn range: %lu pages %s\n",
144		       release ? "Freeing" : "Populating",
145		       start, end, len,
146		       release ? "freed" : "added");
147
148	return len;
149}
150
151static unsigned long __init xen_release_chunk(unsigned long start,
152					      unsigned long end)
153{
 
 
 
 
 
 
 
154	return xen_do_chunk(start, end, true);
155}
156
157static unsigned long __init xen_populate_chunk(
158	const struct e820entry *list, size_t map_size,
159	unsigned long max_pfn, unsigned long *last_pfn,
160	unsigned long credits_left)
161{
162	const struct e820entry *entry;
163	unsigned int i;
164	unsigned long done = 0;
165	unsigned long dest_pfn;
166
167	for (i = 0, entry = list; i < map_size; i++, entry++) {
168		unsigned long credits = credits_left;
169		unsigned long s_pfn;
170		unsigned long e_pfn;
171		unsigned long pfns;
172		long capacity;
173
174		if (credits <= 0)
175			break;
176
177		if (entry->type != E820_RAM)
178			continue;
179
180		e_pfn = PFN_UP(entry->addr + entry->size);
181
182		/* We only care about E820 after the xen_start_info->nr_pages */
183		if (e_pfn <= max_pfn)
184			continue;
185
186		s_pfn = PFN_DOWN(entry->addr);
187		/* If the E820 falls within the nr_pages, we want to start
188		 * at the nr_pages PFN.
189		 * If that would mean going past the E820 entry, skip it
190		 */
191		if (s_pfn <= max_pfn) {
192			capacity = e_pfn - max_pfn;
193			dest_pfn = max_pfn;
194		} else {
195			/* last_pfn MUST be within E820_RAM regions */
196			if (*last_pfn && e_pfn >= *last_pfn)
197				s_pfn = *last_pfn;
198			capacity = e_pfn - s_pfn;
199			dest_pfn = s_pfn;
200		}
201		/* If we had filled this E820_RAM entry, go to the next one. */
202		if (capacity <= 0)
203			continue;
204
205		if (credits > capacity)
206			credits = capacity;
207
208		pfns = xen_do_chunk(dest_pfn, dest_pfn + credits, false);
209		done += pfns;
 
 
 
210		credits_left -= pfns;
211		*last_pfn = (dest_pfn + pfns);
212	}
213	return done;
214}
215
216static void __init xen_set_identity_and_release_chunk(
217	unsigned long start_pfn, unsigned long end_pfn, unsigned long nr_pages,
218	unsigned long *released, unsigned long *identity)
219{
220	unsigned long pfn;
221
222	/*
223	 * If the PFNs are currently mapped, the VA mapping also needs
224	 * to be updated to be 1:1.
 
225	 */
226	for (pfn = start_pfn; pfn <= max_pfn_mapped && pfn < end_pfn; pfn++)
 
 
 
 
 
 
 
 
 
 
 
227		(void)HYPERVISOR_update_va_mapping(
228			(unsigned long)__va(pfn << PAGE_SHIFT),
229			mfn_pte(pfn, PAGE_KERNEL_IO), 0);
230
231	if (start_pfn < nr_pages)
232		*released += xen_release_chunk(
233			start_pfn, min(end_pfn, nr_pages));
234
235	*identity += set_phys_range_identity(start_pfn, end_pfn);
236}
237
238static unsigned long __init xen_set_identity_and_release(
239	const struct e820entry *list, size_t map_size, unsigned long nr_pages)
240{
241	phys_addr_t start = 0;
242	unsigned long released = 0;
243	unsigned long identity = 0;
244	const struct e820entry *entry;
245	int i;
246
247	/*
248	 * Combine non-RAM regions and gaps until a RAM region (or the
249	 * end of the map) is reached, then set the 1:1 map and
250	 * release the pages (if available) in those non-RAM regions.
251	 *
252	 * The combined non-RAM regions are rounded to a whole number
253	 * of pages so any partial pages are accessible via the 1:1
254	 * mapping.  This is needed for some BIOSes that put (for
255	 * example) the DMI tables in a reserved region that begins on
256	 * a non-page boundary.
257	 */
258	for (i = 0, entry = list; i < map_size; i++, entry++) {
259		phys_addr_t end = entry->addr + entry->size;
260		if (entry->type == E820_RAM || i == map_size - 1) {
261			unsigned long start_pfn = PFN_DOWN(start);
262			unsigned long end_pfn = PFN_UP(end);
263
264			if (entry->type == E820_RAM)
265				end_pfn = PFN_UP(entry->addr);
266
267			if (start_pfn < end_pfn)
268				xen_set_identity_and_release_chunk(
269					start_pfn, end_pfn, nr_pages,
270					&released, &identity);
271
272			start = end;
273		}
274	}
275
276	if (released)
277		printk(KERN_INFO "Released %lu pages of unused memory\n", released);
278	if (identity)
279		printk(KERN_INFO "Set %ld page(s) to 1-1 mapping\n", identity);
280
281	return released;
282}
283
284static unsigned long __init xen_get_max_pages(void)
285{
286	unsigned long max_pages = MAX_DOMAIN_PAGES;
287	domid_t domid = DOMID_SELF;
288	int ret;
289
290	/*
291	 * For the initial domain we use the maximum reservation as
292	 * the maximum page.
293	 *
294	 * For guest domains the current maximum reservation reflects
295	 * the current maximum rather than the static maximum. In this
296	 * case the e820 map provided to us will cover the static
297	 * maximum region.
298	 */
299	if (xen_initial_domain()) {
300		ret = HYPERVISOR_memory_op(XENMEM_maximum_reservation, &domid);
301		if (ret > 0)
302			max_pages = ret;
303	}
304
305	return min(max_pages, MAX_DOMAIN_PAGES);
306}
307
308static void xen_align_and_add_e820_region(u64 start, u64 size, int type)
309{
310	u64 end = start + size;
311
312	/* Align RAM regions to page boundaries. */
313	if (type == E820_RAM) {
314		start = PAGE_ALIGN(start);
315		end &= ~((u64)PAGE_SIZE - 1);
316	}
317
318	e820_add_region(start, end - start, type);
319}
320
 
 
 
 
 
 
 
 
 
 
 
321/**
322 * machine_specific_memory_setup - Hook for machine specific memory setup.
323 **/
324char * __init xen_memory_setup(void)
325{
326	static struct e820entry map[E820MAX] __initdata;
327
328	unsigned long max_pfn = xen_start_info->nr_pages;
329	unsigned long long mem_end;
330	int rc;
331	struct xen_memory_map memmap;
332	unsigned long max_pages;
333	unsigned long last_pfn = 0;
334	unsigned long extra_pages = 0;
335	unsigned long populated;
336	int i;
337	int op;
338
339	max_pfn = min(MAX_DOMAIN_PAGES, max_pfn);
340	mem_end = PFN_PHYS(max_pfn);
341
342	memmap.nr_entries = E820MAX;
343	set_xen_guest_handle(memmap.buffer, map);
344
345	op = xen_initial_domain() ?
346		XENMEM_machine_memory_map :
347		XENMEM_memory_map;
348	rc = HYPERVISOR_memory_op(op, &memmap);
349	if (rc == -ENOSYS) {
350		BUG_ON(xen_initial_domain());
351		memmap.nr_entries = 1;
352		map[0].addr = 0ULL;
353		map[0].size = mem_end;
354		/* 8MB slack (to balance backend allocations). */
355		map[0].size += 8ULL << 20;
356		map[0].type = E820_RAM;
357		rc = 0;
358	}
359	BUG_ON(rc);
360
 
 
 
 
 
 
 
 
 
 
 
361	/* Make sure the Xen-supplied memory map is well-ordered. */
362	sanitize_e820_map(map, memmap.nr_entries, &memmap.nr_entries);
363
364	max_pages = xen_get_max_pages();
365	if (max_pages > max_pfn)
366		extra_pages += max_pages - max_pfn;
367
368	/*
369	 * Set P2M for all non-RAM pages and E820 gaps to be identity
370	 * type PFNs.  Any RAM pages that would be made inaccesible by
371	 * this are first released.
372	 */
373	xen_released_pages = xen_set_identity_and_release(
374		map, memmap.nr_entries, max_pfn);
375
376	/*
377	 * Populate back the non-RAM pages and E820 gaps that had been
378	 * released. */
379	populated = xen_populate_chunk(map, memmap.nr_entries,
380			max_pfn, &last_pfn, xen_released_pages);
381
382	xen_released_pages -= populated;
383	extra_pages += xen_released_pages;
384
385	if (last_pfn > max_pfn) {
386		max_pfn = min(MAX_DOMAIN_PAGES, last_pfn);
387		mem_end = PFN_PHYS(max_pfn);
388	}
389	/*
390	 * Clamp the amount of extra memory to a EXTRA_MEM_RATIO
391	 * factor the base size.  On non-highmem systems, the base
392	 * size is the full initial memory allocation; on highmem it
393	 * is limited to the max size of lowmem, so that it doesn't
394	 * get completely filled.
395	 *
396	 * In principle there could be a problem in lowmem systems if
397	 * the initial memory is also very large with respect to
398	 * lowmem, but we won't try to deal with that here.
399	 */
400	extra_pages = min(EXTRA_MEM_RATIO * min(max_pfn, PFN_DOWN(MAXMEM)),
401			  extra_pages);
402	i = 0;
403	while (i < memmap.nr_entries) {
404		u64 addr = map[i].addr;
405		u64 size = map[i].size;
406		u32 type = map[i].type;
407
408		if (type == E820_RAM) {
409			if (addr < mem_end) {
410				size = min(size, mem_end - addr);
411			} else if (extra_pages) {
412				size = min(size, (u64)extra_pages * PAGE_SIZE);
413				extra_pages -= size / PAGE_SIZE;
414				xen_add_extra_mem(addr, size);
415			} else
416				type = E820_UNUSABLE;
417		}
418
419		xen_align_and_add_e820_region(addr, size, type);
420
421		map[i].addr += size;
422		map[i].size -= size;
423		if (map[i].size == 0)
424			i++;
425	}
426
427	/*
428	 * In domU, the ISA region is normal, usable memory, but we
429	 * reserve ISA memory anyway because too many things poke
430	 * about in there.
431	 */
432	e820_add_region(ISA_START_ADDRESS, ISA_END_ADDRESS - ISA_START_ADDRESS,
433			E820_RESERVED);
434
435	/*
436	 * Reserve Xen bits:
437	 *  - mfn_list
438	 *  - xen_start_info
439	 * See comment above "struct start_info" in <xen/interface/xen.h>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
440	 */
441	memblock_reserve(__pa(xen_start_info->mfn_list),
442			 xen_start_info->pt_base - xen_start_info->mfn_list);
443
444	sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
445
446	return "Xen";
447}
448
449/*
450 * Set the bit indicating "nosegneg" library variants should be used.
451 * We only need to bother in pure 32-bit mode; compat 32-bit processes
452 * can have un-truncated segments, so wrapping around is allowed.
453 */
454static void __init fiddle_vdso(void)
455{
456#ifdef CONFIG_X86_32
457	u32 *mask;
458	mask = VDSO32_SYMBOL(&vdso32_int80_start, NOTE_MASK);
459	*mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
460	mask = VDSO32_SYMBOL(&vdso32_sysenter_start, NOTE_MASK);
461	*mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
462#endif
463}
464
465static int __cpuinit register_callback(unsigned type, const void *func)
466{
467	struct callback_register callback = {
468		.type = type,
469		.address = XEN_CALLBACK(__KERNEL_CS, func),
470		.flags = CALLBACKF_mask_events,
471	};
472
473	return HYPERVISOR_callback_op(CALLBACKOP_register, &callback);
474}
475
476void __cpuinit xen_enable_sysenter(void)
477{
478	int ret;
479	unsigned sysenter_feature;
480
481#ifdef CONFIG_X86_32
482	sysenter_feature = X86_FEATURE_SEP;
483#else
484	sysenter_feature = X86_FEATURE_SYSENTER32;
485#endif
486
487	if (!boot_cpu_has(sysenter_feature))
488		return;
489
490	ret = register_callback(CALLBACKTYPE_sysenter, xen_sysenter_target);
491	if(ret != 0)
492		setup_clear_cpu_cap(sysenter_feature);
493}
494
495void __cpuinit xen_enable_syscall(void)
496{
497#ifdef CONFIG_X86_64
498	int ret;
499
500	ret = register_callback(CALLBACKTYPE_syscall, xen_syscall_target);
501	if (ret != 0) {
502		printk(KERN_ERR "Failed to set syscall callback: %d\n", ret);
503		/* Pretty fatal; 64-bit userspace has no other
504		   mechanism for syscalls. */
505	}
506
507	if (boot_cpu_has(X86_FEATURE_SYSCALL32)) {
508		ret = register_callback(CALLBACKTYPE_syscall32,
509					xen_syscall32_target);
510		if (ret != 0)
511			setup_clear_cpu_cap(X86_FEATURE_SYSCALL32);
512	}
513#endif /* CONFIG_X86_64 */
514}
515
516void __init xen_arch_setup(void)
 
 
 
 
 
 
517{
518	xen_panic_handler_init();
519
520	HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_4gb_segments);
521	HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_writable_pagetables);
522
523	if (!xen_feature(XENFEAT_auto_translated_physmap))
524		HYPERVISOR_vm_assist(VMASST_CMD_enable,
525				     VMASST_TYPE_pae_extended_cr3);
526
527	if (register_callback(CALLBACKTYPE_event, xen_hypervisor_callback) ||
528	    register_callback(CALLBACKTYPE_failsafe, xen_failsafe_callback))
529		BUG();
530
531	xen_enable_sysenter();
532	xen_enable_syscall();
 
 
 
 
 
 
 
 
 
533
534#ifdef CONFIG_ACPI
535	if (!(xen_start_info->flags & SIF_INITDOMAIN)) {
536		printk(KERN_INFO "ACPI in unprivileged domain disabled\n");
537		disable_acpi();
538	}
539#endif
540
541	memcpy(boot_command_line, xen_start_info->cmd_line,
542	       MAX_GUEST_CMDLINE > COMMAND_LINE_SIZE ?
543	       COMMAND_LINE_SIZE : MAX_GUEST_CMDLINE);
544
545	/* Set up idle, making sure it calls safe_halt() pvop */
546#ifdef CONFIG_X86_32
547	boot_cpu_data.hlt_works_ok = 1;
548#endif
549	disable_cpuidle();
550	disable_cpufreq();
551	WARN_ON(set_pm_idle_to_default());
552	fiddle_vdso();
553#ifdef CONFIG_NUMA
554	numa_off = 1;
555#endif
556}