Newer
Older
// Multiprocessor bootstrap.
// Search memory for MP description structures.
// http://developer.intel.com/design/pentium/datashts/24201606.pdf
#include "param.h"
#include "x86.h"
#include "mmu.h"
{
return bcpu-cpus;
}
static uchar
sum(uchar *addr, int len)
{
int i, sum;
sum = 0;
for(i=0; i<len; i++)
sum += addr[i];
return sum;
}
for(p = addr; p < e; p += sizeof(struct mp))
if(memcmp(p, "_MP_", 4) == 0 && sum(p, sizeof(struct mp)) == 0)
// Search for the MP Floating Pointer Structure, which according to the
// spec is in one of the following three locations:
// 1) in the first KB of the EBDA;
// 2) in the last KB of system base memory;
// 3) in the BIOS ROM between 0xE0000 and 0xFFFFF.
if((mp = mpsearch1((uchar*)p, 1024)))
if((mp = mpsearch1((uchar*)p-1024, 1024)))
return mpsearch1((uchar*)0xF0000, 0x10000);
// don't accept the default configurations (physaddr == 0).
// Check for correct signature, calculate the checksum and,
// if correct, check the version.
// To do: check extended table checksum.
if((mp = mpsearch()) == 0 || mp->physaddr == 0)
return 0;
conf = (struct mpconf*)mp->physaddr;
if(memcmp(conf, "PCMP", 4) != 0)
return 0;
if(conf->version != 1 && conf->version != 4)
return 0;
if(sum((uchar*)conf, conf->length) != 0)
return 0;
*pmp = mp;
return conf;
struct mp *mp;
struct mpconf *conf;
struct mpproc *proc;
for(p=(uchar*)(conf+1), e=(uchar*)conf+conf->length; p<e; ){
case MPIOAPIC:
case MPIOINTR:
cprintf("mpinit: unknown config type %x\n", *p);
panic("mpinit");
// Bochs doesn't support IMCR, so this doesn't run on Bochs.
// But it would on real hardware.