]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/include/asm/mpspec.h
x86, ioapic: Only export mp_find_ioapic and mp_find_ioapic_pin in io_apic.h
[net-next-2.6.git] / arch / x86 / include / asm / mpspec.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_MPSPEC_H
2#define _ASM_X86_MPSPEC_H
c2805aa1 3
86c9835b
IM
4#include <linux/init.h>
5
c2805aa1 6#include <asm/mpspec_def.h>
b3f1b617 7#include <asm/x86_init.h>
c2805aa1 8
11494547 9extern int apic_version[MAX_APICS];
a1ae299d 10extern int pic_mode;
11494547 11
96a388de 12#ifdef CONFIG_X86_32
b2af018f
IM
13
14/*
15 * Summit or generic (i.e. installer) kernels need lots of bus entries.
16 * Maximum 256 PCI busses, plus 1 ISA bus in each of 4 cabinets.
17 */
18#if CONFIG_BASE_SMALL == 0
19# define MAX_MP_BUSSES 260
20#else
21# define MAX_MP_BUSSES 32
22#endif
23
24#define MAX_IRQ_SOURCES 256
c2805aa1 25
c2805aa1 26extern unsigned int def_to_bigsmp;
ae9d983b 27extern u8 apicid_2_node[];
c2805aa1 28
d49c4288
YL
29#ifdef CONFIG_X86_NUMAQ
30extern int mp_bus_id_to_node[MAX_MP_BUSSES];
31extern int mp_bus_id_to_local[MAX_MP_BUSSES];
32extern int quad_local_to_mp_bus_id [NR_CPUS/4][4];
33#endif
34
b2af018f 35#define MAX_APICID 256
ae9d983b 36
b2af018f 37#else /* CONFIG_X86_64: */
c2805aa1 38
b2af018f 39#define MAX_MP_BUSSES 256
c2805aa1 40/* Each PCI slot may be a combo card with its own bus. 4 IRQ pins per slot. */
b2af018f 41#define MAX_IRQ_SOURCES (MAX_MP_BUSSES * 4)
c2805aa1 42
b2af018f 43#endif /* CONFIG_X86_64 */
ab530e1f 44
c0a282c2
AS
45#if defined(CONFIG_MCA) || defined(CONFIG_EISA)
46extern int mp_bus_id_to_type[MAX_MP_BUSSES];
47#endif
48
a6333c3c 49extern DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
c0a282c2 50
c2805aa1 51extern unsigned int boot_cpu_physical_apicid;
e0da3364 52extern unsigned int max_physical_apicid;
c2805aa1
TG
53extern int mpc_default_type;
54extern unsigned long mp_lapic_addr;
55
b3f1b617
TG
56#ifdef CONFIG_X86_LOCAL_APIC
57extern int smp_found_config;
58#else
59# define smp_found_config 0
60#endif
61
62static inline void get_smp_config(void)
63{
64 x86_init.mpparse.get_smp_config(0);
65}
66
67static inline void early_get_smp_config(void)
68{
69 x86_init.mpparse.get_smp_config(1);
70}
71
72static inline void find_smp_config(void)
73{
b24c2a92 74 x86_init.mpparse.find_smp_config();
b3f1b617 75}
550fe4f1 76
af1cf204 77#ifdef CONFIG_X86_MPPARSE
2944e16b 78extern void early_reserve_e820_mpc_new(void);
abfe0af9 79extern int enable_update_mptable;
fd6c6661 80extern int default_mpc_apic_id(struct mpc_cpu *m);
72302142 81extern void default_smp_read_mpc_oem(struct mpc_table *mpc);
90e1c696
TG
82# ifdef CONFIG_X86_IO_APIC
83extern void default_mpc_oem_bus_info(struct mpc_bus *m, char *str);
84# else
85# define default_mpc_oem_bus_info NULL
86# endif
b24c2a92 87extern void default_find_smp_config(void);
b3f1b617 88extern void default_get_smp_config(unsigned int early);
af1cf204
IM
89#else
90static inline void early_reserve_e820_mpc_new(void) { }
abfe0af9 91#define enable_update_mptable 0
fd6c6661 92#define default_mpc_apic_id NULL
72302142 93#define default_smp_read_mpc_oem NULL
90e1c696 94#define default_mpc_oem_bus_info NULL
b24c2a92 95#define default_find_smp_config x86_init_noop
b3f1b617 96#define default_get_smp_config x86_init_uint_noop
af1cf204 97#endif
c2805aa1 98
903dcb5a 99void __cpuinit generic_processor_info(int apicid, int version);
c2805aa1 100#ifdef CONFIG_ACPI
a65d1d64 101extern void mp_register_ioapic(int id, u32 address, u32 gsi_base);
c2805aa1
TG
102extern void mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger,
103 u32 gsi);
104extern void mp_config_acpi_legacy_irqs(void);
a2f809b0
YL
105struct device;
106extern int mp_register_gsi(struct device *dev, u32 gsi, int edge_level,
107 int active_high_low);
cc6c5006 108extern int acpi_probe_gsi(void);
cc6c5006
YL
109#else /* !CONFIG_ACPI: */
110static inline int acpi_probe_gsi(void)
111{
112 return 0;
113}
c2805aa1
TG
114#endif /* CONFIG_ACPI */
115
116#define PHYSID_ARRAY_SIZE BITS_TO_LONGS(MAX_APICS)
117
30971e17 118struct physid_mask {
c2805aa1
TG
119 unsigned long mask[PHYSID_ARRAY_SIZE];
120};
121
122typedef struct physid_mask physid_mask_t;
123
124#define physid_set(physid, map) set_bit(physid, (map).mask)
125#define physid_clear(physid, map) clear_bit(physid, (map).mask)
126#define physid_isset(physid, map) test_bit(physid, (map).mask)
30971e17 127#define physid_test_and_set(physid, map) \
c2805aa1
TG
128 test_and_set_bit(physid, (map).mask)
129
30971e17 130#define physids_and(dst, src1, src2) \
c2805aa1
TG
131 bitmap_and((dst).mask, (src1).mask, (src2).mask, MAX_APICS)
132
30971e17 133#define physids_or(dst, src1, src2) \
c2805aa1
TG
134 bitmap_or((dst).mask, (src1).mask, (src2).mask, MAX_APICS)
135
30971e17 136#define physids_clear(map) \
c2805aa1
TG
137 bitmap_zero((map).mask, MAX_APICS)
138
30971e17 139#define physids_complement(dst, src) \
c2805aa1
TG
140 bitmap_complement((dst).mask, (src).mask, MAX_APICS)
141
30971e17 142#define physids_empty(map) \
c2805aa1
TG
143 bitmap_empty((map).mask, MAX_APICS)
144
30971e17 145#define physids_equal(map1, map2) \
c2805aa1
TG
146 bitmap_equal((map1).mask, (map2).mask, MAX_APICS)
147
30971e17 148#define physids_weight(map) \
c2805aa1
TG
149 bitmap_weight((map).mask, MAX_APICS)
150
30971e17 151#define physids_shift_right(d, s, n) \
c2805aa1
TG
152 bitmap_shift_right((d).mask, (s).mask, n, MAX_APICS)
153
30971e17 154#define physids_shift_left(d, s, n) \
c2805aa1
TG
155 bitmap_shift_left((d).mask, (s).mask, n, MAX_APICS)
156
7abc0753
CG
157static inline unsigned long physids_coerce(physid_mask_t *map)
158{
159 return map->mask[0];
160}
c2805aa1 161
7abc0753
CG
162static inline void physids_promote(unsigned long physids, physid_mask_t *map)
163{
164 physids_clear(*map);
165 map->mask[0] = physids;
166}
c2805aa1 167
b6df1b8b 168/* Note: will create very large stack frames if physid_mask_t is big */
c2805aa1
TG
169#define physid_mask_of_physid(physid) \
170 ({ \
171 physid_mask_t __physid_mask = PHYSID_MASK_NONE; \
172 physid_set(physid, __physid_mask); \
173 __physid_mask; \
174 })
175
b6df1b8b
JS
176static inline void physid_set_mask_of_physid(int physid, physid_mask_t *map)
177{
178 physids_clear(*map);
179 physid_set(physid, *map);
180}
181
c2805aa1
TG
182#define PHYSID_MASK_ALL { {[0 ... PHYSID_ARRAY_SIZE-1] = ~0UL} }
183#define PHYSID_MASK_NONE { {[0 ... PHYSID_ARRAY_SIZE-1] = 0UL} }
184
185extern physid_mask_t phys_cpu_present_map;
186
fb5b33c9
IM
187extern int generic_mps_oem_check(struct mpc_table *, char *, char *);
188
189extern int default_acpi_madt_oem_check(char *, char *);
190
1965aae3 191#endif /* _ASM_X86_MPSPEC_H */