x86, io-apic: define names for redirection table entry fields
[linux-2.6-block.git] / include / asm-x86 / io_apic.h
CommitLineData
e1d91978
TG
1#ifndef __ASM_IO_APIC_H
2#define __ASM_IO_APIC_H
3
a1a33fa3 4#include <linux/types.h>
e1d91978
TG
5#include <asm/mpspec.h>
6#include <asm/apicdef.h>
7
8/*
9 * Intel IO-APIC support for SMP and UP systems.
10 *
11 * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar
12 */
13
d3f020d2
CG
14/* I/O Unit Redirection Table */
15#define IO_APIC_REDIR_VECTOR_MASK 0x000FF
16#define IO_APIC_REDIR_DEST_LOGICAL 0x00800
17#define IO_APIC_REDIR_DEST_PHYSICAL 0x00000
18#define IO_APIC_REDIR_SEND_PENDING (1 << 12)
19#define IO_APIC_REDIR_REMOTE_IRR (1 << 14)
20#define IO_APIC_REDIR_LEVEL_TRIGGER (1 << 15)
21#define IO_APIC_REDIR_MASKED (1 << 16)
22
e1d91978
TG
23/*
24 * The structure of the IO-APIC:
25 */
26union IO_APIC_reg_00 {
27 u32 raw;
28 struct {
29 u32 __reserved_2 : 14,
30 LTS : 1,
31 delivery_type : 1,
32 __reserved_1 : 8,
33 ID : 8;
34 } __attribute__ ((packed)) bits;
35};
36
37union IO_APIC_reg_01 {
38 u32 raw;
39 struct {
40 u32 version : 8,
41 __reserved_2 : 7,
42 PRQ : 1,
43 entries : 8,
44 __reserved_1 : 8;
45 } __attribute__ ((packed)) bits;
46};
47
48union IO_APIC_reg_02 {
49 u32 raw;
50 struct {
51 u32 __reserved_2 : 24,
52 arbitration : 4,
53 __reserved_1 : 4;
54 } __attribute__ ((packed)) bits;
55};
56
57union IO_APIC_reg_03 {
58 u32 raw;
59 struct {
60 u32 boot_DT : 1,
61 __reserved_1 : 31;
62 } __attribute__ ((packed)) bits;
63};
64
65enum ioapic_irq_destination_types {
66 dest_Fixed = 0,
67 dest_LowestPrio = 1,
68 dest_SMI = 2,
69 dest__reserved_1 = 3,
70 dest_NMI = 4,
71 dest_INIT = 5,
72 dest__reserved_2 = 6,
73 dest_ExtINT = 7
74};
75
76struct IO_APIC_route_entry {
77 __u32 vector : 8,
78 delivery_mode : 3, /* 000: FIXED
79 * 001: lowest prio
80 * 111: ExtINT
81 */
82 dest_mode : 1, /* 0: physical, 1: logical */
83 delivery_status : 1,
84 polarity : 1,
85 irr : 1,
86 trigger : 1, /* 0: edge, 1: level */
87 mask : 1, /* 0: enabled, 1: disabled */
88 __reserved_2 : 15;
89
96a388de 90#ifdef CONFIG_X86_32
e1d91978
TG
91 union {
92 struct {
93 __u32 __reserved_1 : 24,
94 physical_dest : 4,
95 __reserved_2 : 4;
96 } physical;
97
98 struct {
99 __u32 __reserved_1 : 24,
100 logical_dest : 8;
101 } logical;
102 } dest;
96a388de 103#else
e1d91978
TG
104 __u32 __reserved_3 : 24,
105 dest : 8;
106#endif
107
108} __attribute__ ((packed));
109
110#ifdef CONFIG_X86_IO_APIC
111
112/*
113 * # of IO-APICs and # of IRQ routing registers
114 */
115extern int nr_ioapics;
116extern int nr_ioapic_registers[MAX_IO_APICS];
117
118/*
119 * MP-BIOS irq configuration table structures:
120 */
121
a1a33fa3
AM
122#define MP_MAX_IOAPIC_PIN 127
123
9e5c5f1d
AS
124struct mp_ioapic_routing {
125 int apic_id;
126 int gsi_base;
127 int gsi_end;
a1a33fa3 128 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
9e5c5f1d
AS
129};
130
e1d91978
TG
131/* I/O APIC entries */
132extern struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
133
134/* # of MP IRQ source entries */
135extern int mp_irq_entries;
136
137/* MP IRQ source entries */
138extern struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
139
140/* non-0 if default (table-less) MP configuration */
141extern int mpc_default_type;
142
143/* Older SiS APIC requires we rewrite the index register */
144extern int sis_apic_bug;
145
146/* 1 if "noapic" boot option passed */
147extern int skip_ioapic_setup;
148
35542c5e
MR
149/* 1 if the timer IRQ uses the '8259A Virtual Wire' mode */
150extern int timer_through_8259;
151
e1d91978
TG
152static inline void disable_ioapic_setup(void)
153{
154 skip_ioapic_setup = 1;
155}
156
157/*
158 * If we use the IO-APIC for IRQ routing, disable automatic
159 * assignment of PCI IRQ's.
160 */
161#define io_apic_assign_pci_irqs \
162 (mp_irq_entries && !skip_ioapic_setup && io_apic_irqs)
163
164#ifdef CONFIG_ACPI
165extern int io_apic_get_unique_id(int ioapic, int apic_id);
166extern int io_apic_get_version(int ioapic);
167extern int io_apic_get_redir_entries(int ioapic);
168extern int io_apic_set_pci_routing(int ioapic, int pin, int irq,
169 int edge_level, int active_high_low);
e1d91978
TG
170#endif /* CONFIG_ACPI */
171
172extern int (*ioapic_renumber_irq)(int ioapic, int irq);
173extern void ioapic_init_mappings(void);
174
175#else /* !CONFIG_X86_IO_APIC */
176#define io_apic_assign_pci_irqs 0
35542c5e 177static const int timer_through_8259 = 0;
e1d91978
TG
178#endif
179
96a388de 180#endif