intr_remapping.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright (C) 2012 Advanced Micro Devices, Inc.
  3. * Author: Joerg Roedel <joerg.roedel@amd.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License version 2 as published
  7. * by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. *
  18. * This header file contains stuff that is shared between different interrupt
  19. * remapping drivers but with no need to be visible outside of the IOMMU layer.
  20. */
  21. #ifndef __INTR_REMAPPING_H
  22. #define __INTR_REMAPPING_H
  23. #ifdef CONFIG_IRQ_REMAP
  24. struct IO_APIC_route_entry;
  25. struct io_apic_irq_attr;
  26. struct irq_data;
  27. struct cpumask;
  28. extern int disable_intremap;
  29. extern int disable_sourceid_checking;
  30. extern int no_x2apic_optout;
  31. struct irq_remap_ops {
  32. /* Check whether Interrupt Remapping is supported */
  33. int (*supported)(void);
  34. /* Initializes hardware and makes it ready for remapping interrupts */
  35. int (*hardware_init)(void);
  36. /* Enables the remapping hardware */
  37. int (*hardware_enable)(void);
  38. /* Disables the remapping hardware */
  39. void (*hardware_disable)(void);
  40. /* Reenables the remapping hardware */
  41. int (*hardware_reenable)(int);
  42. /* Enable fault handling */
  43. int (*enable_faulting)(void);
  44. /* IO-APIC setup routine */
  45. int (*setup_ioapic_entry)(int irq, struct IO_APIC_route_entry *,
  46. unsigned int, int,
  47. struct io_apic_irq_attr *);
  48. /* Set the CPU affinity of a remapped interrupt */
  49. int (*set_affinity)(struct irq_data *data, const struct cpumask *mask,
  50. bool force);
  51. /* Free an IRQ */
  52. int (*free_irq)(int);
  53. };
  54. extern struct irq_remap_ops intel_irq_remap_ops;
  55. #endif /* CONFIG_IRQ_REMAP */
  56. #endif /* __INTR_REMAPPING_H */