]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/include/asm/intr_remapping.h
iommu/vt-d: Convert IR ioapic-setup to use remap_ops
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / include / asm / intr_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
22#ifndef __X86_INTR_REMAPPING_H
23#define __X86_INTR_REMAPPING_H
24
25#ifdef CONFIG_IRQ_REMAP
26
0c3f173a
JR
27struct IO_APIC_route_entry;
28struct io_apic_irq_attr;
29
736baef4
JR
30extern int intr_remapping_enabled;
31
32extern void setup_intr_remapping(void);
33extern int intr_remapping_supported(void);
34extern int intr_hardware_init(void);
35extern int intr_hardware_enable(void);
4f3d8b67
JR
36extern void intr_hardware_disable(void);
37extern int intr_hardware_reenable(int);
38extern int intr_enable_fault_handling(void);
0c3f173a
JR
39extern int intr_setup_ioapic_entry(int irq,
40 struct IO_APIC_route_entry *entry,
41 unsigned int destination, int vector,
42 struct io_apic_irq_attr *attr);
736baef4
JR
43
44#else /* CONFIG_IRQ_REMAP */
45
46#define intr_remapping_enabled 0
47
48static inline void setup_intr_remapping(void) { }
49static inline int intr_remapping_supported(void) { return 0; }
50static inline int intr_hardware_init(void) { return -ENODEV; }
51static inline int intr_hardware_enable(void) { return -ENODEV; }
4f3d8b67
JR
52static inline void intr_hardware_disable(void) { }
53static inline int intr_hardware_reenable(int eim) { return -ENODEV; }
54static inline int intr_enable_fault_handling(void) { return -ENODEV; }
0c3f173a
JR
55static inline int intr_setup_ioapic_entry(int irq,
56 struct IO_APIC_route_entry *entry,
57 unsigned int destination, int vector,
58 struct io_apic_irq_attr *attr)
59{
60 return -ENODEV;
61}
736baef4
JR
62#endif /* CONFIG_IRQ_REMAP */
63
64#endif /* __X86_INTR_REMAPPING_H */