x86/MSI: Use hierarchical irqdomains to manage MSI interrupts
[deliverable/linux.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
SS
50extern void free_remapped_irq(int irq);
51extern void compose_remapped_msi_msg(struct pci_dev *pdev,
52 unsigned int irq, unsigned int dest,
53 struct msi_msg *msg, u8 hpet_id);
95a02e97 54extern int setup_hpet_msi_remapped(unsigned int irq, unsigned int id);
6a9f5de2 55extern void panic_if_irq_remap(const char *msg);
2976fd84
JR
56extern bool setup_remapped_irq(int irq,
57 struct irq_cfg *cfg,
58 struct irq_chip *chip);
736baef4 59
9b1b0e42
JR
60void irq_remap_modify_chip_defaults(struct irq_chip *chip);
61
947045a2
JL
62extern struct irq_domain *
63irq_remapping_get_ir_irq_domain(struct irq_alloc_info *info);
64extern struct irq_domain *
65irq_remapping_get_irq_domain(struct irq_alloc_info *info);
66extern void irq_remapping_print_chip(struct irq_data *data, struct seq_file *p);
67
68/* Create PCI MSI/MSIx irqdomain, use @parent as the parent irqdomain. */
52f518a3 69extern struct irq_domain *arch_create_msi_irq_domain(struct irq_domain *parent);
947045a2
JL
70
71/* Get parent irqdomain for interrupt remapping irqdomain */
72static inline struct irq_domain *arch_get_ir_parent_domain(void)
73{
74 return x86_vector_domain;
75}
76
736baef4
JR
77#else /* CONFIG_IRQ_REMAP */
78
03bbcb2e 79static inline void set_irq_remapping_broken(void) { }
95a02e97
SS
80static inline int irq_remapping_prepare(void) { return -ENODEV; }
81static inline int irq_remapping_enable(void) { return -ENODEV; }
82static inline void irq_remapping_disable(void) { }
83static inline int irq_remapping_reenable(int eim) { return -ENODEV; }
84static inline int irq_remap_enable_fault_handling(void) { return -ENODEV; }
85static inline int setup_ioapic_remapped_entry(int irq,
86 struct IO_APIC_route_entry *entry,
87 unsigned int destination,
88 int vector,
89 struct io_apic_irq_attr *attr)
0c3f173a
JR
90{
91 return -ENODEV;
92}
95a02e97
SS
93static inline void free_remapped_irq(int irq) { }
94static inline void compose_remapped_msi_msg(struct pci_dev *pdev,
95 unsigned int irq, unsigned int dest,
96 struct msi_msg *msg, u8 hpet_id)
5e2b930b
JR
97{
98}
95a02e97 99static inline int setup_hpet_msi_remapped(unsigned int irq, unsigned int id)
5e2b930b
JR
100{
101 return -ENODEV;
102}
6a9f5de2
JR
103
104static inline void panic_if_irq_remap(const char *msg)
105{
106}
9b1b0e42 107
9b1b0e42
JR
108static inline void irq_remap_modify_chip_defaults(struct irq_chip *chip)
109{
110}
111
2976fd84
JR
112static inline bool setup_remapped_irq(int irq,
113 struct irq_cfg *cfg,
114 struct irq_chip *chip)
115{
116 return false;
117}
947045a2
JL
118
119static inline struct irq_domain *
120irq_remapping_get_ir_irq_domain(struct irq_alloc_info *info)
121{
122 return NULL;
123}
124
125static inline struct irq_domain *
126irq_remapping_get_irq_domain(struct irq_alloc_info *info)
127{
128 return NULL;
129}
130
131#define irq_remapping_print_chip NULL
736baef4
JR
132#endif /* CONFIG_IRQ_REMAP */
133
a62b32cd
JL
134extern int dmar_alloc_hwirq(void);
135extern void dmar_free_hwirq(int irq);
a553b142 136
8a8f422d 137#endif /* __X86_IRQ_REMAPPING_H */
This page took 0.284084 seconds and 5 git commands to generate.