mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 10:26:55 +07:00
ace80ab796
This patch removes the change in behavior of the irq allocation code when CONFIG_PCI_MSI is defined. Removing all instances of the assumption that irq == vector. create_irq is rewritten to first allocate a free irq and then to assign that irq a vector. assign_irq_vector is made static and the AUTO_ASSIGN case which allocates an vector not bound to an irq is removed. The ioapic vector methods are removed, and everything now works with irqs. The definition of NR_IRQS no longer depends on CONFIG_PCI_MSI [akpm@osdl.org: cleanup] Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Rajesh Shah <rajesh.shah@intel.com> Cc: Andi Kleen <ak@muc.de> Cc: "Protasevich, Natalie" <Natalie.Protasevich@UNISYS.com> Cc: "Luck, Tony" <tony.luck@intel.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
70 lines
1.7 KiB
C
70 lines
1.7 KiB
C
#ifndef _ASM_HW_IRQ_H
|
|
#define _ASM_HW_IRQ_H
|
|
|
|
/*
|
|
* linux/include/asm/hw_irq.h
|
|
*
|
|
* (C) 1992, 1993 Linus Torvalds, (C) 1997 Ingo Molnar
|
|
*
|
|
* moved some of the old arch/i386/kernel/irq.h to here. VY
|
|
*
|
|
* IRQ/IPI changes taken from work by Thomas Radke
|
|
* <tomsoft@informatik.tu-chemnitz.de>
|
|
*/
|
|
|
|
#include <linux/profile.h>
|
|
#include <asm/atomic.h>
|
|
#include <asm/irq.h>
|
|
#include <asm/sections.h>
|
|
|
|
#define NMI_VECTOR 0x02
|
|
|
|
/*
|
|
* Various low-level irq details needed by irq.c, process.c,
|
|
* time.c, io_apic.c and smp.c
|
|
*
|
|
* Interrupt entry/exit code at both C and assembly level
|
|
*/
|
|
|
|
extern u8 irq_vector[NR_IRQ_VECTORS];
|
|
#define IO_APIC_VECTOR(irq) (irq_vector[irq])
|
|
|
|
extern void (*interrupt[NR_IRQS])(void);
|
|
|
|
#ifdef CONFIG_SMP
|
|
fastcall void reschedule_interrupt(void);
|
|
fastcall void invalidate_interrupt(void);
|
|
fastcall void call_function_interrupt(void);
|
|
#endif
|
|
|
|
#ifdef CONFIG_X86_LOCAL_APIC
|
|
fastcall void apic_timer_interrupt(void);
|
|
fastcall void error_interrupt(void);
|
|
fastcall void spurious_interrupt(void);
|
|
fastcall void thermal_interrupt(struct pt_regs *);
|
|
#define platform_legacy_irq(irq) ((irq) < 16)
|
|
#endif
|
|
|
|
void disable_8259A_irq(unsigned int irq);
|
|
void enable_8259A_irq(unsigned int irq);
|
|
int i8259A_irq_pending(unsigned int irq);
|
|
void make_8259A_irq(unsigned int irq);
|
|
void init_8259A(int aeoi);
|
|
void FASTCALL(send_IPI_self(int vector));
|
|
void init_VISWS_APIC_irqs(void);
|
|
void setup_IO_APIC(void);
|
|
void disable_IO_APIC(void);
|
|
void print_IO_APIC(void);
|
|
int IO_APIC_get_PCI_irq_vector(int bus, int slot, int fn);
|
|
void send_IPI(int dest, int vector);
|
|
void setup_ioapic_dest(void);
|
|
|
|
extern unsigned long io_apic_irqs;
|
|
|
|
extern atomic_t irq_err_count;
|
|
extern atomic_t irq_mis_count;
|
|
|
|
#define IO_APIC_IRQ(x) (((x) >= 16) || ((1<<(x)) & io_apic_irqs))
|
|
|
|
#endif /* _ASM_HW_IRQ_H */
|