]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/include/asm/irq_remapping.h
iommu/vt-d: Refine the interfaces to create IRQ for DMAR unit
[mirror_ubuntu-bionic-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
947045a2
JL
25#include <linux/irqdomain.h>
26#include <asm/hw_irq.h>
399988ee 27#include <asm/io_apic.h>
736baef4 28
35d3d814
JR
29struct IO_APIC_route_entry;
30struct io_apic_irq_attr;
31struct irq_chip;
32struct msi_msg;
33struct pci_dev;
34struct irq_cfg;
947045a2 35struct irq_alloc_info;
35d3d814 36
399988ee 37#ifdef CONFIG_IRQ_REMAP
0c3f173a 38
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);
45extern int setup_ioapic_remapped_entry(int irq,
46 struct IO_APIC_route_entry *entry,
47 unsigned int destination,
48 int vector,
49 struct io_apic_irq_attr *attr);
95a02e97 50extern void free_remapped_irq(int irq);
6a9f5de2 51extern void panic_if_irq_remap(const char *msg);
2976fd84
JR
52extern bool setup_remapped_irq(int irq,
53 struct irq_cfg *cfg,
54 struct irq_chip *chip);
736baef4 55
9b1b0e42
JR
56void irq_remap_modify_chip_defaults(struct irq_chip *chip);
57
947045a2
JL
58extern struct irq_domain *
59irq_remapping_get_ir_irq_domain(struct irq_alloc_info *info);
60extern struct irq_domain *
61irq_remapping_get_irq_domain(struct irq_alloc_info *info);
62extern void irq_remapping_print_chip(struct irq_data *data, struct seq_file *p);
63
64/* Create PCI MSI/MSIx irqdomain, use @parent as the parent irqdomain. */
52f518a3 65extern struct irq_domain *arch_create_msi_irq_domain(struct irq_domain *parent);
947045a2
JL
66
67/* Get parent irqdomain for interrupt remapping irqdomain */
68static inline struct irq_domain *arch_get_ir_parent_domain(void)
69{
70 return x86_vector_domain;
71}
72
736baef4
JR
73#else /* CONFIG_IRQ_REMAP */
74
03bbcb2e 75static inline void set_irq_remapping_broken(void) { }
95a02e97
SS
76static inline int irq_remapping_prepare(void) { return -ENODEV; }
77static inline int irq_remapping_enable(void) { return -ENODEV; }
78static inline void irq_remapping_disable(void) { }
79static inline int irq_remapping_reenable(int eim) { return -ENODEV; }
80static inline int irq_remap_enable_fault_handling(void) { return -ENODEV; }
81static inline int setup_ioapic_remapped_entry(int irq,
82 struct IO_APIC_route_entry *entry,
83 unsigned int destination,
84 int vector,
85 struct io_apic_irq_attr *attr)
0c3f173a
JR
86{
87 return -ENODEV;
88}
95a02e97 89static inline void free_remapped_irq(int irq) { }
6a9f5de2
JR
90
91static inline void panic_if_irq_remap(const char *msg)
92{
93}
9b1b0e42 94
9b1b0e42
JR
95static inline void irq_remap_modify_chip_defaults(struct irq_chip *chip)
96{
97}
98
2976fd84
JR
99static inline bool setup_remapped_irq(int irq,
100 struct irq_cfg *cfg,
101 struct irq_chip *chip)
102{
103 return false;
104}
947045a2
JL
105
106static inline struct irq_domain *
107irq_remapping_get_ir_irq_domain(struct irq_alloc_info *info)
108{
109 return NULL;
110}
111
112static inline struct irq_domain *
113irq_remapping_get_irq_domain(struct irq_alloc_info *info)
114{
115 return NULL;
116}
117
118#define irq_remapping_print_chip NULL
736baef4 119#endif /* CONFIG_IRQ_REMAP */
8a8f422d 120#endif /* __X86_IRQ_REMAPPING_H */