irqchip.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. /*
  2. * irqchip.c: Common API for in kernel interrupt controllers
  3. * Copyright (c) 2007, Intel Corporation.
  4. * Copyright 2010 Red Hat, Inc. and/or its affiliates.
  5. * Copyright (c) 2013, Alexander Graf <agraf@suse.de>
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms and conditions of the GNU General Public License,
  9. * version 2, as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope it will be useful, but WITHOUT
  12. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  14. * more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along with
  17. * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
  18. * Place - Suite 330, Boston, MA 02111-1307 USA.
  19. *
  20. * This file is derived from virt/kvm/irq_comm.c.
  21. *
  22. * Authors:
  23. * Yaozu (Eddie) Dong <Eddie.dong@intel.com>
  24. * Alexander Graf <agraf@suse.de>
  25. */
  26. #include <linux/kvm_host.h>
  27. #include <linux/slab.h>
  28. #include <linux/srcu.h>
  29. #include <linux/export.h>
  30. #include <trace/events/kvm.h>
  31. #include "irq.h"
  32. int kvm_irq_map_gsi(struct kvm *kvm,
  33. struct kvm_kernel_irq_routing_entry *entries, int gsi)
  34. {
  35. struct kvm_irq_routing_table *irq_rt;
  36. struct kvm_kernel_irq_routing_entry *e;
  37. int n = 0;
  38. irq_rt = srcu_dereference_check(kvm->irq_routing, &kvm->irq_srcu,
  39. lockdep_is_held(&kvm->irq_lock));
  40. if (irq_rt && gsi < irq_rt->nr_rt_entries) {
  41. hlist_for_each_entry(e, &irq_rt->map[gsi], link) {
  42. entries[n] = *e;
  43. ++n;
  44. }
  45. }
  46. return n;
  47. }
  48. int kvm_irq_map_chip_pin(struct kvm *kvm, unsigned irqchip, unsigned pin)
  49. {
  50. struct kvm_irq_routing_table *irq_rt;
  51. irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
  52. return irq_rt->chip[irqchip][pin];
  53. }
  54. int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi)
  55. {
  56. struct kvm_kernel_irq_routing_entry route;
  57. if (!irqchip_in_kernel(kvm) || (msi->flags & ~KVM_MSI_VALID_DEVID))
  58. return -EINVAL;
  59. route.msi.address_lo = msi->address_lo;
  60. route.msi.address_hi = msi->address_hi;
  61. route.msi.data = msi->data;
  62. route.msi.flags = msi->flags;
  63. route.msi.devid = msi->devid;
  64. return kvm_set_msi(&route, kvm, KVM_USERSPACE_IRQ_SOURCE_ID, 1, false);
  65. }
  66. /*
  67. * Return value:
  68. * < 0 Interrupt was ignored (masked or not delivered for other reasons)
  69. * = 0 Interrupt was coalesced (previous irq is still pending)
  70. * > 0 Number of CPUs interrupt was delivered to
  71. */
  72. int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level,
  73. bool line_status)
  74. {
  75. struct kvm_kernel_irq_routing_entry irq_set[KVM_NR_IRQCHIPS];
  76. int ret = -1, i, idx;
  77. trace_kvm_set_irq(irq, level, irq_source_id);
  78. /* Not possible to detect if the guest uses the PIC or the
  79. * IOAPIC. So set the bit in both. The guest will ignore
  80. * writes to the unused one.
  81. */
  82. idx = srcu_read_lock(&kvm->irq_srcu);
  83. i = kvm_irq_map_gsi(kvm, irq_set, irq);
  84. srcu_read_unlock(&kvm->irq_srcu, idx);
  85. while (i--) {
  86. int r;
  87. r = irq_set[i].set(&irq_set[i], kvm, irq_source_id, level,
  88. line_status);
  89. if (r < 0)
  90. continue;
  91. ret = r + ((ret < 0) ? 0 : ret);
  92. }
  93. return ret;
  94. }
  95. static void free_irq_routing_table(struct kvm_irq_routing_table *rt)
  96. {
  97. int i;
  98. if (!rt)
  99. return;
  100. for (i = 0; i < rt->nr_rt_entries; ++i) {
  101. struct kvm_kernel_irq_routing_entry *e;
  102. struct hlist_node *n;
  103. hlist_for_each_entry_safe(e, n, &rt->map[i], link) {
  104. hlist_del(&e->link);
  105. kfree(e);
  106. }
  107. }
  108. kfree(rt);
  109. }
  110. void kvm_free_irq_routing(struct kvm *kvm)
  111. {
  112. /* Called only during vm destruction. Nobody can use the pointer
  113. at this stage */
  114. struct kvm_irq_routing_table *rt = rcu_access_pointer(kvm->irq_routing);
  115. free_irq_routing_table(rt);
  116. }
  117. static int setup_routing_entry(struct kvm *kvm,
  118. struct kvm_irq_routing_table *rt,
  119. struct kvm_kernel_irq_routing_entry *e,
  120. const struct kvm_irq_routing_entry *ue)
  121. {
  122. int r = -EINVAL;
  123. struct kvm_kernel_irq_routing_entry *ei;
  124. /*
  125. * Do not allow GSI to be mapped to the same irqchip more than once.
  126. * Allow only one to one mapping between GSI and non-irqchip routing.
  127. */
  128. hlist_for_each_entry(ei, &rt->map[ue->gsi], link)
  129. if (ei->type != KVM_IRQ_ROUTING_IRQCHIP ||
  130. ue->type != KVM_IRQ_ROUTING_IRQCHIP ||
  131. ue->u.irqchip.irqchip == ei->irqchip.irqchip)
  132. return r;
  133. e->gsi = ue->gsi;
  134. e->type = ue->type;
  135. r = kvm_set_routing_entry(kvm, e, ue);
  136. if (r)
  137. goto out;
  138. if (e->type == KVM_IRQ_ROUTING_IRQCHIP)
  139. rt->chip[e->irqchip.irqchip][e->irqchip.pin] = e->gsi;
  140. hlist_add_head(&e->link, &rt->map[e->gsi]);
  141. r = 0;
  142. out:
  143. return r;
  144. }
  145. void __attribute__((weak)) kvm_arch_irq_routing_update(struct kvm *kvm)
  146. {
  147. }
  148. int kvm_set_irq_routing(struct kvm *kvm,
  149. const struct kvm_irq_routing_entry *ue,
  150. unsigned nr,
  151. unsigned flags)
  152. {
  153. struct kvm_irq_routing_table *new, *old;
  154. struct kvm_kernel_irq_routing_entry *e;
  155. u32 i, j, nr_rt_entries = 0;
  156. int r;
  157. for (i = 0; i < nr; ++i) {
  158. if (ue[i].gsi >= KVM_MAX_IRQ_ROUTES)
  159. return -EINVAL;
  160. nr_rt_entries = max(nr_rt_entries, ue[i].gsi);
  161. }
  162. nr_rt_entries += 1;
  163. new = kzalloc(sizeof(*new) + (nr_rt_entries * sizeof(struct hlist_head)),
  164. GFP_KERNEL);
  165. if (!new)
  166. return -ENOMEM;
  167. new->nr_rt_entries = nr_rt_entries;
  168. for (i = 0; i < KVM_NR_IRQCHIPS; i++)
  169. for (j = 0; j < KVM_IRQCHIP_NUM_PINS; j++)
  170. new->chip[i][j] = -1;
  171. for (i = 0; i < nr; ++i) {
  172. r = -ENOMEM;
  173. e = kzalloc(sizeof(*e), GFP_KERNEL);
  174. if (!e)
  175. goto out;
  176. r = -EINVAL;
  177. switch (ue->type) {
  178. case KVM_IRQ_ROUTING_MSI:
  179. if (ue->flags & ~KVM_MSI_VALID_DEVID)
  180. goto free_entry;
  181. break;
  182. default:
  183. if (ue->flags)
  184. goto free_entry;
  185. break;
  186. }
  187. r = setup_routing_entry(kvm, new, e, ue);
  188. if (r)
  189. goto free_entry;
  190. ++ue;
  191. }
  192. mutex_lock(&kvm->irq_lock);
  193. old = kvm->irq_routing;
  194. rcu_assign_pointer(kvm->irq_routing, new);
  195. kvm_irq_routing_update(kvm);
  196. kvm_arch_irq_routing_update(kvm);
  197. mutex_unlock(&kvm->irq_lock);
  198. kvm_arch_post_irq_routing_update(kvm);
  199. synchronize_srcu_expedited(&kvm->irq_srcu);
  200. new = old;
  201. r = 0;
  202. goto out;
  203. free_entry:
  204. kfree(e);
  205. out:
  206. free_irq_routing_table(new);
  207. return r;
  208. }