blob: e8994f2b3bbe294d25babcfad7286235055eed04 [file] [log] [blame]
Joerg Roedel736baef2012-03-30 11:47:00 -07001/*
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
Joerg Roedel0c3f1732012-03-30 11:47:02 -070027struct IO_APIC_route_entry;
28struct io_apic_irq_attr;
29
Joerg Roedel736baef2012-03-30 11:47:00 -070030extern int disable_intremap;
31extern int disable_sourceid_checking;
32extern int no_x2apic_optout;
33
34struct irq_remap_ops {
35 /* Check whether Interrupt Remapping is supported */
36 int (*supported)(void);
37
38 /* Initializes hardware and makes it ready for remapping interrupts */
39 int (*hardware_init)(void);
40
41 /* Enables the remapping hardware */
42 int (*hardware_enable)(void);
Joerg Roedel4f3d8b62012-03-30 11:47:01 -070043
44 /* Disables the remapping hardware */
45 void (*hardware_disable)(void);
46
47 /* Reenables the remapping hardware */
48 int (*hardware_reenable)(int);
49
50 /* Enable fault handling */
51 int (*enable_faulting)(void);
Joerg Roedel0c3f1732012-03-30 11:47:02 -070052
53 /* IO-APIC setup routine */
54 int (*setup_ioapic_entry)(int irq, struct IO_APIC_route_entry *,
55 unsigned int, int,
56 struct io_apic_irq_attr *);
Joerg Roedel736baef2012-03-30 11:47:00 -070057};
58
59extern struct irq_remap_ops intel_irq_remap_ops;
60
61#endif /* CONFIG_IRQ_REMAP */
62
63#endif /* __INTR_REMAPPING_H */