irqchip.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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. struct kvm_irq_routing_table {
  33. int chip[KVM_NR_IRQCHIPS][KVM_IRQCHIP_NUM_PINS];
  34. u32 nr_rt_entries;
  35. /*
  36. * Array indexed by gsi. Each entry contains list of irq chips
  37. * the gsi is connected to.
  38. */
  39. struct hlist_head map[0];
  40. };
  41. int kvm_irq_map_gsi(struct kvm *kvm,
  42. struct kvm_kernel_irq_routing_entry *entries, int gsi)
  43. {
  44. struct kvm_irq_routing_table *irq_rt;
  45. struct kvm_kernel_irq_routing_entry *e;
  46. int n = 0;
  47. irq_rt = srcu_dereference_check(kvm->irq_routing, &kvm->irq_srcu,
  48. lockdep_is_held(&kvm->irq_lock));
  49. if (gsi < irq_rt->nr_rt_entries) {
  50. hlist_for_each_entry(e, &irq_rt->map[gsi], link) {
  51. entries[n] = *e;
  52. ++n;
  53. }
  54. }
  55. return n;
  56. }
  57. int kvm_irq_map_chip_pin(struct kvm *kvm, unsigned irqchip, unsigned pin)
  58. {
  59. struct kvm_irq_routing_table *irq_rt;
  60. irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
  61. return irq_rt->chip[irqchip][pin];
  62. }
  63. int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi)
  64. {
  65. struct kvm_kernel_irq_routing_entry route;
  66. if (!irqchip_in_kernel(kvm) || msi->flags != 0)
  67. return -EINVAL;
  68. route.msi.address_lo = msi->address_lo;
  69. route.msi.address_hi = msi->address_hi;
  70. route.msi.data = msi->data;
  71. return kvm_set_msi(&route, kvm, KVM_USERSPACE_IRQ_SOURCE_ID, 1, false);
  72. }
  73. /*
  74. * Return value:
  75. * < 0 Interrupt was ignored (masked or not delivered for other reasons)
  76. * = 0 Interrupt was coalesced (previous irq is still pending)
  77. * > 0 Number of CPUs interrupt was delivered to
  78. */
  79. int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level,
  80. bool line_status)
  81. {
  82. struct kvm_kernel_irq_routing_entry irq_set[KVM_NR_IRQCHIPS];
  83. int ret = -1, i, idx;
  84. trace_kvm_set_irq(irq, level, irq_source_id);
  85. /* Not possible to detect if the guest uses the PIC or the
  86. * IOAPIC. So set the bit in both. The guest will ignore
  87. * writes to the unused one.
  88. */
  89. idx = srcu_read_lock(&kvm->irq_srcu);
  90. i = kvm_irq_map_gsi(kvm, irq_set, irq);
  91. srcu_read_unlock(&kvm->irq_srcu, idx);
  92. while (i--) {
  93. int r;
  94. r = irq_set[i].set(&irq_set[i], kvm, irq_source_id, level,
  95. line_status);
  96. if (r < 0)
  97. continue;
  98. ret = r + ((ret < 0) ? 0 : ret);
  99. }
  100. return ret;
  101. }
  102. static void free_irq_routing_table(struct kvm_irq_routing_table *rt)
  103. {
  104. int i;
  105. if (!rt)
  106. return;
  107. for (i = 0; i < rt->nr_rt_entries; ++i) {
  108. struct kvm_kernel_irq_routing_entry *e;
  109. struct hlist_node *n;
  110. hlist_for_each_entry_safe(e, n, &rt->map[i], link) {
  111. hlist_del(&e->link);
  112. kfree(e);
  113. }
  114. }
  115. kfree(rt);
  116. }
  117. void kvm_free_irq_routing(struct kvm *kvm)
  118. {
  119. /* Called only during vm destruction. Nobody can use the pointer
  120. at this stage */
  121. struct kvm_irq_routing_table *rt = rcu_access_pointer(kvm->irq_routing);
  122. free_irq_routing_table(rt);
  123. }
  124. static int setup_routing_entry(struct kvm_irq_routing_table *rt,
  125. struct kvm_kernel_irq_routing_entry *e,
  126. const struct kvm_irq_routing_entry *ue)
  127. {
  128. int r = -EINVAL;
  129. struct kvm_kernel_irq_routing_entry *ei;
  130. /*
  131. * Do not allow GSI to be mapped to the same irqchip more than once.
  132. * Allow only one to one mapping between GSI and MSI.
  133. */
  134. hlist_for_each_entry(ei, &rt->map[ue->gsi], link)
  135. if (ei->type == KVM_IRQ_ROUTING_MSI ||
  136. ue->type == KVM_IRQ_ROUTING_MSI ||
  137. ue->u.irqchip.irqchip == ei->irqchip.irqchip)
  138. return r;
  139. e->gsi = ue->gsi;
  140. e->type = ue->type;
  141. r = kvm_set_routing_entry(e, ue);
  142. if (r)
  143. goto out;
  144. if (e->type == KVM_IRQ_ROUTING_IRQCHIP)
  145. rt->chip[e->irqchip.irqchip][e->irqchip.pin] = e->gsi;
  146. hlist_add_head(&e->link, &rt->map[e->gsi]);
  147. r = 0;
  148. out:
  149. return r;
  150. }
  151. int kvm_set_irq_routing(struct kvm *kvm,
  152. const struct kvm_irq_routing_entry *ue,
  153. unsigned nr,
  154. unsigned flags)
  155. {
  156. struct kvm_irq_routing_table *new, *old;
  157. u32 i, j, nr_rt_entries = 0;
  158. int r;
  159. for (i = 0; i < nr; ++i) {
  160. if (ue[i].gsi >= KVM_MAX_IRQ_ROUTES)
  161. return -EINVAL;
  162. nr_rt_entries = max(nr_rt_entries, ue[i].gsi);
  163. }
  164. nr_rt_entries += 1;
  165. new = kzalloc(sizeof(*new) + (nr_rt_entries * sizeof(struct hlist_head)),
  166. GFP_KERNEL);
  167. if (!new)
  168. return -ENOMEM;
  169. new->nr_rt_entries = nr_rt_entries;
  170. for (i = 0; i < KVM_NR_IRQCHIPS; i++)
  171. for (j = 0; j < KVM_IRQCHIP_NUM_PINS; j++)
  172. new->chip[i][j] = -1;
  173. for (i = 0; i < nr; ++i) {
  174. struct kvm_kernel_irq_routing_entry *e;
  175. r = -ENOMEM;
  176. e = kzalloc(sizeof(*e), GFP_KERNEL);
  177. if (!e)
  178. goto out;
  179. r = -EINVAL;
  180. if (ue->flags)
  181. goto out;
  182. r = setup_routing_entry(new, e, ue);
  183. if (r)
  184. goto out;
  185. ++ue;
  186. }
  187. mutex_lock(&kvm->irq_lock);
  188. old = kvm->irq_routing;
  189. rcu_assign_pointer(kvm->irq_routing, new);
  190. kvm_irq_routing_update(kvm);
  191. mutex_unlock(&kvm->irq_lock);
  192. synchronize_srcu_expedited(&kvm->irq_srcu);
  193. new = old;
  194. r = 0;
  195. out:
  196. free_irq_routing_table(new);
  197. return r;
  198. }