setup.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. /*
  2. * Machine specific setup for xen
  3. *
  4. * Jeremy Fitzhardinge <jeremy@xensource.com>, XenSource Inc, 2007
  5. */
  6. #include <linux/module.h>
  7. #include <linux/sched.h>
  8. #include <linux/mm.h>
  9. #include <linux/pm.h>
  10. #include <linux/memblock.h>
  11. #include <linux/cpuidle.h>
  12. #include <asm/elf.h>
  13. #include <asm/vdso.h>
  14. #include <asm/e820.h>
  15. #include <asm/setup.h>
  16. #include <asm/acpi.h>
  17. #include <asm/xen/hypervisor.h>
  18. #include <asm/xen/hypercall.h>
  19. #include <xen/xen.h>
  20. #include <xen/page.h>
  21. #include <xen/interface/callback.h>
  22. #include <xen/interface/memory.h>
  23. #include <xen/interface/physdev.h>
  24. #include <xen/features.h>
  25. #include "xen-ops.h"
  26. #include "vdso.h"
  27. /* These are code, but not functions. Defined in entry.S */
  28. extern const char xen_hypervisor_callback[];
  29. extern const char xen_failsafe_callback[];
  30. extern void xen_sysenter_target(void);
  31. extern void xen_syscall_target(void);
  32. extern void xen_syscall32_target(void);
  33. /* Amount of extra memory space we add to the e820 ranges */
  34. phys_addr_t xen_extra_mem_start, xen_extra_mem_size;
  35. /*
  36. * The maximum amount of extra memory compared to the base size. The
  37. * main scaling factor is the size of struct page. At extreme ratios
  38. * of base:extra, all the base memory can be filled with page
  39. * structures for the extra memory, leaving no space for anything
  40. * else.
  41. *
  42. * 10x seems like a reasonable balance between scaling flexibility and
  43. * leaving a practically usable system.
  44. */
  45. #define EXTRA_MEM_RATIO (10)
  46. static void __init xen_add_extra_mem(unsigned long pages)
  47. {
  48. unsigned long pfn;
  49. u64 size = (u64)pages * PAGE_SIZE;
  50. u64 extra_start = xen_extra_mem_start + xen_extra_mem_size;
  51. if (!pages)
  52. return;
  53. e820_add_region(extra_start, size, E820_RAM);
  54. sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
  55. memblock_x86_reserve_range(extra_start, extra_start + size, "XEN EXTRA");
  56. xen_extra_mem_size += size;
  57. xen_max_p2m_pfn = PFN_DOWN(extra_start + size);
  58. for (pfn = PFN_DOWN(extra_start); pfn <= xen_max_p2m_pfn; pfn++)
  59. __set_phys_to_machine(pfn, INVALID_P2M_ENTRY);
  60. }
  61. static unsigned long __init xen_release_chunk(phys_addr_t start_addr,
  62. phys_addr_t end_addr)
  63. {
  64. struct xen_memory_reservation reservation = {
  65. .address_bits = 0,
  66. .extent_order = 0,
  67. .domid = DOMID_SELF
  68. };
  69. unsigned long start, end;
  70. unsigned long len = 0;
  71. unsigned long pfn;
  72. int ret;
  73. start = PFN_UP(start_addr);
  74. end = PFN_DOWN(end_addr);
  75. if (end <= start)
  76. return 0;
  77. for(pfn = start; pfn < end; pfn++) {
  78. unsigned long mfn = pfn_to_mfn(pfn);
  79. /* Make sure pfn exists to start with */
  80. if (mfn == INVALID_P2M_ENTRY || mfn_to_pfn(mfn) != pfn)
  81. continue;
  82. set_xen_guest_handle(reservation.extent_start, &mfn);
  83. reservation.nr_extents = 1;
  84. ret = HYPERVISOR_memory_op(XENMEM_decrease_reservation,
  85. &reservation);
  86. WARN(ret != 1, "Failed to release pfn %lx err=%d\n", pfn, ret);
  87. if (ret == 1) {
  88. __set_phys_to_machine(pfn, INVALID_P2M_ENTRY);
  89. len++;
  90. }
  91. }
  92. printk(KERN_INFO "Freeing %lx-%lx pfn range: %lu pages freed\n",
  93. start, end, len);
  94. return len;
  95. }
  96. static unsigned long __init xen_return_unused_memory(unsigned long max_pfn,
  97. const struct e820map *e820)
  98. {
  99. phys_addr_t max_addr = PFN_PHYS(max_pfn);
  100. phys_addr_t last_end = ISA_END_ADDRESS;
  101. unsigned long released = 0;
  102. int i;
  103. /* Free any unused memory above the low 1Mbyte. */
  104. for (i = 0; i < e820->nr_map && last_end < max_addr; i++) {
  105. phys_addr_t end = e820->map[i].addr;
  106. end = min(max_addr, end);
  107. if (last_end < end)
  108. released += xen_release_chunk(last_end, end);
  109. last_end = max(last_end, e820->map[i].addr + e820->map[i].size);
  110. }
  111. if (last_end < max_addr)
  112. released += xen_release_chunk(last_end, max_addr);
  113. printk(KERN_INFO "released %lu pages of unused memory\n", released);
  114. return released;
  115. }
  116. static unsigned long __init xen_set_identity(const struct e820entry *list,
  117. ssize_t map_size)
  118. {
  119. phys_addr_t last = xen_initial_domain() ? 0 : ISA_END_ADDRESS;
  120. phys_addr_t start_pci = last;
  121. const struct e820entry *entry;
  122. unsigned long identity = 0;
  123. int i;
  124. for (i = 0, entry = list; i < map_size; i++, entry++) {
  125. phys_addr_t start = entry->addr;
  126. phys_addr_t end = start + entry->size;
  127. if (start < last)
  128. start = last;
  129. if (end <= start)
  130. continue;
  131. /* Skip over the 1MB region. */
  132. if (last > end)
  133. continue;
  134. if ((entry->type == E820_RAM) || (entry->type == E820_UNUSABLE)) {
  135. if (start > start_pci)
  136. identity += set_phys_range_identity(
  137. PFN_UP(start_pci), PFN_DOWN(start));
  138. /* Without saving 'last' we would gooble RAM too
  139. * at the end of the loop. */
  140. last = end;
  141. start_pci = end;
  142. continue;
  143. }
  144. start_pci = min(start, start_pci);
  145. last = end;
  146. }
  147. if (last > start_pci)
  148. identity += set_phys_range_identity(
  149. PFN_UP(start_pci), PFN_DOWN(last));
  150. return identity;
  151. }
  152. /**
  153. * machine_specific_memory_setup - Hook for machine specific memory setup.
  154. **/
  155. char * __init xen_memory_setup(void)
  156. {
  157. static struct e820entry map[E820MAX] __initdata;
  158. static struct e820entry map_raw[E820MAX] __initdata;
  159. unsigned long max_pfn = xen_start_info->nr_pages;
  160. unsigned long long mem_end;
  161. int rc;
  162. struct xen_memory_map memmap;
  163. unsigned long extra_pages = 0;
  164. unsigned long extra_limit;
  165. unsigned long identity_pages = 0;
  166. int i;
  167. int op;
  168. max_pfn = min(MAX_DOMAIN_PAGES, max_pfn);
  169. mem_end = PFN_PHYS(max_pfn);
  170. memmap.nr_entries = E820MAX;
  171. set_xen_guest_handle(memmap.buffer, map);
  172. op = xen_initial_domain() ?
  173. XENMEM_machine_memory_map :
  174. XENMEM_memory_map;
  175. rc = HYPERVISOR_memory_op(op, &memmap);
  176. if (rc == -ENOSYS) {
  177. BUG_ON(xen_initial_domain());
  178. memmap.nr_entries = 1;
  179. map[0].addr = 0ULL;
  180. map[0].size = mem_end;
  181. /* 8MB slack (to balance backend allocations). */
  182. map[0].size += 8ULL << 20;
  183. map[0].type = E820_RAM;
  184. rc = 0;
  185. }
  186. BUG_ON(rc);
  187. memcpy(map_raw, map, sizeof(map));
  188. e820.nr_map = 0;
  189. xen_extra_mem_start = mem_end;
  190. for (i = 0; i < memmap.nr_entries; i++) {
  191. unsigned long long end;
  192. /* Guard against non-page aligned E820 entries. */
  193. if (map[i].type == E820_RAM)
  194. map[i].size -= (map[i].size + map[i].addr) % PAGE_SIZE;
  195. end = map[i].addr + map[i].size;
  196. if (map[i].type == E820_RAM && end > mem_end) {
  197. /* RAM off the end - may be partially included */
  198. u64 delta = min(map[i].size, end - mem_end);
  199. map[i].size -= delta;
  200. end -= delta;
  201. extra_pages += PFN_DOWN(delta);
  202. /*
  203. * Set RAM below 4GB that is not for us to be unusable.
  204. * This prevents "System RAM" address space from being
  205. * used as potential resource for I/O address (happens
  206. * when 'allocate_resource' is called).
  207. */
  208. if (delta &&
  209. (xen_initial_domain() && end < 0x100000000ULL))
  210. e820_add_region(end, delta, E820_UNUSABLE);
  211. }
  212. if (map[i].size > 0 && end > xen_extra_mem_start)
  213. xen_extra_mem_start = end;
  214. /* Add region if any remains */
  215. if (map[i].size > 0)
  216. e820_add_region(map[i].addr, map[i].size, map[i].type);
  217. }
  218. /* Align the balloon area so that max_low_pfn does not get set
  219. * to be at the _end_ of the PCI gap at the far end (fee01000).
  220. * Note that xen_extra_mem_start gets set in the loop above to be
  221. * past the last E820 region. */
  222. if (xen_initial_domain() && (xen_extra_mem_start < (1ULL<<32)))
  223. xen_extra_mem_start = (1ULL<<32);
  224. /*
  225. * In domU, the ISA region is normal, usable memory, but we
  226. * reserve ISA memory anyway because too many things poke
  227. * about in there.
  228. *
  229. * In Dom0, the host E820 information can leave gaps in the
  230. * ISA range, which would cause us to release those pages. To
  231. * avoid this, we unconditionally reserve them here.
  232. */
  233. e820_add_region(ISA_START_ADDRESS, ISA_END_ADDRESS - ISA_START_ADDRESS,
  234. E820_RESERVED);
  235. /*
  236. * Reserve Xen bits:
  237. * - mfn_list
  238. * - xen_start_info
  239. * See comment above "struct start_info" in <xen/interface/xen.h>
  240. */
  241. memblock_x86_reserve_range(__pa(xen_start_info->mfn_list),
  242. __pa(xen_start_info->pt_base),
  243. "XEN START INFO");
  244. sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
  245. extra_pages += xen_return_unused_memory(xen_start_info->nr_pages, &e820);
  246. /*
  247. * Clamp the amount of extra memory to a EXTRA_MEM_RATIO
  248. * factor the base size. On non-highmem systems, the base
  249. * size is the full initial memory allocation; on highmem it
  250. * is limited to the max size of lowmem, so that it doesn't
  251. * get completely filled.
  252. *
  253. * In principle there could be a problem in lowmem systems if
  254. * the initial memory is also very large with respect to
  255. * lowmem, but we won't try to deal with that here.
  256. */
  257. extra_limit = min(EXTRA_MEM_RATIO * min(max_pfn, PFN_DOWN(MAXMEM)),
  258. max_pfn + extra_pages);
  259. if (extra_limit >= max_pfn)
  260. extra_pages = extra_limit - max_pfn;
  261. else
  262. extra_pages = 0;
  263. xen_add_extra_mem(extra_pages);
  264. /*
  265. * Set P2M for all non-RAM pages and E820 gaps to be identity
  266. * type PFNs. We supply it with the non-sanitized version
  267. * of the E820.
  268. */
  269. identity_pages = xen_set_identity(map_raw, memmap.nr_entries);
  270. printk(KERN_INFO "Set %ld page(s) to 1-1 mapping.\n", identity_pages);
  271. return "Xen";
  272. }
  273. /*
  274. * Set the bit indicating "nosegneg" library variants should be used.
  275. * We only need to bother in pure 32-bit mode; compat 32-bit processes
  276. * can have un-truncated segments, so wrapping around is allowed.
  277. */
  278. static void __init fiddle_vdso(void)
  279. {
  280. #ifdef CONFIG_X86_32
  281. u32 *mask;
  282. mask = VDSO32_SYMBOL(&vdso32_int80_start, NOTE_MASK);
  283. *mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
  284. mask = VDSO32_SYMBOL(&vdso32_sysenter_start, NOTE_MASK);
  285. *mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
  286. #endif
  287. }
  288. static int __cpuinit register_callback(unsigned type, const void *func)
  289. {
  290. struct callback_register callback = {
  291. .type = type,
  292. .address = XEN_CALLBACK(__KERNEL_CS, func),
  293. .flags = CALLBACKF_mask_events,
  294. };
  295. return HYPERVISOR_callback_op(CALLBACKOP_register, &callback);
  296. }
  297. void __cpuinit xen_enable_sysenter(void)
  298. {
  299. int ret;
  300. unsigned sysenter_feature;
  301. #ifdef CONFIG_X86_32
  302. sysenter_feature = X86_FEATURE_SEP;
  303. #else
  304. sysenter_feature = X86_FEATURE_SYSENTER32;
  305. #endif
  306. if (!boot_cpu_has(sysenter_feature))
  307. return;
  308. ret = register_callback(CALLBACKTYPE_sysenter, xen_sysenter_target);
  309. if(ret != 0)
  310. setup_clear_cpu_cap(sysenter_feature);
  311. }
  312. void __cpuinit xen_enable_syscall(void)
  313. {
  314. #ifdef CONFIG_X86_64
  315. int ret;
  316. ret = register_callback(CALLBACKTYPE_syscall, xen_syscall_target);
  317. if (ret != 0) {
  318. printk(KERN_ERR "Failed to set syscall callback: %d\n", ret);
  319. /* Pretty fatal; 64-bit userspace has no other
  320. mechanism for syscalls. */
  321. }
  322. if (boot_cpu_has(X86_FEATURE_SYSCALL32)) {
  323. ret = register_callback(CALLBACKTYPE_syscall32,
  324. xen_syscall32_target);
  325. if (ret != 0)
  326. setup_clear_cpu_cap(X86_FEATURE_SYSCALL32);
  327. }
  328. #endif /* CONFIG_X86_64 */
  329. }
  330. void __init xen_arch_setup(void)
  331. {
  332. xen_panic_handler_init();
  333. HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_4gb_segments);
  334. HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_writable_pagetables);
  335. if (!xen_feature(XENFEAT_auto_translated_physmap))
  336. HYPERVISOR_vm_assist(VMASST_CMD_enable,
  337. VMASST_TYPE_pae_extended_cr3);
  338. if (register_callback(CALLBACKTYPE_event, xen_hypervisor_callback) ||
  339. register_callback(CALLBACKTYPE_failsafe, xen_failsafe_callback))
  340. BUG();
  341. xen_enable_sysenter();
  342. xen_enable_syscall();
  343. #ifdef CONFIG_ACPI
  344. if (!(xen_start_info->flags & SIF_INITDOMAIN)) {
  345. printk(KERN_INFO "ACPI in unprivileged domain disabled\n");
  346. disable_acpi();
  347. }
  348. #endif
  349. memcpy(boot_command_line, xen_start_info->cmd_line,
  350. MAX_GUEST_CMDLINE > COMMAND_LINE_SIZE ?
  351. COMMAND_LINE_SIZE : MAX_GUEST_CMDLINE);
  352. /* Set up idle, making sure it calls safe_halt() pvop */
  353. #ifdef CONFIG_X86_32
  354. boot_cpu_data.hlt_works_ok = 1;
  355. #endif
  356. disable_cpuidle();
  357. boot_option_idle_override = IDLE_HALT;
  358. fiddle_vdso();
  359. }