DSDT: Difference between revisions

38 bytes added ,  28 days ago
m
no edit summary
[unchecked revision][unchecked revision]
m (Added that table has header and a reference for validation.)
mNo edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 1:
{{ACPI}}
 
''This page is about the ACPI DSDT (Differentiated System Description Table)''
It describes devices (I/O Ports, IRQs, Memory Mappings, etc.).
==DSDT==
===Introduction===
{{stub|section=y}}
DSDT stands for ''Differentiated System Description Table''. It Is a major [[ACPI]] table and is used to describe what peripherals the machine has. Also holds information on PCI IRQ mappings and power management. For example when powering down by the OS, it should find the _S5 object which describes how to do that. It is pointed to by the [[FADT]].
<br />
Line 13 ⟶ 15:
* bios/acpi-dsdt.hex for hex dump of the bytecode output
For example here's the description of the [[RTC|Real Time Clock]]:
<sourcesyntaxhighlight lang="c">
/* PIIX3 ISA bridge */
Device (ISA) {
Line 32 ⟶ 34:
})
}
</syntaxhighlight>
</source>
and what's it became after compilation:
<pre>