mpspec.h 3.9 KB
Newer Older
V
Vegard Nossum 已提交
1 2
#ifndef ASM_X86__MPSPEC_H
#define ASM_X86__MPSPEC_H
T
Thomas Gleixner 已提交
3

4 5
#include <linux/init.h>

T
Thomas Gleixner 已提交
6 7
#include <asm/mpspec_def.h>

Y
Yinghai Lu 已提交
8 9
extern int apic_version[MAX_APICS];

10
#ifdef CONFIG_X86_32
T
Thomas Gleixner 已提交
11 12 13
#include <mach_mpspec.h>

extern unsigned int def_to_bigsmp;
T
Thomas Gleixner 已提交
14
extern u8 apicid_2_node[];
T
Thomas Gleixner 已提交
15 16
extern int pic_mode;

17 18 19 20 21 22
#ifdef CONFIG_X86_NUMAQ
extern int mp_bus_id_to_node[MAX_MP_BUSSES];
extern int mp_bus_id_to_local[MAX_MP_BUSSES];
extern int quad_local_to_mp_bus_id [NR_CPUS/4][4];
#endif

T
Thomas Gleixner 已提交
23 24
#define MAX_APICID 256

25
#else
T
Thomas Gleixner 已提交
26 27 28 29 30

#define MAX_MP_BUSSES 256
/* Each PCI slot may be a combo card with its own bus.  4 IRQ pins per slot. */
#define MAX_IRQ_SOURCES (MAX_MP_BUSSES * 4)

31 32
#endif

33 34 35
extern void early_find_smp_config(void);
extern void early_get_smp_config(void);

36 37 38 39
#if defined(CONFIG_MCA) || defined(CONFIG_EISA)
extern int mp_bus_id_to_type[MAX_MP_BUSSES];
#endif

40
extern DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
41

T
Thomas Gleixner 已提交
42
extern unsigned int boot_cpu_physical_apicid;
43
extern unsigned int max_physical_apicid;
T
Thomas Gleixner 已提交
44 45 46 47 48 49
extern int smp_found_config;
extern int mpc_default_type;
extern unsigned long mp_lapic_addr;

extern void find_smp_config(void);
extern void get_smp_config(void);
I
Ingo Molnar 已提交
50
#ifdef CONFIG_X86_MPPARSE
Y
Yinghai Lu 已提交
51
extern void early_reserve_e820_mpc_new(void);
I
Ingo Molnar 已提交
52 53 54
#else
static inline void early_reserve_e820_mpc_new(void) { }
#endif
T
Thomas Gleixner 已提交
55

56
void __cpuinit generic_processor_info(int apicid, int version);
T
Thomas Gleixner 已提交
57
#ifdef CONFIG_ACPI
J
Jack Steiner 已提交
58
extern void mp_register_ioapic(int id, u32 address, u32 gsi_base);
T
Thomas Gleixner 已提交
59 60 61 62
extern void mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger,
				   u32 gsi);
extern void mp_config_acpi_legacy_irqs(void);
extern int mp_register_gsi(u32 gsi, int edge_level, int active_high_low);
I
Ingo Molnar 已提交
63
#ifdef CONFIG_X86_IO_APIC
Y
Yinghai Lu 已提交
64 65
extern int mp_config_acpi_gsi(unsigned char number, unsigned int devfn, u8 pin,
				u32 gsi, int triggering, int polarity);
I
Ingo Molnar 已提交
66 67 68 69 70 71 72 73
#else
static inline int
mp_config_acpi_gsi(unsigned char number, unsigned int devfn, u8 pin,
		   u32 gsi, int triggering, int polarity)
{
	return 0;
}
#endif
T
Thomas Gleixner 已提交
74 75 76 77
#endif /* CONFIG_ACPI */

#define PHYSID_ARRAY_SIZE	BITS_TO_LONGS(MAX_APICS)

78
struct physid_mask {
T
Thomas Gleixner 已提交
79 80 81 82 83 84 85 86
	unsigned long mask[PHYSID_ARRAY_SIZE];
};

typedef struct physid_mask physid_mask_t;

#define physid_set(physid, map)			set_bit(physid, (map).mask)
#define physid_clear(physid, map)		clear_bit(physid, (map).mask)
#define physid_isset(physid, map)		test_bit(physid, (map).mask)
87
#define physid_test_and_set(physid, map)			\
T
Thomas Gleixner 已提交
88 89
	test_and_set_bit(physid, (map).mask)

90
#define physids_and(dst, src1, src2)					\
T
Thomas Gleixner 已提交
91 92
	bitmap_and((dst).mask, (src1).mask, (src2).mask, MAX_APICS)

93
#define physids_or(dst, src1, src2)					\
T
Thomas Gleixner 已提交
94 95
	bitmap_or((dst).mask, (src1).mask, (src2).mask, MAX_APICS)

96
#define physids_clear(map)					\
T
Thomas Gleixner 已提交
97 98
	bitmap_zero((map).mask, MAX_APICS)

99
#define physids_complement(dst, src)				\
T
Thomas Gleixner 已提交
100 101
	bitmap_complement((dst).mask, (src).mask, MAX_APICS)

102
#define physids_empty(map)					\
T
Thomas Gleixner 已提交
103 104
	bitmap_empty((map).mask, MAX_APICS)

105
#define physids_equal(map1, map2)				\
T
Thomas Gleixner 已提交
106 107
	bitmap_equal((map1).mask, (map2).mask, MAX_APICS)

108
#define physids_weight(map)					\
T
Thomas Gleixner 已提交
109 110
	bitmap_weight((map).mask, MAX_APICS)

111
#define physids_shift_right(d, s, n)				\
T
Thomas Gleixner 已提交
112 113
	bitmap_shift_right((d).mask, (s).mask, n, MAX_APICS)

114
#define physids_shift_left(d, s, n)				\
T
Thomas Gleixner 已提交
115 116 117 118 119 120 121 122 123 124 125
	bitmap_shift_left((d).mask, (s).mask, n, MAX_APICS)

#define physids_coerce(map)			((map).mask[0])

#define physids_promote(physids)					\
	({								\
		physid_mask_t __physid_mask = PHYSID_MASK_NONE;		\
		__physid_mask.mask[0] = physids;			\
		__physid_mask;						\
	})

126
/* Note: will create very large stack frames if physid_mask_t is big */
T
Thomas Gleixner 已提交
127 128 129 130 131 132 133
#define physid_mask_of_physid(physid)					\
	({								\
		physid_mask_t __physid_mask = PHYSID_MASK_NONE;		\
		physid_set(physid, __physid_mask);			\
		__physid_mask;						\
	})

134 135 136 137 138 139
static inline void physid_set_mask_of_physid(int physid, physid_mask_t *map)
{
	physids_clear(*map);
	physid_set(physid, *map);
}

T
Thomas Gleixner 已提交
140 141 142 143 144
#define PHYSID_MASK_ALL		{ {[0 ... PHYSID_ARRAY_SIZE-1] = ~0UL} }
#define PHYSID_MASK_NONE	{ {[0 ... PHYSID_ARRAY_SIZE-1] = 0UL} }

extern physid_mask_t phys_cpu_present_map;

V
Vegard Nossum 已提交
145
#endif /* ASM_X86__MPSPEC_H */