setup.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451
  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. static unsigned long __init xen_get_max_pages(void)
  153. {
  154. unsigned long max_pages = MAX_DOMAIN_PAGES;
  155. domid_t domid = DOMID_SELF;
  156. int ret;
  157. ret = HYPERVISOR_memory_op(XENMEM_maximum_reservation, &domid);
  158. if (ret > 0)
  159. max_pages = ret;
  160. return min(max_pages, MAX_DOMAIN_PAGES);
  161. }
  162. /**
  163. * machine_specific_memory_setup - Hook for machine specific memory setup.
  164. **/
  165. char * __init xen_memory_setup(void)
  166. {
  167. static struct e820entry map[E820MAX] __initdata;
  168. static struct e820entry map_raw[E820MAX] __initdata;
  169. unsigned long max_pfn = xen_start_info->nr_pages;
  170. unsigned long long mem_end;
  171. int rc;
  172. struct xen_memory_map memmap;
  173. unsigned long extra_pages = 0;
  174. unsigned long extra_limit;
  175. unsigned long identity_pages = 0;
  176. int i;
  177. int op;
  178. max_pfn = min(MAX_DOMAIN_PAGES, max_pfn);
  179. mem_end = PFN_PHYS(max_pfn);
  180. memmap.nr_entries = E820MAX;
  181. set_xen_guest_handle(memmap.buffer, map);
  182. op = xen_initial_domain() ?
  183. XENMEM_machine_memory_map :
  184. XENMEM_memory_map;
  185. rc = HYPERVISOR_memory_op(op, &memmap);
  186. if (rc == -ENOSYS) {
  187. BUG_ON(xen_initial_domain());
  188. memmap.nr_entries = 1;
  189. map[0].addr = 0ULL;
  190. map[0].size = mem_end;
  191. /* 8MB slack (to balance backend allocations). */
  192. map[0].size += 8ULL << 20;
  193. map[0].type = E820_RAM;
  194. rc = 0;
  195. }
  196. BUG_ON(rc);
  197. memcpy(map_raw, map, sizeof(map));
  198. e820.nr_map = 0;
  199. xen_extra_mem_start = mem_end;
  200. for (i = 0; i < memmap.nr_entries; i++) {
  201. unsigned long long end;
  202. /* Guard against non-page aligned E820 entries. */
  203. if (map[i].type == E820_RAM)
  204. map[i].size -= (map[i].size + map[i].addr) % PAGE_SIZE;
  205. end = map[i].addr + map[i].size;
  206. if (map[i].type == E820_RAM && end > mem_end) {
  207. /* RAM off the end - may be partially included */
  208. u64 delta = min(map[i].size, end - mem_end);
  209. map[i].size -= delta;
  210. end -= delta;
  211. extra_pages += PFN_DOWN(delta);
  212. /*
  213. * Set RAM below 4GB that is not for us to be unusable.
  214. * This prevents "System RAM" address space from being
  215. * used as potential resource for I/O address (happens
  216. * when 'allocate_resource' is called).
  217. */
  218. if (delta &&
  219. (xen_initial_domain() && end < 0x100000000ULL))
  220. e820_add_region(end, delta, E820_UNUSABLE);
  221. }
  222. if (map[i].size > 0 && end > xen_extra_mem_start)
  223. xen_extra_mem_start = end;
  224. /* Add region if any remains */
  225. if (map[i].size > 0)
  226. e820_add_region(map[i].addr, map[i].size, map[i].type);
  227. }
  228. /* Align the balloon area so that max_low_pfn does not get set
  229. * to be at the _end_ of the PCI gap at the far end (fee01000).
  230. * Note that xen_extra_mem_start gets set in the loop above to be
  231. * past the last E820 region. */
  232. if (xen_initial_domain() && (xen_extra_mem_start < (1ULL<<32)))
  233. xen_extra_mem_start = (1ULL<<32);
  234. /*
  235. * In domU, the ISA region is normal, usable memory, but we
  236. * reserve ISA memory anyway because too many things poke
  237. * about in there.
  238. *
  239. * In Dom0, the host E820 information can leave gaps in the
  240. * ISA range, which would cause us to release those pages. To
  241. * avoid this, we unconditionally reserve them here.
  242. */
  243. e820_add_region(ISA_START_ADDRESS, ISA_END_ADDRESS - ISA_START_ADDRESS,
  244. E820_RESERVED);
  245. /*
  246. * Reserve Xen bits:
  247. * - mfn_list
  248. * - xen_start_info
  249. * See comment above "struct start_info" in <xen/interface/xen.h>
  250. */
  251. memblock_x86_reserve_range(__pa(xen_start_info->mfn_list),
  252. __pa(xen_start_info->pt_base),
  253. "XEN START INFO");
  254. sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
  255. extra_limit = xen_get_max_pages();
  256. if (extra_limit >= max_pfn)
  257. extra_pages = extra_limit - max_pfn;
  258. else
  259. extra_pages = 0;
  260. extra_pages += xen_return_unused_memory(xen_start_info->nr_pages, &e820);
  261. /*
  262. * Clamp the amount of extra memory to a EXTRA_MEM_RATIO
  263. * factor the base size. On non-highmem systems, the base
  264. * size is the full initial memory allocation; on highmem it
  265. * is limited to the max size of lowmem, so that it doesn't
  266. * get completely filled.
  267. *
  268. * In principle there could be a problem in lowmem systems if
  269. * the initial memory is also very large with respect to
  270. * lowmem, but we won't try to deal with that here.
  271. */
  272. extra_limit = min(EXTRA_MEM_RATIO * min(max_pfn, PFN_DOWN(MAXMEM)),
  273. max_pfn + extra_pages);
  274. if (extra_limit >= max_pfn)
  275. extra_pages = extra_limit - max_pfn;
  276. else
  277. extra_pages = 0;
  278. xen_add_extra_mem(extra_pages);
  279. /*
  280. * Set P2M for all non-RAM pages and E820 gaps to be identity
  281. * type PFNs. We supply it with the non-sanitized version
  282. * of the E820.
  283. */
  284. identity_pages = xen_set_identity(map_raw, memmap.nr_entries);
  285. printk(KERN_INFO "Set %ld page(s) to 1-1 mapping.\n", identity_pages);
  286. return "Xen";
  287. }
  288. /*
  289. * Set the bit indicating "nosegneg" library variants should be used.
  290. * We only need to bother in pure 32-bit mode; compat 32-bit processes
  291. * can have un-truncated segments, so wrapping around is allowed.
  292. */
  293. static void __init fiddle_vdso(void)
  294. {
  295. #ifdef CONFIG_X86_32
  296. u32 *mask;
  297. mask = VDSO32_SYMBOL(&vdso32_int80_start, NOTE_MASK);
  298. *mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
  299. mask = VDSO32_SYMBOL(&vdso32_sysenter_start, NOTE_MASK);
  300. *mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
  301. #endif
  302. }
  303. static int __cpuinit register_callback(unsigned type, const void *func)
  304. {
  305. struct callback_register callback = {
  306. .type = type,
  307. .address = XEN_CALLBACK(__KERNEL_CS, func),
  308. .flags = CALLBACKF_mask_events,
  309. };
  310. return HYPERVISOR_callback_op(CALLBACKOP_register, &callback);
  311. }
  312. void __cpuinit xen_enable_sysenter(void)
  313. {
  314. int ret;
  315. unsigned sysenter_feature;
  316. #ifdef CONFIG_X86_32
  317. sysenter_feature = X86_FEATURE_SEP;
  318. #else
  319. sysenter_feature = X86_FEATURE_SYSENTER32;
  320. #endif
  321. if (!boot_cpu_has(sysenter_feature))
  322. return;
  323. ret = register_callback(CALLBACKTYPE_sysenter, xen_sysenter_target);
  324. if(ret != 0)
  325. setup_clear_cpu_cap(sysenter_feature);
  326. }
  327. void __cpuinit xen_enable_syscall(void)
  328. {
  329. #ifdef CONFIG_X86_64
  330. int ret;
  331. ret = register_callback(CALLBACKTYPE_syscall, xen_syscall_target);
  332. if (ret != 0) {
  333. printk(KERN_ERR "Failed to set syscall callback: %d\n", ret);
  334. /* Pretty fatal; 64-bit userspace has no other
  335. mechanism for syscalls. */
  336. }
  337. if (boot_cpu_has(X86_FEATURE_SYSCALL32)) {
  338. ret = register_callback(CALLBACKTYPE_syscall32,
  339. xen_syscall32_target);
  340. if (ret != 0)
  341. setup_clear_cpu_cap(X86_FEATURE_SYSCALL32);
  342. }
  343. #endif /* CONFIG_X86_64 */
  344. }
  345. void __init xen_arch_setup(void)
  346. {
  347. xen_panic_handler_init();
  348. HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_4gb_segments);
  349. HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_writable_pagetables);
  350. if (!xen_feature(XENFEAT_auto_translated_physmap))
  351. HYPERVISOR_vm_assist(VMASST_CMD_enable,
  352. VMASST_TYPE_pae_extended_cr3);
  353. if (register_callback(CALLBACKTYPE_event, xen_hypervisor_callback) ||
  354. register_callback(CALLBACKTYPE_failsafe, xen_failsafe_callback))
  355. BUG();
  356. xen_enable_sysenter();
  357. xen_enable_syscall();
  358. #ifdef CONFIG_ACPI
  359. if (!(xen_start_info->flags & SIF_INITDOMAIN)) {
  360. printk(KERN_INFO "ACPI in unprivileged domain disabled\n");
  361. disable_acpi();
  362. }
  363. #endif
  364. memcpy(boot_command_line, xen_start_info->cmd_line,
  365. MAX_GUEST_CMDLINE > COMMAND_LINE_SIZE ?
  366. COMMAND_LINE_SIZE : MAX_GUEST_CMDLINE);
  367. /* Set up idle, making sure it calls safe_halt() pvop */
  368. #ifdef CONFIG_X86_32
  369. boot_cpu_data.hlt_works_ok = 1;
  370. #endif
  371. disable_cpuidle();
  372. boot_option_idle_override = IDLE_HALT;
  373. fiddle_vdso();
  374. }