events.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. #ifndef _XEN_EVENTS_H
  2. #define _XEN_EVENTS_H
  3. #include <linux/interrupt.h>
  4. #include <xen/interface/event_channel.h>
  5. #include <asm/xen/hypercall.h>
  6. #include <asm/xen/events.h>
  7. int bind_evtchn_to_irq(unsigned int evtchn);
  8. int bind_evtchn_to_irqhandler(unsigned int evtchn,
  9. irq_handler_t handler,
  10. unsigned long irqflags, const char *devname,
  11. void *dev_id);
  12. int bind_virq_to_irq(unsigned int virq, unsigned int cpu);
  13. int bind_virq_to_irqhandler(unsigned int virq, unsigned int cpu,
  14. irq_handler_t handler,
  15. unsigned long irqflags, const char *devname,
  16. void *dev_id);
  17. int bind_ipi_to_irqhandler(enum ipi_vector ipi,
  18. unsigned int cpu,
  19. irq_handler_t handler,
  20. unsigned long irqflags,
  21. const char *devname,
  22. void *dev_id);
  23. /*
  24. * Common unbind function for all event sources. Takes IRQ to unbind from.
  25. * Automatically closes the underlying event channel (even for bindings
  26. * made with bind_evtchn_to_irqhandler()).
  27. */
  28. void unbind_from_irqhandler(unsigned int irq, void *dev_id);
  29. void xen_send_IPI_one(unsigned int cpu, enum ipi_vector vector);
  30. int resend_irq_on_evtchn(unsigned int irq);
  31. void rebind_evtchn_irq(int evtchn, int irq);
  32. static inline void notify_remote_via_evtchn(int port)
  33. {
  34. struct evtchn_send send = { .port = port };
  35. (void)HYPERVISOR_event_channel_op(EVTCHNOP_send, &send);
  36. }
  37. extern void notify_remote_via_irq(int irq);
  38. extern void xen_irq_resume(void);
  39. /* Clear an irq's pending state, in preparation for polling on it */
  40. void xen_clear_irq_pending(int irq);
  41. void xen_set_irq_pending(int irq);
  42. bool xen_test_irq_pending(int irq);
  43. /* Poll waiting for an irq to become pending. In the usual case, the
  44. irq will be disabled so it won't deliver an interrupt. */
  45. void xen_poll_irq(int irq);
  46. /* Poll waiting for an irq to become pending with a timeout. In the usual case,
  47. * the irq will be disabled so it won't deliver an interrupt. */
  48. void xen_poll_irq_timeout(int irq, u64 timeout);
  49. /* Determine the IRQ which is bound to an event channel */
  50. unsigned irq_from_evtchn(unsigned int evtchn);
  51. /* Xen HVM evtchn vector callback */
  52. extern void xen_hvm_callback_vector(void);
  53. extern int xen_have_vector_callback;
  54. int xen_set_callback_via(uint64_t via);
  55. void xen_evtchn_do_upcall(struct pt_regs *regs);
  56. void xen_hvm_evtchn_do_upcall(void);
  57. /* Allocate an irq for a physical interrupt, given a gsi. "Legacy"
  58. * GSIs are identity mapped; others are dynamically allocated as
  59. * usual. */
  60. int xen_allocate_pirq(unsigned gsi, int shareable, char *name);
  61. int xen_map_pirq_gsi(unsigned pirq, unsigned gsi, int shareable, char *name);
  62. #ifdef CONFIG_PCI_MSI
  63. /* Allocate an irq and a pirq to be used with MSIs. */
  64. #define XEN_ALLOC_PIRQ (1 << 0)
  65. #define XEN_ALLOC_IRQ (1 << 1)
  66. void xen_allocate_pirq_msi(char *name, int *irq, int *pirq, int alloc_mask);
  67. int xen_create_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int type);
  68. #endif
  69. /* De-allocates the above mentioned physical interrupt. */
  70. int xen_destroy_irq(int irq);
  71. /* Return vector allocated to pirq */
  72. int xen_vector_from_irq(unsigned pirq);
  73. /* Return gsi allocated to pirq */
  74. int xen_gsi_from_irq(unsigned pirq);
  75. /* Return irq from pirq */
  76. int xen_irq_from_pirq(unsigned pirq);
  77. #endif /* _XEN_EVENTS_H */