blob: b95d167b7fb26d8697a1d1a56b2000648b042e8b [file] [log] [blame]
Thomas Gleixner9b7dc562008-05-02 20:10:09 +02001#ifndef _ASM_IRQ_VECTORS_H
2#define _ASM_IRQ_VECTORS_H
3
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
22 * cleanup after irq migration on 64 bit.
23 */
24#define IRQ_MOVE_CLEANUP_VECTOR FIRST_EXTERNAL_VECTOR
25
26/*
Pavel Machekc46e62f2008-05-28 12:42:57 +020027 * Vectors 0x20-0x2f are used for ISA interrupts on 32 bit.
28 * Vectors 0x30-0x3f are used for ISA interrupts on 64 bit.
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020029 */
Pavel Machekc46e62f2008-05-28 12:42:57 +020030#ifdef CONFIG_X86_32
31#define IRQ0_VECTOR (FIRST_EXTERNAL_VECTOR)
32#else
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020033#define IRQ0_VECTOR (FIRST_EXTERNAL_VECTOR + 0x10)
Pavel Machekc46e62f2008-05-28 12:42:57 +020034#endif
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020035#define IRQ1_VECTOR (IRQ0_VECTOR + 1)
36#define IRQ2_VECTOR (IRQ0_VECTOR + 2)
37#define IRQ3_VECTOR (IRQ0_VECTOR + 3)
38#define IRQ4_VECTOR (IRQ0_VECTOR + 4)
39#define IRQ5_VECTOR (IRQ0_VECTOR + 5)
40#define IRQ6_VECTOR (IRQ0_VECTOR + 6)
41#define IRQ7_VECTOR (IRQ0_VECTOR + 7)
42#define IRQ8_VECTOR (IRQ0_VECTOR + 8)
43#define IRQ9_VECTOR (IRQ0_VECTOR + 9)
44#define IRQ10_VECTOR (IRQ0_VECTOR + 10)
45#define IRQ11_VECTOR (IRQ0_VECTOR + 11)
46#define IRQ12_VECTOR (IRQ0_VECTOR + 12)
47#define IRQ13_VECTOR (IRQ0_VECTOR + 13)
48#define IRQ14_VECTOR (IRQ0_VECTOR + 14)
49#define IRQ15_VECTOR (IRQ0_VECTOR + 15)
50
51/*
52 * Special IRQ vectors used by the SMP architecture, 0xf0-0xff
53 *
54 * some of the following vectors are 'rare', they are merged
55 * into a single vector (CALL_FUNCTION_VECTOR) to save vector space.
56 * TLB, reschedule and local APIC vectors are performance-critical.
57 *
58 * Vectors 0xf0-0xfa are free (reserved for future Linux use).
59 */
60#ifdef CONFIG_X86_32
61
62# define SPURIOUS_APIC_VECTOR 0xff
63# define ERROR_APIC_VECTOR 0xfe
64# define INVALIDATE_TLB_VECTOR 0xfd
65# define RESCHEDULE_VECTOR 0xfc
66# define CALL_FUNCTION_VECTOR 0xfb
Ingo Molnar1a781a72008-07-15 21:55:59 +020067# define CALL_FUNCTION_SINGLE_VECTOR 0xfa
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020068# define THERMAL_APIC_VECTOR 0xf0
69
70#else
71
72#define SPURIOUS_APIC_VECTOR 0xff
73#define ERROR_APIC_VECTOR 0xfe
74#define RESCHEDULE_VECTOR 0xfd
75#define CALL_FUNCTION_VECTOR 0xfc
Ingo Molnar1a781a72008-07-15 21:55:59 +020076#define CALL_FUNCTION_SINGLE_VECTOR 0xfb
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020077#define THERMAL_APIC_VECTOR 0xfa
78#define THRESHOLD_APIC_VECTOR 0xf9
79#define INVALIDATE_TLB_VECTOR_END 0xf7
80#define INVALIDATE_TLB_VECTOR_START 0xf0 /* f0-f7 used for TLB flush */
81
82#define NUM_INVALIDATE_TLB_VECTORS 8
83
84#endif
85
86/*
87 * Local APIC timer IRQ vector is on a different priority level,
88 * to work around the 'lost local interrupt if more than 2 IRQ
89 * sources per level' errata.
90 */
91#define LOCAL_TIMER_VECTOR 0xef
92
93/*
94 * First APIC vector available to drivers: (vectors 0x30-0xee) we
95 * start at 0x31(0x41) to spread out vectors evenly between priority
96 * levels. (0x80 is the syscall vector)
97 */
98#ifdef CONFIG_X86_32
99# define FIRST_DEVICE_VECTOR 0x31
100#else
101# define FIRST_DEVICE_VECTOR (IRQ15_VECTOR + 2)
102#endif
103
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200104#define NR_VECTORS 256
105
106#define FPU_IRQ 13
107
108#define FIRST_VM86_IRQ 3
109#define LAST_VM86_IRQ 15
110#define invalid_vm86_irq(irq) ((irq) < 3 || (irq) > 15)
111
Eric W. Biederman3c7569b2008-08-10 00:35:50 -0700112#ifdef CONFIG_X86_64
113# if NR_CPUS < MAX_IO_APICS
114# define NR_IRQS (NR_VECTORS + (32 * NR_CPUS))
115# else
116# define NR_IRQS (NR_VECTORS + (32 * MAX_IO_APICS))
117# endif
118# define NR_IRQ_VECTORS NR_IRQS
119
120#elif !defined(CONFIG_X86_VOYAGER)
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200121
Ingo Molnar8bfaba82008-07-10 15:42:50 +0200122# if defined(CONFIG_X86_IO_APIC) || defined(CONFIG_PARAVIRT) || defined(CONFIG_X86_VISWS)
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200123
124# define NR_IRQS 224
125
126# if (224 >= 32 * NR_CPUS)
127# define NR_IRQ_VECTORS NR_IRQS
128# else
129# define NR_IRQ_VECTORS (32 * NR_CPUS)
130# endif
131
132# else /* IO_APIC || PARAVIRT */
133
134# define NR_IRQS 16
135# define NR_IRQ_VECTORS NR_IRQS
136
137# endif
138
139#else /* !VISWS && !VOYAGER */
140
141# define NR_IRQS 224
142# define NR_IRQ_VECTORS NR_IRQS
143
144#endif /* VISWS */
145
146/* Voyager specific defines */
147/* These define the CPIs we use in linux */
148#define VIC_CPI_LEVEL0 0
149#define VIC_CPI_LEVEL1 1
150/* now the fake CPIs */
151#define VIC_TIMER_CPI 2
152#define VIC_INVALIDATE_CPI 3
153#define VIC_RESCHEDULE_CPI 4
154#define VIC_ENABLE_IRQ_CPI 5
155#define VIC_CALL_FUNCTION_CPI 6
Ingo Molnar1a781a72008-07-15 21:55:59 +0200156#define VIC_CALL_FUNCTION_SINGLE_CPI 7
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200157
158/* Now the QIC CPIs: Since we don't need the two initial levels,
159 * these are 2 less than the VIC CPIs */
160#define QIC_CPI_OFFSET 1
161#define QIC_TIMER_CPI (VIC_TIMER_CPI - QIC_CPI_OFFSET)
162#define QIC_INVALIDATE_CPI (VIC_INVALIDATE_CPI - QIC_CPI_OFFSET)
163#define QIC_RESCHEDULE_CPI (VIC_RESCHEDULE_CPI - QIC_CPI_OFFSET)
164#define QIC_ENABLE_IRQ_CPI (VIC_ENABLE_IRQ_CPI - QIC_CPI_OFFSET)
165#define QIC_CALL_FUNCTION_CPI (VIC_CALL_FUNCTION_CPI - QIC_CPI_OFFSET)
Ingo Molnar1a781a72008-07-15 21:55:59 +0200166#define QIC_CALL_FUNCTION_SINGLE_CPI (VIC_CALL_FUNCTION_SINGLE_CPI - QIC_CPI_OFFSET)
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200167
168#define VIC_START_FAKE_CPI VIC_TIMER_CPI
Ingo Molnar1a781a72008-07-15 21:55:59 +0200169#define VIC_END_FAKE_CPI VIC_CALL_FUNCTION_SINGLE_CPI
Thomas Gleixner9b7dc562008-05-02 20:10:09 +0200170
171/* this is the SYS_INT CPI. */
172#define VIC_SYS_INT 8
173#define VIC_CMN_INT 15
174
175/* This is the boot CPI for alternate processors. It gets overwritten
176 * by the above once the system has activated all available processors */
177#define VIC_CPU_BOOT_CPI VIC_CPI_LEVEL0
178#define VIC_CPU_BOOT_ERRATA_CPI (VIC_CPI_LEVEL0 + 8)
179
180
181#endif /* _ASM_IRQ_VECTORS_H */