setup.c 16 KB

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