blob: 0e2220bb314284c2ec12760a432b31515c110667 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_IRQ_VECTORS_H
2#define _ASM_X86_IRQ_VECTORS_H
Thomas Gleixner9b7dc562008-05-02 20:10:09 +02003
4#include <linux/threads.h>
5
6#define NMI_VECTOR 0x02
7
8/*
9 * IDT vectors usable for external interrupt sources start
10 * at 0x20:
11 */
12#define FIRST_EXTERNAL_VECTOR 0x20
13
14#ifdef CONFIG_X86_32
15# define SYSCALL_VECTOR 0x80
16#else
17# define IA32_SYSCALL_VECTOR 0x80
18#endif
19
20/*
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020021 * Reserve the lowest usable priority level 0x20 - 0x2f for triggering
Yinghai Lu497c9a12008-08-19 20:50:28 -070022 * cleanup after irq migration.
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020023 */
24#define IRQ_MOVE_CLEANUP_VECTOR FIRST_EXTERNAL_VECTOR
25
26/*
Yinghai Lu497c9a12008-08-19 20:50:28 -070027 * Vectors 0x30-0x3f are used for ISA interrupts.
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020028 */
29#define IRQ0_VECTOR (FIRST_EXTERNAL_VECTOR + 0x10)
30#define IRQ1_VECTOR (IRQ0_VECTOR + 1)
31#define IRQ2_VECTOR (IRQ0_VECTOR + 2)
32#define IRQ3_VECTOR (IRQ0_VECTOR + 3)
33#define IRQ4_VECTOR (IRQ0_VECTOR + 4)
34#define IRQ5_VECTOR (IRQ0_VECTOR + 5)
35#define IRQ6_VECTOR (IRQ0_VECTOR + 6)
36#define IRQ7_VECTOR (IRQ0_VECTOR + 7)
37#define IRQ8_VECTOR (IRQ0_VECTOR + 8)
38#define IRQ9_VECTOR (IRQ0_VECTOR + 9)
39#define IRQ10_VECTOR (IRQ0_VECTOR + 10)
40#define IRQ11_VECTOR (IRQ0_VECTOR + 11)
41#define IRQ12_VECTOR (IRQ0_VECTOR + 12)
42#define IRQ13_VECTOR (IRQ0_VECTOR + 13)
43#define IRQ14_VECTOR (IRQ0_VECTOR + 14)
44#define IRQ15_VECTOR (IRQ0_VECTOR + 15)
45
46/*
47 * Special IRQ vectors used by the SMP architecture, 0xf0-0xff
48 *
49 * some of the following vectors are 'rare', they are merged
50 * into a single vector (CALL_FUNCTION_VECTOR) to save vector space.
51 * TLB, reschedule and local APIC vectors are performance-critical.
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020052 */
53#ifdef CONFIG_X86_32
54
55# define SPURIOUS_APIC_VECTOR 0xff
56# define ERROR_APIC_VECTOR 0xfe
Tejun Heo6dd01be2009-01-21 17:26:06 +090057# define RESCHEDULE_VECTOR 0xfd
58# define CALL_FUNCTION_VECTOR 0xfc
59# define CALL_FUNCTION_SINGLE_VECTOR 0xfb
60# define THERMAL_APIC_VECTOR 0xfa
Tejun Heo02cf94c2009-01-21 17:26:06 +090061/* 0xf8 - 0xf9 : free */
62# define INVALIDATE_TLB_VECTOR_END 0xf7
63# define INVALIDATE_TLB_VECTOR_START 0xf0 /* f0-f7 used for TLB flush */
64
65# define NUM_INVALIDATE_TLB_VECTORS 8
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020066
67#else
68
Tejun Heo6dd01be2009-01-21 17:26:06 +090069# define SPURIOUS_APIC_VECTOR 0xff
70# define ERROR_APIC_VECTOR 0xfe
71# define RESCHEDULE_VECTOR 0xfd
72# define CALL_FUNCTION_VECTOR 0xfc
73# define CALL_FUNCTION_SINGLE_VECTOR 0xfb
74# define THERMAL_APIC_VECTOR 0xfa
75# define THRESHOLD_APIC_VECTOR 0xf9
76# define UV_BAU_MESSAGE 0xf8
77# define INVALIDATE_TLB_VECTOR_END 0xf7
78# define INVALIDATE_TLB_VECTOR_START 0xf0 /* f0-f7 used for TLB flush */
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020079
80#define NUM_INVALIDATE_TLB_VECTORS 8
81
82#endif
83
84/*
85 * Local APIC timer IRQ vector is on a different priority level,
86 * to work around the 'lost local interrupt if more than 2 IRQ
87 * sources per level' errata.
88 */
89#define LOCAL_TIMER_VECTOR 0xef
90
91/*
Ingo Molnar193c81b2009-01-31 02:23:27 +010092 * Performance monitoring interrupt vector:
93 */
94#define LOCAL_PERF_VECTOR 0xee
95
96/*
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020097 * First APIC vector available to drivers: (vectors 0x30-0xee) we
98 * start at 0x31(0x41) to spread out vectors evenly between priority
99 * levels. (0x80 is the syscall vector)
100 */
Yinghai Lu497c9a12008-08-19 20:50:28 -0700101#define FIRST_DEVICE_VECTOR (IRQ15_VECTOR + 2)
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200102
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200103#define NR_VECTORS 256
104
105#define FPU_IRQ 13
106
107#define FIRST_VM86_IRQ 3
108#define LAST_VM86_IRQ 15
109#define invalid_vm86_irq(irq) ((irq) < 3 || (irq) > 15)
110
Yinghai Lu99d093d2008-12-05 18:58:32 -0800111#define NR_IRQS_LEGACY 16
112
Yinghai Lu7db282f2008-11-05 23:36:48 -0800113#if defined(CONFIG_X86_IO_APIC) && !defined(CONFIG_X86_VOYAGER)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800114
Mike Travis9332fcc2009-01-10 22:24:07 -0800115#include <asm/apicnum.h> /* need MAX_IO_APICS */
116
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800117#ifndef CONFIG_SPARSE_IRQ
Eric W. Biederman3c7569b2008-08-10 00:35:50 -0700118# if NR_CPUS < MAX_IO_APICS
119# define NR_IRQS (NR_VECTORS + (32 * NR_CPUS))
120# else
121# define NR_IRQS (NR_VECTORS + (32 * MAX_IO_APICS))
122# endif
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800123#else
Mike Travis9332fcc2009-01-10 22:24:07 -0800124
Yinghai Lu4a046d12009-01-12 17:39:24 -0800125# define NR_IRQS \
126 ((8 * NR_CPUS) > (32 * MAX_IO_APICS) ? \
Mike Travis9332fcc2009-01-10 22:24:07 -0800127 (NR_VECTORS + (8 * NR_CPUS)) : \
128 (NR_VECTORS + (32 * MAX_IO_APICS))) \
129
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800130#endif
Eric W. Biederman3c7569b2008-08-10 00:35:50 -0700131
Yinghai Lu7db282f2008-11-05 23:36:48 -0800132#elif defined(CONFIG_X86_VOYAGER)
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200133
134# define NR_IRQS 224
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200135
Yinghai Lu7db282f2008-11-05 23:36:48 -0800136#else /* IO_APIC || VOYAGER */
Yinghai Lu1b489762008-11-04 14:10:13 -0800137
138# define NR_IRQS 16
139
140#endif
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200141
142/* Voyager specific defines */
143/* These define the CPIs we use in linux */
144#define VIC_CPI_LEVEL0 0
145#define VIC_CPI_LEVEL1 1
146/* now the fake CPIs */
147#define VIC_TIMER_CPI 2
148#define VIC_INVALIDATE_CPI 3
149#define VIC_RESCHEDULE_CPI 4
150#define VIC_ENABLE_IRQ_CPI 5
151#define VIC_CALL_FUNCTION_CPI 6
Ingo Molnar1a781a72008-07-15 21:55:59 +0200152#define VIC_CALL_FUNCTION_SINGLE_CPI 7
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200153
154/* Now the QIC CPIs: Since we don't need the two initial levels,
155 * these are 2 less than the VIC CPIs */
156#define QIC_CPI_OFFSET 1
157#define QIC_TIMER_CPI (VIC_TIMER_CPI - QIC_CPI_OFFSET)
158#define QIC_INVALIDATE_CPI (VIC_INVALIDATE_CPI - QIC_CPI_OFFSET)
159#define QIC_RESCHEDULE_CPI (VIC_RESCHEDULE_CPI - QIC_CPI_OFFSET)
160#define QIC_ENABLE_IRQ_CPI (VIC_ENABLE_IRQ_CPI - QIC_CPI_OFFSET)
161#define QIC_CALL_FUNCTION_CPI (VIC_CALL_FUNCTION_CPI - QIC_CPI_OFFSET)
Ingo Molnar1a781a72008-07-15 21:55:59 +0200162#define QIC_CALL_FUNCTION_SINGLE_CPI (VIC_CALL_FUNCTION_SINGLE_CPI - QIC_CPI_OFFSET)
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200163
164#define VIC_START_FAKE_CPI VIC_TIMER_CPI
Ingo Molnar1a781a72008-07-15 21:55:59 +0200165#define VIC_END_FAKE_CPI VIC_CALL_FUNCTION_SINGLE_CPI
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200166
167/* this is the SYS_INT CPI. */
168#define VIC_SYS_INT 8
169#define VIC_CMN_INT 15
170
171/* This is the boot CPI for alternate processors. It gets overwritten
172 * by the above once the system has activated all available processors */
173#define VIC_CPU_BOOT_CPI VIC_CPI_LEVEL0
174#define VIC_CPU_BOOT_ERRATA_CPI (VIC_CPI_LEVEL0 + 8)
175
176
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700177#endif /* _ASM_X86_IRQ_VECTORS_H */