iommu/vt-d: Convert IR set_affinity function to remap_ops
[deliverable/linux.git] / drivers / iommu / 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 stuff that is shared between different interrupt
19 * remapping drivers but with no need to be visible outside of the IOMMU layer.
20 */
21
22#ifndef __INTR_REMAPPING_H
23#define __INTR_REMAPPING_H
24
25#ifdef CONFIG_IRQ_REMAP
26
0c3f173a
JR
27struct IO_APIC_route_entry;
28struct io_apic_irq_attr;
4c1bad6a
JR
29struct irq_data;
30struct cpumask;
0c3f173a 31
736baef4
JR
32extern int disable_intremap;
33extern int disable_sourceid_checking;
34extern int no_x2apic_optout;
35
36struct irq_remap_ops {
37 /* Check whether Interrupt Remapping is supported */
38 int (*supported)(void);
39
40 /* Initializes hardware and makes it ready for remapping interrupts */
41 int (*hardware_init)(void);
42
43 /* Enables the remapping hardware */
44 int (*hardware_enable)(void);
4f3d8b67
JR
45
46 /* Disables the remapping hardware */
47 void (*hardware_disable)(void);
48
49 /* Reenables the remapping hardware */
50 int (*hardware_reenable)(int);
51
52 /* Enable fault handling */
53 int (*enable_faulting)(void);
0c3f173a
JR
54
55 /* IO-APIC setup routine */
56 int (*setup_ioapic_entry)(int irq, struct IO_APIC_route_entry *,
57 unsigned int, int,
58 struct io_apic_irq_attr *);
4c1bad6a
JR
59
60 /* Set the CPU affinity of a remapped interrupt */
61 int (*set_affinity)(struct irq_data *data, const struct cpumask *mask,
62 bool force);
736baef4
JR
63};
64
65extern struct irq_remap_ops intel_irq_remap_ops;
66
67#endif /* CONFIG_IRQ_REMAP */
68
69#endif /* __INTR_REMAPPING_H */
This page took 0.028217 seconds and 5 git commands to generate.