acpi_object_usage.txt 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623
  1. ACPI Tables
  2. -----------
  3. The expectations of individual ACPI tables are discussed in the list that
  4. follows.
  5. If a section number is used, it refers to a section number in the ACPI
  6. specification where the object is defined. If "Signature Reserved" is used,
  7. the table signature (the first four bytes of the table) is the only portion
  8. of the table recognized by the specification, and the actual table is defined
  9. outside of the UEFI Forum (see Section 5.2.6 of the specification).
  10. For ACPI on arm64, tables also fall into the following categories:
  11. -- Required: DSDT, FADT, GTDT, MADT, MCFG, RSDP, SPCR, XSDT
  12. -- Recommended: BERT, EINJ, ERST, HEST, PCCT, SSDT
  13. -- Optional: BGRT, CPEP, CSRT, DBG2, DRTM, ECDT, FACS, FPDT, IORT,
  14. MCHI, MPST, MSCT, NFIT, PMTT, RASF, SBST, SLIT, SPMI, SRAT, STAO,
  15. TCPA, TPM2, UEFI, XENV
  16. -- Not supported: BOOT, DBGP, DMAR, ETDT, HPET, IBFT, IVRS, LPIT,
  17. MSDM, OEMx, PSDT, RSDT, SLIC, WAET, WDAT, WDRT, WPBT
  18. Table Usage for ARMv8 Linux
  19. ----- ----------------------------------------------------------------
  20. BERT Section 18.3 (signature == "BERT")
  21. == Boot Error Record Table ==
  22. Must be supplied if RAS support is provided by the platform. It
  23. is recommended this table be supplied.
  24. BOOT Signature Reserved (signature == "BOOT")
  25. == simple BOOT flag table ==
  26. Microsoft only table, will not be supported.
  27. BGRT Section 5.2.22 (signature == "BGRT")
  28. == Boot Graphics Resource Table ==
  29. Optional, not currently supported, with no real use-case for an
  30. ARM server.
  31. CPEP Section 5.2.18 (signature == "CPEP")
  32. == Corrected Platform Error Polling table ==
  33. Optional, not currently supported, and not recommended until such
  34. time as ARM-compatible hardware is available, and the specification
  35. suitably modified.
  36. CSRT Signature Reserved (signature == "CSRT")
  37. == Core System Resources Table ==
  38. Optional, not currently supported.
  39. DBG2 Signature Reserved (signature == "DBG2")
  40. == DeBuG port table 2 ==
  41. License has changed and should be usable. Optional if used instead
  42. of earlycon=<device> on the command line.
  43. DBGP Signature Reserved (signature == "DBGP")
  44. == DeBuG Port table ==
  45. Microsoft only table, will not be supported.
  46. DSDT Section 5.2.11.1 (signature == "DSDT")
  47. == Differentiated System Description Table ==
  48. A DSDT is required; see also SSDT.
  49. ACPI tables contain only one DSDT but can contain one or more SSDTs,
  50. which are optional. Each SSDT can only add to the ACPI namespace,
  51. but cannot modify or replace anything in the DSDT.
  52. DMAR Signature Reserved (signature == "DMAR")
  53. == DMA Remapping table ==
  54. x86 only table, will not be supported.
  55. DRTM Signature Reserved (signature == "DRTM")
  56. == Dynamic Root of Trust for Measurement table ==
  57. Optional, not currently supported.
  58. ECDT Section 5.2.16 (signature == "ECDT")
  59. == Embedded Controller Description Table ==
  60. Optional, not currently supported, but could be used on ARM if and
  61. only if one uses the GPE_BIT field to represent an IRQ number, since
  62. there are no GPE blocks defined in hardware reduced mode. This would
  63. need to be modified in the ACPI specification.
  64. EINJ Section 18.6 (signature == "EINJ")
  65. == Error Injection table ==
  66. This table is very useful for testing platform response to error
  67. conditions; it allows one to inject an error into the system as
  68. if it had actually occurred. However, this table should not be
  69. shipped with a production system; it should be dynamically loaded
  70. and executed with the ACPICA tools only during testing.
  71. ERST Section 18.5 (signature == "ERST")
  72. == Error Record Serialization Table ==
  73. On a platform supports RAS, this table must be supplied if it is not
  74. UEFI-based; if it is UEFI-based, this table may be supplied. When this
  75. table is not present, UEFI run time service will be utilized to save
  76. and retrieve hardware error information to and from a persistent store.
  77. ETDT Signature Reserved (signature == "ETDT")
  78. == Event Timer Description Table ==
  79. Obsolete table, will not be supported.
  80. FACS Section 5.2.10 (signature == "FACS")
  81. == Firmware ACPI Control Structure ==
  82. It is unlikely that this table will be terribly useful. If it is
  83. provided, the Global Lock will NOT be used since it is not part of
  84. the hardware reduced profile, and only 64-bit address fields will
  85. be considered valid.
  86. FADT Section 5.2.9 (signature == "FACP")
  87. == Fixed ACPI Description Table ==
  88. Required for arm64.
  89. The HW_REDUCED_ACPI flag must be set. All of the fields that are
  90. to be ignored when HW_REDUCED_ACPI is set are expected to be set to
  91. zero.
  92. If an FACS table is provided, the X_FIRMWARE_CTRL field is to be
  93. used, not FIRMWARE_CTRL.
  94. If PSCI is used (as is recommended), make sure that ARM_BOOT_ARCH is
  95. filled in properly -- that the PSCI_COMPLIANT flag is set and that
  96. PSCI_USE_HVC is set or unset as needed (see table 5-37).
  97. For the DSDT that is also required, the X_DSDT field is to be used,
  98. not the DSDT field.
  99. FPDT Section 5.2.23 (signature == "FPDT")
  100. == Firmware Performance Data Table ==
  101. Optional, not currently supported.
  102. GTDT Section 5.2.24 (signature == "GTDT")
  103. == Generic Timer Description Table ==
  104. Required for arm64.
  105. HEST Section 18.3.2 (signature == "HEST")
  106. == Hardware Error Source Table ==
  107. ARM-specific error sources have been defined; please use those or the
  108. PCI types such as type 6 (AER Root Port), 7 (AER Endpoint), or 8 (AER
  109. Bridge), or use type 9 (Generic Hardware Error Source). Firmware first
  110. error handling is possible if and only if Trusted Firmware is being
  111. used on arm64.
  112. Must be supplied if RAS support is provided by the platform. It
  113. is recommended this table be supplied.
  114. HPET Signature Reserved (signature == "HPET")
  115. == High Precision Event timer Table ==
  116. x86 only table, will not be supported.
  117. IBFT Signature Reserved (signature == "IBFT")
  118. == iSCSI Boot Firmware Table ==
  119. Microsoft defined table, support TBD.
  120. IORT Signature Reserved (signature == "IORT")
  121. == Input Output Remapping Table ==
  122. arm64 only table, required in order to describe IO topology, SMMUs,
  123. and GIC ITSs, and how those various components are connected together,
  124. such as identifying which components are behind which SMMUs/ITSs.
  125. This table will only be required on certain SBSA platforms (e.g.,
  126. when using GICv3-ITS and an SMMU); on SBSA Level 0 platforms, it
  127. remains optional.
  128. IVRS Signature Reserved (signature == "IVRS")
  129. == I/O Virtualization Reporting Structure ==
  130. x86_64 (AMD) only table, will not be supported.
  131. LPIT Signature Reserved (signature == "LPIT")
  132. == Low Power Idle Table ==
  133. x86 only table as of ACPI 5.1; starting with ACPI 6.0, processor
  134. descriptions and power states on ARM platforms should use the DSDT
  135. and define processor container devices (_HID ACPI0010, Section 8.4,
  136. and more specifically 8.4.3 and and 8.4.4).
  137. MADT Section 5.2.12 (signature == "APIC")
  138. == Multiple APIC Description Table ==
  139. Required for arm64. Only the GIC interrupt controller structures
  140. should be used (types 0xA - 0xF).
  141. MCFG Signature Reserved (signature == "MCFG")
  142. == Memory-mapped ConFiGuration space ==
  143. If the platform supports PCI/PCIe, an MCFG table is required.
  144. MCHI Signature Reserved (signature == "MCHI")
  145. == Management Controller Host Interface table ==
  146. Optional, not currently supported.
  147. MPST Section 5.2.21 (signature == "MPST")
  148. == Memory Power State Table ==
  149. Optional, not currently supported.
  150. MSCT Section 5.2.19 (signature == "MSCT")
  151. == Maximum System Characteristic Table ==
  152. Optional, not currently supported.
  153. MSDM Signature Reserved (signature == "MSDM")
  154. == Microsoft Data Management table ==
  155. Microsoft only table, will not be supported.
  156. NFIT Section 5.2.25 (signature == "NFIT")
  157. == NVDIMM Firmware Interface Table ==
  158. Optional, not currently supported.
  159. OEMx Signature of "OEMx" only
  160. == OEM Specific Tables ==
  161. All tables starting with a signature of "OEM" are reserved for OEM
  162. use. Since these are not meant to be of general use but are limited
  163. to very specific end users, they are not recommended for use and are
  164. not supported by the kernel for arm64.
  165. PCCT Section 14.1 (signature == "PCCT)
  166. == Platform Communications Channel Table ==
  167. Recommend for use on arm64; use of PCC is recommended when using CPPC
  168. to control performance and power for platform processors.
  169. PMTT Section 5.2.21.12 (signature == "PMTT")
  170. == Platform Memory Topology Table ==
  171. Optional, not currently supported.
  172. PSDT Section 5.2.11.3 (signature == "PSDT")
  173. == Persistent System Description Table ==
  174. Obsolete table, will not be supported.
  175. RASF Section 5.2.20 (signature == "RASF")
  176. == RAS Feature table ==
  177. Optional, not currently supported.
  178. RSDP Section 5.2.5 (signature == "RSD PTR")
  179. == Root System Description PoinTeR ==
  180. Required for arm64.
  181. RSDT Section 5.2.7 (signature == "RSDT")
  182. == Root System Description Table ==
  183. Since this table can only provide 32-bit addresses, it is deprecated
  184. on arm64, and will not be used. If provided, it will be ignored.
  185. SBST Section 5.2.14 (signature == "SBST")
  186. == Smart Battery Subsystem Table ==
  187. Optional, not currently supported.
  188. SLIC Signature Reserved (signature == "SLIC")
  189. == Software LIcensing table ==
  190. Microsoft only table, will not be supported.
  191. SLIT Section 5.2.17 (signature == "SLIT")
  192. == System Locality distance Information Table ==
  193. Optional in general, but required for NUMA systems.
  194. SPCR Signature Reserved (signature == "SPCR")
  195. == Serial Port Console Redirection table ==
  196. Required for arm64.
  197. SPMI Signature Reserved (signature == "SPMI")
  198. == Server Platform Management Interface table ==
  199. Optional, not currently supported.
  200. SRAT Section 5.2.16 (signature == "SRAT")
  201. == System Resource Affinity Table ==
  202. Optional, but if used, only the GICC Affinity structures are read.
  203. To support arm64 NUMA, this table is required.
  204. SSDT Section 5.2.11.2 (signature == "SSDT")
  205. == Secondary System Description Table ==
  206. These tables are a continuation of the DSDT; these are recommended
  207. for use with devices that can be added to a running system, but can
  208. also serve the purpose of dividing up device descriptions into more
  209. manageable pieces.
  210. An SSDT can only ADD to the ACPI namespace. It cannot modify or
  211. replace existing device descriptions already in the namespace.
  212. These tables are optional, however. ACPI tables should contain only
  213. one DSDT but can contain many SSDTs.
  214. STAO Signature Reserved (signature == "STAO")
  215. == _STA Override table ==
  216. Optional, but only necessary in virtualized environments in order to
  217. hide devices from guest OSs.
  218. TCPA Signature Reserved (signature == "TCPA")
  219. == Trusted Computing Platform Alliance table ==
  220. Optional, not currently supported, and may need changes to fully
  221. interoperate with arm64.
  222. TPM2 Signature Reserved (signature == "TPM2")
  223. == Trusted Platform Module 2 table ==
  224. Optional, not currently supported, and may need changes to fully
  225. interoperate with arm64.
  226. UEFI Signature Reserved (signature == "UEFI")
  227. == UEFI ACPI data table ==
  228. Optional, not currently supported. No known use case for arm64,
  229. at present.
  230. WAET Signature Reserved (signature == "WAET")
  231. == Windows ACPI Emulated devices Table ==
  232. Microsoft only table, will not be supported.
  233. WDAT Signature Reserved (signature == "WDAT")
  234. == Watch Dog Action Table ==
  235. Microsoft only table, will not be supported.
  236. WDRT Signature Reserved (signature == "WDRT")
  237. == Watch Dog Resource Table ==
  238. Microsoft only table, will not be supported.
  239. WPBT Signature Reserved (signature == "WPBT")
  240. == Windows Platform Binary Table ==
  241. Microsoft only table, will not be supported.
  242. XENV Signature Reserved (signature == "XENV")
  243. == Xen project table ==
  244. Optional, used only by Xen at present.
  245. XSDT Section 5.2.8 (signature == "XSDT")
  246. == eXtended System Description Table ==
  247. Required for arm64.
  248. ACPI Objects
  249. ------------
  250. The expectations on individual ACPI objects that are likely to be used are
  251. shown in the list that follows; any object not explicitly mentioned below
  252. should be used as needed for a particular platform or particular subsystem,
  253. such as power management or PCI.
  254. Name Section Usage for ARMv8 Linux
  255. ---- ------------ -------------------------------------------------
  256. _CCA 6.2.17 This method must be defined for all bus masters
  257. on arm64 -- there are no assumptions made about
  258. whether such devices are cache coherent or not.
  259. The _CCA value is inherited by all descendants of
  260. these devices so it does not need to be repeated.
  261. Without _CCA on arm64, the kernel does not know what
  262. to do about setting up DMA for the device.
  263. NB: this method provides default cache coherency
  264. attributes; the presence of an SMMU can be used to
  265. modify that, however. For example, a master could
  266. default to non-coherent, but be made coherent with
  267. the appropriate SMMU configuration (see Table 17 of
  268. the IORT specification, ARM Document DEN 0049B).
  269. _CID 6.1.2 Use as needed, see also _HID.
  270. _CLS 6.1.3 Use as needed, see also _HID.
  271. _CPC 8.4.7.1 Use as needed, power management specific. CPPC is
  272. recommended on arm64.
  273. _CRS 6.2.2 Required on arm64.
  274. _CSD 8.4.2.2 Use as needed, used only in conjunction with _CST.
  275. _CST 8.4.2.1 Low power idle states (8.4.4) are recommended instead
  276. of C-states.
  277. _DDN 6.1.4 This field can be used for a device name. However,
  278. it is meant for DOS device names (e.g., COM1), so be
  279. careful of its use across OSes.
  280. _DSD 6.2.5 To be used with caution. If this object is used, try
  281. to use it within the constraints already defined by the
  282. Device Properties UUID. Only in rare circumstances
  283. should it be necessary to create a new _DSD UUID.
  284. In either case, submit the _DSD definition along with
  285. any driver patches for discussion, especially when
  286. device properties are used. A driver will not be
  287. considered complete without a corresponding _DSD
  288. description. Once approved by kernel maintainers,
  289. the UUID or device properties must then be registered
  290. with the UEFI Forum; this may cause some iteration as
  291. more than one OS will be registering entries.
  292. _DSM 9.1.1 Do not use this method. It is not standardized, the
  293. return values are not well documented, and it is
  294. currently a frequent source of error.
  295. \_GL 5.7.1 This object is not to be used in hardware reduced
  296. mode, and therefore should not be used on arm64.
  297. _GLK 6.5.7 This object requires a global lock be defined; there
  298. is no global lock on arm64 since it runs in hardware
  299. reduced mode. Hence, do not use this object on arm64.
  300. \_GPE 5.3.1 This namespace is for x86 use only. Do not use it
  301. on arm64.
  302. _HID 6.1.5 This is the primary object to use in device probing,
  303. though _CID and _CLS may also be used.
  304. _INI 6.5.1 Not required, but can be useful in setting up devices
  305. when UEFI leaves them in a state that may not be what
  306. the driver expects before it starts probing.
  307. _LPI 8.4.4.3 Recommended for use with processor definitions (_HID
  308. ACPI0010) on arm64. See also _RDI.
  309. _MLS 6.1.7 Highly recommended for use in internationalization.
  310. _OFF 7.2.2 It is recommended to define this method for any device
  311. that can be turned on or off.
  312. _ON 7.2.3 It is recommended to define this method for any device
  313. that can be turned on or off.
  314. \_OS 5.7.3 This method will return "Linux" by default (this is
  315. the value of the macro ACPI_OS_NAME on Linux). The
  316. command line parameter acpi_os=<string> can be used
  317. to set it to some other value.
  318. _OSC 6.2.11 This method can be a global method in ACPI (i.e.,
  319. \_SB._OSC), or it may be associated with a specific
  320. device (e.g., \_SB.DEV0._OSC), or both. When used
  321. as a global method, only capabilities published in
  322. the ACPI specification are allowed. When used as
  323. a device-specific method, the process described for
  324. using _DSD MUST be used to create an _OSC definition;
  325. out-of-process use of _OSC is not allowed. That is,
  326. submit the device-specific _OSC usage description as
  327. part of the kernel driver submission, get it approved
  328. by the kernel community, then register it with the
  329. UEFI Forum.
  330. \_OSI 5.7.2 Deprecated on ARM64. As far as ACPI firmware is
  331. concerned, _OSI is not to be used to determine what
  332. sort of system is being used or what functionality
  333. is provided. The _OSC method is to be used instead.
  334. _PDC 8.4.1 Deprecated, do not use on arm64.
  335. \_PIC 5.8.1 The method should not be used. On arm64, the only
  336. interrupt model available is GIC.
  337. \_PR 5.3.1 This namespace is for x86 use only on legacy systems.
  338. Do not use it on arm64.
  339. _PRT 6.2.13 Required as part of the definition of all PCI root
  340. devices.
  341. _PRx 7.3.8-11 Use as needed; power management specific. If _PR0 is
  342. defined, _PR3 must also be defined.
  343. _PSx 7.3.2-5 Use as needed; power management specific. If _PS0 is
  344. defined, _PS3 must also be defined. If clocks or
  345. regulators need adjusting to be consistent with power
  346. usage, change them in these methods.
  347. _RDI 8.4.4.4 Recommended for use with processor definitions (_HID
  348. ACPI0010) on arm64. This should only be used in
  349. conjunction with _LPI.
  350. \_REV 5.7.4 Always returns the latest version of ACPI supported.
  351. \_SB 5.3.1 Required on arm64; all devices must be defined in this
  352. namespace.
  353. _SLI 6.2.15 Use is recommended when SLIT table is in use.
  354. _STA 6.3.7, It is recommended to define this method for any device
  355. 7.2.4 that can be turned on or off. See also the STAO table
  356. that provides overrides to hide devices in virtualized
  357. environments.
  358. _SRS 6.2.16 Use as needed; see also _PRS.
  359. _STR 6.1.10 Recommended for conveying device names to end users;
  360. this is preferred over using _DDN.
  361. _SUB 6.1.9 Use as needed; _HID or _CID are preferred.
  362. _SUN 6.1.11 Use as needed, but recommended.
  363. _SWS 7.4.3 Use as needed; power management specific; this may
  364. require specification changes for use on arm64.
  365. _UID 6.1.12 Recommended for distinguishing devices of the same
  366. class; define it if at all possible.
  367. ACPI Event Model
  368. ----------------
  369. Do not use GPE block devices; these are not supported in the hardware reduced
  370. profile used by arm64. Since there are no GPE blocks defined for use on ARM
  371. platforms, ACPI events must be signaled differently.
  372. There are two options: GPIO-signaled interrupts (Section 5.6.5), and
  373. interrupt-signaled events (Section 5.6.9). Interrupt-signaled events are a
  374. new feature in the ACPI 6.1 specification. Either -- or both -- can be used
  375. on a given platform, and which to use may be dependent of limitations in any
  376. given SoC. If possible, interrupt-signaled events are recommended.
  377. ACPI Processor Control
  378. ----------------------
  379. Section 8 of the ACPI specification changed significantly in version 6.0.
  380. Processors should now be defined as Device objects with _HID ACPI0007; do
  381. not use the deprecated Processor statement in ASL. All multiprocessor systems
  382. should also define a hierarchy of processors, done with Processor Container
  383. Devices (see Section 8.4.3.1, _HID ACPI0010); do not use processor aggregator
  384. devices (Section 8.5) to describe processor topology. Section 8.4 of the
  385. specification describes the semantics of these object definitions and how
  386. they interrelate.
  387. Most importantly, the processor hierarchy defined also defines the low power
  388. idle states that are available to the platform, along with the rules for
  389. determining which processors can be turned on or off and the circumstances
  390. that control that. Without this information, the processors will run in
  391. whatever power state they were left in by UEFI.
  392. Note too, that the processor Device objects defined and the entries in the
  393. MADT for GICs are expected to be in synchronization. The _UID of the Device
  394. object must correspond to processor IDs used in the MADT.
  395. It is recommended that CPPC (8.4.5) be used as the primary model for processor
  396. performance control on arm64. C-states and P-states may become available at
  397. some point in the future, but most current design work appears to favor CPPC.
  398. Further, it is essential that the ARMv8 SoC provide a fully functional
  399. implementation of PSCI; this will be the only mechanism supported by ACPI
  400. to control CPU power state. Booting of secondary CPUs using the ACPI
  401. parking protocol is possible, but discouraged, since only PSCI is supported
  402. for ARM servers.
  403. ACPI System Address Map Interfaces
  404. ----------------------------------
  405. In Section 15 of the ACPI specification, several methods are mentioned as
  406. possible mechanisms for conveying memory resource information to the kernel.
  407. For arm64, we will only support UEFI for booting with ACPI, hence the UEFI
  408. GetMemoryMap() boot service is the only mechanism that will be used.
  409. ACPI Platform Error Interfaces (APEI)
  410. -------------------------------------
  411. The APEI tables supported are described above.
  412. APEI requires the equivalent of an SCI and an NMI on ARMv8. The SCI is used
  413. to notify the OSPM of errors that have occurred but can be corrected and the
  414. system can continue correct operation, even if possibly degraded. The NMI is
  415. used to indicate fatal errors that cannot be corrected, and require immediate
  416. attention.
  417. Since there is no direct equivalent of the x86 SCI or NMI, arm64 handles
  418. these slightly differently. The SCI is handled as a high priority interrupt;
  419. given that these are corrected (or correctable) errors being reported, this
  420. is sufficient. The NMI is emulated as the highest priority interrupt
  421. possible. This implies some caution must be used since there could be
  422. interrupts at higher privilege levels or even interrupts at the same priority
  423. as the emulated NMI. In Linux, this should not be the case but one should
  424. be aware it could happen.
  425. ACPI Objects Not Supported on ARM64
  426. -----------------------------------
  427. While this may change in the future, there are several classes of objects
  428. that can be defined, but are not currently of general interest to ARM servers.
  429. Some of these objects have x86 equivalents, and may actually make sense in ARM
  430. servers. However, there is either no hardware available at present, or there
  431. may not even be a non-ARM implementation yet. Hence, they are not currently
  432. supported.
  433. The following classes of objects are not supported:
  434. -- Section 9.2: ambient light sensor devices
  435. -- Section 9.3: battery devices
  436. -- Section 9.4: lids (e.g., laptop lids)
  437. -- Section 9.8.2: IDE controllers
  438. -- Section 9.9: floppy controllers
  439. -- Section 9.10: GPE block devices
  440. -- Section 9.15: PC/AT RTC/CMOS devices
  441. -- Section 9.16: user presence detection devices
  442. -- Section 9.17: I/O APIC devices; all GICs must be enumerable via MADT
  443. -- Section 9.18: time and alarm devices (see 9.15)
  444. -- Section 10: power source and power meter devices
  445. -- Section 11: thermal management
  446. -- Section 12: embedded controllers interface
  447. -- Section 13: SMBus interfaces
  448. This also means that there is no support for the following objects:
  449. Name Section Name Section
  450. ---- ------------ ---- ------------
  451. _ALC 9.3.4 _FDM 9.10.3
  452. _ALI 9.3.2 _FIX 6.2.7
  453. _ALP 9.3.6 _GAI 10.4.5
  454. _ALR 9.3.5 _GHL 10.4.7
  455. _ALT 9.3.3 _GTM 9.9.2.1.1
  456. _BCT 10.2.2.10 _LID 9.5.1
  457. _BDN 6.5.3 _PAI 10.4.4
  458. _BIF 10.2.2.1 _PCL 10.3.2
  459. _BIX 10.2.2.1 _PIF 10.3.3
  460. _BLT 9.2.3 _PMC 10.4.1
  461. _BMA 10.2.2.4 _PMD 10.4.8
  462. _BMC 10.2.2.12 _PMM 10.4.3
  463. _BMD 10.2.2.11 _PRL 10.3.4
  464. _BMS 10.2.2.5 _PSR 10.3.1
  465. _BST 10.2.2.6 _PTP 10.4.2
  466. _BTH 10.2.2.7 _SBS 10.1.3
  467. _BTM 10.2.2.9 _SHL 10.4.6
  468. _BTP 10.2.2.8 _STM 9.9.2.1.1
  469. _DCK 6.5.2 _UPD 9.16.1
  470. _EC 12.12 _UPP 9.16.2
  471. _FDE 9.10.1 _WPC 10.5.2
  472. _FDI 9.10.2 _WPP 10.5.3