]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/x86/include/asm/irq_remapping.h
UBUNTU: Ubuntu-5.4.0-117.132
[mirror_ubuntu-focal-kernel.git] / arch / x86 / include / asm / irq_remapping.h
CommitLineData
45051539 1/* SPDX-License-Identifier: GPL-2.0-only */
736baef4
JR
2/*
3 * Copyright (C) 2012 Advanced Micro Devices, Inc.
4 * Author: Joerg Roedel <joerg.roedel@amd.com>
5 *
736baef4
JR
6 * This header file contains the interface of the interrupt remapping code to
7 * the x86 interrupt management code.
8 */
9
8a8f422d
SS
10#ifndef __X86_IRQ_REMAPPING_H
11#define __X86_IRQ_REMAPPING_H
736baef4 12
d746d1eb 13#include <asm/irqdomain.h>
947045a2 14#include <asm/hw_irq.h>
399988ee 15#include <asm/io_apic.h>
736baef4 16
35d3d814 17struct msi_msg;
947045a2 18struct irq_alloc_info;
35d3d814 19
6f281923
FW
20enum irq_remap_cap {
21 IRQ_POSTING_CAP = 0,
22};
23
818b7587
SS
24enum {
25 IRQ_REMAP_XAPIC_MODE,
26 IRQ_REMAP_X2APIC_MODE,
27};
28
18cd52c4
PB
29struct vcpu_data {
30 u64 pi_desc_addr; /* Physical address of PI Descriptor */
31 u32 vector; /* Guest vector of the interrupt */
32};
33
399988ee 34#ifdef CONFIG_IRQ_REMAP
0c3f173a 35
26b86092
SM
36extern raw_spinlock_t irq_2_ir_lock;
37
959c870f 38extern bool irq_remapping_cap(enum irq_remap_cap cap);
03bbcb2e 39extern void set_irq_remapping_broken(void);
95a02e97
SS
40extern int irq_remapping_prepare(void);
41extern int irq_remapping_enable(void);
42extern void irq_remapping_disable(void);
43extern int irq_remapping_reenable(int);
44extern int irq_remap_enable_fault_handling(void);
6a9f5de2 45extern void panic_if_irq_remap(const char *msg);
9b1b0e42 46
947045a2
JL
47extern struct irq_domain *
48irq_remapping_get_ir_irq_domain(struct irq_alloc_info *info);
49extern struct irq_domain *
50irq_remapping_get_irq_domain(struct irq_alloc_info *info);
947045a2
JL
51
52/* Create PCI MSI/MSIx irqdomain, use @parent as the parent irqdomain. */
667724c5
TG
53extern struct irq_domain *
54arch_create_remap_msi_irq_domain(struct irq_domain *par, const char *n, int id);
947045a2
JL
55
56/* Get parent irqdomain for interrupt remapping irqdomain */
57static inline struct irq_domain *arch_get_ir_parent_domain(void)
58{
59 return x86_vector_domain;
60}
61
736baef4
JR
62#else /* CONFIG_IRQ_REMAP */
63
959c870f 64static inline bool irq_remapping_cap(enum irq_remap_cap cap) { return 0; }
03bbcb2e 65static inline void set_irq_remapping_broken(void) { }
95a02e97
SS
66static inline int irq_remapping_prepare(void) { return -ENODEV; }
67static inline int irq_remapping_enable(void) { return -ENODEV; }
68static inline void irq_remapping_disable(void) { }
69static inline int irq_remapping_reenable(int eim) { return -ENODEV; }
70static inline int irq_remap_enable_fault_handling(void) { return -ENODEV; }
6a9f5de2
JR
71
72static inline void panic_if_irq_remap(const char *msg)
73{
74}
9b1b0e42 75
947045a2
JL
76static inline struct irq_domain *
77irq_remapping_get_ir_irq_domain(struct irq_alloc_info *info)
78{
79 return NULL;
80}
81
82static inline struct irq_domain *
83irq_remapping_get_irq_domain(struct irq_alloc_info *info)
84{
85 return NULL;
86}
87
736baef4 88#endif /* CONFIG_IRQ_REMAP */
8a8f422d 89#endif /* __X86_IRQ_REMAPPING_H */