Disassemble your DSDT
From MalaWiki
- Install acpidump from the pmtools package available at ftp://ftp.kernel.org/pub/linux/kernel/people/lenb/acpi/utils/
- Install iasl from the ACPICA downloads at Intel's website http://developer.intel.com/technology/iapc/acpi/downloads.htm
- Dump the binary DSDT:
acpidump -b -t DSDT -o DSDT.aml
- Disassemble the DSDT:
iasl -d DSDT.aml
- Done!
Now you have a file called DSDT.dsl that contains the human readable DSDT table.