irq_remapping.h 2.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Copyright (C) 2012 Advanced Micro Devices, Inc.
 * Author: Joerg Roedel <joerg.roedel@amd.com>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published
 * by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
 * This header file contains the interface of the interrupt remapping code to
 * the x86 interrupt management code.
 */

22 23
#ifndef __X86_IRQ_REMAPPING_H
#define __X86_IRQ_REMAPPING_H
24

25
#include <asm/irqdomain.h>
26
#include <asm/hw_irq.h>
27
#include <asm/io_apic.h>
28

29
struct msi_msg;
30
struct irq_alloc_info;
31

32 33 34 35
enum irq_remap_cap {
	IRQ_POSTING_CAP = 0,
};

36
#ifdef CONFIG_IRQ_REMAP
37

38
extern bool irq_remapping_cap(enum irq_remap_cap cap);
39
extern void set_irq_remapping_broken(void);
40 41 42 43 44
extern int irq_remapping_prepare(void);
extern int irq_remapping_enable(void);
extern void irq_remapping_disable(void);
extern int irq_remapping_reenable(int);
extern int irq_remap_enable_fault_handling(void);
45
extern void panic_if_irq_remap(const char *msg);
46

47 48 49 50 51 52
extern struct irq_domain *
irq_remapping_get_ir_irq_domain(struct irq_alloc_info *info);
extern struct irq_domain *
irq_remapping_get_irq_domain(struct irq_alloc_info *info);

/* Create PCI MSI/MSIx irqdomain, use @parent as the parent irqdomain. */
53
extern struct irq_domain *arch_create_msi_irq_domain(struct irq_domain *parent);
54 55 56 57 58 59 60

/* Get parent irqdomain for interrupt remapping irqdomain */
static inline struct irq_domain *arch_get_ir_parent_domain(void)
{
	return x86_vector_domain;
}

61 62 63 64 65
struct vcpu_data {
	u64 pi_desc_addr;	/* Physical address of PI Descriptor */
	u32 vector;		/* Guest vector of the interrupt */
};

66 67
#else  /* CONFIG_IRQ_REMAP */

68
static inline bool irq_remapping_cap(enum irq_remap_cap cap) { return 0; }
69
static inline void set_irq_remapping_broken(void) { }
70 71 72 73 74
static inline int irq_remapping_prepare(void) { return -ENODEV; }
static inline int irq_remapping_enable(void) { return -ENODEV; }
static inline void irq_remapping_disable(void) { }
static inline int irq_remapping_reenable(int eim) { return -ENODEV; }
static inline int irq_remap_enable_fault_handling(void) { return -ENODEV; }
75 76 77 78

static inline void panic_if_irq_remap(const char *msg)
{
}
79

80 81 82 83 84 85 86 87 88 89 90 91
static inline struct irq_domain *
irq_remapping_get_ir_irq_domain(struct irq_alloc_info *info)
{
	return NULL;
}

static inline struct irq_domain *
irq_remapping_get_irq_domain(struct irq_alloc_info *info)
{
	return NULL;
}

92
#endif /* CONFIG_IRQ_REMAP */
93
#endif /* __X86_IRQ_REMAPPING_H */