]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/include/asm/irq_remapping.h
x86/bugs, KVM: Support the combination of guest and host IBRS
[mirror_ubuntu-artful-kernel.git] / arch / x86 / include / asm / irq_remapping.h
CommitLineData
736baef4
JR
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 the interface of the interrupt remapping code to
19 * the x86 interrupt management code.
20 */
21
8a8f422d
SS
22#ifndef __X86_IRQ_REMAPPING_H
23#define __X86_IRQ_REMAPPING_H
736baef4 24
d746d1eb 25#include <asm/irqdomain.h>
947045a2 26#include <asm/hw_irq.h>
399988ee 27#include <asm/io_apic.h>
736baef4 28
35d3d814 29struct msi_msg;
947045a2 30struct irq_alloc_info;
35d3d814 31
6f281923
FW
32enum irq_remap_cap {
33 IRQ_POSTING_CAP = 0,
34};
35
18cd52c4
PB
36struct vcpu_data {
37 u64 pi_desc_addr; /* Physical address of PI Descriptor */
38 u32 vector; /* Guest vector of the interrupt */
39};
40
399988ee 41#ifdef CONFIG_IRQ_REMAP
0c3f173a 42
959c870f 43extern bool irq_remapping_cap(enum irq_remap_cap cap);
03bbcb2e 44extern void set_irq_remapping_broken(void);
95a02e97
SS
45extern int irq_remapping_prepare(void);
46extern int irq_remapping_enable(void);
47extern void irq_remapping_disable(void);
48extern int irq_remapping_reenable(int);
49extern int irq_remap_enable_fault_handling(void);
6a9f5de2 50extern void panic_if_irq_remap(const char *msg);
9b1b0e42 51
947045a2
JL
52extern struct irq_domain *
53irq_remapping_get_ir_irq_domain(struct irq_alloc_info *info);
54extern struct irq_domain *
55irq_remapping_get_irq_domain(struct irq_alloc_info *info);
947045a2
JL
56
57/* Create PCI MSI/MSIx irqdomain, use @parent as the parent irqdomain. */
667724c5
TG
58extern struct irq_domain *
59arch_create_remap_msi_irq_domain(struct irq_domain *par, const char *n, int id);
947045a2
JL
60
61/* Get parent irqdomain for interrupt remapping irqdomain */
62static inline struct irq_domain *arch_get_ir_parent_domain(void)
63{
64 return x86_vector_domain;
65}
66
736baef4
JR
67#else /* CONFIG_IRQ_REMAP */
68
959c870f 69static inline bool irq_remapping_cap(enum irq_remap_cap cap) { return 0; }
03bbcb2e 70static inline void set_irq_remapping_broken(void) { }
95a02e97
SS
71static inline int irq_remapping_prepare(void) { return -ENODEV; }
72static inline int irq_remapping_enable(void) { return -ENODEV; }
73static inline void irq_remapping_disable(void) { }
74static inline int irq_remapping_reenable(int eim) { return -ENODEV; }
75static inline int irq_remap_enable_fault_handling(void) { return -ENODEV; }
6a9f5de2
JR
76
77static inline void panic_if_irq_remap(const char *msg)
78{
79}
9b1b0e42 80
947045a2
JL
81static inline struct irq_domain *
82irq_remapping_get_ir_irq_domain(struct irq_alloc_info *info)
83{
84 return NULL;
85}
86
87static inline struct irq_domain *
88irq_remapping_get_irq_domain(struct irq_alloc_info *info)
89{
90 return NULL;
91}
92
736baef4 93#endif /* CONFIG_IRQ_REMAP */
8a8f422d 94#endif /* __X86_IRQ_REMAPPING_H */