book3s_hv_builtin.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  1. /*
  2. * Copyright 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License, version 2, as
  6. * published by the Free Software Foundation.
  7. */
  8. #include <linux/cpu.h>
  9. #include <linux/kvm_host.h>
  10. #include <linux/preempt.h>
  11. #include <linux/export.h>
  12. #include <linux/sched.h>
  13. #include <linux/spinlock.h>
  14. #include <linux/init.h>
  15. #include <linux/memblock.h>
  16. #include <linux/sizes.h>
  17. #include <linux/cma.h>
  18. #include <linux/bitops.h>
  19. #include <asm/cputable.h>
  20. #include <asm/kvm_ppc.h>
  21. #include <asm/kvm_book3s.h>
  22. #include <asm/archrandom.h>
  23. #include <asm/xics.h>
  24. #include <asm/dbell.h>
  25. #include <asm/cputhreads.h>
  26. #include <asm/io.h>
  27. #include <asm/opal.h>
  28. #include <asm/smp.h>
  29. #define KVM_CMA_CHUNK_ORDER 18
  30. /*
  31. * Hash page table alignment on newer cpus(CPU_FTR_ARCH_206)
  32. * should be power of 2.
  33. */
  34. #define HPT_ALIGN_PAGES ((1 << 18) >> PAGE_SHIFT) /* 256k */
  35. /*
  36. * By default we reserve 5% of memory for hash pagetable allocation.
  37. */
  38. static unsigned long kvm_cma_resv_ratio = 5;
  39. static struct cma *kvm_cma;
  40. static int __init early_parse_kvm_cma_resv(char *p)
  41. {
  42. pr_debug("%s(%s)\n", __func__, p);
  43. if (!p)
  44. return -EINVAL;
  45. return kstrtoul(p, 0, &kvm_cma_resv_ratio);
  46. }
  47. early_param("kvm_cma_resv_ratio", early_parse_kvm_cma_resv);
  48. struct page *kvm_alloc_hpt(unsigned long nr_pages)
  49. {
  50. VM_BUG_ON(order_base_2(nr_pages) < KVM_CMA_CHUNK_ORDER - PAGE_SHIFT);
  51. return cma_alloc(kvm_cma, nr_pages, order_base_2(HPT_ALIGN_PAGES));
  52. }
  53. EXPORT_SYMBOL_GPL(kvm_alloc_hpt);
  54. void kvm_release_hpt(struct page *page, unsigned long nr_pages)
  55. {
  56. cma_release(kvm_cma, page, nr_pages);
  57. }
  58. EXPORT_SYMBOL_GPL(kvm_release_hpt);
  59. /**
  60. * kvm_cma_reserve() - reserve area for kvm hash pagetable
  61. *
  62. * This function reserves memory from early allocator. It should be
  63. * called by arch specific code once the memblock allocator
  64. * has been activated and all other subsystems have already allocated/reserved
  65. * memory.
  66. */
  67. void __init kvm_cma_reserve(void)
  68. {
  69. unsigned long align_size;
  70. struct memblock_region *reg;
  71. phys_addr_t selected_size = 0;
  72. /*
  73. * We need CMA reservation only when we are in HV mode
  74. */
  75. if (!cpu_has_feature(CPU_FTR_HVMODE))
  76. return;
  77. /*
  78. * We cannot use memblock_phys_mem_size() here, because
  79. * memblock_analyze() has not been called yet.
  80. */
  81. for_each_memblock(memory, reg)
  82. selected_size += memblock_region_memory_end_pfn(reg) -
  83. memblock_region_memory_base_pfn(reg);
  84. selected_size = (selected_size * kvm_cma_resv_ratio / 100) << PAGE_SHIFT;
  85. if (selected_size) {
  86. pr_debug("%s: reserving %ld MiB for global area\n", __func__,
  87. (unsigned long)selected_size / SZ_1M);
  88. align_size = HPT_ALIGN_PAGES << PAGE_SHIFT;
  89. cma_declare_contiguous(0, selected_size, 0, align_size,
  90. KVM_CMA_CHUNK_ORDER - PAGE_SHIFT, false, &kvm_cma);
  91. }
  92. }
  93. /*
  94. * Real-mode H_CONFER implementation.
  95. * We check if we are the only vcpu out of this virtual core
  96. * still running in the guest and not ceded. If so, we pop up
  97. * to the virtual-mode implementation; if not, just return to
  98. * the guest.
  99. */
  100. long int kvmppc_rm_h_confer(struct kvm_vcpu *vcpu, int target,
  101. unsigned int yield_count)
  102. {
  103. struct kvmppc_vcore *vc = local_paca->kvm_hstate.kvm_vcore;
  104. int ptid = local_paca->kvm_hstate.ptid;
  105. int threads_running;
  106. int threads_ceded;
  107. int threads_conferring;
  108. u64 stop = get_tb() + 10 * tb_ticks_per_usec;
  109. int rv = H_SUCCESS; /* => don't yield */
  110. set_bit(ptid, &vc->conferring_threads);
  111. while ((get_tb() < stop) && !VCORE_IS_EXITING(vc)) {
  112. threads_running = VCORE_ENTRY_MAP(vc);
  113. threads_ceded = vc->napping_threads;
  114. threads_conferring = vc->conferring_threads;
  115. if ((threads_ceded | threads_conferring) == threads_running) {
  116. rv = H_TOO_HARD; /* => do yield */
  117. break;
  118. }
  119. }
  120. clear_bit(ptid, &vc->conferring_threads);
  121. return rv;
  122. }
  123. /*
  124. * When running HV mode KVM we need to block certain operations while KVM VMs
  125. * exist in the system. We use a counter of VMs to track this.
  126. *
  127. * One of the operations we need to block is onlining of secondaries, so we
  128. * protect hv_vm_count with get/put_online_cpus().
  129. */
  130. static atomic_t hv_vm_count;
  131. void kvm_hv_vm_activated(void)
  132. {
  133. get_online_cpus();
  134. atomic_inc(&hv_vm_count);
  135. put_online_cpus();
  136. }
  137. EXPORT_SYMBOL_GPL(kvm_hv_vm_activated);
  138. void kvm_hv_vm_deactivated(void)
  139. {
  140. get_online_cpus();
  141. atomic_dec(&hv_vm_count);
  142. put_online_cpus();
  143. }
  144. EXPORT_SYMBOL_GPL(kvm_hv_vm_deactivated);
  145. bool kvm_hv_mode_active(void)
  146. {
  147. return atomic_read(&hv_vm_count) != 0;
  148. }
  149. extern int hcall_real_table[], hcall_real_table_end[];
  150. int kvmppc_hcall_impl_hv_realmode(unsigned long cmd)
  151. {
  152. cmd /= 4;
  153. if (cmd < hcall_real_table_end - hcall_real_table &&
  154. hcall_real_table[cmd])
  155. return 1;
  156. return 0;
  157. }
  158. EXPORT_SYMBOL_GPL(kvmppc_hcall_impl_hv_realmode);
  159. int kvmppc_hwrng_present(void)
  160. {
  161. return powernv_hwrng_present();
  162. }
  163. EXPORT_SYMBOL_GPL(kvmppc_hwrng_present);
  164. long kvmppc_h_random(struct kvm_vcpu *vcpu)
  165. {
  166. if (powernv_get_random_real_mode(&vcpu->arch.gpr[4]))
  167. return H_SUCCESS;
  168. return H_HARDWARE;
  169. }
  170. static inline void rm_writeb(unsigned long paddr, u8 val)
  171. {
  172. __asm__ __volatile__("stbcix %0,0,%1"
  173. : : "r" (val), "r" (paddr) : "memory");
  174. }
  175. /*
  176. * Send an interrupt or message to another CPU.
  177. * This can only be called in real mode.
  178. * The caller needs to include any barrier needed to order writes
  179. * to memory vs. the IPI/message.
  180. */
  181. void kvmhv_rm_send_ipi(int cpu)
  182. {
  183. unsigned long xics_phys;
  184. unsigned long msg = PPC_DBELL_TYPE(PPC_DBELL_SERVER);
  185. /* On POWER9 we can use msgsnd for any destination cpu. */
  186. if (cpu_has_feature(CPU_FTR_ARCH_300)) {
  187. msg |= get_hard_smp_processor_id(cpu);
  188. __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
  189. return;
  190. }
  191. /* On POWER8 for IPIs to threads in the same core, use msgsnd. */
  192. if (cpu_has_feature(CPU_FTR_ARCH_207S) &&
  193. cpu_first_thread_sibling(cpu) ==
  194. cpu_first_thread_sibling(raw_smp_processor_id())) {
  195. msg |= cpu_thread_in_core(cpu);
  196. __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
  197. return;
  198. }
  199. /* Else poke the target with an IPI */
  200. xics_phys = paca[cpu].kvm_hstate.xics_phys;
  201. if (xics_phys)
  202. rm_writeb(xics_phys + XICS_MFRR, IPI_PRIORITY);
  203. else
  204. opal_rm_int_set_mfrr(get_hard_smp_processor_id(cpu),
  205. IPI_PRIORITY);
  206. }
  207. /*
  208. * The following functions are called from the assembly code
  209. * in book3s_hv_rmhandlers.S.
  210. */
  211. static void kvmhv_interrupt_vcore(struct kvmppc_vcore *vc, int active)
  212. {
  213. int cpu = vc->pcpu;
  214. /* Order setting of exit map vs. msgsnd/IPI */
  215. smp_mb();
  216. for (; active; active >>= 1, ++cpu)
  217. if (active & 1)
  218. kvmhv_rm_send_ipi(cpu);
  219. }
  220. void kvmhv_commence_exit(int trap)
  221. {
  222. struct kvmppc_vcore *vc = local_paca->kvm_hstate.kvm_vcore;
  223. int ptid = local_paca->kvm_hstate.ptid;
  224. struct kvm_split_mode *sip = local_paca->kvm_hstate.kvm_split_mode;
  225. int me, ee, i;
  226. /* Set our bit in the threads-exiting-guest map in the 0xff00
  227. bits of vcore->entry_exit_map */
  228. me = 0x100 << ptid;
  229. do {
  230. ee = vc->entry_exit_map;
  231. } while (cmpxchg(&vc->entry_exit_map, ee, ee | me) != ee);
  232. /* Are we the first here? */
  233. if ((ee >> 8) != 0)
  234. return;
  235. /*
  236. * Trigger the other threads in this vcore to exit the guest.
  237. * If this is a hypervisor decrementer interrupt then they
  238. * will be already on their way out of the guest.
  239. */
  240. if (trap != BOOK3S_INTERRUPT_HV_DECREMENTER)
  241. kvmhv_interrupt_vcore(vc, ee & ~(1 << ptid));
  242. /*
  243. * If we are doing dynamic micro-threading, interrupt the other
  244. * subcores to pull them out of their guests too.
  245. */
  246. if (!sip)
  247. return;
  248. for (i = 0; i < MAX_SUBCORES; ++i) {
  249. vc = sip->master_vcs[i];
  250. if (!vc)
  251. break;
  252. do {
  253. ee = vc->entry_exit_map;
  254. /* Already asked to exit? */
  255. if ((ee >> 8) != 0)
  256. break;
  257. } while (cmpxchg(&vc->entry_exit_map, ee,
  258. ee | VCORE_EXIT_REQ) != ee);
  259. if ((ee >> 8) == 0)
  260. kvmhv_interrupt_vcore(vc, ee);
  261. }
  262. }
  263. struct kvmppc_host_rm_ops *kvmppc_host_rm_ops_hv;
  264. EXPORT_SYMBOL_GPL(kvmppc_host_rm_ops_hv);
  265. #ifdef CONFIG_KVM_XICS
  266. static struct kvmppc_irq_map *get_irqmap(struct kvmppc_passthru_irqmap *pimap,
  267. u32 xisr)
  268. {
  269. int i;
  270. /*
  271. * We access the mapped array here without a lock. That
  272. * is safe because we never reduce the number of entries
  273. * in the array and we never change the v_hwirq field of
  274. * an entry once it is set.
  275. *
  276. * We have also carefully ordered the stores in the writer
  277. * and the loads here in the reader, so that if we find a matching
  278. * hwirq here, the associated GSI and irq_desc fields are valid.
  279. */
  280. for (i = 0; i < pimap->n_mapped; i++) {
  281. if (xisr == pimap->mapped[i].r_hwirq) {
  282. /*
  283. * Order subsequent reads in the caller to serialize
  284. * with the writer.
  285. */
  286. smp_rmb();
  287. return &pimap->mapped[i];
  288. }
  289. }
  290. return NULL;
  291. }
  292. /*
  293. * If we have an interrupt that's not an IPI, check if we have a
  294. * passthrough adapter and if so, check if this external interrupt
  295. * is for the adapter.
  296. * We will attempt to deliver the IRQ directly to the target VCPU's
  297. * ICP, the virtual ICP (based on affinity - the xive value in ICS).
  298. *
  299. * If the delivery fails or if this is not for a passthrough adapter,
  300. * return to the host to handle this interrupt. We earlier
  301. * saved a copy of the XIRR in the PACA, it will be picked up by
  302. * the host ICP driver.
  303. */
  304. static int kvmppc_check_passthru(u32 xisr, __be32 xirr, bool *again)
  305. {
  306. struct kvmppc_passthru_irqmap *pimap;
  307. struct kvmppc_irq_map *irq_map;
  308. struct kvm_vcpu *vcpu;
  309. vcpu = local_paca->kvm_hstate.kvm_vcpu;
  310. if (!vcpu)
  311. return 1;
  312. pimap = kvmppc_get_passthru_irqmap(vcpu->kvm);
  313. if (!pimap)
  314. return 1;
  315. irq_map = get_irqmap(pimap, xisr);
  316. if (!irq_map)
  317. return 1;
  318. /* We're handling this interrupt, generic code doesn't need to */
  319. local_paca->kvm_hstate.saved_xirr = 0;
  320. return kvmppc_deliver_irq_passthru(vcpu, xirr, irq_map, pimap, again);
  321. }
  322. #else
  323. static inline int kvmppc_check_passthru(u32 xisr, __be32 xirr, bool *again)
  324. {
  325. return 1;
  326. }
  327. #endif
  328. /*
  329. * Determine what sort of external interrupt is pending (if any).
  330. * Returns:
  331. * 0 if no interrupt is pending
  332. * 1 if an interrupt is pending that needs to be handled by the host
  333. * 2 Passthrough that needs completion in the host
  334. * -1 if there was a guest wakeup IPI (which has now been cleared)
  335. * -2 if there is PCI passthrough external interrupt that was handled
  336. */
  337. static long kvmppc_read_one_intr(bool *again);
  338. long kvmppc_read_intr(void)
  339. {
  340. long ret = 0;
  341. long rc;
  342. bool again;
  343. do {
  344. again = false;
  345. rc = kvmppc_read_one_intr(&again);
  346. if (rc && (ret == 0 || rc > ret))
  347. ret = rc;
  348. } while (again);
  349. return ret;
  350. }
  351. static long kvmppc_read_one_intr(bool *again)
  352. {
  353. unsigned long xics_phys;
  354. u32 h_xirr;
  355. __be32 xirr;
  356. u32 xisr;
  357. u8 host_ipi;
  358. int64_t rc;
  359. /* see if a host IPI is pending */
  360. host_ipi = local_paca->kvm_hstate.host_ipi;
  361. if (host_ipi)
  362. return 1;
  363. /* Now read the interrupt from the ICP */
  364. xics_phys = local_paca->kvm_hstate.xics_phys;
  365. if (!xics_phys) {
  366. /* Use OPAL to read the XIRR */
  367. rc = opal_rm_int_get_xirr(&xirr, false);
  368. if (rc < 0)
  369. return 1;
  370. } else {
  371. xirr = _lwzcix(xics_phys + XICS_XIRR);
  372. }
  373. /*
  374. * Save XIRR for later. Since we get control in reverse endian
  375. * on LE systems, save it byte reversed and fetch it back in
  376. * host endian. Note that xirr is the value read from the
  377. * XIRR register, while h_xirr is the host endian version.
  378. */
  379. h_xirr = be32_to_cpu(xirr);
  380. local_paca->kvm_hstate.saved_xirr = h_xirr;
  381. xisr = h_xirr & 0xffffff;
  382. /*
  383. * Ensure that the store/load complete to guarantee all side
  384. * effects of loading from XIRR has completed
  385. */
  386. smp_mb();
  387. /* if nothing pending in the ICP */
  388. if (!xisr)
  389. return 0;
  390. /* We found something in the ICP...
  391. *
  392. * If it is an IPI, clear the MFRR and EOI it.
  393. */
  394. if (xisr == XICS_IPI) {
  395. if (xics_phys) {
  396. _stbcix(xics_phys + XICS_MFRR, 0xff);
  397. _stwcix(xics_phys + XICS_XIRR, xirr);
  398. } else {
  399. opal_rm_int_set_mfrr(hard_smp_processor_id(), 0xff);
  400. rc = opal_rm_int_eoi(h_xirr);
  401. /* If rc > 0, there is another interrupt pending */
  402. *again = rc > 0;
  403. }
  404. /*
  405. * Need to ensure side effects of above stores
  406. * complete before proceeding.
  407. */
  408. smp_mb();
  409. /*
  410. * We need to re-check host IPI now in case it got set in the
  411. * meantime. If it's clear, we bounce the interrupt to the
  412. * guest
  413. */
  414. host_ipi = local_paca->kvm_hstate.host_ipi;
  415. if (unlikely(host_ipi != 0)) {
  416. /* We raced with the host,
  417. * we need to resend that IPI, bummer
  418. */
  419. if (xics_phys)
  420. _stbcix(xics_phys + XICS_MFRR, IPI_PRIORITY);
  421. else
  422. opal_rm_int_set_mfrr(hard_smp_processor_id(),
  423. IPI_PRIORITY);
  424. /* Let side effects complete */
  425. smp_mb();
  426. return 1;
  427. }
  428. /* OK, it's an IPI for us */
  429. local_paca->kvm_hstate.saved_xirr = 0;
  430. return -1;
  431. }
  432. return kvmppc_check_passthru(xisr, xirr, again);
  433. }