setup.c 13 KB

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