diff options
author | Suravee Suthikulpanit <suravee.suthikulpanit@amd.com> | 2018-06-27 10:31:20 -0500 |
---|---|---|
committer | Joerg Roedel <jroedel@suse.de> | 2018-07-06 14:43:47 +0200 |
commit | 818b7587b4d34e989ea6c042eeb8d50ffa5be13e (patch) | |
tree | d028f318579d58946d640d6f999aeafbb8bf1ed7 /arch | |
parent | 3c120143f584360a13614787e23ae2cdcb5e5ccd (diff) | |
download | linux-stable-818b7587b4d34e989ea6c042eeb8d50ffa5be13e.tar.gz linux-stable-818b7587b4d34e989ea6c042eeb8d50ffa5be13e.tar.bz2 linux-stable-818b7587b4d34e989ea6c042eeb8d50ffa5be13e.zip |
x86: irq_remapping: Move irq remapping mode enum
The enum is currently defined in Intel-specific DMAR header file,
but it is also used by APIC common code. Therefore, move it to
a more appropriate interrupt-remapping common header file.
This will also be used by subsequent patches.
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Joerg Roedel <jroedel@suse.de>
Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/asm/irq_remapping.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/include/asm/irq_remapping.h b/arch/x86/include/asm/irq_remapping.h index 023b4a9fc846..5f26962eff42 100644 --- a/arch/x86/include/asm/irq_remapping.h +++ b/arch/x86/include/asm/irq_remapping.h @@ -33,6 +33,11 @@ enum irq_remap_cap { IRQ_POSTING_CAP = 0, }; +enum { + IRQ_REMAP_XAPIC_MODE, + IRQ_REMAP_X2APIC_MODE, +}; + struct vcpu_data { u64 pi_desc_addr; /* Physical address of PI Descriptor */ u32 vector; /* Guest vector of the interrupt */ |