blob: 059a9ff28b4d03b66fff8a2aff97ba962d14ceb4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_IO_APIC_H
2#define __ASM_IO_APIC_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <asm/types.h>
5#include <asm/mpspec.h>
6
7/*
8 * Intel IO-APIC support for SMP and UP systems.
9 *
10 * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar
11 */
12
13#ifdef CONFIG_X86_IO_APIC
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015/*
16 * The structure of the IO-APIC:
17 */
18union IO_APIC_reg_00 {
19 u32 raw;
20 struct {
21 u32 __reserved_2 : 14,
22 LTS : 1,
23 delivery_type : 1,
24 __reserved_1 : 8,
25 ID : 8;
26 } __attribute__ ((packed)) bits;
27};
28
29union IO_APIC_reg_01 {
30 u32 raw;
31 struct {
32 u32 version : 8,
33 __reserved_2 : 7,
34 PRQ : 1,
35 entries : 8,
36 __reserved_1 : 8;
37 } __attribute__ ((packed)) bits;
38};
39
40union IO_APIC_reg_02 {
41 u32 raw;
42 struct {
43 u32 __reserved_2 : 24,
44 arbitration : 4,
45 __reserved_1 : 4;
46 } __attribute__ ((packed)) bits;
47};
48
49union IO_APIC_reg_03 {
50 u32 raw;
51 struct {
52 u32 boot_DT : 1,
53 __reserved_1 : 31;
54 } __attribute__ ((packed)) bits;
55};
56
57/*
58 * # of IO-APICs and # of IRQ routing registers
59 */
60extern int nr_ioapics;
61extern int nr_ioapic_registers[MAX_IO_APICS];
62
63enum ioapic_irq_destination_types {
64 dest_Fixed = 0,
65 dest_LowestPrio = 1,
66 dest_SMI = 2,
67 dest__reserved_1 = 3,
68 dest_NMI = 4,
69 dest_INIT = 5,
70 dest__reserved_2 = 6,
71 dest_ExtINT = 7
72};
73
74struct IO_APIC_route_entry {
75 __u32 vector : 8,
76 delivery_mode : 3, /* 000: FIXED
77 * 001: lowest prio
78 * 111: ExtINT
79 */
80 dest_mode : 1, /* 0: physical, 1: logical */
81 delivery_status : 1,
82 polarity : 1,
83 irr : 1,
84 trigger : 1, /* 0: edge, 1: level */
85 mask : 1, /* 0: enabled, 1: disabled */
86 __reserved_2 : 15;
87
88 union { struct { __u32
89 __reserved_1 : 24,
90 physical_dest : 4,
91 __reserved_2 : 4;
92 } physical;
93
94 struct { __u32
95 __reserved_1 : 24,
96 logical_dest : 8;
97 } logical;
98 } dest;
99
100} __attribute__ ((packed));
101
102/*
103 * MP-BIOS irq configuration table structures:
104 */
105
106/* I/O APIC entries */
107extern struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
108
109/* # of MP IRQ source entries */
110extern int mp_irq_entries;
111
112/* MP IRQ source entries */
113extern struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
114
115/* non-0 if default (table-less) MP configuration */
116extern int mpc_default_type;
117
Linus Torvalds130fe052006-11-01 09:11:00 -0800118/* Older SiS APIC requires we rewrite the index register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119extern int sis_apic_bug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121/* 1 if "noapic" boot option passed */
122extern int skip_ioapic_setup;
123
Rusty Russell1a3f2392006-09-26 10:52:32 +0200124static inline void disable_ioapic_setup(void)
125{
126 skip_ioapic_setup = 1;
127}
128
129static inline int ioapic_setup_disabled(void)
130{
131 return skip_ioapic_setup;
132}
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/*
135 * If we use the IO-APIC for IRQ routing, disable automatic
136 * assignment of PCI IRQ's.
137 */
138#define io_apic_assign_pci_irqs (mp_irq_entries && !skip_ioapic_setup && io_apic_irqs)
139
Len Brown888ba6c2005-08-24 12:07:20 -0400140#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141extern int io_apic_get_unique_id (int ioapic, int apic_id);
142extern int io_apic_get_version (int ioapic);
143extern int io_apic_get_redir_entries (int ioapic);
144extern int io_apic_set_pci_routing (int ioapic, int pin, int irq, int edge_level, int active_high_low);
Kimball Murraye0c1e9b2006-05-08 15:17:16 +0200145extern int timer_uses_ioapic_pin_0;
Len Brown888ba6c2005-08-24 12:07:20 -0400146#endif /* CONFIG_ACPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148extern int (*ioapic_renumber_irq)(int ioapic, int irq);
149
150#else /* !CONFIG_X86_IO_APIC */
151#define io_apic_assign_pci_irqs 0
Rusty Russell1a3f2392006-09-26 10:52:32 +0200152static inline void disable_ioapic_setup(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#endif
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155#endif