2012-03-31 01:47:00 +07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Advanced Micro Devices, Inc.
|
|
|
|
* Author: Joerg Roedel <joerg.roedel@amd.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
|
|
* by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
* This header file contains the interface of the interrupt remapping code to
|
|
|
|
* the x86 interrupt management code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __X86_INTR_REMAPPING_H
|
|
|
|
#define __X86_INTR_REMAPPING_H
|
|
|
|
|
|
|
|
#ifdef CONFIG_IRQ_REMAP
|
|
|
|
|
2012-03-31 01:47:02 +07:00
|
|
|
struct IO_APIC_route_entry;
|
|
|
|
struct io_apic_irq_attr;
|
|
|
|
|
2012-03-31 01:47:00 +07:00
|
|
|
extern int intr_remapping_enabled;
|
|
|
|
|
|
|
|
extern void setup_intr_remapping(void);
|
|
|
|
extern int intr_remapping_supported(void);
|
|
|
|
extern int intr_hardware_init(void);
|
|
|
|
extern int intr_hardware_enable(void);
|
2012-03-31 01:47:01 +07:00
|
|
|
extern void intr_hardware_disable(void);
|
|
|
|
extern int intr_hardware_reenable(int);
|
|
|
|
extern int intr_enable_fault_handling(void);
|
2012-03-31 01:47:02 +07:00
|
|
|
extern int intr_setup_ioapic_entry(int irq,
|
|
|
|
struct IO_APIC_route_entry *entry,
|
|
|
|
unsigned int destination, int vector,
|
|
|
|
struct io_apic_irq_attr *attr);
|
2012-03-31 01:47:03 +07:00
|
|
|
extern int intr_set_affinity(struct irq_data *data,
|
|
|
|
const struct cpumask *mask,
|
|
|
|
bool force);
|
2012-03-31 01:47:04 +07:00
|
|
|
extern void intr_free_irq(int irq);
|
2012-03-31 01:47:00 +07:00
|
|
|
|
|
|
|
#else /* CONFIG_IRQ_REMAP */
|
|
|
|
|
|
|
|
#define intr_remapping_enabled 0
|
|
|
|
|
|
|
|
static inline void setup_intr_remapping(void) { }
|
|
|
|
static inline int intr_remapping_supported(void) { return 0; }
|
|
|
|
static inline int intr_hardware_init(void) { return -ENODEV; }
|
|
|
|
static inline int intr_hardware_enable(void) { return -ENODEV; }
|
2012-03-31 01:47:01 +07:00
|
|
|
static inline void intr_hardware_disable(void) { }
|
|
|
|
static inline int intr_hardware_reenable(int eim) { return -ENODEV; }
|
|
|
|
static inline int intr_enable_fault_handling(void) { return -ENODEV; }
|
2012-03-31 01:47:02 +07:00
|
|
|
static inline int intr_setup_ioapic_entry(int irq,
|
|
|
|
struct IO_APIC_route_entry *entry,
|
|
|
|
unsigned int destination, int vector,
|
|
|
|
struct io_apic_irq_attr *attr)
|
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
2012-03-31 01:47:03 +07:00
|
|
|
static inline int intr_set_affinity(struct irq_data *data,
|
|
|
|
const struct cpumask *mask,
|
|
|
|
bool force)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2012-03-31 01:47:04 +07:00
|
|
|
static inline void intr_free_irq(int irq) { }
|
2012-03-31 01:47:00 +07:00
|
|
|
#endif /* CONFIG_IRQ_REMAP */
|
|
|
|
|
|
|
|
#endif /* __X86_INTR_REMAPPING_H */
|