This post is about a general info on how can we read the Advance Configuration and Power Interface (ACPI) which contain various tables (DSDT, APIC, RSDP, RSDT, etc) which tell the OS what they can take control over the system (usually on Power).
For BIOS, we usually care most is the DSDT table - Differentiate System Description Table which is part of ACPI. DSDT provide the interface or supply info on what is supported by the system for the OS to control.
This post is not to explain on every table. It is about how we can read the ACPI table out from our system. We usually call it "how can we dump ACPI table out from out system"
They are different ways to do in Windows and Linux. This post will focus only on Windows for now. I'll write about Linux next time.
In Windows, there are couple of tools we can use to read these tables. I'll share 2:
1) You can download and install R/W Everything. It is the simplest method to read ACPI table. Click on the ACPI and it will show you all the tables information
http://rweverything.com/
2)
a) Download and unzip the IASL tools from https://www.acpica.org/
b) Using command prompt run the following command
i) iasl -g
ii) iasl -d ***.dat
c) The "-g" is to all dump the ACPI table into a *.dat file which contain the machine code.
d) the -d option is to dissemble the machine code back to asl or dsl code. (ACPI Machine Language)
Hope this post helps.. :) I will share on how to do it in Linux next time.