2006-09-06 19:50:20 +02:00
|
|
|
// See MultiProcessor Specification Version 1.[14].
|
2006-06-22 03:28:57 +02:00
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
struct mp { // floating pointer
|
|
|
|
uchar signature[4]; // "_MP_"
|
2006-09-06 21:08:14 +02:00
|
|
|
void *physaddr; // phys addr of MP config table
|
2006-09-06 19:50:20 +02:00
|
|
|
uchar length; // 1
|
|
|
|
uchar specrev; // [14]
|
|
|
|
uchar checksum; // all bytes must add up to 0
|
2006-09-06 21:08:14 +02:00
|
|
|
uchar type; // MP system config type
|
2006-07-20 11:07:53 +02:00
|
|
|
uchar imcrp;
|
|
|
|
uchar reserved[3];
|
2006-06-21 03:53:07 +02:00
|
|
|
};
|
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
struct mpctb { // configuration table header
|
|
|
|
uchar signature[4]; // "PCMP"
|
|
|
|
ushort length; // total table length
|
|
|
|
uchar version; // [14]
|
|
|
|
uchar checksum; // all bytes must add up to 0
|
|
|
|
uchar product[20]; // product id
|
2006-09-06 21:08:14 +02:00
|
|
|
uint *oemtable; // OEM table pointer
|
2006-09-06 19:50:20 +02:00
|
|
|
ushort oemlength; // OEM table length
|
|
|
|
ushort entry; // entry count
|
2006-09-06 21:08:14 +02:00
|
|
|
uint *lapicaddr; // address of local APIC
|
2006-09-06 19:50:20 +02:00
|
|
|
ushort xlength; // extended table length
|
|
|
|
uchar xchecksum; // extended table checksum
|
2006-07-20 11:07:53 +02:00
|
|
|
uchar reserved;
|
2006-06-21 03:53:07 +02:00
|
|
|
};
|
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
struct mppe { // processor table entry
|
|
|
|
uchar type; // entry type (0)
|
|
|
|
uchar apicid; // local APIC id
|
|
|
|
uchar version; // local APIC verison
|
|
|
|
uchar flags; // CPU flags
|
|
|
|
uchar signature[4]; // CPU signature
|
|
|
|
uint feature; // feature flags from CPUID instruction
|
2006-07-20 11:07:53 +02:00
|
|
|
uchar reserved[8];
|
2006-06-21 03:53:07 +02:00
|
|
|
};
|
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
struct mpbe { // bus table entry
|
|
|
|
uchar type; // entry type (1)
|
|
|
|
uchar busno; // bus id
|
|
|
|
char string[6]; // bus type string
|
2006-06-21 03:53:07 +02:00
|
|
|
};
|
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
struct mpioapic { // I/O APIC table entry
|
|
|
|
uchar type; // entry type (2)
|
|
|
|
uchar apicno; // I/O APIC id
|
|
|
|
uchar version; // I/O APIC version
|
|
|
|
uchar flags; // I/O APIC flags
|
|
|
|
uint *addr; // I/O APIC address
|
2006-06-21 03:53:07 +02:00
|
|
|
};
|
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
struct mpie { // interrupt table entry
|
|
|
|
uchar type; // entry type ([34])
|
|
|
|
uchar intr; // interrupt type
|
|
|
|
ushort flags; // interrupt flag
|
|
|
|
uchar busno; // source bus id
|
|
|
|
uchar irq; // source bus irq
|
|
|
|
uchar apicno; // destination APIC id
|
|
|
|
uchar intin; // destination APIC [L]INTIN#
|
2006-06-21 03:53:07 +02:00
|
|
|
};
|
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
enum { // table entry types
|
|
|
|
MPPROCESSOR = 0x00, // one entry per processor
|
|
|
|
MPBUS = 0x01, // one entry per bus
|
|
|
|
MPIOAPIC = 0x02, // one entry per I/O APIC
|
|
|
|
MPIOINTR = 0x03, // one entry per bus interrupt source
|
|
|
|
MPLINTR = 0x04, // one entry per system interrupt source
|
2006-06-22 03:28:57 +02:00
|
|
|
|
|
|
|
MPSASM = 0x80,
|
2006-09-06 19:04:06 +02:00
|
|
|
MPHIERARCHY = 0x81,
|
2006-06-22 03:28:57 +02:00
|
|
|
MPCBASM = 0x82,
|
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
// PCMPprocessor and PCMPioapic flags
|
|
|
|
MPEN = 0x01, // enabled
|
|
|
|
MPBP = 0x02, // bootstrap processor
|
2006-06-22 03:28:57 +02:00
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
// PCMPiointr and PCMPlintr flags
|
2006-09-06 21:08:14 +02:00
|
|
|
MPPOMASK = 0x03, // polarity conforms to bus specs
|
2006-09-06 19:50:20 +02:00
|
|
|
MPHIGH = 0x01, // active high
|
|
|
|
MPLOW = 0x03, // active low
|
|
|
|
MPELMASK = 0x0C, // trigger mode of APIC input signals
|
|
|
|
MPEDGE = 0x04, // edge-triggered
|
|
|
|
MPLEVEL = 0x0C, // level-triggered
|
2006-06-22 03:28:57 +02:00
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
// PCMPiointr and PCMPlintr interrupt type
|
|
|
|
MPINT = 0x00, // vectored interrupt from APIC Rdt
|
|
|
|
MPNMI = 0x01, // non-maskable interrupt
|
|
|
|
MPSMI = 0x02, // system management interrupt
|
|
|
|
MPExtINT = 0x03, // vectored interrupt from external PIC
|
2006-06-21 03:53:07 +02:00
|
|
|
};
|
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
// Common bits for
|
|
|
|
// I/O APIC Redirection Table Entry;
|
|
|
|
// Local APIC Local Interrupt Vector Table;
|
|
|
|
// Local APIC Inter-Processor Interrupt;
|
|
|
|
// Local APIC Timer Vector Table.
|
2006-06-21 03:53:07 +02:00
|
|
|
enum {
|
2006-09-06 19:50:20 +02:00
|
|
|
APIC_FIXED = 0x00000000, // [10:8] Delivery Mode
|
|
|
|
APIC_LOWEST = 0x00000100, // Lowest priority
|
|
|
|
APIC_SMI = 0x00000200, // System Management Interrupt
|
|
|
|
APIC_RR = 0x00000300, // Remote Read
|
2006-09-06 19:04:06 +02:00
|
|
|
APIC_NMI = 0x00000400,
|
2006-09-06 19:50:20 +02:00
|
|
|
APIC_INIT = 0x00000500, // INIT/RESET
|
|
|
|
APIC_STARTUP = 0x00000600, // Startup IPI
|
2006-09-06 19:04:06 +02:00
|
|
|
APIC_EXTINT = 0x00000700,
|
2006-06-22 03:28:57 +02:00
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
APIC_PHYSICAL = 0x00000000, // [11] Destination Mode (RW)
|
2006-09-06 19:04:06 +02:00
|
|
|
APIC_LOGICAL = 0x00000800,
|
2006-06-22 03:28:57 +02:00
|
|
|
|
2006-09-06 19:50:20 +02:00
|
|
|
APIC_DELIVS = 0x00001000, // [12] Delivery Status (RO)
|
|
|
|
APIC_HIGH = 0x00000000, // [13] Interrupt Input Pin Polarity (RW)
|
2006-09-06 19:04:06 +02:00
|
|
|
APIC_LOW = 0x00002000,
|
2006-09-06 19:50:20 +02:00
|
|
|
APIC_REMOTEIRR = 0x00004000, // [14] Remote IRR (RO)
|
|
|
|
APIC_EDGE = 0x00000000, // [15] Trigger Mode (RW)
|
2006-09-06 19:04:06 +02:00
|
|
|
APIC_LEVEL = 0x00008000,
|
2006-09-06 19:50:20 +02:00
|
|
|
APIC_IMASK = 0x00010000, // [16] Interrupt Mask
|
2006-06-21 03:53:07 +02:00
|
|
|
};
|