Subversion Repositories shark

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
424 giacomo 1
/*
2
 * This file should contain #defines for all of the interrupt vector
3
 * numbers used by this architecture.
4
 *
5
 * In addition, there are some standard defines:
6
 *
7
 *      FIRST_EXTERNAL_VECTOR:
8
 *              The first free place for external interrupts
9
 *
10
 *      SYSCALL_VECTOR:
11
 *              The IRQ vector a syscall makes the user to kernel transition
12
 *              under.
13
 *
14
 *      TIMER_IRQ:
15
 *              The IRQ number the timer interrupt comes in at.
16
 *
17
 *      NR_IRQS:
18
 *              The total number of interrupt vectors (including all the
19
 *              architecture specific interrupts) needed.
20
 *
21
 *      NR_IRQ_VECTORS:
22
 *              The total number of IO APIC vector inputs
23
 *
24
 */                    
25
#ifndef _ASM_IRQ_VECTORS_H
26
#define _ASM_IRQ_VECTORS_H
27
 
28
/*
29
 * IDT vectors usable for external interrupt sources start
30
 * at 0x20:
31
 */
32
#define FIRST_EXTERNAL_VECTOR   0x20
33
 
34
#define SYSCALL_VECTOR          0x80
35
 
36
/*
37
 * Vectors 0x20-0x2f are used for ISA interrupts.
38
 */
39
 
40
/*
41
 * Special IRQ vectors used by the SMP architecture, 0xf0-0xff
42
 *
43
 *  some of the following vectors are 'rare', they are merged
44
 *  into a single vector (CALL_FUNCTION_VECTOR) to save vector space.
45
 *  TLB, reschedule and local APIC vectors are performance-critical.
46
 *
47
 *  Vectors 0xf0-0xfa are free (reserved for future Linux use).
48
 */
49
#define SPURIOUS_APIC_VECTOR    0xff
50
#define ERROR_APIC_VECTOR       0xfe
51
#define INVALIDATE_TLB_VECTOR   0xfd
52
#define RESCHEDULE_VECTOR       0xfc
53
#define CALL_FUNCTION_VECTOR    0xfb
54
 
55
#define THERMAL_APIC_VECTOR     0xf0
56
/*
57
 * Local APIC timer IRQ vector is on a different priority level,
58
 * to work around the 'lost local interrupt if more than 2 IRQ
59
 * sources per level' errata.
60
 */
61
#define LOCAL_TIMER_VECTOR      0xef
62
 
63
/*
64
 * First APIC vector available to drivers: (vectors 0x30-0xee)
65
 * we start at 0x31 to spread out vectors evenly between priority
66
 * levels. (0x80 is the syscall vector)
67
 */
68
#define FIRST_DEVICE_VECTOR     0x31
69
#define FIRST_SYSTEM_VECTOR     0xef
70
 
71
#define TIMER_IRQ 0
72
 
73
/*
74
 * 16 8259A IRQ's, 208 potential APIC interrupt sources.
75
 * Right now the APIC is mostly only used for SMP.
76
 * 256 vectors is an architectural limit. (we can have
77
 * more than 256 devices theoretically, but they will
78
 * have to use shared interrupts)
79
 * Since vectors 0x00-0x1f are used/reserved for the CPU,
80
 * the usable vector space is 0x20-0xff (224 vectors)
81
 */
82
#ifdef CONFIG_X86_IO_APIC
83
#define NR_IRQS 224
84
#else
85
#define NR_IRQS 16
86
#endif
87
 
88
#define NR_IRQ_VECTORS NR_IRQS
89
 
90
#define FPU_IRQ                 8
91
 
92
#define FIRST_VM86_IRQ          2
93
#define LAST_VM86_IRQ           15
94
#define invalid_vm86_irq(irq)   ((irq) < 2 || (irq) == 7 || (irq) > 15)
95
 
96
#endif /* _ASM_IRQ_VECTORS_H */
97
 
98