events.c 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893
  1. /*
  2. * Xen event channels
  3. *
  4. * Xen models interrupts with abstract event channels. Because each
  5. * domain gets 1024 event channels, but NR_IRQ is not that large, we
  6. * must dynamically map irqs<->event channels. The event channels
  7. * interface with the rest of the kernel by defining a xen interrupt
  8. * chip. When an event is received, it is mapped to an irq and sent
  9. * through the normal interrupt processing path.
  10. *
  11. * There are four kinds of events which can be mapped to an event
  12. * channel:
  13. *
  14. * 1. Inter-domain notifications. This includes all the virtual
  15. * device events, since they're driven by front-ends in another domain
  16. * (typically dom0).
  17. * 2. VIRQs, typically used for timers. These are per-cpu events.
  18. * 3. IPIs.
  19. * 4. PIRQs - Hardware interrupts.
  20. *
  21. * Jeremy Fitzhardinge <jeremy@xensource.com>, XenSource Inc, 2007
  22. */
  23. #include <linux/linkage.h>
  24. #include <linux/interrupt.h>
  25. #include <linux/irq.h>
  26. #include <linux/module.h>
  27. #include <linux/string.h>
  28. #include <linux/bootmem.h>
  29. #include <linux/slab.h>
  30. #include <linux/irqnr.h>
  31. #include <linux/pci.h>
  32. #ifdef CONFIG_X86
  33. #include <asm/desc.h>
  34. #include <asm/ptrace.h>
  35. #include <asm/irq.h>
  36. #include <asm/idle.h>
  37. #include <asm/io_apic.h>
  38. #include <asm/xen/page.h>
  39. #include <asm/xen/pci.h>
  40. #endif
  41. #include <asm/sync_bitops.h>
  42. #include <asm/xen/hypercall.h>
  43. #include <asm/xen/hypervisor.h>
  44. #include <xen/xen.h>
  45. #include <xen/hvm.h>
  46. #include <xen/xen-ops.h>
  47. #include <xen/events.h>
  48. #include <xen/interface/xen.h>
  49. #include <xen/interface/event_channel.h>
  50. #include <xen/interface/hvm/hvm_op.h>
  51. #include <xen/interface/hvm/params.h>
  52. #include <xen/interface/physdev.h>
  53. #include <xen/interface/sched.h>
  54. #include <asm/hw_irq.h>
  55. /*
  56. * This lock protects updates to the following mapping and reference-count
  57. * arrays. The lock does not need to be acquired to read the mapping tables.
  58. */
  59. static DEFINE_MUTEX(irq_mapping_update_lock);
  60. static LIST_HEAD(xen_irq_list_head);
  61. /* IRQ <-> VIRQ mapping. */
  62. static DEFINE_PER_CPU(int [NR_VIRQS], virq_to_irq) = {[0 ... NR_VIRQS-1] = -1};
  63. /* IRQ <-> IPI mapping */
  64. static DEFINE_PER_CPU(int [XEN_NR_IPIS], ipi_to_irq) = {[0 ... XEN_NR_IPIS-1] = -1};
  65. /* Interrupt types. */
  66. enum xen_irq_type {
  67. IRQT_UNBOUND = 0,
  68. IRQT_PIRQ,
  69. IRQT_VIRQ,
  70. IRQT_IPI,
  71. IRQT_EVTCHN
  72. };
  73. /*
  74. * Packed IRQ information:
  75. * type - enum xen_irq_type
  76. * event channel - irq->event channel mapping
  77. * cpu - cpu this event channel is bound to
  78. * index - type-specific information:
  79. * PIRQ - vector, with MSB being "needs EIO", or physical IRQ of the HVM
  80. * guest, or GSI (real passthrough IRQ) of the device.
  81. * VIRQ - virq number
  82. * IPI - IPI vector
  83. * EVTCHN -
  84. */
  85. struct irq_info {
  86. struct list_head list;
  87. int refcnt;
  88. enum xen_irq_type type; /* type */
  89. unsigned irq;
  90. unsigned short evtchn; /* event channel */
  91. unsigned short cpu; /* cpu bound */
  92. union {
  93. unsigned short virq;
  94. enum ipi_vector ipi;
  95. struct {
  96. unsigned short pirq;
  97. unsigned short gsi;
  98. unsigned char vector;
  99. unsigned char flags;
  100. uint16_t domid;
  101. } pirq;
  102. } u;
  103. };
  104. #define PIRQ_NEEDS_EOI (1 << 0)
  105. #define PIRQ_SHAREABLE (1 << 1)
  106. static int *evtchn_to_irq;
  107. #ifdef CONFIG_X86
  108. static unsigned long *pirq_eoi_map;
  109. #endif
  110. static bool (*pirq_needs_eoi)(unsigned irq);
  111. /*
  112. * Note sizeof(xen_ulong_t) can be more than sizeof(unsigned long). Be
  113. * careful to only use bitops which allow for this (e.g
  114. * test_bit/find_first_bit and friends but not __ffs) and to pass
  115. * BITS_PER_EVTCHN_WORD as the bitmask length.
  116. */
  117. #define BITS_PER_EVTCHN_WORD (sizeof(xen_ulong_t)*8)
  118. /*
  119. * Make a bitmask (i.e. unsigned long *) of a xen_ulong_t
  120. * array. Primarily to avoid long lines (hence the terse name).
  121. */
  122. #define BM(x) (unsigned long *)(x)
  123. /* Find the first set bit in a evtchn mask */
  124. #define EVTCHN_FIRST_BIT(w) find_first_bit(BM(&(w)), BITS_PER_EVTCHN_WORD)
  125. static DEFINE_PER_CPU(xen_ulong_t [NR_EVENT_CHANNELS/BITS_PER_EVTCHN_WORD],
  126. cpu_evtchn_mask);
  127. /* Xen will never allocate port zero for any purpose. */
  128. #define VALID_EVTCHN(chn) ((chn) != 0)
  129. static struct irq_chip xen_dynamic_chip;
  130. static struct irq_chip xen_percpu_chip;
  131. static struct irq_chip xen_pirq_chip;
  132. static void enable_dynirq(struct irq_data *data);
  133. static void disable_dynirq(struct irq_data *data);
  134. /* Get info for IRQ */
  135. static struct irq_info *info_for_irq(unsigned irq)
  136. {
  137. return irq_get_handler_data(irq);
  138. }
  139. /* Constructors for packed IRQ information. */
  140. static void xen_irq_info_common_init(struct irq_info *info,
  141. unsigned irq,
  142. enum xen_irq_type type,
  143. unsigned short evtchn,
  144. unsigned short cpu)
  145. {
  146. BUG_ON(info->type != IRQT_UNBOUND && info->type != type);
  147. info->type = type;
  148. info->irq = irq;
  149. info->evtchn = evtchn;
  150. info->cpu = cpu;
  151. evtchn_to_irq[evtchn] = irq;
  152. }
  153. static void xen_irq_info_evtchn_init(unsigned irq,
  154. unsigned short evtchn)
  155. {
  156. struct irq_info *info = info_for_irq(irq);
  157. xen_irq_info_common_init(info, irq, IRQT_EVTCHN, evtchn, 0);
  158. }
  159. static void xen_irq_info_ipi_init(unsigned cpu,
  160. unsigned irq,
  161. unsigned short evtchn,
  162. enum ipi_vector ipi)
  163. {
  164. struct irq_info *info = info_for_irq(irq);
  165. xen_irq_info_common_init(info, irq, IRQT_IPI, evtchn, 0);
  166. info->u.ipi = ipi;
  167. per_cpu(ipi_to_irq, cpu)[ipi] = irq;
  168. }
  169. static void xen_irq_info_virq_init(unsigned cpu,
  170. unsigned irq,
  171. unsigned short evtchn,
  172. unsigned short virq)
  173. {
  174. struct irq_info *info = info_for_irq(irq);
  175. xen_irq_info_common_init(info, irq, IRQT_VIRQ, evtchn, 0);
  176. info->u.virq = virq;
  177. per_cpu(virq_to_irq, cpu)[virq] = irq;
  178. }
  179. static void xen_irq_info_pirq_init(unsigned irq,
  180. unsigned short evtchn,
  181. unsigned short pirq,
  182. unsigned short gsi,
  183. unsigned short vector,
  184. uint16_t domid,
  185. unsigned char flags)
  186. {
  187. struct irq_info *info = info_for_irq(irq);
  188. xen_irq_info_common_init(info, irq, IRQT_PIRQ, evtchn, 0);
  189. info->u.pirq.pirq = pirq;
  190. info->u.pirq.gsi = gsi;
  191. info->u.pirq.vector = vector;
  192. info->u.pirq.domid = domid;
  193. info->u.pirq.flags = flags;
  194. }
  195. /*
  196. * Accessors for packed IRQ information.
  197. */
  198. static unsigned int evtchn_from_irq(unsigned irq)
  199. {
  200. if (unlikely(WARN(irq < 0 || irq >= nr_irqs, "Invalid irq %d!\n", irq)))
  201. return 0;
  202. return info_for_irq(irq)->evtchn;
  203. }
  204. unsigned irq_from_evtchn(unsigned int evtchn)
  205. {
  206. return evtchn_to_irq[evtchn];
  207. }
  208. EXPORT_SYMBOL_GPL(irq_from_evtchn);
  209. static enum ipi_vector ipi_from_irq(unsigned irq)
  210. {
  211. struct irq_info *info = info_for_irq(irq);
  212. BUG_ON(info == NULL);
  213. BUG_ON(info->type != IRQT_IPI);
  214. return info->u.ipi;
  215. }
  216. static unsigned virq_from_irq(unsigned irq)
  217. {
  218. struct irq_info *info = info_for_irq(irq);
  219. BUG_ON(info == NULL);
  220. BUG_ON(info->type != IRQT_VIRQ);
  221. return info->u.virq;
  222. }
  223. static unsigned pirq_from_irq(unsigned irq)
  224. {
  225. struct irq_info *info = info_for_irq(irq);
  226. BUG_ON(info == NULL);
  227. BUG_ON(info->type != IRQT_PIRQ);
  228. return info->u.pirq.pirq;
  229. }
  230. static enum xen_irq_type type_from_irq(unsigned irq)
  231. {
  232. return info_for_irq(irq)->type;
  233. }
  234. static unsigned cpu_from_irq(unsigned irq)
  235. {
  236. return info_for_irq(irq)->cpu;
  237. }
  238. static unsigned int cpu_from_evtchn(unsigned int evtchn)
  239. {
  240. int irq = evtchn_to_irq[evtchn];
  241. unsigned ret = 0;
  242. if (irq != -1)
  243. ret = cpu_from_irq(irq);
  244. return ret;
  245. }
  246. #ifdef CONFIG_X86
  247. static bool pirq_check_eoi_map(unsigned irq)
  248. {
  249. return test_bit(pirq_from_irq(irq), pirq_eoi_map);
  250. }
  251. #endif
  252. static bool pirq_needs_eoi_flag(unsigned irq)
  253. {
  254. struct irq_info *info = info_for_irq(irq);
  255. BUG_ON(info->type != IRQT_PIRQ);
  256. return info->u.pirq.flags & PIRQ_NEEDS_EOI;
  257. }
  258. static inline xen_ulong_t active_evtchns(unsigned int cpu,
  259. struct shared_info *sh,
  260. unsigned int idx)
  261. {
  262. return sh->evtchn_pending[idx] &
  263. per_cpu(cpu_evtchn_mask, cpu)[idx] &
  264. ~sh->evtchn_mask[idx];
  265. }
  266. static void bind_evtchn_to_cpu(unsigned int chn, unsigned int cpu)
  267. {
  268. int irq = evtchn_to_irq[chn];
  269. BUG_ON(irq == -1);
  270. #ifdef CONFIG_SMP
  271. cpumask_copy(irq_to_desc(irq)->irq_data.affinity, cpumask_of(cpu));
  272. #endif
  273. clear_bit(chn, BM(per_cpu(cpu_evtchn_mask, cpu_from_irq(irq))));
  274. set_bit(chn, BM(per_cpu(cpu_evtchn_mask, cpu)));
  275. info_for_irq(irq)->cpu = cpu;
  276. }
  277. static void init_evtchn_cpu_bindings(void)
  278. {
  279. int i;
  280. #ifdef CONFIG_SMP
  281. struct irq_info *info;
  282. /* By default all event channels notify CPU#0. */
  283. list_for_each_entry(info, &xen_irq_list_head, list) {
  284. struct irq_desc *desc = irq_to_desc(info->irq);
  285. cpumask_copy(desc->irq_data.affinity, cpumask_of(0));
  286. }
  287. #endif
  288. for_each_possible_cpu(i)
  289. memset(per_cpu(cpu_evtchn_mask, i),
  290. (i == 0) ? ~0 : 0, sizeof(*per_cpu(cpu_evtchn_mask, i)));
  291. }
  292. static inline void clear_evtchn(int port)
  293. {
  294. struct shared_info *s = HYPERVISOR_shared_info;
  295. sync_clear_bit(port, BM(&s->evtchn_pending[0]));
  296. }
  297. static inline void set_evtchn(int port)
  298. {
  299. struct shared_info *s = HYPERVISOR_shared_info;
  300. sync_set_bit(port, BM(&s->evtchn_pending[0]));
  301. }
  302. static inline int test_evtchn(int port)
  303. {
  304. struct shared_info *s = HYPERVISOR_shared_info;
  305. return sync_test_bit(port, BM(&s->evtchn_pending[0]));
  306. }
  307. /**
  308. * notify_remote_via_irq - send event to remote end of event channel via irq
  309. * @irq: irq of event channel to send event to
  310. *
  311. * Unlike notify_remote_via_evtchn(), this is safe to use across
  312. * save/restore. Notifications on a broken connection are silently
  313. * dropped.
  314. */
  315. void notify_remote_via_irq(int irq)
  316. {
  317. int evtchn = evtchn_from_irq(irq);
  318. if (VALID_EVTCHN(evtchn))
  319. notify_remote_via_evtchn(evtchn);
  320. }
  321. EXPORT_SYMBOL_GPL(notify_remote_via_irq);
  322. static void mask_evtchn(int port)
  323. {
  324. struct shared_info *s = HYPERVISOR_shared_info;
  325. sync_set_bit(port, BM(&s->evtchn_mask[0]));
  326. }
  327. static void unmask_evtchn(int port)
  328. {
  329. struct shared_info *s = HYPERVISOR_shared_info;
  330. unsigned int cpu = get_cpu();
  331. int do_hypercall = 0, evtchn_pending = 0;
  332. BUG_ON(!irqs_disabled());
  333. if (unlikely((cpu != cpu_from_evtchn(port))))
  334. do_hypercall = 1;
  335. else {
  336. /*
  337. * Need to clear the mask before checking pending to
  338. * avoid a race with an event becoming pending.
  339. *
  340. * EVTCHNOP_unmask will only trigger an upcall if the
  341. * mask bit was set, so if a hypercall is needed
  342. * remask the event.
  343. */
  344. sync_clear_bit(port, BM(&s->evtchn_mask[0]));
  345. evtchn_pending = sync_test_bit(port, BM(&s->evtchn_pending[0]));
  346. if (unlikely(evtchn_pending && xen_hvm_domain())) {
  347. sync_set_bit(port, BM(&s->evtchn_mask[0]));
  348. do_hypercall = 1;
  349. }
  350. }
  351. /* Slow path (hypercall) if this is a non-local port or if this is
  352. * an hvm domain and an event is pending (hvm domains don't have
  353. * their own implementation of irq_enable). */
  354. if (do_hypercall) {
  355. struct evtchn_unmask unmask = { .port = port };
  356. (void)HYPERVISOR_event_channel_op(EVTCHNOP_unmask, &unmask);
  357. } else {
  358. struct vcpu_info *vcpu_info = __this_cpu_read(xen_vcpu);
  359. /*
  360. * The following is basically the equivalent of
  361. * 'hw_resend_irq'. Just like a real IO-APIC we 'lose
  362. * the interrupt edge' if the channel is masked.
  363. */
  364. if (evtchn_pending &&
  365. !sync_test_and_set_bit(port / BITS_PER_EVTCHN_WORD,
  366. BM(&vcpu_info->evtchn_pending_sel)))
  367. vcpu_info->evtchn_upcall_pending = 1;
  368. }
  369. put_cpu();
  370. }
  371. static void xen_irq_init(unsigned irq)
  372. {
  373. struct irq_info *info;
  374. #ifdef CONFIG_SMP
  375. struct irq_desc *desc = irq_to_desc(irq);
  376. /* By default all event channels notify CPU#0. */
  377. cpumask_copy(desc->irq_data.affinity, cpumask_of(0));
  378. #endif
  379. info = kzalloc(sizeof(*info), GFP_KERNEL);
  380. if (info == NULL)
  381. panic("Unable to allocate metadata for IRQ%d\n", irq);
  382. info->type = IRQT_UNBOUND;
  383. info->refcnt = -1;
  384. irq_set_handler_data(irq, info);
  385. list_add_tail(&info->list, &xen_irq_list_head);
  386. }
  387. static int __must_check xen_allocate_irq_dynamic(void)
  388. {
  389. int first = 0;
  390. int irq;
  391. #ifdef CONFIG_X86_IO_APIC
  392. /*
  393. * For an HVM guest or domain 0 which see "real" (emulated or
  394. * actual respectively) GSIs we allocate dynamic IRQs
  395. * e.g. those corresponding to event channels or MSIs
  396. * etc. from the range above those "real" GSIs to avoid
  397. * collisions.
  398. */
  399. if (xen_initial_domain() || xen_hvm_domain())
  400. first = get_nr_irqs_gsi();
  401. #endif
  402. irq = irq_alloc_desc_from(first, -1);
  403. if (irq >= 0)
  404. xen_irq_init(irq);
  405. return irq;
  406. }
  407. static int __must_check xen_allocate_irq_gsi(unsigned gsi)
  408. {
  409. int irq;
  410. /*
  411. * A PV guest has no concept of a GSI (since it has no ACPI
  412. * nor access to/knowledge of the physical APICs). Therefore
  413. * all IRQs are dynamically allocated from the entire IRQ
  414. * space.
  415. */
  416. if (xen_pv_domain() && !xen_initial_domain())
  417. return xen_allocate_irq_dynamic();
  418. /* Legacy IRQ descriptors are already allocated by the arch. */
  419. if (gsi < NR_IRQS_LEGACY)
  420. irq = gsi;
  421. else
  422. irq = irq_alloc_desc_at(gsi, -1);
  423. xen_irq_init(irq);
  424. return irq;
  425. }
  426. static void xen_free_irq(unsigned irq)
  427. {
  428. struct irq_info *info = irq_get_handler_data(irq);
  429. list_del(&info->list);
  430. irq_set_handler_data(irq, NULL);
  431. WARN_ON(info->refcnt > 0);
  432. kfree(info);
  433. /* Legacy IRQ descriptors are managed by the arch. */
  434. if (irq < NR_IRQS_LEGACY)
  435. return;
  436. irq_free_desc(irq);
  437. }
  438. static void pirq_query_unmask(int irq)
  439. {
  440. struct physdev_irq_status_query irq_status;
  441. struct irq_info *info = info_for_irq(irq);
  442. BUG_ON(info->type != IRQT_PIRQ);
  443. irq_status.irq = pirq_from_irq(irq);
  444. if (HYPERVISOR_physdev_op(PHYSDEVOP_irq_status_query, &irq_status))
  445. irq_status.flags = 0;
  446. info->u.pirq.flags &= ~PIRQ_NEEDS_EOI;
  447. if (irq_status.flags & XENIRQSTAT_needs_eoi)
  448. info->u.pirq.flags |= PIRQ_NEEDS_EOI;
  449. }
  450. static bool probing_irq(int irq)
  451. {
  452. struct irq_desc *desc = irq_to_desc(irq);
  453. return desc && desc->action == NULL;
  454. }
  455. static void eoi_pirq(struct irq_data *data)
  456. {
  457. int evtchn = evtchn_from_irq(data->irq);
  458. struct physdev_eoi eoi = { .irq = pirq_from_irq(data->irq) };
  459. int rc = 0;
  460. irq_move_irq(data);
  461. if (VALID_EVTCHN(evtchn))
  462. clear_evtchn(evtchn);
  463. if (pirq_needs_eoi(data->irq)) {
  464. rc = HYPERVISOR_physdev_op(PHYSDEVOP_eoi, &eoi);
  465. WARN_ON(rc);
  466. }
  467. }
  468. static void mask_ack_pirq(struct irq_data *data)
  469. {
  470. disable_dynirq(data);
  471. eoi_pirq(data);
  472. }
  473. static unsigned int __startup_pirq(unsigned int irq)
  474. {
  475. struct evtchn_bind_pirq bind_pirq;
  476. struct irq_info *info = info_for_irq(irq);
  477. int evtchn = evtchn_from_irq(irq);
  478. int rc;
  479. BUG_ON(info->type != IRQT_PIRQ);
  480. if (VALID_EVTCHN(evtchn))
  481. goto out;
  482. bind_pirq.pirq = pirq_from_irq(irq);
  483. /* NB. We are happy to share unless we are probing. */
  484. bind_pirq.flags = info->u.pirq.flags & PIRQ_SHAREABLE ?
  485. BIND_PIRQ__WILL_SHARE : 0;
  486. rc = HYPERVISOR_event_channel_op(EVTCHNOP_bind_pirq, &bind_pirq);
  487. if (rc != 0) {
  488. if (!probing_irq(irq))
  489. printk(KERN_INFO "Failed to obtain physical IRQ %d\n",
  490. irq);
  491. return 0;
  492. }
  493. evtchn = bind_pirq.port;
  494. pirq_query_unmask(irq);
  495. evtchn_to_irq[evtchn] = irq;
  496. bind_evtchn_to_cpu(evtchn, 0);
  497. info->evtchn = evtchn;
  498. out:
  499. unmask_evtchn(evtchn);
  500. eoi_pirq(irq_get_irq_data(irq));
  501. return 0;
  502. }
  503. static unsigned int startup_pirq(struct irq_data *data)
  504. {
  505. return __startup_pirq(data->irq);
  506. }
  507. static void shutdown_pirq(struct irq_data *data)
  508. {
  509. struct evtchn_close close;
  510. unsigned int irq = data->irq;
  511. struct irq_info *info = info_for_irq(irq);
  512. int evtchn = evtchn_from_irq(irq);
  513. BUG_ON(info->type != IRQT_PIRQ);
  514. if (!VALID_EVTCHN(evtchn))
  515. return;
  516. mask_evtchn(evtchn);
  517. close.port = evtchn;
  518. if (HYPERVISOR_event_channel_op(EVTCHNOP_close, &close) != 0)
  519. BUG();
  520. bind_evtchn_to_cpu(evtchn, 0);
  521. evtchn_to_irq[evtchn] = -1;
  522. info->evtchn = 0;
  523. }
  524. static void enable_pirq(struct irq_data *data)
  525. {
  526. startup_pirq(data);
  527. }
  528. static void disable_pirq(struct irq_data *data)
  529. {
  530. disable_dynirq(data);
  531. }
  532. int xen_irq_from_gsi(unsigned gsi)
  533. {
  534. struct irq_info *info;
  535. list_for_each_entry(info, &xen_irq_list_head, list) {
  536. if (info->type != IRQT_PIRQ)
  537. continue;
  538. if (info->u.pirq.gsi == gsi)
  539. return info->irq;
  540. }
  541. return -1;
  542. }
  543. EXPORT_SYMBOL_GPL(xen_irq_from_gsi);
  544. /*
  545. * Do not make any assumptions regarding the relationship between the
  546. * IRQ number returned here and the Xen pirq argument.
  547. *
  548. * Note: We don't assign an event channel until the irq actually started
  549. * up. Return an existing irq if we've already got one for the gsi.
  550. *
  551. * Shareable implies level triggered, not shareable implies edge
  552. * triggered here.
  553. */
  554. int xen_bind_pirq_gsi_to_irq(unsigned gsi,
  555. unsigned pirq, int shareable, char *name)
  556. {
  557. int irq = -1;
  558. struct physdev_irq irq_op;
  559. mutex_lock(&irq_mapping_update_lock);
  560. irq = xen_irq_from_gsi(gsi);
  561. if (irq != -1) {
  562. printk(KERN_INFO "xen_map_pirq_gsi: returning irq %d for gsi %u\n",
  563. irq, gsi);
  564. goto out;
  565. }
  566. irq = xen_allocate_irq_gsi(gsi);
  567. if (irq < 0)
  568. goto out;
  569. irq_op.irq = irq;
  570. irq_op.vector = 0;
  571. /* Only the privileged domain can do this. For non-priv, the pcifront
  572. * driver provides a PCI bus that does the call to do exactly
  573. * this in the priv domain. */
  574. if (xen_initial_domain() &&
  575. HYPERVISOR_physdev_op(PHYSDEVOP_alloc_irq_vector, &irq_op)) {
  576. xen_free_irq(irq);
  577. irq = -ENOSPC;
  578. goto out;
  579. }
  580. xen_irq_info_pirq_init(irq, 0, pirq, gsi, irq_op.vector, DOMID_SELF,
  581. shareable ? PIRQ_SHAREABLE : 0);
  582. pirq_query_unmask(irq);
  583. /* We try to use the handler with the appropriate semantic for the
  584. * type of interrupt: if the interrupt is an edge triggered
  585. * interrupt we use handle_edge_irq.
  586. *
  587. * On the other hand if the interrupt is level triggered we use
  588. * handle_fasteoi_irq like the native code does for this kind of
  589. * interrupts.
  590. *
  591. * Depending on the Xen version, pirq_needs_eoi might return true
  592. * not only for level triggered interrupts but for edge triggered
  593. * interrupts too. In any case Xen always honors the eoi mechanism,
  594. * not injecting any more pirqs of the same kind if the first one
  595. * hasn't received an eoi yet. Therefore using the fasteoi handler
  596. * is the right choice either way.
  597. */
  598. if (shareable)
  599. irq_set_chip_and_handler_name(irq, &xen_pirq_chip,
  600. handle_fasteoi_irq, name);
  601. else
  602. irq_set_chip_and_handler_name(irq, &xen_pirq_chip,
  603. handle_edge_irq, name);
  604. out:
  605. mutex_unlock(&irq_mapping_update_lock);
  606. return irq;
  607. }
  608. #ifdef CONFIG_PCI_MSI
  609. int xen_allocate_pirq_msi(struct pci_dev *dev, struct msi_desc *msidesc)
  610. {
  611. int rc;
  612. struct physdev_get_free_pirq op_get_free_pirq;
  613. op_get_free_pirq.type = MAP_PIRQ_TYPE_MSI;
  614. rc = HYPERVISOR_physdev_op(PHYSDEVOP_get_free_pirq, &op_get_free_pirq);
  615. WARN_ONCE(rc == -ENOSYS,
  616. "hypervisor does not support the PHYSDEVOP_get_free_pirq interface\n");
  617. return rc ? -1 : op_get_free_pirq.pirq;
  618. }
  619. int xen_bind_pirq_msi_to_irq(struct pci_dev *dev, struct msi_desc *msidesc,
  620. int pirq, int vector, const char *name,
  621. domid_t domid)
  622. {
  623. int irq, ret;
  624. mutex_lock(&irq_mapping_update_lock);
  625. irq = xen_allocate_irq_dynamic();
  626. if (irq < 0)
  627. goto out;
  628. irq_set_chip_and_handler_name(irq, &xen_pirq_chip, handle_edge_irq,
  629. name);
  630. xen_irq_info_pirq_init(irq, 0, pirq, 0, vector, domid, 0);
  631. ret = irq_set_msi_desc(irq, msidesc);
  632. if (ret < 0)
  633. goto error_irq;
  634. out:
  635. mutex_unlock(&irq_mapping_update_lock);
  636. return irq;
  637. error_irq:
  638. mutex_unlock(&irq_mapping_update_lock);
  639. xen_free_irq(irq);
  640. return ret;
  641. }
  642. #endif
  643. int xen_destroy_irq(int irq)
  644. {
  645. struct irq_desc *desc;
  646. struct physdev_unmap_pirq unmap_irq;
  647. struct irq_info *info = info_for_irq(irq);
  648. int rc = -ENOENT;
  649. mutex_lock(&irq_mapping_update_lock);
  650. desc = irq_to_desc(irq);
  651. if (!desc)
  652. goto out;
  653. if (xen_initial_domain()) {
  654. unmap_irq.pirq = info->u.pirq.pirq;
  655. unmap_irq.domid = info->u.pirq.domid;
  656. rc = HYPERVISOR_physdev_op(PHYSDEVOP_unmap_pirq, &unmap_irq);
  657. /* If another domain quits without making the pci_disable_msix
  658. * call, the Xen hypervisor takes care of freeing the PIRQs
  659. * (free_domain_pirqs).
  660. */
  661. if ((rc == -ESRCH && info->u.pirq.domid != DOMID_SELF))
  662. printk(KERN_INFO "domain %d does not have %d anymore\n",
  663. info->u.pirq.domid, info->u.pirq.pirq);
  664. else if (rc) {
  665. printk(KERN_WARNING "unmap irq failed %d\n", rc);
  666. goto out;
  667. }
  668. }
  669. xen_free_irq(irq);
  670. out:
  671. mutex_unlock(&irq_mapping_update_lock);
  672. return rc;
  673. }
  674. int xen_irq_from_pirq(unsigned pirq)
  675. {
  676. int irq;
  677. struct irq_info *info;
  678. mutex_lock(&irq_mapping_update_lock);
  679. list_for_each_entry(info, &xen_irq_list_head, list) {
  680. if (info->type != IRQT_PIRQ)
  681. continue;
  682. irq = info->irq;
  683. if (info->u.pirq.pirq == pirq)
  684. goto out;
  685. }
  686. irq = -1;
  687. out:
  688. mutex_unlock(&irq_mapping_update_lock);
  689. return irq;
  690. }
  691. int xen_pirq_from_irq(unsigned irq)
  692. {
  693. return pirq_from_irq(irq);
  694. }
  695. EXPORT_SYMBOL_GPL(xen_pirq_from_irq);
  696. int bind_evtchn_to_irq(unsigned int evtchn)
  697. {
  698. int irq;
  699. mutex_lock(&irq_mapping_update_lock);
  700. irq = evtchn_to_irq[evtchn];
  701. if (irq == -1) {
  702. irq = xen_allocate_irq_dynamic();
  703. if (irq < 0)
  704. goto out;
  705. irq_set_chip_and_handler_name(irq, &xen_dynamic_chip,
  706. handle_edge_irq, "event");
  707. xen_irq_info_evtchn_init(irq, evtchn);
  708. } else {
  709. struct irq_info *info = info_for_irq(irq);
  710. WARN_ON(info == NULL || info->type != IRQT_EVTCHN);
  711. }
  712. irq_clear_status_flags(irq, IRQ_NOREQUEST|IRQ_NOAUTOEN);
  713. out:
  714. mutex_unlock(&irq_mapping_update_lock);
  715. return irq;
  716. }
  717. EXPORT_SYMBOL_GPL(bind_evtchn_to_irq);
  718. static int bind_ipi_to_irq(unsigned int ipi, unsigned int cpu)
  719. {
  720. struct evtchn_bind_ipi bind_ipi;
  721. int evtchn, irq;
  722. mutex_lock(&irq_mapping_update_lock);
  723. irq = per_cpu(ipi_to_irq, cpu)[ipi];
  724. if (irq == -1) {
  725. irq = xen_allocate_irq_dynamic();
  726. if (irq < 0)
  727. goto out;
  728. irq_set_chip_and_handler_name(irq, &xen_percpu_chip,
  729. handle_percpu_irq, "ipi");
  730. bind_ipi.vcpu = cpu;
  731. if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi,
  732. &bind_ipi) != 0)
  733. BUG();
  734. evtchn = bind_ipi.port;
  735. xen_irq_info_ipi_init(cpu, irq, evtchn, ipi);
  736. bind_evtchn_to_cpu(evtchn, cpu);
  737. } else {
  738. struct irq_info *info = info_for_irq(irq);
  739. WARN_ON(info == NULL || info->type != IRQT_IPI);
  740. }
  741. out:
  742. mutex_unlock(&irq_mapping_update_lock);
  743. return irq;
  744. }
  745. static int bind_interdomain_evtchn_to_irq(unsigned int remote_domain,
  746. unsigned int remote_port)
  747. {
  748. struct evtchn_bind_interdomain bind_interdomain;
  749. int err;
  750. bind_interdomain.remote_dom = remote_domain;
  751. bind_interdomain.remote_port = remote_port;
  752. err = HYPERVISOR_event_channel_op(EVTCHNOP_bind_interdomain,
  753. &bind_interdomain);
  754. return err ? : bind_evtchn_to_irq(bind_interdomain.local_port);
  755. }
  756. static int find_virq(unsigned int virq, unsigned int cpu)
  757. {
  758. struct evtchn_status status;
  759. int port, rc = -ENOENT;
  760. memset(&status, 0, sizeof(status));
  761. for (port = 0; port <= NR_EVENT_CHANNELS; port++) {
  762. status.dom = DOMID_SELF;
  763. status.port = port;
  764. rc = HYPERVISOR_event_channel_op(EVTCHNOP_status, &status);
  765. if (rc < 0)
  766. continue;
  767. if (status.status != EVTCHNSTAT_virq)
  768. continue;
  769. if (status.u.virq == virq && status.vcpu == cpu) {
  770. rc = port;
  771. break;
  772. }
  773. }
  774. return rc;
  775. }
  776. int bind_virq_to_irq(unsigned int virq, unsigned int cpu)
  777. {
  778. struct evtchn_bind_virq bind_virq;
  779. int evtchn, irq, ret;
  780. mutex_lock(&irq_mapping_update_lock);
  781. irq = per_cpu(virq_to_irq, cpu)[virq];
  782. if (irq == -1) {
  783. irq = xen_allocate_irq_dynamic();
  784. if (irq < 0)
  785. goto out;
  786. irq_set_chip_and_handler_name(irq, &xen_percpu_chip,
  787. handle_percpu_irq, "virq");
  788. bind_virq.virq = virq;
  789. bind_virq.vcpu = cpu;
  790. ret = HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq,
  791. &bind_virq);
  792. if (ret == 0)
  793. evtchn = bind_virq.port;
  794. else {
  795. if (ret == -EEXIST)
  796. ret = find_virq(virq, cpu);
  797. BUG_ON(ret < 0);
  798. evtchn = ret;
  799. }
  800. xen_irq_info_virq_init(cpu, irq, evtchn, virq);
  801. bind_evtchn_to_cpu(evtchn, cpu);
  802. } else {
  803. struct irq_info *info = info_for_irq(irq);
  804. WARN_ON(info == NULL || info->type != IRQT_VIRQ);
  805. }
  806. out:
  807. mutex_unlock(&irq_mapping_update_lock);
  808. return irq;
  809. }
  810. static void unbind_from_irq(unsigned int irq)
  811. {
  812. struct evtchn_close close;
  813. int evtchn = evtchn_from_irq(irq);
  814. struct irq_info *info = irq_get_handler_data(irq);
  815. mutex_lock(&irq_mapping_update_lock);
  816. if (info->refcnt > 0) {
  817. info->refcnt--;
  818. if (info->refcnt != 0)
  819. goto done;
  820. }
  821. if (VALID_EVTCHN(evtchn)) {
  822. close.port = evtchn;
  823. if (HYPERVISOR_event_channel_op(EVTCHNOP_close, &close) != 0)
  824. BUG();
  825. switch (type_from_irq(irq)) {
  826. case IRQT_VIRQ:
  827. per_cpu(virq_to_irq, cpu_from_evtchn(evtchn))
  828. [virq_from_irq(irq)] = -1;
  829. break;
  830. case IRQT_IPI:
  831. per_cpu(ipi_to_irq, cpu_from_evtchn(evtchn))
  832. [ipi_from_irq(irq)] = -1;
  833. break;
  834. default:
  835. break;
  836. }
  837. /* Closed ports are implicitly re-bound to VCPU0. */
  838. bind_evtchn_to_cpu(evtchn, 0);
  839. evtchn_to_irq[evtchn] = -1;
  840. }
  841. BUG_ON(info_for_irq(irq)->type == IRQT_UNBOUND);
  842. xen_free_irq(irq);
  843. done:
  844. mutex_unlock(&irq_mapping_update_lock);
  845. }
  846. int bind_evtchn_to_irqhandler(unsigned int evtchn,
  847. irq_handler_t handler,
  848. unsigned long irqflags,
  849. const char *devname, void *dev_id)
  850. {
  851. int irq, retval;
  852. irq = bind_evtchn_to_irq(evtchn);
  853. if (irq < 0)
  854. return irq;
  855. retval = request_irq(irq, handler, irqflags, devname, dev_id);
  856. if (retval != 0) {
  857. unbind_from_irq(irq);
  858. return retval;
  859. }
  860. return irq;
  861. }
  862. EXPORT_SYMBOL_GPL(bind_evtchn_to_irqhandler);
  863. int bind_interdomain_evtchn_to_irqhandler(unsigned int remote_domain,
  864. unsigned int remote_port,
  865. irq_handler_t handler,
  866. unsigned long irqflags,
  867. const char *devname,
  868. void *dev_id)
  869. {
  870. int irq, retval;
  871. irq = bind_interdomain_evtchn_to_irq(remote_domain, remote_port);
  872. if (irq < 0)
  873. return irq;
  874. retval = request_irq(irq, handler, irqflags, devname, dev_id);
  875. if (retval != 0) {
  876. unbind_from_irq(irq);
  877. return retval;
  878. }
  879. return irq;
  880. }
  881. EXPORT_SYMBOL_GPL(bind_interdomain_evtchn_to_irqhandler);
  882. int bind_virq_to_irqhandler(unsigned int virq, unsigned int cpu,
  883. irq_handler_t handler,
  884. unsigned long irqflags, const char *devname, void *dev_id)
  885. {
  886. int irq, retval;
  887. irq = bind_virq_to_irq(virq, cpu);
  888. if (irq < 0)
  889. return irq;
  890. retval = request_irq(irq, handler, irqflags, devname, dev_id);
  891. if (retval != 0) {
  892. unbind_from_irq(irq);
  893. return retval;
  894. }
  895. return irq;
  896. }
  897. EXPORT_SYMBOL_GPL(bind_virq_to_irqhandler);
  898. int bind_ipi_to_irqhandler(enum ipi_vector ipi,
  899. unsigned int cpu,
  900. irq_handler_t handler,
  901. unsigned long irqflags,
  902. const char *devname,
  903. void *dev_id)
  904. {
  905. int irq, retval;
  906. irq = bind_ipi_to_irq(ipi, cpu);
  907. if (irq < 0)
  908. return irq;
  909. irqflags |= IRQF_NO_SUSPEND | IRQF_FORCE_RESUME | IRQF_EARLY_RESUME;
  910. retval = request_irq(irq, handler, irqflags, devname, dev_id);
  911. if (retval != 0) {
  912. unbind_from_irq(irq);
  913. return retval;
  914. }
  915. return irq;
  916. }
  917. void unbind_from_irqhandler(unsigned int irq, void *dev_id)
  918. {
  919. free_irq(irq, dev_id);
  920. unbind_from_irq(irq);
  921. }
  922. EXPORT_SYMBOL_GPL(unbind_from_irqhandler);
  923. int evtchn_make_refcounted(unsigned int evtchn)
  924. {
  925. int irq = evtchn_to_irq[evtchn];
  926. struct irq_info *info;
  927. if (irq == -1)
  928. return -ENOENT;
  929. info = irq_get_handler_data(irq);
  930. if (!info)
  931. return -ENOENT;
  932. WARN_ON(info->refcnt != -1);
  933. info->refcnt = 1;
  934. return 0;
  935. }
  936. EXPORT_SYMBOL_GPL(evtchn_make_refcounted);
  937. int evtchn_get(unsigned int evtchn)
  938. {
  939. int irq;
  940. struct irq_info *info;
  941. int err = -ENOENT;
  942. if (evtchn >= NR_EVENT_CHANNELS)
  943. return -EINVAL;
  944. mutex_lock(&irq_mapping_update_lock);
  945. irq = evtchn_to_irq[evtchn];
  946. if (irq == -1)
  947. goto done;
  948. info = irq_get_handler_data(irq);
  949. if (!info)
  950. goto done;
  951. err = -EINVAL;
  952. if (info->refcnt <= 0)
  953. goto done;
  954. info->refcnt++;
  955. err = 0;
  956. done:
  957. mutex_unlock(&irq_mapping_update_lock);
  958. return err;
  959. }
  960. EXPORT_SYMBOL_GPL(evtchn_get);
  961. void evtchn_put(unsigned int evtchn)
  962. {
  963. int irq = evtchn_to_irq[evtchn];
  964. if (WARN_ON(irq == -1))
  965. return;
  966. unbind_from_irq(irq);
  967. }
  968. EXPORT_SYMBOL_GPL(evtchn_put);
  969. void xen_send_IPI_one(unsigned int cpu, enum ipi_vector vector)
  970. {
  971. int irq = per_cpu(ipi_to_irq, cpu)[vector];
  972. BUG_ON(irq < 0);
  973. notify_remote_via_irq(irq);
  974. }
  975. irqreturn_t xen_debug_interrupt(int irq, void *dev_id)
  976. {
  977. struct shared_info *sh = HYPERVISOR_shared_info;
  978. int cpu = smp_processor_id();
  979. xen_ulong_t *cpu_evtchn = per_cpu(cpu_evtchn_mask, cpu);
  980. int i;
  981. unsigned long flags;
  982. static DEFINE_SPINLOCK(debug_lock);
  983. struct vcpu_info *v;
  984. spin_lock_irqsave(&debug_lock, flags);
  985. printk("\nvcpu %d\n ", cpu);
  986. for_each_online_cpu(i) {
  987. int pending;
  988. v = per_cpu(xen_vcpu, i);
  989. pending = (get_irq_regs() && i == cpu)
  990. ? xen_irqs_disabled(get_irq_regs())
  991. : v->evtchn_upcall_mask;
  992. printk("%d: masked=%d pending=%d event_sel %0*"PRI_xen_ulong"\n ", i,
  993. pending, v->evtchn_upcall_pending,
  994. (int)(sizeof(v->evtchn_pending_sel)*2),
  995. v->evtchn_pending_sel);
  996. }
  997. v = per_cpu(xen_vcpu, cpu);
  998. printk("\npending:\n ");
  999. for (i = ARRAY_SIZE(sh->evtchn_pending)-1; i >= 0; i--)
  1000. printk("%0*"PRI_xen_ulong"%s",
  1001. (int)sizeof(sh->evtchn_pending[0])*2,
  1002. sh->evtchn_pending[i],
  1003. i % 8 == 0 ? "\n " : " ");
  1004. printk("\nglobal mask:\n ");
  1005. for (i = ARRAY_SIZE(sh->evtchn_mask)-1; i >= 0; i--)
  1006. printk("%0*"PRI_xen_ulong"%s",
  1007. (int)(sizeof(sh->evtchn_mask[0])*2),
  1008. sh->evtchn_mask[i],
  1009. i % 8 == 0 ? "\n " : " ");
  1010. printk("\nglobally unmasked:\n ");
  1011. for (i = ARRAY_SIZE(sh->evtchn_mask)-1; i >= 0; i--)
  1012. printk("%0*"PRI_xen_ulong"%s",
  1013. (int)(sizeof(sh->evtchn_mask[0])*2),
  1014. sh->evtchn_pending[i] & ~sh->evtchn_mask[i],
  1015. i % 8 == 0 ? "\n " : " ");
  1016. printk("\nlocal cpu%d mask:\n ", cpu);
  1017. for (i = (NR_EVENT_CHANNELS/BITS_PER_EVTCHN_WORD)-1; i >= 0; i--)
  1018. printk("%0*"PRI_xen_ulong"%s", (int)(sizeof(cpu_evtchn[0])*2),
  1019. cpu_evtchn[i],
  1020. i % 8 == 0 ? "\n " : " ");
  1021. printk("\nlocally unmasked:\n ");
  1022. for (i = ARRAY_SIZE(sh->evtchn_mask)-1; i >= 0; i--) {
  1023. xen_ulong_t pending = sh->evtchn_pending[i]
  1024. & ~sh->evtchn_mask[i]
  1025. & cpu_evtchn[i];
  1026. printk("%0*"PRI_xen_ulong"%s",
  1027. (int)(sizeof(sh->evtchn_mask[0])*2),
  1028. pending, i % 8 == 0 ? "\n " : " ");
  1029. }
  1030. printk("\npending list:\n");
  1031. for (i = 0; i < NR_EVENT_CHANNELS; i++) {
  1032. if (sync_test_bit(i, BM(sh->evtchn_pending))) {
  1033. int word_idx = i / BITS_PER_EVTCHN_WORD;
  1034. printk(" %d: event %d -> irq %d%s%s%s\n",
  1035. cpu_from_evtchn(i), i,
  1036. evtchn_to_irq[i],
  1037. sync_test_bit(word_idx, BM(&v->evtchn_pending_sel))
  1038. ? "" : " l2-clear",
  1039. !sync_test_bit(i, BM(sh->evtchn_mask))
  1040. ? "" : " globally-masked",
  1041. sync_test_bit(i, BM(cpu_evtchn))
  1042. ? "" : " locally-masked");
  1043. }
  1044. }
  1045. spin_unlock_irqrestore(&debug_lock, flags);
  1046. return IRQ_HANDLED;
  1047. }
  1048. static DEFINE_PER_CPU(unsigned, xed_nesting_count);
  1049. static DEFINE_PER_CPU(unsigned int, current_word_idx);
  1050. static DEFINE_PER_CPU(unsigned int, current_bit_idx);
  1051. /*
  1052. * Mask out the i least significant bits of w
  1053. */
  1054. #define MASK_LSBS(w, i) (w & ((~((xen_ulong_t)0UL)) << i))
  1055. /*
  1056. * Search the CPUs pending events bitmasks. For each one found, map
  1057. * the event number to an irq, and feed it into do_IRQ() for
  1058. * handling.
  1059. *
  1060. * Xen uses a two-level bitmap to speed searching. The first level is
  1061. * a bitset of words which contain pending event bits. The second
  1062. * level is a bitset of pending events themselves.
  1063. */
  1064. static void __xen_evtchn_do_upcall(void)
  1065. {
  1066. int start_word_idx, start_bit_idx;
  1067. int word_idx, bit_idx;
  1068. int i, irq;
  1069. int cpu = get_cpu();
  1070. struct shared_info *s = HYPERVISOR_shared_info;
  1071. struct vcpu_info *vcpu_info = __this_cpu_read(xen_vcpu);
  1072. unsigned count;
  1073. do {
  1074. xen_ulong_t pending_words;
  1075. xen_ulong_t pending_bits;
  1076. struct irq_desc *desc;
  1077. vcpu_info->evtchn_upcall_pending = 0;
  1078. if (__this_cpu_inc_return(xed_nesting_count) - 1)
  1079. goto out;
  1080. /*
  1081. * Master flag must be cleared /before/ clearing
  1082. * selector flag. xchg_xen_ulong must contain an
  1083. * appropriate barrier.
  1084. */
  1085. if ((irq = per_cpu(virq_to_irq, cpu)[VIRQ_TIMER]) != -1) {
  1086. int evtchn = evtchn_from_irq(irq);
  1087. word_idx = evtchn / BITS_PER_LONG;
  1088. pending_bits = evtchn % BITS_PER_LONG;
  1089. if (active_evtchns(cpu, s, word_idx) & (1ULL << pending_bits)) {
  1090. desc = irq_to_desc(irq);
  1091. if (desc)
  1092. generic_handle_irq_desc(irq, desc);
  1093. }
  1094. }
  1095. pending_words = xchg_xen_ulong(&vcpu_info->evtchn_pending_sel, 0);
  1096. start_word_idx = __this_cpu_read(current_word_idx);
  1097. start_bit_idx = __this_cpu_read(current_bit_idx);
  1098. word_idx = start_word_idx;
  1099. for (i = 0; pending_words != 0; i++) {
  1100. xen_ulong_t words;
  1101. words = MASK_LSBS(pending_words, word_idx);
  1102. /*
  1103. * If we masked out all events, wrap to beginning.
  1104. */
  1105. if (words == 0) {
  1106. word_idx = 0;
  1107. bit_idx = 0;
  1108. continue;
  1109. }
  1110. word_idx = EVTCHN_FIRST_BIT(words);
  1111. pending_bits = active_evtchns(cpu, s, word_idx);
  1112. bit_idx = 0; /* usually scan entire word from start */
  1113. if (word_idx == start_word_idx) {
  1114. /* We scan the starting word in two parts */
  1115. if (i == 0)
  1116. /* 1st time: start in the middle */
  1117. bit_idx = start_bit_idx;
  1118. else
  1119. /* 2nd time: mask bits done already */
  1120. bit_idx &= (1UL << start_bit_idx) - 1;
  1121. }
  1122. do {
  1123. xen_ulong_t bits;
  1124. int port;
  1125. bits = MASK_LSBS(pending_bits, bit_idx);
  1126. /* If we masked out all events, move on. */
  1127. if (bits == 0)
  1128. break;
  1129. bit_idx = EVTCHN_FIRST_BIT(bits);
  1130. /* Process port. */
  1131. port = (word_idx * BITS_PER_EVTCHN_WORD) + bit_idx;
  1132. irq = evtchn_to_irq[port];
  1133. if (irq != -1) {
  1134. desc = irq_to_desc(irq);
  1135. if (desc)
  1136. generic_handle_irq_desc(irq, desc);
  1137. }
  1138. bit_idx = (bit_idx + 1) % BITS_PER_EVTCHN_WORD;
  1139. /* Next caller starts at last processed + 1 */
  1140. __this_cpu_write(current_word_idx,
  1141. bit_idx ? word_idx :
  1142. (word_idx+1) % BITS_PER_EVTCHN_WORD);
  1143. __this_cpu_write(current_bit_idx, bit_idx);
  1144. } while (bit_idx != 0);
  1145. /* Scan start_l1i twice; all others once. */
  1146. if ((word_idx != start_word_idx) || (i != 0))
  1147. pending_words &= ~(1UL << word_idx);
  1148. word_idx = (word_idx + 1) % BITS_PER_EVTCHN_WORD;
  1149. }
  1150. BUG_ON(!irqs_disabled());
  1151. count = __this_cpu_read(xed_nesting_count);
  1152. __this_cpu_write(xed_nesting_count, 0);
  1153. } while (count != 1 || vcpu_info->evtchn_upcall_pending);
  1154. out:
  1155. put_cpu();
  1156. }
  1157. void xen_evtchn_do_upcall(struct pt_regs *regs)
  1158. {
  1159. struct pt_regs *old_regs = set_irq_regs(regs);
  1160. irq_enter();
  1161. #ifdef CONFIG_X86
  1162. exit_idle();
  1163. #endif
  1164. __xen_evtchn_do_upcall();
  1165. irq_exit();
  1166. set_irq_regs(old_regs);
  1167. }
  1168. void xen_hvm_evtchn_do_upcall(void)
  1169. {
  1170. __xen_evtchn_do_upcall();
  1171. }
  1172. EXPORT_SYMBOL_GPL(xen_hvm_evtchn_do_upcall);
  1173. /* Rebind a new event channel to an existing irq. */
  1174. void rebind_evtchn_irq(int evtchn, int irq)
  1175. {
  1176. struct irq_info *info = info_for_irq(irq);
  1177. /* Make sure the irq is masked, since the new event channel
  1178. will also be masked. */
  1179. disable_irq(irq);
  1180. mutex_lock(&irq_mapping_update_lock);
  1181. /* After resume the irq<->evtchn mappings are all cleared out */
  1182. BUG_ON(evtchn_to_irq[evtchn] != -1);
  1183. /* Expect irq to have been bound before,
  1184. so there should be a proper type */
  1185. BUG_ON(info->type == IRQT_UNBOUND);
  1186. xen_irq_info_evtchn_init(irq, evtchn);
  1187. mutex_unlock(&irq_mapping_update_lock);
  1188. /* new event channels are always bound to cpu 0 */
  1189. irq_set_affinity(irq, cpumask_of(0));
  1190. /* Unmask the event channel. */
  1191. enable_irq(irq);
  1192. }
  1193. /* Rebind an evtchn so that it gets delivered to a specific cpu */
  1194. static int rebind_irq_to_cpu(unsigned irq, unsigned tcpu)
  1195. {
  1196. struct evtchn_bind_vcpu bind_vcpu;
  1197. int evtchn = evtchn_from_irq(irq);
  1198. if (!VALID_EVTCHN(evtchn))
  1199. return -1;
  1200. /*
  1201. * Events delivered via platform PCI interrupts are always
  1202. * routed to vcpu 0 and hence cannot be rebound.
  1203. */
  1204. if (xen_hvm_domain() && !xen_have_vector_callback)
  1205. return -1;
  1206. /* Send future instances of this interrupt to other vcpu. */
  1207. bind_vcpu.port = evtchn;
  1208. bind_vcpu.vcpu = tcpu;
  1209. /*
  1210. * If this fails, it usually just indicates that we're dealing with a
  1211. * virq or IPI channel, which don't actually need to be rebound. Ignore
  1212. * it, but don't do the xenlinux-level rebind in that case.
  1213. */
  1214. if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_vcpu, &bind_vcpu) >= 0)
  1215. bind_evtchn_to_cpu(evtchn, tcpu);
  1216. return 0;
  1217. }
  1218. static int set_affinity_irq(struct irq_data *data, const struct cpumask *dest,
  1219. bool force)
  1220. {
  1221. unsigned tcpu = cpumask_first(dest);
  1222. return rebind_irq_to_cpu(data->irq, tcpu);
  1223. }
  1224. int resend_irq_on_evtchn(unsigned int irq)
  1225. {
  1226. int masked, evtchn = evtchn_from_irq(irq);
  1227. struct shared_info *s = HYPERVISOR_shared_info;
  1228. if (!VALID_EVTCHN(evtchn))
  1229. return 1;
  1230. masked = sync_test_and_set_bit(evtchn, BM(s->evtchn_mask));
  1231. sync_set_bit(evtchn, BM(s->evtchn_pending));
  1232. if (!masked)
  1233. unmask_evtchn(evtchn);
  1234. return 1;
  1235. }
  1236. static void enable_dynirq(struct irq_data *data)
  1237. {
  1238. int evtchn = evtchn_from_irq(data->irq);
  1239. if (VALID_EVTCHN(evtchn))
  1240. unmask_evtchn(evtchn);
  1241. }
  1242. static void disable_dynirq(struct irq_data *data)
  1243. {
  1244. int evtchn = evtchn_from_irq(data->irq);
  1245. if (VALID_EVTCHN(evtchn))
  1246. mask_evtchn(evtchn);
  1247. }
  1248. static void ack_dynirq(struct irq_data *data)
  1249. {
  1250. int evtchn = evtchn_from_irq(data->irq);
  1251. irq_move_irq(data);
  1252. if (VALID_EVTCHN(evtchn))
  1253. clear_evtchn(evtchn);
  1254. }
  1255. static void mask_ack_dynirq(struct irq_data *data)
  1256. {
  1257. disable_dynirq(data);
  1258. ack_dynirq(data);
  1259. }
  1260. static int retrigger_dynirq(struct irq_data *data)
  1261. {
  1262. int evtchn = evtchn_from_irq(data->irq);
  1263. struct shared_info *sh = HYPERVISOR_shared_info;
  1264. int ret = 0;
  1265. if (VALID_EVTCHN(evtchn)) {
  1266. int masked;
  1267. masked = sync_test_and_set_bit(evtchn, BM(sh->evtchn_mask));
  1268. sync_set_bit(evtchn, BM(sh->evtchn_pending));
  1269. if (!masked)
  1270. unmask_evtchn(evtchn);
  1271. ret = 1;
  1272. }
  1273. return ret;
  1274. }
  1275. static void restore_pirqs(void)
  1276. {
  1277. int pirq, rc, irq, gsi;
  1278. struct physdev_map_pirq map_irq;
  1279. struct irq_info *info;
  1280. list_for_each_entry(info, &xen_irq_list_head, list) {
  1281. if (info->type != IRQT_PIRQ)
  1282. continue;
  1283. pirq = info->u.pirq.pirq;
  1284. gsi = info->u.pirq.gsi;
  1285. irq = info->irq;
  1286. /* save/restore of PT devices doesn't work, so at this point the
  1287. * only devices present are GSI based emulated devices */
  1288. if (!gsi)
  1289. continue;
  1290. map_irq.domid = DOMID_SELF;
  1291. map_irq.type = MAP_PIRQ_TYPE_GSI;
  1292. map_irq.index = gsi;
  1293. map_irq.pirq = pirq;
  1294. rc = HYPERVISOR_physdev_op(PHYSDEVOP_map_pirq, &map_irq);
  1295. if (rc) {
  1296. printk(KERN_WARNING "xen map irq failed gsi=%d irq=%d pirq=%d rc=%d\n",
  1297. gsi, irq, pirq, rc);
  1298. xen_free_irq(irq);
  1299. continue;
  1300. }
  1301. printk(KERN_DEBUG "xen: --> irq=%d, pirq=%d\n", irq, map_irq.pirq);
  1302. __startup_pirq(irq);
  1303. }
  1304. }
  1305. static void restore_cpu_virqs(unsigned int cpu)
  1306. {
  1307. struct evtchn_bind_virq bind_virq;
  1308. int virq, irq, evtchn;
  1309. for (virq = 0; virq < NR_VIRQS; virq++) {
  1310. if ((irq = per_cpu(virq_to_irq, cpu)[virq]) == -1)
  1311. continue;
  1312. BUG_ON(virq_from_irq(irq) != virq);
  1313. /* Get a new binding from Xen. */
  1314. bind_virq.virq = virq;
  1315. bind_virq.vcpu = cpu;
  1316. if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq,
  1317. &bind_virq) != 0)
  1318. BUG();
  1319. evtchn = bind_virq.port;
  1320. /* Record the new mapping. */
  1321. xen_irq_info_virq_init(cpu, irq, evtchn, virq);
  1322. bind_evtchn_to_cpu(evtchn, cpu);
  1323. }
  1324. }
  1325. static void restore_cpu_ipis(unsigned int cpu)
  1326. {
  1327. struct evtchn_bind_ipi bind_ipi;
  1328. int ipi, irq, evtchn;
  1329. for (ipi = 0; ipi < XEN_NR_IPIS; ipi++) {
  1330. if ((irq = per_cpu(ipi_to_irq, cpu)[ipi]) == -1)
  1331. continue;
  1332. BUG_ON(ipi_from_irq(irq) != ipi);
  1333. /* Get a new binding from Xen. */
  1334. bind_ipi.vcpu = cpu;
  1335. if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi,
  1336. &bind_ipi) != 0)
  1337. BUG();
  1338. evtchn = bind_ipi.port;
  1339. /* Record the new mapping. */
  1340. xen_irq_info_ipi_init(cpu, irq, evtchn, ipi);
  1341. bind_evtchn_to_cpu(evtchn, cpu);
  1342. }
  1343. }
  1344. /* Clear an irq's pending state, in preparation for polling on it */
  1345. void xen_clear_irq_pending(int irq)
  1346. {
  1347. int evtchn = evtchn_from_irq(irq);
  1348. if (VALID_EVTCHN(evtchn))
  1349. clear_evtchn(evtchn);
  1350. }
  1351. EXPORT_SYMBOL(xen_clear_irq_pending);
  1352. void xen_set_irq_pending(int irq)
  1353. {
  1354. int evtchn = evtchn_from_irq(irq);
  1355. if (VALID_EVTCHN(evtchn))
  1356. set_evtchn(evtchn);
  1357. }
  1358. bool xen_test_irq_pending(int irq)
  1359. {
  1360. int evtchn = evtchn_from_irq(irq);
  1361. bool ret = false;
  1362. if (VALID_EVTCHN(evtchn))
  1363. ret = test_evtchn(evtchn);
  1364. return ret;
  1365. }
  1366. /* Poll waiting for an irq to become pending with timeout. In the usual case,
  1367. * the irq will be disabled so it won't deliver an interrupt. */
  1368. void xen_poll_irq_timeout(int irq, u64 timeout)
  1369. {
  1370. evtchn_port_t evtchn = evtchn_from_irq(irq);
  1371. if (VALID_EVTCHN(evtchn)) {
  1372. struct sched_poll poll;
  1373. poll.nr_ports = 1;
  1374. poll.timeout = timeout;
  1375. set_xen_guest_handle(poll.ports, &evtchn);
  1376. if (HYPERVISOR_sched_op(SCHEDOP_poll, &poll) != 0)
  1377. BUG();
  1378. }
  1379. }
  1380. EXPORT_SYMBOL(xen_poll_irq_timeout);
  1381. /* Poll waiting for an irq to become pending. In the usual case, the
  1382. * irq will be disabled so it won't deliver an interrupt. */
  1383. void xen_poll_irq(int irq)
  1384. {
  1385. xen_poll_irq_timeout(irq, 0 /* no timeout */);
  1386. }
  1387. /* Check whether the IRQ line is shared with other guests. */
  1388. int xen_test_irq_shared(int irq)
  1389. {
  1390. struct irq_info *info = info_for_irq(irq);
  1391. struct physdev_irq_status_query irq_status = { .irq = info->u.pirq.pirq };
  1392. if (HYPERVISOR_physdev_op(PHYSDEVOP_irq_status_query, &irq_status))
  1393. return 0;
  1394. return !(irq_status.flags & XENIRQSTAT_shared);
  1395. }
  1396. EXPORT_SYMBOL_GPL(xen_test_irq_shared);
  1397. void xen_irq_resume(void)
  1398. {
  1399. unsigned int cpu, evtchn;
  1400. struct irq_info *info;
  1401. init_evtchn_cpu_bindings();
  1402. /* New event-channel space is not 'live' yet. */
  1403. for (evtchn = 0; evtchn < NR_EVENT_CHANNELS; evtchn++)
  1404. mask_evtchn(evtchn);
  1405. /* No IRQ <-> event-channel mappings. */
  1406. list_for_each_entry(info, &xen_irq_list_head, list)
  1407. info->evtchn = 0; /* zap event-channel binding */
  1408. for (evtchn = 0; evtchn < NR_EVENT_CHANNELS; evtchn++)
  1409. evtchn_to_irq[evtchn] = -1;
  1410. for_each_possible_cpu(cpu) {
  1411. restore_cpu_virqs(cpu);
  1412. restore_cpu_ipis(cpu);
  1413. }
  1414. restore_pirqs();
  1415. }
  1416. static struct irq_chip xen_dynamic_chip __read_mostly = {
  1417. .name = "xen-dyn",
  1418. .irq_disable = disable_dynirq,
  1419. .irq_mask = disable_dynirq,
  1420. .irq_unmask = enable_dynirq,
  1421. .irq_ack = ack_dynirq,
  1422. .irq_mask_ack = mask_ack_dynirq,
  1423. .irq_set_affinity = set_affinity_irq,
  1424. .irq_retrigger = retrigger_dynirq,
  1425. };
  1426. static struct irq_chip xen_pirq_chip __read_mostly = {
  1427. .name = "xen-pirq",
  1428. .irq_startup = startup_pirq,
  1429. .irq_shutdown = shutdown_pirq,
  1430. .irq_enable = enable_pirq,
  1431. .irq_disable = disable_pirq,
  1432. .irq_mask = disable_dynirq,
  1433. .irq_unmask = enable_dynirq,
  1434. .irq_ack = eoi_pirq,
  1435. .irq_eoi = eoi_pirq,
  1436. .irq_mask_ack = mask_ack_pirq,
  1437. .irq_set_affinity = set_affinity_irq,
  1438. .irq_retrigger = retrigger_dynirq,
  1439. };
  1440. static struct irq_chip xen_percpu_chip __read_mostly = {
  1441. .name = "xen-percpu",
  1442. .irq_disable = disable_dynirq,
  1443. .irq_mask = disable_dynirq,
  1444. .irq_unmask = enable_dynirq,
  1445. .irq_ack = ack_dynirq,
  1446. };
  1447. int xen_set_callback_via(uint64_t via)
  1448. {
  1449. struct xen_hvm_param a;
  1450. a.domid = DOMID_SELF;
  1451. a.index = HVM_PARAM_CALLBACK_IRQ;
  1452. a.value = via;
  1453. return HYPERVISOR_hvm_op(HVMOP_set_param, &a);
  1454. }
  1455. EXPORT_SYMBOL_GPL(xen_set_callback_via);
  1456. #ifdef CONFIG_XEN_PVHVM
  1457. /* Vector callbacks are better than PCI interrupts to receive event
  1458. * channel notifications because we can receive vector callbacks on any
  1459. * vcpu and we don't need PCI support or APIC interactions. */
  1460. void xen_callback_vector(void)
  1461. {
  1462. int rc;
  1463. uint64_t callback_via;
  1464. if (xen_have_vector_callback) {
  1465. callback_via = HVM_CALLBACK_VECTOR(HYPERVISOR_CALLBACK_VECTOR);
  1466. rc = xen_set_callback_via(callback_via);
  1467. if (rc) {
  1468. printk(KERN_ERR "Request for Xen HVM callback vector"
  1469. " failed.\n");
  1470. xen_have_vector_callback = 0;
  1471. return;
  1472. }
  1473. printk(KERN_INFO "Xen HVM callback vector for event delivery is "
  1474. "enabled\n");
  1475. /* in the restore case the vector has already been allocated */
  1476. if (!test_bit(HYPERVISOR_CALLBACK_VECTOR, used_vectors))
  1477. alloc_intr_gate(HYPERVISOR_CALLBACK_VECTOR,
  1478. xen_hvm_callback_vector);
  1479. }
  1480. }
  1481. #else
  1482. void xen_callback_vector(void) {}
  1483. #endif
  1484. void __init xen_init_IRQ(void)
  1485. {
  1486. int i;
  1487. evtchn_to_irq = kcalloc(NR_EVENT_CHANNELS, sizeof(*evtchn_to_irq),
  1488. GFP_KERNEL);
  1489. BUG_ON(!evtchn_to_irq);
  1490. for (i = 0; i < NR_EVENT_CHANNELS; i++)
  1491. evtchn_to_irq[i] = -1;
  1492. init_evtchn_cpu_bindings();
  1493. /* No event channels are 'live' right now. */
  1494. for (i = 0; i < NR_EVENT_CHANNELS; i++)
  1495. mask_evtchn(i);
  1496. pirq_needs_eoi = pirq_needs_eoi_flag;
  1497. #ifdef CONFIG_X86
  1498. if (xen_hvm_domain()) {
  1499. xen_callback_vector();
  1500. native_init_IRQ();
  1501. /* pci_xen_hvm_init must be called after native_init_IRQ so that
  1502. * __acpi_register_gsi can point at the right function */
  1503. pci_xen_hvm_init();
  1504. } else {
  1505. int rc;
  1506. struct physdev_pirq_eoi_gmfn eoi_gmfn;
  1507. irq_ctx_init(smp_processor_id());
  1508. if (xen_initial_domain())
  1509. pci_xen_initial_domain();
  1510. pirq_eoi_map = (void *)__get_free_page(GFP_KERNEL|__GFP_ZERO);
  1511. eoi_gmfn.gmfn = virt_to_mfn(pirq_eoi_map);
  1512. rc = HYPERVISOR_physdev_op(PHYSDEVOP_pirq_eoi_gmfn_v2, &eoi_gmfn);
  1513. if (rc != 0) {
  1514. free_page((unsigned long) pirq_eoi_map);
  1515. pirq_eoi_map = NULL;
  1516. } else
  1517. pirq_needs_eoi = pirq_check_eoi_map;
  1518. }
  1519. #endif
  1520. }