blob: 503aadc4ad353a7b015e7d6214e97fc87f12dd51 [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.
52 *
53 * Vectors 0xf0-0xfa are free (reserved for future Linux use).
54 */
55#ifdef CONFIG_X86_32
56
57# define SPURIOUS_APIC_VECTOR 0xff
58# define ERROR_APIC_VECTOR 0xfe
59# define INVALIDATE_TLB_VECTOR 0xfd
60# define RESCHEDULE_VECTOR 0xfc
61# define CALL_FUNCTION_VECTOR 0xfb
Ingo Molnar1a781a72008-07-15 21:55:59 +020062# define CALL_FUNCTION_SINGLE_VECTOR 0xfa
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020063# define THERMAL_APIC_VECTOR 0xf0
64
65#else
66
67#define SPURIOUS_APIC_VECTOR 0xff
68#define ERROR_APIC_VECTOR 0xfe
69#define RESCHEDULE_VECTOR 0xfd
70#define CALL_FUNCTION_VECTOR 0xfc
Ingo Molnar1a781a72008-07-15 21:55:59 +020071#define CALL_FUNCTION_SINGLE_VECTOR 0xfb
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020072#define THERMAL_APIC_VECTOR 0xfa
73#define THRESHOLD_APIC_VECTOR 0xf9
Cliff Wickman99dd8712008-08-19 12:51:59 -050074#define UV_BAU_MESSAGE 0xf8
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020075#define INVALIDATE_TLB_VECTOR_END 0xf7
76#define INVALIDATE_TLB_VECTOR_START 0xf0 /* f0-f7 used for TLB flush */
77
78#define NUM_INVALIDATE_TLB_VECTORS 8
79
80#endif
81
82/*
83 * Local APIC timer IRQ vector is on a different priority level,
84 * to work around the 'lost local interrupt if more than 2 IRQ
85 * sources per level' errata.
86 */
87#define LOCAL_TIMER_VECTOR 0xef
88
89/*
90 * First APIC vector available to drivers: (vectors 0x30-0xee) we
91 * start at 0x31(0x41) to spread out vectors evenly between priority
92 * levels. (0x80 is the syscall vector)
93 */
Yinghai Lu497c9a12008-08-19 20:50:28 -070094#define FIRST_DEVICE_VECTOR (IRQ15_VECTOR + 2)
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020095
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020096#define NR_VECTORS 256
97
98#define FPU_IRQ 13
99
100#define FIRST_VM86_IRQ 3
101#define LAST_VM86_IRQ 15
102#define invalid_vm86_irq(irq) ((irq) < 3 || (irq) > 15)
103
Yinghai Lu1b489762008-11-04 14:10:13 -0800104#if defined(CONFIG_X86_IO_APIC) && !defined(CONFIG_PARAVIRT) && !defined(CONFIG_X86_VISWS) && !defined(CONFIG_X86_VOYAGER)
Eric W. Biederman3c7569b2008-08-10 00:35:50 -0700105# if NR_CPUS < MAX_IO_APICS
106# define NR_IRQS (NR_VECTORS + (32 * NR_CPUS))
107# else
108# define NR_IRQS (NR_VECTORS + (32 * MAX_IO_APICS))
109# endif
Eric W. Biederman3c7569b2008-08-10 00:35:50 -0700110
Yinghai Lu1b489762008-11-04 14:10:13 -0800111#elif defined(CONFIG_PARAVIRT) || defined(CONFIG_X86_VISWS) || defined(CONFIG_X86_VOYAGER)
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200112
113# define NR_IRQS 224
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200114
Yinghai Lu1b489762008-11-04 14:10:13 -0800115#else /* IO_APIC || PARAVIRT */
116
117# define NR_IRQS 16
118
119#endif
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200120
121/* Voyager specific defines */
122/* These define the CPIs we use in linux */
123#define VIC_CPI_LEVEL0 0
124#define VIC_CPI_LEVEL1 1
125/* now the fake CPIs */
126#define VIC_TIMER_CPI 2
127#define VIC_INVALIDATE_CPI 3
128#define VIC_RESCHEDULE_CPI 4
129#define VIC_ENABLE_IRQ_CPI 5
130#define VIC_CALL_FUNCTION_CPI 6
Ingo Molnar1a781a72008-07-15 21:55:59 +0200131#define VIC_CALL_FUNCTION_SINGLE_CPI 7
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200132
133/* Now the QIC CPIs: Since we don't need the two initial levels,
134 * these are 2 less than the VIC CPIs */
135#define QIC_CPI_OFFSET 1
136#define QIC_TIMER_CPI (VIC_TIMER_CPI - QIC_CPI_OFFSET)
137#define QIC_INVALIDATE_CPI (VIC_INVALIDATE_CPI - QIC_CPI_OFFSET)
138#define QIC_RESCHEDULE_CPI (VIC_RESCHEDULE_CPI - QIC_CPI_OFFSET)
139#define QIC_ENABLE_IRQ_CPI (VIC_ENABLE_IRQ_CPI - QIC_CPI_OFFSET)
140#define QIC_CALL_FUNCTION_CPI (VIC_CALL_FUNCTION_CPI - QIC_CPI_OFFSET)
Ingo Molnar1a781a72008-07-15 21:55:59 +0200141#define QIC_CALL_FUNCTION_SINGLE_CPI (VIC_CALL_FUNCTION_SINGLE_CPI - QIC_CPI_OFFSET)
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200142
143#define VIC_START_FAKE_CPI VIC_TIMER_CPI
Ingo Molnar1a781a72008-07-15 21:55:59 +0200144#define VIC_END_FAKE_CPI VIC_CALL_FUNCTION_SINGLE_CPI
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200145
146/* this is the SYS_INT CPI. */
147#define VIC_SYS_INT 8
148#define VIC_CMN_INT 15
149
150/* This is the boot CPI for alternate processors. It gets overwritten
151 * by the above once the system has activated all available processors */
152#define VIC_CPU_BOOT_CPI VIC_CPI_LEVEL0
153#define VIC_CPU_BOOT_ERRATA_CPI (VIC_CPI_LEVEL0 + 8)
154
155
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700156#endif /* _ASM_X86_IRQ_VECTORS_H */