x86: cleanup mpspec variants
Bring the mpspec variants into sync to prepare merging and paravirt support. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
committed by
Ingo Molnar
parent
d291cf8363
commit
64883ab0e3
@@ -258,7 +258,7 @@ static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
|
|||||||
if (!(m->mpc_flags & MPC_APIC_USABLE))
|
if (!(m->mpc_flags & MPC_APIC_USABLE))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
printk(KERN_INFO "I/O APIC #%d Version %d at 0x%lX.\n",
|
printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
|
||||||
m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
|
m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
|
||||||
if (nr_ioapics >= MAX_IO_APICS) {
|
if (nr_ioapics >= MAX_IO_APICS) {
|
||||||
printk(KERN_CRIT "Max # of I/O APICs (%d) exceeded (found %d).\n",
|
printk(KERN_CRIT "Max # of I/O APICs (%d) exceeded (found %d).\n",
|
||||||
@@ -405,7 +405,7 @@ static int __init smp_read_mpc(struct mp_config_table *mpc)
|
|||||||
|
|
||||||
mps_oem_check(mpc, oem, str);
|
mps_oem_check(mpc, oem, str);
|
||||||
|
|
||||||
printk("APIC at: 0x%lX\n",mpc->mpc_lapic);
|
printk("APIC at: 0x%X\n", mpc->mpc_lapic);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Save the local APIC address (it might be non-default) -- but only
|
* Save the local APIC address (it might be non-default) -- but only
|
||||||
@@ -921,7 +921,7 @@ void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base)
|
|||||||
mp_ioapic_routing[idx].gsi_end = gsi_base +
|
mp_ioapic_routing[idx].gsi_end = gsi_base +
|
||||||
io_apic_get_redir_entries(idx);
|
io_apic_get_redir_entries(idx);
|
||||||
|
|
||||||
printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%lx, "
|
printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
|
||||||
"GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
|
"GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
|
||||||
mp_ioapics[idx].mpc_apicver, mp_ioapics[idx].mpc_apicaddr,
|
mp_ioapics[idx].mpc_apicver, mp_ioapics[idx].mpc_apicaddr,
|
||||||
mp_ioapic_routing[idx].gsi_base,
|
mp_ioapic_routing[idx].gsi_base,
|
||||||
|
@@ -43,7 +43,7 @@ static void __init MP_processor_info (struct mpc_config_processor *m)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
logical_apicid = m->mpc_apicid;
|
logical_apicid = m->mpc_apicid;
|
||||||
printk(KERN_INFO "%sCPU #%d %ld:%ld APIC version %d\n",
|
printk(KERN_INFO "%sCPU #%d %u:%u APIC version %d\n",
|
||||||
m->mpc_cpuflag & CPU_BOOTPROCESSOR ? "Bootup " : "",
|
m->mpc_cpuflag & CPU_BOOTPROCESSOR ? "Bootup " : "",
|
||||||
m->mpc_apicid,
|
m->mpc_apicid,
|
||||||
(m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
|
(m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
|
||||||
|
@@ -112,7 +112,7 @@ static inline int cpu_to_logical_apicid(int cpu)
|
|||||||
static inline int mpc_apic_id(struct mpc_config_processor *m,
|
static inline int mpc_apic_id(struct mpc_config_processor *m,
|
||||||
struct mpc_config_translation *translation_record)
|
struct mpc_config_translation *translation_record)
|
||||||
{
|
{
|
||||||
printk("Processor #%d %ld:%ld APIC version %d\n",
|
printk("Processor #%d %u:%u APIC version %d\n",
|
||||||
m->mpc_apicid,
|
m->mpc_apicid,
|
||||||
(m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
|
(m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
|
||||||
(m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
|
(m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
|
||||||
|
@@ -92,12 +92,12 @@ static inline physid_mask_t apicid_to_cpu_present(int phys_apicid)
|
|||||||
static inline int mpc_apic_id(struct mpc_config_processor *m,
|
static inline int mpc_apic_id(struct mpc_config_processor *m,
|
||||||
struct mpc_config_translation *translation_record)
|
struct mpc_config_translation *translation_record)
|
||||||
{
|
{
|
||||||
printk("Processor #%d %ld:%ld APIC version %d\n",
|
printk("Processor #%d %u:%u APIC version %d\n",
|
||||||
m->mpc_apicid,
|
m->mpc_apicid,
|
||||||
(m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
|
(m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
|
||||||
(m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
|
(m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
|
||||||
m->mpc_apicver);
|
m->mpc_apicver);
|
||||||
return (m->mpc_apicid);
|
return m->mpc_apicid;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void setup_portio_remap(void)
|
static inline void setup_portio_remap(void)
|
||||||
|
@@ -131,7 +131,7 @@ static inline int cpu_to_logical_apicid(int cpu)
|
|||||||
|
|
||||||
static inline int mpc_apic_id(struct mpc_config_processor *m, struct mpc_config_translation *unused)
|
static inline int mpc_apic_id(struct mpc_config_processor *m, struct mpc_config_translation *unused)
|
||||||
{
|
{
|
||||||
printk("Processor #%d %ld:%ld APIC version %d\n",
|
printk("Processor #%d %u:%u APIC version %d\n",
|
||||||
m->mpc_apicid,
|
m->mpc_apicid,
|
||||||
(m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
|
(m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
|
||||||
(m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
|
(m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
|
||||||
|
@@ -101,7 +101,7 @@ static inline int mpc_apic_id(struct mpc_config_processor *m,
|
|||||||
int quad = translation_record->trans_quad;
|
int quad = translation_record->trans_quad;
|
||||||
int logical_apicid = generate_logical_apicid(quad, m->mpc_apicid);
|
int logical_apicid = generate_logical_apicid(quad, m->mpc_apicid);
|
||||||
|
|
||||||
printk("Processor #%d %ld:%ld APIC version %d (quad %d, apic %d)\n",
|
printk("Processor #%d %u:%u APIC version %d (quad %d, apic %d)\n",
|
||||||
m->mpc_apicid,
|
m->mpc_apicid,
|
||||||
(m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
|
(m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
|
||||||
(m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
|
(m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
|
||||||
|
@@ -129,12 +129,12 @@ static inline physid_mask_t apicid_to_cpu_present(int apicid)
|
|||||||
static inline int mpc_apic_id(struct mpc_config_processor *m,
|
static inline int mpc_apic_id(struct mpc_config_processor *m,
|
||||||
struct mpc_config_translation *translation_record)
|
struct mpc_config_translation *translation_record)
|
||||||
{
|
{
|
||||||
printk("Processor #%d %ld:%ld APIC version %d\n",
|
printk("Processor #%d %u:%u APIC version %d\n",
|
||||||
m->mpc_apicid,
|
m->mpc_apicid,
|
||||||
(m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
|
(m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
|
||||||
(m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
|
(m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
|
||||||
m->mpc_apicver);
|
m->mpc_apicver);
|
||||||
return (m->mpc_apicid);
|
return m->mpc_apicid;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void setup_portio_remap(void)
|
static inline void setup_portio_remap(void)
|
||||||
|
@@ -1,34 +1,37 @@
|
|||||||
#ifndef __ASM_MPSPEC_H
|
#ifndef __ASM_MPSPEC_H
|
||||||
#define __ASM_MPSPEC_H
|
#define __ASM_MPSPEC_H
|
||||||
|
|
||||||
#include <linux/cpumask.h>
|
|
||||||
#include <asm/mpspec_def.h>
|
#include <asm/mpspec_def.h>
|
||||||
#include <mach_mpspec.h>
|
#include <mach_mpspec.h>
|
||||||
|
|
||||||
extern int mp_bus_id_to_type [MAX_MP_BUSSES];
|
extern int mp_bus_id_to_type[MAX_MP_BUSSES];
|
||||||
extern int mp_bus_id_to_node [MAX_MP_BUSSES];
|
extern int mp_bus_id_to_node[MAX_MP_BUSSES];
|
||||||
extern int mp_bus_id_to_local [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];
|
extern int quad_local_to_mp_bus_id[NR_CPUS/4][4];
|
||||||
extern int mp_bus_id_to_pci_bus [MAX_MP_BUSSES];
|
|
||||||
|
|
||||||
extern unsigned int def_to_bigsmp;
|
extern unsigned int def_to_bigsmp;
|
||||||
|
extern int apic_version[MAX_APICS];
|
||||||
|
extern int pic_mode;
|
||||||
|
|
||||||
|
extern int mp_bus_id_to_pci_bus[MAX_MP_BUSSES];
|
||||||
|
|
||||||
extern unsigned int boot_cpu_physical_apicid;
|
extern unsigned int boot_cpu_physical_apicid;
|
||||||
extern int smp_found_config;
|
extern int smp_found_config;
|
||||||
extern void find_smp_config (void);
|
|
||||||
extern void get_smp_config (void);
|
|
||||||
extern int nr_ioapics;
|
extern int nr_ioapics;
|
||||||
extern int apic_version [MAX_APICS];
|
|
||||||
extern int mp_irq_entries;
|
extern int mp_irq_entries;
|
||||||
extern struct mpc_config_intsrc mp_irqs [MAX_IRQ_SOURCES];
|
extern struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
|
||||||
extern int mpc_default_type;
|
extern int mpc_default_type;
|
||||||
extern unsigned long mp_lapic_addr;
|
extern unsigned long mp_lapic_addr;
|
||||||
extern int pic_mode;
|
|
||||||
|
extern void find_smp_config (void);
|
||||||
|
extern void get_smp_config (void);
|
||||||
|
|
||||||
#ifdef CONFIG_ACPI
|
#ifdef CONFIG_ACPI
|
||||||
extern void mp_register_lapic (u8 id, u8 enabled);
|
extern void mp_register_lapic (u8 id, u8 enabled);
|
||||||
extern void mp_register_lapic_address (u64 address);
|
extern void mp_register_lapic_address (u64 address);
|
||||||
extern void mp_register_ioapic (u8 id, u32 address, u32 gsi_base);
|
extern void mp_register_ioapic (u8 id, u32 address, u32 gsi_base);
|
||||||
extern void mp_override_legacy_irq (u8 bus_irq, u8 polarity, u8 trigger, u32 gsi);
|
extern void mp_override_legacy_irq (u8 bus_irq, u8 polarity, u8 trigger,
|
||||||
|
u32 gsi);
|
||||||
extern void mp_config_acpi_legacy_irqs (void);
|
extern void mp_config_acpi_legacy_irqs (void);
|
||||||
extern int mp_register_gsi (u32 gsi, int edge_level, int active_high_low);
|
extern int mp_register_gsi (u32 gsi, int edge_level, int active_high_low);
|
||||||
#endif /* CONFIG_ACPI */
|
#endif /* CONFIG_ACPI */
|
||||||
@@ -50,7 +53,7 @@ typedef struct physid_mask physid_mask_t;
|
|||||||
#define physids_and(dst, src1, src2) bitmap_and((dst).mask, (src1).mask, (src2).mask, MAX_APICS)
|
#define physids_and(dst, src1, src2) bitmap_and((dst).mask, (src1).mask, (src2).mask, MAX_APICS)
|
||||||
#define physids_or(dst, src1, src2) bitmap_or((dst).mask, (src1).mask, (src2).mask, MAX_APICS)
|
#define physids_or(dst, src1, src2) bitmap_or((dst).mask, (src1).mask, (src2).mask, MAX_APICS)
|
||||||
#define physids_clear(map) bitmap_zero((map).mask, MAX_APICS)
|
#define physids_clear(map) bitmap_zero((map).mask, MAX_APICS)
|
||||||
#define physids_complement(dst, src) bitmap_complement((dst).mask,(src).mask, MAX_APICS)
|
#define physids_complement(dst, src) bitmap_complement((dst).mask, (src).mask, MAX_APICS)
|
||||||
#define physids_empty(map) bitmap_empty((map).mask, MAX_APICS)
|
#define physids_empty(map) bitmap_empty((map).mask, MAX_APICS)
|
||||||
#define physids_equal(map1, map2) bitmap_equal((map1).mask, (map2).mask, MAX_APICS)
|
#define physids_equal(map1, map2) bitmap_equal((map1).mask, (map2).mask, MAX_APICS)
|
||||||
#define physids_weight(map) bitmap_weight((map).mask, MAX_APICS)
|
#define physids_weight(map) bitmap_weight((map).mask, MAX_APICS)
|
||||||
|
@@ -1,189 +1,35 @@
|
|||||||
#ifndef __ASM_MPSPEC_H
|
#ifndef __ASM_MPSPEC_H
|
||||||
#define __ASM_MPSPEC_H
|
#define __ASM_MPSPEC_H
|
||||||
|
|
||||||
/*
|
#include <asm/mpspec_def.h>
|
||||||
* Structure definitions for SMP machines following the
|
|
||||||
* Intel Multiprocessing Specification 1.1 and 1.4.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This tag identifies where the SMP configuration
|
|
||||||
* information is.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define SMP_MAGIC_IDENT (('_'<<24)|('P'<<16)|('M'<<8)|'_')
|
|
||||||
|
|
||||||
/*
|
|
||||||
* A maximum of 255 APICs with the current APIC ID architecture.
|
|
||||||
*/
|
|
||||||
#define MAX_APICS 255
|
|
||||||
|
|
||||||
struct intel_mp_floating
|
|
||||||
{
|
|
||||||
char mpf_signature[4]; /* "_MP_" */
|
|
||||||
unsigned int mpf_physptr; /* Configuration table address */
|
|
||||||
unsigned char mpf_length; /* Our length (paragraphs) */
|
|
||||||
unsigned char mpf_specification;/* Specification version */
|
|
||||||
unsigned char mpf_checksum; /* Checksum (makes sum 0) */
|
|
||||||
unsigned char mpf_feature1; /* Standard or configuration ? */
|
|
||||||
unsigned char mpf_feature2; /* Bit7 set for IMCR|PIC */
|
|
||||||
unsigned char mpf_feature3; /* Unused (0) */
|
|
||||||
unsigned char mpf_feature4; /* Unused (0) */
|
|
||||||
unsigned char mpf_feature5; /* Unused (0) */
|
|
||||||
};
|
|
||||||
|
|
||||||
struct mp_config_table
|
|
||||||
{
|
|
||||||
char mpc_signature[4];
|
|
||||||
#define MPC_SIGNATURE "PCMP"
|
|
||||||
unsigned short mpc_length; /* Size of table */
|
|
||||||
char mpc_spec; /* 0x01 */
|
|
||||||
char mpc_checksum;
|
|
||||||
char mpc_oem[8];
|
|
||||||
char mpc_productid[12];
|
|
||||||
unsigned int mpc_oemptr; /* 0 if not present */
|
|
||||||
unsigned short mpc_oemsize; /* 0 if not present */
|
|
||||||
unsigned short mpc_oemcount;
|
|
||||||
unsigned int mpc_lapic; /* APIC address */
|
|
||||||
unsigned int reserved;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Followed by entries */
|
|
||||||
|
|
||||||
#define MP_PROCESSOR 0
|
|
||||||
#define MP_BUS 1
|
|
||||||
#define MP_IOAPIC 2
|
|
||||||
#define MP_INTSRC 3
|
|
||||||
#define MP_LINTSRC 4
|
|
||||||
|
|
||||||
struct mpc_config_processor
|
|
||||||
{
|
|
||||||
unsigned char mpc_type;
|
|
||||||
unsigned char mpc_apicid; /* Local APIC number */
|
|
||||||
unsigned char mpc_apicver; /* Its versions */
|
|
||||||
unsigned char mpc_cpuflag;
|
|
||||||
#define CPU_ENABLED 1 /* Processor is available */
|
|
||||||
#define CPU_BOOTPROCESSOR 2 /* Processor is the BP */
|
|
||||||
unsigned int mpc_cpufeature;
|
|
||||||
#define CPU_STEPPING_MASK 0x0F
|
|
||||||
#define CPU_MODEL_MASK 0xF0
|
|
||||||
#define CPU_FAMILY_MASK 0xF00
|
|
||||||
unsigned int mpc_featureflag; /* CPUID feature value */
|
|
||||||
unsigned int mpc_reserved[2];
|
|
||||||
};
|
|
||||||
|
|
||||||
struct mpc_config_bus
|
|
||||||
{
|
|
||||||
unsigned char mpc_type;
|
|
||||||
unsigned char mpc_busid;
|
|
||||||
unsigned char mpc_bustype[6];
|
|
||||||
};
|
|
||||||
|
|
||||||
/* List of Bus Type string values, Intel MP Spec. */
|
|
||||||
#define BUSTYPE_EISA "EISA"
|
|
||||||
#define BUSTYPE_ISA "ISA"
|
|
||||||
#define BUSTYPE_INTERN "INTERN" /* Internal BUS */
|
|
||||||
#define BUSTYPE_MCA "MCA"
|
|
||||||
#define BUSTYPE_VL "VL" /* Local bus */
|
|
||||||
#define BUSTYPE_PCI "PCI"
|
|
||||||
#define BUSTYPE_PCMCIA "PCMCIA"
|
|
||||||
#define BUSTYPE_CBUS "CBUS"
|
|
||||||
#define BUSTYPE_CBUSII "CBUSII"
|
|
||||||
#define BUSTYPE_FUTURE "FUTURE"
|
|
||||||
#define BUSTYPE_MBI "MBI"
|
|
||||||
#define BUSTYPE_MBII "MBII"
|
|
||||||
#define BUSTYPE_MPI "MPI"
|
|
||||||
#define BUSTYPE_MPSA "MPSA"
|
|
||||||
#define BUSTYPE_NUBUS "NUBUS"
|
|
||||||
#define BUSTYPE_TC "TC"
|
|
||||||
#define BUSTYPE_VME "VME"
|
|
||||||
#define BUSTYPE_XPRESS "XPRESS"
|
|
||||||
|
|
||||||
struct mpc_config_ioapic
|
|
||||||
{
|
|
||||||
unsigned char mpc_type;
|
|
||||||
unsigned char mpc_apicid;
|
|
||||||
unsigned char mpc_apicver;
|
|
||||||
unsigned char mpc_flags;
|
|
||||||
#define MPC_APIC_USABLE 0x01
|
|
||||||
unsigned int mpc_apicaddr;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct mpc_config_intsrc
|
|
||||||
{
|
|
||||||
unsigned char mpc_type;
|
|
||||||
unsigned char mpc_irqtype;
|
|
||||||
unsigned short mpc_irqflag;
|
|
||||||
unsigned char mpc_srcbus;
|
|
||||||
unsigned char mpc_srcbusirq;
|
|
||||||
unsigned char mpc_dstapic;
|
|
||||||
unsigned char mpc_dstirq;
|
|
||||||
};
|
|
||||||
|
|
||||||
enum mp_irq_source_types {
|
|
||||||
mp_INT = 0,
|
|
||||||
mp_NMI = 1,
|
|
||||||
mp_SMI = 2,
|
|
||||||
mp_ExtINT = 3
|
|
||||||
};
|
|
||||||
|
|
||||||
#define MP_IRQDIR_DEFAULT 0
|
|
||||||
#define MP_IRQDIR_HIGH 1
|
|
||||||
#define MP_IRQDIR_LOW 3
|
|
||||||
|
|
||||||
|
|
||||||
struct mpc_config_lintsrc
|
|
||||||
{
|
|
||||||
unsigned char mpc_type;
|
|
||||||
unsigned char mpc_irqtype;
|
|
||||||
unsigned short mpc_irqflag;
|
|
||||||
unsigned char mpc_srcbusid;
|
|
||||||
unsigned char mpc_srcbusirq;
|
|
||||||
unsigned char mpc_destapic;
|
|
||||||
#define MP_APIC_ALL 0xFF
|
|
||||||
unsigned char mpc_destapiclint;
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Default configurations
|
|
||||||
*
|
|
||||||
* 1 2 CPU ISA 82489DX
|
|
||||||
* 2 2 CPU EISA 82489DX neither IRQ 0 timer nor IRQ 13 DMA chaining
|
|
||||||
* 3 2 CPU EISA 82489DX
|
|
||||||
* 4 2 CPU MCA 82489DX
|
|
||||||
* 5 2 CPU ISA+PCI
|
|
||||||
* 6 2 CPU EISA+PCI
|
|
||||||
* 7 2 CPU MCA+PCI
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define MAX_MP_BUSSES 256
|
#define MAX_MP_BUSSES 256
|
||||||
/* Each PCI slot may be a combo card with its own bus. 4 IRQ pins per slot. */
|
/* 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)
|
#define MAX_IRQ_SOURCES (MAX_MP_BUSSES * 4)
|
||||||
extern DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
|
extern DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
|
||||||
extern int mp_bus_id_to_pci_bus [MAX_MP_BUSSES];
|
|
||||||
|
extern int mp_bus_id_to_pci_bus[MAX_MP_BUSSES];
|
||||||
|
|
||||||
extern unsigned int boot_cpu_physical_apicid;
|
extern unsigned int boot_cpu_physical_apicid;
|
||||||
extern int smp_found_config;
|
extern int smp_found_config;
|
||||||
extern void find_smp_config (void);
|
|
||||||
extern void get_smp_config (void);
|
|
||||||
extern int nr_ioapics;
|
extern int nr_ioapics;
|
||||||
extern unsigned char apic_version [MAX_APICS];
|
|
||||||
extern int mp_irq_entries;
|
extern int mp_irq_entries;
|
||||||
extern struct mpc_config_intsrc mp_irqs [MAX_IRQ_SOURCES];
|
extern struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
|
||||||
extern int mpc_default_type;
|
extern int mpc_default_type;
|
||||||
extern unsigned long mp_lapic_addr;
|
extern unsigned long mp_lapic_addr;
|
||||||
|
|
||||||
|
extern void find_smp_config (void);
|
||||||
|
extern void get_smp_config (void);
|
||||||
|
|
||||||
#ifdef CONFIG_ACPI
|
#ifdef CONFIG_ACPI
|
||||||
extern void mp_register_lapic (u8 id, u8 enabled);
|
extern void mp_register_lapic (u8 id, u8 enabled);
|
||||||
extern void mp_register_lapic_address (u64 address);
|
extern void mp_register_lapic_address (u64 address);
|
||||||
|
|
||||||
extern void mp_register_ioapic (u8 id, u32 address, u32 gsi_base);
|
extern void mp_register_ioapic (u8 id, u32 address, u32 gsi_base);
|
||||||
extern void mp_override_legacy_irq (u8 bus_irq, u8 polarity, u8 trigger, u32 gsi);
|
extern void mp_override_legacy_irq (u8 bus_irq, u8 polarity, u8 trigger,
|
||||||
|
u32 gsi);
|
||||||
extern void mp_config_acpi_legacy_irqs (void);
|
extern void mp_config_acpi_legacy_irqs (void);
|
||||||
extern int mp_register_gsi (u32 gsi, int triggering, int polarity);
|
extern int mp_register_gsi (u32 gsi, int edge_level, int active_high_low);
|
||||||
#endif
|
#endif /* CONFIG_ACPI */
|
||||||
|
|
||||||
extern int using_apic_timer;
|
|
||||||
|
|
||||||
#define PHYSID_ARRAY_SIZE BITS_TO_LONGS(MAX_APICS)
|
#define PHYSID_ARRAY_SIZE BITS_TO_LONGS(MAX_APICS)
|
||||||
|
|
||||||
|
@@ -13,13 +13,20 @@
|
|||||||
|
|
||||||
#define SMP_MAGIC_IDENT (('_'<<24)|('P'<<16)|('M'<<8)|'_')
|
#define SMP_MAGIC_IDENT (('_'<<24)|('P'<<16)|('M'<<8)|'_')
|
||||||
|
|
||||||
#define MAX_MPC_ENTRY 1024
|
#ifdef CONFIG_X86_32
|
||||||
#define MAX_APICS 256
|
# define MAX_MPC_ENTRY 1024
|
||||||
|
# define MAX_APICS 256
|
||||||
|
#else
|
||||||
|
/*
|
||||||
|
* A maximum of 255 APICs with the current APIC ID architecture.
|
||||||
|
*/
|
||||||
|
# define MAX_APICS 255
|
||||||
|
#endif
|
||||||
|
|
||||||
struct intel_mp_floating
|
struct intel_mp_floating
|
||||||
{
|
{
|
||||||
char mpf_signature[4]; /* "_MP_" */
|
char mpf_signature[4]; /* "_MP_" */
|
||||||
unsigned long mpf_physptr; /* Configuration table address */
|
unsigned int mpf_physptr; /* Configuration table address */
|
||||||
unsigned char mpf_length; /* Our length (paragraphs) */
|
unsigned char mpf_length; /* Our length (paragraphs) */
|
||||||
unsigned char mpf_specification;/* Specification version */
|
unsigned char mpf_specification;/* Specification version */
|
||||||
unsigned char mpf_checksum; /* Checksum (makes sum 0) */
|
unsigned char mpf_checksum; /* Checksum (makes sum 0) */
|
||||||
@@ -30,20 +37,21 @@ struct intel_mp_floating
|
|||||||
unsigned char mpf_feature5; /* Unused (0) */
|
unsigned char mpf_feature5; /* Unused (0) */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define MPC_SIGNATURE "PCMP"
|
||||||
|
|
||||||
struct mp_config_table
|
struct mp_config_table
|
||||||
{
|
{
|
||||||
char mpc_signature[4];
|
char mpc_signature[4];
|
||||||
#define MPC_SIGNATURE "PCMP"
|
|
||||||
unsigned short mpc_length; /* Size of table */
|
unsigned short mpc_length; /* Size of table */
|
||||||
char mpc_spec; /* 0x01 */
|
char mpc_spec; /* 0x01 */
|
||||||
char mpc_checksum;
|
char mpc_checksum;
|
||||||
char mpc_oem[8];
|
char mpc_oem[8];
|
||||||
char mpc_productid[12];
|
char mpc_productid[12];
|
||||||
unsigned long mpc_oemptr; /* 0 if not present */
|
unsigned int mpc_oemptr; /* 0 if not present */
|
||||||
unsigned short mpc_oemsize; /* 0 if not present */
|
unsigned short mpc_oemsize; /* 0 if not present */
|
||||||
unsigned short mpc_oemcount;
|
unsigned short mpc_oemcount;
|
||||||
unsigned long mpc_lapic; /* APIC address */
|
unsigned int mpc_lapic; /* APIC address */
|
||||||
unsigned long reserved;
|
unsigned int reserved;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Followed by entries */
|
/* Followed by entries */
|
||||||
@@ -53,7 +61,15 @@ struct mp_config_table
|
|||||||
#define MP_IOAPIC 2
|
#define MP_IOAPIC 2
|
||||||
#define MP_INTSRC 3
|
#define MP_INTSRC 3
|
||||||
#define MP_LINTSRC 4
|
#define MP_LINTSRC 4
|
||||||
#define MP_TRANSLATION 192 /* Used by IBM NUMA-Q to describe node locality */
|
/* Used by IBM NUMA-Q to describe node locality */
|
||||||
|
#define MP_TRANSLATION 192
|
||||||
|
|
||||||
|
#define CPU_ENABLED 1 /* Processor is available */
|
||||||
|
#define CPU_BOOTPROCESSOR 2 /* Processor is the BP */
|
||||||
|
|
||||||
|
#define CPU_STEPPING_MASK 0x000F
|
||||||
|
#define CPU_MODEL_MASK 0x00F0
|
||||||
|
#define CPU_FAMILY_MASK 0x0F00
|
||||||
|
|
||||||
struct mpc_config_processor
|
struct mpc_config_processor
|
||||||
{
|
{
|
||||||
@@ -61,14 +77,9 @@ struct mpc_config_processor
|
|||||||
unsigned char mpc_apicid; /* Local APIC number */
|
unsigned char mpc_apicid; /* Local APIC number */
|
||||||
unsigned char mpc_apicver; /* Its versions */
|
unsigned char mpc_apicver; /* Its versions */
|
||||||
unsigned char mpc_cpuflag;
|
unsigned char mpc_cpuflag;
|
||||||
#define CPU_ENABLED 1 /* Processor is available */
|
unsigned int mpc_cpufeature;
|
||||||
#define CPU_BOOTPROCESSOR 2 /* Processor is the BP */
|
unsigned int mpc_featureflag; /* CPUID feature value */
|
||||||
unsigned long mpc_cpufeature;
|
unsigned int mpc_reserved[2];
|
||||||
#define CPU_STEPPING_MASK 0x0F
|
|
||||||
#define CPU_MODEL_MASK 0xF0
|
|
||||||
#define CPU_FAMILY_MASK 0xF00
|
|
||||||
unsigned long mpc_featureflag; /* CPUID feature value */
|
|
||||||
unsigned long mpc_reserved[2];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct mpc_config_bus
|
struct mpc_config_bus
|
||||||
@@ -98,14 +109,15 @@ struct mpc_config_bus
|
|||||||
#define BUSTYPE_VME "VME"
|
#define BUSTYPE_VME "VME"
|
||||||
#define BUSTYPE_XPRESS "XPRESS"
|
#define BUSTYPE_XPRESS "XPRESS"
|
||||||
|
|
||||||
|
#define MPC_APIC_USABLE 0x01
|
||||||
|
|
||||||
struct mpc_config_ioapic
|
struct mpc_config_ioapic
|
||||||
{
|
{
|
||||||
unsigned char mpc_type;
|
unsigned char mpc_type;
|
||||||
unsigned char mpc_apicid;
|
unsigned char mpc_apicid;
|
||||||
unsigned char mpc_apicver;
|
unsigned char mpc_apicver;
|
||||||
unsigned char mpc_flags;
|
unsigned char mpc_flags;
|
||||||
#define MPC_APIC_USABLE 0x01
|
unsigned int mpc_apicaddr;
|
||||||
unsigned long mpc_apicaddr;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct mpc_config_intsrc
|
struct mpc_config_intsrc
|
||||||
@@ -130,6 +142,7 @@ enum mp_irq_source_types {
|
|||||||
#define MP_IRQDIR_HIGH 1
|
#define MP_IRQDIR_HIGH 1
|
||||||
#define MP_IRQDIR_LOW 3
|
#define MP_IRQDIR_LOW 3
|
||||||
|
|
||||||
|
#define MP_APIC_ALL 0xFF
|
||||||
|
|
||||||
struct mpc_config_lintsrc
|
struct mpc_config_lintsrc
|
||||||
{
|
{
|
||||||
@@ -139,14 +152,14 @@ struct mpc_config_lintsrc
|
|||||||
unsigned char mpc_srcbusid;
|
unsigned char mpc_srcbusid;
|
||||||
unsigned char mpc_srcbusirq;
|
unsigned char mpc_srcbusirq;
|
||||||
unsigned char mpc_destapic;
|
unsigned char mpc_destapic;
|
||||||
#define MP_APIC_ALL 0xFF
|
|
||||||
unsigned char mpc_destapiclint;
|
unsigned char mpc_destapiclint;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define MPC_OEM_SIGNATURE "_OEM"
|
||||||
|
|
||||||
struct mp_config_oemtable
|
struct mp_config_oemtable
|
||||||
{
|
{
|
||||||
char oem_signature[4];
|
char oem_signature[4];
|
||||||
#define MPC_OEM_SIGNATURE "_OEM"
|
|
||||||
unsigned short oem_length; /* Size of table */
|
unsigned short oem_length; /* Size of table */
|
||||||
char oem_rev; /* 0x01 */
|
char oem_rev; /* 0x01 */
|
||||||
char oem_checksum;
|
char oem_checksum;
|
||||||
|
Reference in New Issue
Block a user