PDA

View Full Version : how to display all ACPI tables from the BIOS ?


name
December 26th 03, 11:20 PM
Hello,

I need to display all ACPI the tables which are in the BIOS because I
dont have them all in the registry.

Is it possible with acpi.sys or anything else ?
What are the available functions in Windows (xp for ex.) ?

thanks

Maxim S. Shatskih
December 26th 03, 11:25 PM
IIRC the only part of the ACPI table which is used by Windows is in
HKLM\HARDWARE\ACPI.

Max

"name" > wrote in message
om...
> Hello,
>
> I need to display all ACPI the tables which are in the BIOS because
I
> dont have them all in the registry.
>
> Is it possible with acpi.sys or anything else ?
> What are the available functions in Windows (xp for ex.) ?
>
> thanks

Fabio Lavatelli [MS]
December 26th 03, 11:26 PM
Additionally WinDbg,
http://www.microsoft.com/whdc/ddk/debugging/default.mspx, has
extensions to look at ACPI tables. You can install the kernel debugger on
the same box which needs to be inspected and attach locally ("File", "Kernel
Debug", "Local", "OK"). You can also attach remotely.

The following commands for example show the FACS and the FADT:
.reload ACPI.sys
ld ACPI
!facs
!fadt
you need proper symbols installed.

Other ACPI commands are described in WinDbg help.

Best Regards,
Fabio Lavatelli - Microsoft DDK Developer Support EMEA

This posting is provided "AS IS" with no warranties, and confers no rights.

"Maxim S. Shatskih" > wrote in message
...
> IIRC the only part of the ACPI table which is used by Windows is in
> HKLM\HARDWARE\ACPI.
>
> Max
>
> "name" > wrote in message
> om...
> > Hello,
> >
> > I need to display all ACPI the tables which are in the BIOS because
> I
> > dont have them all in the registry.
> >
> > Is it possible with acpi.sys or anything else ?
> > What are the available functions in Windows (xp for ex.) ?
> >
> > thanks
>
>

Google