1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_MPSPEC_H
3 #define _ASM_X86_MPSPEC_H
6 #include <asm/mpspec_def.h>
7 #include <asm/x86_init.h>
8 #include <asm/apicdef.h>
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.
18 #if CONFIG_BASE_SMALL == 0
19 # define MAX_MP_BUSSES 260
21 # define MAX_MP_BUSSES 32
24 #define MAX_IRQ_SOURCES 256
26 #else /* CONFIG_X86_64: */
28 #define MAX_MP_BUSSES 256
29 /* Each PCI slot may be a combo card with its own bus. 4 IRQ pins per slot. */
30 #define MAX_IRQ_SOURCES (MAX_MP_BUSSES * 4)
32 #endif /* CONFIG_X86_64 */
35 extern int mp_bus_id_to_type[MAX_MP_BUSSES];
38 extern DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
40 extern unsigned int boot_cpu_physical_apicid;
41 extern u8 boot_cpu_apic_version;
43 #ifdef CONFIG_X86_LOCAL_APIC
44 extern int smp_found_config;
46 # define smp_found_config 0
49 static inline void get_smp_config(void)
51 x86_init.mpparse.get_smp_config(0);
54 static inline void early_get_smp_config(void)
56 x86_init.mpparse.get_smp_config(1);
59 static inline void find_smp_config(void)
61 x86_init.mpparse.find_smp_config();
64 #ifdef CONFIG_X86_MPPARSE
65 extern void e820__memblock_alloc_reserved_mpc_new(void);
66 extern int enable_update_mptable;
67 extern void default_find_smp_config(void);
68 extern void default_get_smp_config(unsigned int early);
70 static inline void e820__memblock_alloc_reserved_mpc_new(void) { }
71 #define enable_update_mptable 0
72 #define default_find_smp_config x86_init_noop
73 #define default_get_smp_config x86_init_uint_noop
76 int generic_processor_info(int apicid);
78 #define PHYSID_ARRAY_SIZE BITS_TO_LONGS(MAX_LOCAL_APIC)
81 unsigned long mask[PHYSID_ARRAY_SIZE];
84 typedef struct physid_mask physid_mask_t;
86 #define physid_set(physid, map) set_bit(physid, (map).mask)
87 #define physid_isset(physid, map) test_bit(physid, (map).mask)
89 #define physids_or(dst, src1, src2) \
90 bitmap_or((dst).mask, (src1).mask, (src2).mask, MAX_LOCAL_APIC)
92 #define physids_clear(map) \
93 bitmap_zero((map).mask, MAX_LOCAL_APIC)
95 #define physids_empty(map) \
96 bitmap_empty((map).mask, MAX_LOCAL_APIC)
98 static inline void physids_promote(unsigned long physids, physid_mask_t *map)
101 map->mask[0] = physids;
104 static inline void physid_set_mask_of_physid(int physid, physid_mask_t *map)
107 physid_set(physid, *map);
110 #define PHYSID_MASK_ALL { {[0 ... PHYSID_ARRAY_SIZE-1] = ~0UL} }
111 #define PHYSID_MASK_NONE { {[0 ... PHYSID_ARRAY_SIZE-1] = 0UL} }
113 extern physid_mask_t phys_cpu_present_map;
115 #endif /* _ASM_X86_MPSPEC_H */