提交 f6bc4029 编写于 作者: G Glauber de Oliveira Costa 提交者: Ingo Molnar

x86: include mach_apic.h in smpboot_64.c and smpboot.c

After the inclusion, a lot of files needs fixing for conflicts,
some of them in the headers themselves, to accomodate for both
i386 and x86_64 versions.

[ mingo@elte.hu: build fix ]
Signed-off-by: NGlauber Costa <gcosta@redhat.com>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 4370ee4d
...@@ -40,6 +40,10 @@ ...@@ -40,6 +40,10 @@
#include <asm/io.h> #include <asm/io.h>
#include <asm/mpspec.h> #include <asm/mpspec.h>
#ifdef CONFIG_X86_LOCAL_APIC
# include <mach_apic.h>
#endif
static int __initdata acpi_force = 0; static int __initdata acpi_force = 0;
#ifdef CONFIG_ACPI #ifdef CONFIG_ACPI
......
...@@ -30,6 +30,8 @@ ...@@ -30,6 +30,8 @@
#include <asm/proto.h> #include <asm/proto.h>
#include <asm/acpi.h> #include <asm/acpi.h>
#include <mach_apic.h>
/* Have we found an MP table */ /* Have we found an MP table */
int smp_found_config; int smp_found_config;
unsigned int __cpuinitdata maxcpus = NR_CPUS; unsigned int __cpuinitdata maxcpus = NR_CPUS;
......
...@@ -11,6 +11,8 @@ ...@@ -11,6 +11,8 @@
#include <asm/cpu.h> #include <asm/cpu.h>
#include <asm/numa.h> #include <asm/numa.h>
#include <mach_apic.h>
/* Number of siblings per CPU package */ /* Number of siblings per CPU package */
int smp_num_siblings = 1; int smp_num_siblings = 1;
EXPORT_SYMBOL(smp_num_siblings); EXPORT_SYMBOL(smp_num_siblings);
......
...@@ -61,6 +61,7 @@ ...@@ -61,6 +61,7 @@
#include <asm/numa.h> #include <asm/numa.h>
#include <mach_wakecpu.h> #include <mach_wakecpu.h>
#include <mach_apic.h>
#include <smpboot_hooks.h> #include <smpboot_hooks.h>
/* Set when the idlers are all forked */ /* Set when the idlers are all forked */
......
...@@ -39,7 +39,7 @@ $(obj)/%.so: $(obj)/%.so.dbg FORCE ...@@ -39,7 +39,7 @@ $(obj)/%.so: $(obj)/%.so.dbg FORCE
CFL := $(PROFILING) -mcmodel=small -fPIC -g0 -O2 -fasynchronous-unwind-tables -m64 CFL := $(PROFILING) -mcmodel=small -fPIC -g0 -O2 -fasynchronous-unwind-tables -m64
$(vobjs): KBUILD_CFLAGS = $(CFL) $(vobjs): KBUILD_CFLAGS += $(CFL)
targets += vdso-syms.lds targets += vdso-syms.lds
obj-$(VDSO64-y) += vdso-syms.lds obj-$(VDSO64-y) += vdso-syms.lds
......
...@@ -128,7 +128,6 @@ extern void enable_NMI_through_LVT0(void); ...@@ -128,7 +128,6 @@ extern void enable_NMI_through_LVT0(void);
* On 32bit this is mach-xxx local * On 32bit this is mach-xxx local
*/ */
#ifdef CONFIG_X86_64 #ifdef CONFIG_X86_64
extern void setup_apic_routing(void);
extern void early_init_lapic_mapping(void); extern void early_init_lapic_mapping(void);
#endif #endif
......
...@@ -12,12 +12,6 @@ ...@@ -12,12 +12,6 @@
#define APIC_ID 0x20 #define APIC_ID 0x20
#ifdef CONFIG_X86_64
# define APIC_ID_MASK (0xFFu<<24)
# define GET_APIC_ID(x) (((x)>>24)&0xFFu)
# define SET_APIC_ID(x) (((x)<<24))
#endif
#define APIC_LVR 0x30 #define APIC_LVR 0x30
#define APIC_LVR_MASK 0xFF00FF #define APIC_LVR_MASK 0xFF00FF
#define GET_APIC_VERSION(x) ((x)&0xFFu) #define GET_APIC_VERSION(x) ((x)&0xFFu)
......
...@@ -54,21 +54,27 @@ static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_map) ...@@ -54,21 +54,27 @@ static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_map)
return phys_map; return phys_map;
} }
#ifdef CONFIG_X86_64
extern void setup_apic_routing(void);
#else
static inline void setup_apic_routing(void) static inline void setup_apic_routing(void)
{ {
printk("Enabling APIC mode: %s. Using %d I/O APICs\n", printk("Enabling APIC mode: %s. Using %d I/O APICs\n",
"Flat", nr_ioapics); "Flat", nr_ioapics);
} }
#endif
static inline int multi_timer_check(int apic, int irq) static inline int multi_timer_check(int apic, int irq)
{ {
return 0; return 0;
} }
#ifdef CONFIG_X86_32
static inline int apicid_to_node(int logical_apicid) static inline int apicid_to_node(int logical_apicid)
{ {
return 0; return 0;
} }
#endif
/* Mapping from cpu number to logical apicid */ /* Mapping from cpu number to logical apicid */
static inline int cpu_to_logical_apicid(int cpu) static inline int cpu_to_logical_apicid(int cpu)
...@@ -78,8 +84,13 @@ static inline int cpu_to_logical_apicid(int cpu) ...@@ -78,8 +84,13 @@ static inline int cpu_to_logical_apicid(int cpu)
static inline int cpu_present_to_apicid(int mps_cpu) static inline int cpu_present_to_apicid(int mps_cpu)
{ {
#ifdef CONFIG_X86_64
if (cpu_present(mps_cpu))
return (int)per_cpu(x86_bios_cpu_apicid, mps_cpu);
#else
if (mps_cpu < get_physical_broadcast()) if (mps_cpu < get_physical_broadcast())
return mps_cpu; return mps_cpu;
#endif
else else
return BAD_APICID; return BAD_APICID;
} }
......
...@@ -3,7 +3,12 @@ ...@@ -3,7 +3,12 @@
#include <asm/apic.h> #include <asm/apic.h>
#ifdef CONFIG_X86_64
#define APIC_ID_MASK (0xFFu<<24)
#define SET_APIC_ID(x) (((x)<<24))
#else
#define APIC_ID_MASK (0xF<<24) #define APIC_ID_MASK (0xF<<24)
#endif
static inline unsigned get_apic_id(unsigned long x) static inline unsigned get_apic_id(unsigned long x)
{ {
......
...@@ -19,14 +19,6 @@ extern cpumask_t cpu_callin_map; ...@@ -19,14 +19,6 @@ extern cpumask_t cpu_callin_map;
extern int smp_call_function_mask(cpumask_t mask, void (*func)(void *), extern int smp_call_function_mask(cpumask_t mask, void (*func)(void *),
void *info, int wait); void *info, int wait);
static inline int cpu_present_to_apicid(int mps_cpu)
{
if (cpu_present(mps_cpu))
return (int)per_cpu(x86_bios_cpu_apicid, mps_cpu);
else
return BAD_APICID;
}
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
#define raw_smp_processor_id() read_pda(cpunumber) #define raw_smp_processor_id() read_pda(cpunumber)
...@@ -64,6 +56,7 @@ static __inline int logical_smp_processor_id(void) ...@@ -64,6 +56,7 @@ static __inline int logical_smp_processor_id(void)
return GET_APIC_LOGICAL_ID(*(u32 *)(APIC_BASE + APIC_LDR)); return GET_APIC_LOGICAL_ID(*(u32 *)(APIC_BASE + APIC_LDR));
} }
#include <mach_apicdef.h>
static inline int hard_smp_processor_id(void) static inline int hard_smp_processor_id(void)
{ {
/* we don't want to mark this access volatile - bad code generation */ /* we don't want to mark this access volatile - bad code generation */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册