x86: mach_summit to summit
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
c7e7964c98
commit
e8c48efdb9
|
@ -30,7 +30,7 @@
|
|||
#include <linux/init.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/bios_ebda.h>
|
||||
#include <asm/mach-summit/mach_mpparse.h>
|
||||
#include <asm/summit/mpparse.h>
|
||||
|
||||
static struct rio_table_hdr *rio_table_hdr __initdata;
|
||||
static struct scal_detail *scal_devs[MAX_NUMNODES] __initdata;
|
||||
|
|
|
@ -11,11 +11,11 @@
|
|||
#include <linux/kernel.h>
|
||||
#include <linux/string.h>
|
||||
#include <linux/init.h>
|
||||
#include <asm/mach-summit/mach_apicdef.h>
|
||||
#include <asm/summit/apicdef.h>
|
||||
#include <linux/smp.h>
|
||||
#include <asm/mach-summit/mach_apic.h>
|
||||
#include <asm/mach-summit/mach_ipi.h>
|
||||
#include <asm/mach-summit/mach_mpparse.h>
|
||||
#include <asm/summit/apic.h>
|
||||
#include <asm/summit/ipi.h>
|
||||
#include <asm/summit/mpparse.h>
|
||||
|
||||
static int probe_summit(void)
|
||||
{
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
#ifndef ASM_X86__MACH_SUMMIT__MACH_APICDEF_H
|
||||
#define ASM_X86__MACH_SUMMIT__MACH_APICDEF_H
|
||||
|
||||
#define APIC_ID_MASK (0xFF<<24)
|
||||
|
||||
static inline unsigned get_apic_id(unsigned long x)
|
||||
{
|
||||
return (((x)>>24)&0xFF);
|
||||
}
|
||||
|
||||
#define GET_APIC_ID(x) get_apic_id(x)
|
||||
|
||||
#endif /* ASM_X86__MACH_SUMMIT__MACH_APICDEF_H */
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef ASM_X86__MACH_SUMMIT__MACH_APIC_H
|
||||
#define ASM_X86__MACH_SUMMIT__MACH_APIC_H
|
||||
#ifndef __ASM_SUMMIT_APIC_H
|
||||
#define __ASM_SUMMIT_APIC_H
|
||||
|
||||
#include <asm/smp.h>
|
||||
|
||||
|
@ -122,7 +122,7 @@ static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_id_map)
|
|||
|
||||
static inline physid_mask_t apicid_to_cpu_present(int apicid)
|
||||
{
|
||||
return physid_mask_of_physid(apicid);
|
||||
return physid_mask_of_physid(0);
|
||||
}
|
||||
|
||||
static inline void setup_portio_remap(void)
|
||||
|
@ -182,4 +182,4 @@ static inline u32 phys_pkg_id(u32 cpuid_apic, int index_msb)
|
|||
return hard_smp_processor_id() >> index_msb;
|
||||
}
|
||||
|
||||
#endif /* ASM_X86__MACH_SUMMIT__MACH_APIC_H */
|
||||
#endif /* __ASM_SUMMIT_APIC_H */
|
|
@ -0,0 +1,13 @@
|
|||
#ifndef __ASM_SUMMIT_APICDEF_H
|
||||
#define __ASM_SUMMIT_APICDEF_H
|
||||
|
||||
#define APIC_ID_MASK (0xFF<<24)
|
||||
|
||||
static inline unsigned get_apic_id(unsigned long x)
|
||||
{
|
||||
return (x>>24)&0xFF;
|
||||
}
|
||||
|
||||
#define GET_APIC_ID(x) get_apic_id(x)
|
||||
|
||||
#endif
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef ASM_X86__MACH_SUMMIT__MACH_IPI_H
|
||||
#define ASM_X86__MACH_SUMMIT__MACH_IPI_H
|
||||
#ifndef __ASM_SUMMIT_IPI_H
|
||||
#define __ASM_SUMMIT_IPI_H
|
||||
|
||||
void send_IPI_mask_sequence(cpumask_t mask, int vector);
|
||||
|
||||
|
@ -22,4 +22,4 @@ static inline void send_IPI_all(int vector)
|
|||
send_IPI_mask(cpu_online_map, vector);
|
||||
}
|
||||
|
||||
#endif /* ASM_X86__MACH_SUMMIT__MACH_IPI_H */
|
||||
#endif /* __ASM_SUMMIT_IPI_H */
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef ASM_X86__MACH_SUMMIT__IRQ_VECTORS_LIMITS_H
|
||||
#define ASM_X86__MACH_SUMMIT__IRQ_VECTORS_LIMITS_H
|
||||
#ifndef _ASM_IRQ_VECTORS_LIMITS_H
|
||||
#define _ASM_IRQ_VECTORS_LIMITS_H
|
||||
|
||||
/*
|
||||
* For Summit or generic (i.e. installer) kernels, we have lots of I/O APICs,
|
||||
|
@ -11,4 +11,4 @@
|
|||
#define NR_IRQS 224
|
||||
#define NR_IRQ_VECTORS 1024
|
||||
|
||||
#endif /* ASM_X86__MACH_SUMMIT__IRQ_VECTORS_LIMITS_H */
|
||||
#endif /* _ASM_IRQ_VECTORS_LIMITS_H */
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef ASM_X86__MACH_SUMMIT__MACH_MPPARSE_H
|
||||
#define ASM_X86__MACH_SUMMIT__MACH_MPPARSE_H
|
||||
#ifndef __ASM_SUMMIT_MPPARSE_H
|
||||
#define __ASM_SUMMIT_MPPARSE_H
|
||||
|
||||
#include <mach_apic.h>
|
||||
#include <asm/tsc.h>
|
||||
|
||||
extern int use_cyclone;
|
||||
|
@ -107,4 +106,4 @@ static inline int is_WPEG(struct rio_detail *rio){
|
|||
rio->type == LookOutAWPEG || rio->type == LookOutBWPEG);
|
||||
}
|
||||
|
||||
#endif /* ASM_X86__MACH_SUMMIT__MACH_MPPARSE_H */
|
||||
#endif /* __ASM_SUMMIT_MPPARSE_H */
|
Loading…
Reference in New Issue