I wonder if there is another (and of course reliable) way to find out if there is IOAPIC on the board than finding the MP structure?
On mine (NF2 board) I couldn't find the _MP_ signature, yet there is an IOAPIC, which I tested by reading it's version no.
I/O APIC existance
Re:I/O APIC existance
Testing for the version number is the correct way to do it. If it's there, then the IO APIC is there. That's all you need to do.
Re:I/O APIC existance
Hi,
The normal way is to parse the ACPI boot tables (and/or the MP specification tables). If both ACPI and MP aren't present, then it's likely that the motherboard doesn't handle things properly anyway.
Cheers,
Brendan
The normal way is to parse the ACPI boot tables (and/or the MP specification tables). If both ACPI and MP aren't present, then it's likely that the motherboard doesn't handle things properly anyway.
For probing, I'd probably be a little more thorough - see if the version number is read only, and if the APIC ID is read/write....durand wrote:Testing for the version number is the correct way to do it. If it's there, then the IO APIC is there. That's all you need to do.
Cheers,
Brendan
For all things; perfection is, and will always remain, impossible to achieve in practice. However; by striving for perfection we create things that are as perfect as practically possible. Let the pursuit of perfection be our guide.