acpi-info.txt 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. ACPI considerations for PCI host bridges
  2. The general rule is that the ACPI namespace should describe everything the
  3. OS might use unless there's another way for the OS to find it [1, 2].
  4. For example, there's no standard hardware mechanism for enumerating PCI
  5. host bridges, so the ACPI namespace must describe each host bridge, the
  6. method for accessing PCI config space below it, the address space windows
  7. the host bridge forwards to PCI (using _CRS), and the routing of legacy
  8. INTx interrupts (using _PRT).
  9. PCI devices, which are below the host bridge, generally do not need to be
  10. described via ACPI. The OS can discover them via the standard PCI
  11. enumeration mechanism, using config accesses to discover and identify
  12. devices and read and size their BARs. However, ACPI may describe PCI
  13. devices if it provides power management or hotplug functionality for them
  14. or if the device has INTx interrupts connected by platform interrupt
  15. controllers and a _PRT is needed to describe those connections.
  16. ACPI resource description is done via _CRS objects of devices in the ACPI
  17. namespace [2].   The _CRS is like a generalized PCI BAR: the OS can read
  18. _CRS and figure out what resource is being consumed even if it doesn't have
  19. a driver for the device [3].  That's important because it means an old OS
  20. can work correctly even on a system with new devices unknown to the OS.
  21. The new devices might not do anything, but the OS can at least make sure no
  22. resources conflict with them.
  23. Static tables like MCFG, HPET, ECDT, etc., are *not* mechanisms for
  24. reserving address space. The static tables are for things the OS needs to
  25. know early in boot, before it can parse the ACPI namespace. If a new table
  26. is defined, an old OS needs to operate correctly even though it ignores the
  27. table. _CRS allows that because it is generic and understood by the old
  28. OS; a static table does not.
  29. If the OS is expected to manage a non-discoverable device described via
  30. ACPI, that device will have a specific _HID/_CID that tells the OS what
  31. driver to bind to it, and the _CRS tells the OS and the driver where the
  32. device's registers are.
  33. PCI host bridges are PNP0A03 or PNP0A08 devices.  Their _CRS should
  34. describe all the address space they consume.  This includes all the windows
  35. they forward down to the PCI bus, as well as registers of the host bridge
  36. itself that are not forwarded to PCI.  The host bridge registers include
  37. things like secondary/subordinate bus registers that determine the bus
  38. range below the bridge, window registers that describe the apertures, etc.
  39. These are all device-specific, non-architected things, so the only way a
  40. PNP0A03/PNP0A08 driver can manage them is via _PRS/_CRS/_SRS, which contain
  41. the device-specific details.  The host bridge registers also include ECAM
  42. space, since it is consumed by the host bridge.
  43. ACPI defines a Consumer/Producer bit to distinguish the bridge registers
  44. ("Consumer") from the bridge apertures ("Producer") [4, 5], but early
  45. BIOSes didn't use that bit correctly. The result is that the current ACPI
  46. spec defines Consumer/Producer only for the Extended Address Space
  47. descriptors; the bit should be ignored in the older QWord/DWord/Word
  48. Address Space descriptors. Consequently, OSes have to assume all
  49. QWord/DWord/Word descriptors are windows.
  50. Prior to the addition of Extended Address Space descriptors, the failure of
  51. Consumer/Producer meant there was no way to describe bridge registers in
  52. the PNP0A03/PNP0A08 device itself. The workaround was to describe the
  53. bridge registers (including ECAM space) in PNP0C02 catch-all devices [6].
  54. With the exception of ECAM, the bridge register space is device-specific
  55. anyway, so the generic PNP0A03/PNP0A08 driver (pci_root.c) has no need to
  56. know about it.  
  57. New architectures should be able to use "Consumer" Extended Address Space
  58. descriptors in the PNP0A03 device for bridge registers, including ECAM,
  59. although a strict interpretation of [6] might prohibit this. Old x86 and
  60. ia64 kernels assume all address space descriptors, including "Consumer"
  61. Extended Address Space ones, are windows, so it would not be safe to
  62. describe bridge registers this way on those architectures.
  63. PNP0C02 "motherboard" devices are basically a catch-all.  There's no
  64. programming model for them other than "don't use these resources for
  65. anything else."  So a PNP0C02 _CRS should claim any address space that is
  66. (1) not claimed by _CRS under any other device object in the ACPI namespace
  67. and (2) should not be assigned by the OS to something else.
  68. The PCIe spec requires the Enhanced Configuration Access Method (ECAM)
  69. unless there's a standard firmware interface for config access, e.g., the
  70. ia64 SAL interface [7]. A host bridge consumes ECAM memory address space
  71. and converts memory accesses into PCI configuration accesses. The spec
  72. defines the ECAM address space layout and functionality; only the base of
  73. the address space is device-specific. An ACPI OS learns the base address
  74. from either the static MCFG table or a _CBA method in the PNP0A03 device.
  75. The MCFG table must describe the ECAM space of non-hot pluggable host
  76. bridges [8]. Since MCFG is a static table and can't be updated by hotplug,
  77. a _CBA method in the PNP0A03 device describes the ECAM space of a
  78. hot-pluggable host bridge [9]. Note that for both MCFG and _CBA, the base
  79. address always corresponds to bus 0, even if the bus range below the bridge
  80. (which is reported via _CRS) doesn't start at 0.
  81. [1] ACPI 6.2, sec 6.1:
  82. For any device that is on a non-enumerable type of bus (for example, an
  83. ISA bus), OSPM enumerates the devices' identifier(s) and the ACPI
  84. system firmware must supply an _HID object ... for each device to
  85. enable OSPM to do that.
  86. [2] ACPI 6.2, sec 3.7:
  87. The OS enumerates motherboard devices simply by reading through the
  88. ACPI Namespace looking for devices with hardware IDs.
  89. Each device enumerated by ACPI includes ACPI-defined objects in the
  90. ACPI Namespace that report the hardware resources the device could
  91. occupy [_PRS], an object that reports the resources that are currently
  92. used by the device [_CRS], and objects for configuring those resources
  93. [_SRS]. The information is used by the Plug and Play OS (OSPM) to
  94. configure the devices.
  95. [3] ACPI 6.2, sec 6.2:
  96. OSPM uses device configuration objects to configure hardware resources
  97. for devices enumerated via ACPI. Device configuration objects provide
  98. information about current and possible resource requirements, the
  99. relationship between shared resources, and methods for configuring
  100. hardware resources.
  101. When OSPM enumerates a device, it calls _PRS to determine the resource
  102. requirements of the device. It may also call _CRS to find the current
  103. resource settings for the device. Using this information, the Plug and
  104. Play system determines what resources the device should consume and
  105. sets those resources by calling the device’s _SRS control method.
  106. In ACPI, devices can consume resources (for example, legacy keyboards),
  107. provide resources (for example, a proprietary PCI bridge), or do both.
  108. Unless otherwise specified, resources for a device are assumed to be
  109. taken from the nearest matching resource above the device in the device
  110. hierarchy.
  111. [4] ACPI 6.2, sec 6.4.3.5.1, 2, 3, 4:
  112. QWord/DWord/Word Address Space Descriptor (.1, .2, .3)
  113. General Flags: Bit [0] Ignored
  114. Extended Address Space Descriptor (.4)
  115. General Flags: Bit [0] Consumer/Producer:
  116. 1–This device consumes this resource
  117. 0–This device produces and consumes this resource
  118. [5] ACPI 6.2, sec 19.6.43:
  119. ResourceUsage specifies whether the Memory range is consumed by
  120. this device (ResourceConsumer) or passed on to child devices
  121. (ResourceProducer). If nothing is specified, then
  122. ResourceConsumer is assumed.
  123. [6] PCI Firmware 3.2, sec 4.1.2:
  124. If the operating system does not natively comprehend reserving the
  125. MMCFG region, the MMCFG region must be reserved by firmware. The
  126. address range reported in the MCFG table or by _CBA method (see Section
  127. 4.1.3) must be reserved by declaring a motherboard resource. For most
  128. systems, the motherboard resource would appear at the root of the ACPI
  129. namespace (under \_SB) in a node with a _HID of EISAID (PNP0C02), and
  130. the resources in this case should not be claimed in the root PCI bus’s
  131. _CRS. The resources can optionally be returned in Int15 E820 or
  132. EFIGetMemoryMap as reserved memory but must always be reported through
  133. ACPI as a motherboard resource.
  134. [7] PCI Express 4.0, sec 7.2.2:
  135. For systems that are PC-compatible, or that do not implement a
  136. processor-architecture-specific firmware interface standard that allows
  137. access to the Configuration Space, the ECAM is required as defined in
  138. this section.
  139. [8] PCI Firmware 3.2, sec 4.1.2:
  140. The MCFG table is an ACPI table that is used to communicate the base
  141. addresses corresponding to the non-hot removable PCI Segment Groups
  142. range within a PCI Segment Group available to the operating system at
  143. boot. This is required for the PC-compatible systems.
  144. The MCFG table is only used to communicate the base addresses
  145. corresponding to the PCI Segment Groups available to the system at
  146. boot.
  147. [9] PCI Firmware 3.2, sec 4.1.3:
  148. The _CBA (Memory mapped Configuration Base Address) control method is
  149. an optional ACPI object that returns the 64-bit memory mapped
  150. configuration base address for the hot plug capable host bridge. The
  151. base address returned by _CBA is processor-relative address. The _CBA
  152. control method evaluates to an Integer.
  153. This control method appears under a host bridge object. When the _CBA
  154. method appears under an active host bridge object, the operating system
  155. evaluates this structure to identify the memory mapped configuration
  156. base address corresponding to the PCI Segment Group for the bus number
  157. range specified in _CRS method. An ACPI name space object that contains
  158. the _CBA method must also contain a corresponding _SEG method.