]> git.karo-electronics.de Git - mv-sheeva.git/blob - include/asm-x86/irq_vectors.h
x86: change FIRST_SYSTEM_VECTOR to a variable
[mv-sheeva.git] / include / asm-x86 / irq_vectors.h
1 #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 /*
21  * Vectors 0x20-0x2f are used for ISA interrupts on 32 bit.
22  *
23  * Reserve the lowest usable priority level 0x20 - 0x2f for triggering
24  * cleanup after irq migration on 64 bit.
25  */
26 #define IRQ_MOVE_CLEANUP_VECTOR FIRST_EXTERNAL_VECTOR
27
28 /*
29  * Vectors 0x30-0x3f are used for ISA interrupts on 64 bit
30  */
31 #define IRQ0_VECTOR             (FIRST_EXTERNAL_VECTOR + 0x10)
32 #define IRQ1_VECTOR             (IRQ0_VECTOR + 1)
33 #define IRQ2_VECTOR             (IRQ0_VECTOR + 2)
34 #define IRQ3_VECTOR             (IRQ0_VECTOR + 3)
35 #define IRQ4_VECTOR             (IRQ0_VECTOR + 4)
36 #define IRQ5_VECTOR             (IRQ0_VECTOR + 5)
37 #define IRQ6_VECTOR             (IRQ0_VECTOR + 6)
38 #define IRQ7_VECTOR             (IRQ0_VECTOR + 7)
39 #define IRQ8_VECTOR             (IRQ0_VECTOR + 8)
40 #define IRQ9_VECTOR             (IRQ0_VECTOR + 9)
41 #define IRQ10_VECTOR            (IRQ0_VECTOR + 10)
42 #define IRQ11_VECTOR            (IRQ0_VECTOR + 11)
43 #define IRQ12_VECTOR            (IRQ0_VECTOR + 12)
44 #define IRQ13_VECTOR            (IRQ0_VECTOR + 13)
45 #define IRQ14_VECTOR            (IRQ0_VECTOR + 14)
46 #define IRQ15_VECTOR            (IRQ0_VECTOR + 15)
47
48 /*
49  * Special IRQ vectors used by the SMP architecture, 0xf0-0xff
50  *
51  *  some of the following vectors are 'rare', they are merged
52  *  into a single vector (CALL_FUNCTION_VECTOR) to save vector space.
53  *  TLB, reschedule and local APIC vectors are performance-critical.
54  *
55  *  Vectors 0xf0-0xfa are free (reserved for future Linux use).
56  */
57 #ifdef CONFIG_X86_32
58
59 # define SPURIOUS_APIC_VECTOR           0xff
60 # define ERROR_APIC_VECTOR              0xfe
61 # define INVALIDATE_TLB_VECTOR          0xfd
62 # define RESCHEDULE_VECTOR              0xfc
63 # define CALL_FUNCTION_VECTOR           0xfb
64 # define THERMAL_APIC_VECTOR            0xf0
65
66 #else
67
68 #define SPURIOUS_APIC_VECTOR            0xff
69 #define ERROR_APIC_VECTOR               0xfe
70 #define RESCHEDULE_VECTOR               0xfd
71 #define CALL_FUNCTION_VECTOR            0xfc
72 #define THERMAL_APIC_VECTOR             0xfa
73 #define THRESHOLD_APIC_VECTOR           0xf9
74 #define INVALIDATE_TLB_VECTOR_END       0xf7
75 #define INVALIDATE_TLB_VECTOR_START     0xf0    /* f0-f7 used for TLB flush */
76
77 #define NUM_INVALIDATE_TLB_VECTORS      8
78
79 #endif
80
81 /*
82  * Local APIC timer IRQ vector is on a different priority level,
83  * to work around the 'lost local interrupt if more than 2 IRQ
84  * sources per level' errata.
85  */
86 #define LOCAL_TIMER_VECTOR      0xef
87
88 /*
89  * First APIC vector available to drivers: (vectors 0x30-0xee) we
90  * start at 0x31(0x41) to spread out vectors evenly between priority
91  * levels. (0x80 is the syscall vector)
92  */
93 #ifdef CONFIG_X86_32
94 # define FIRST_DEVICE_VECTOR    0x31
95 #else
96 # define FIRST_DEVICE_VECTOR    (IRQ15_VECTOR + 2)
97 #endif
98
99 #define NR_VECTORS              256
100
101 #define FPU_IRQ                 13
102
103 #define FIRST_VM86_IRQ          3
104 #define LAST_VM86_IRQ           15
105 #define invalid_vm86_irq(irq)   ((irq) < 3 || (irq) > 15)
106
107 #if !defined(CONFIG_X86_VISWS) && !defined(CONFIG_X86_VOYAGER)
108
109 # if defined(CONFIG_X86_IO_APIC) || defined(CONFIG_PARAVIRT)
110
111 #  define NR_IRQS               224
112
113 #  if (224 >= 32 * NR_CPUS)
114 #   define NR_IRQ_VECTORS       NR_IRQS
115 #  else
116 #   define NR_IRQ_VECTORS       (32 * NR_CPUS)
117 #  endif
118
119 # else /* IO_APIC || PARAVIRT */
120
121 #  define NR_IRQS               16
122 #  define NR_IRQ_VECTORS        NR_IRQS
123
124 # endif
125
126 #else /* !VISWS && !VOYAGER */
127
128 # define NR_IRQS                224
129 # define NR_IRQ_VECTORS         NR_IRQS
130
131 #endif /* VISWS */
132
133 /* Voyager specific defines */
134 /* These define the CPIs we use in linux */
135 #define VIC_CPI_LEVEL0                  0
136 #define VIC_CPI_LEVEL1                  1
137 /* now the fake CPIs */
138 #define VIC_TIMER_CPI                   2
139 #define VIC_INVALIDATE_CPI              3
140 #define VIC_RESCHEDULE_CPI              4
141 #define VIC_ENABLE_IRQ_CPI              5
142 #define VIC_CALL_FUNCTION_CPI           6
143
144 /* Now the QIC CPIs:  Since we don't need the two initial levels,
145  * these are 2 less than the VIC CPIs */
146 #define QIC_CPI_OFFSET                  1
147 #define QIC_TIMER_CPI                   (VIC_TIMER_CPI - QIC_CPI_OFFSET)
148 #define QIC_INVALIDATE_CPI              (VIC_INVALIDATE_CPI - QIC_CPI_OFFSET)
149 #define QIC_RESCHEDULE_CPI              (VIC_RESCHEDULE_CPI - QIC_CPI_OFFSET)
150 #define QIC_ENABLE_IRQ_CPI              (VIC_ENABLE_IRQ_CPI - QIC_CPI_OFFSET)
151 #define QIC_CALL_FUNCTION_CPI           (VIC_CALL_FUNCTION_CPI - QIC_CPI_OFFSET)
152
153 #define VIC_START_FAKE_CPI              VIC_TIMER_CPI
154 #define VIC_END_FAKE_CPI                VIC_CALL_FUNCTION_CPI
155
156 /* this is the SYS_INT CPI. */
157 #define VIC_SYS_INT                     8
158 #define VIC_CMN_INT                     15
159
160 /* This is the boot CPI for alternate processors.  It gets overwritten
161  * by the above once the system has activated all available processors */
162 #define VIC_CPU_BOOT_CPI                VIC_CPI_LEVEL0
163 #define VIC_CPU_BOOT_ERRATA_CPI         (VIC_CPI_LEVEL0 + 8)
164
165
166 #endif /* _ASM_IRQ_VECTORS_H */