pci_iov_resource_on_powernv.txt 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. Wei Yang <weiyang@linux.vnet.ibm.com>
  2. Benjamin Herrenschmidt <benh@au1.ibm.com>
  3. Bjorn Helgaas <bhelgaas@google.com>
  4. 26 Aug 2014
  5. This document describes the requirement from hardware for PCI MMIO resource
  6. sizing and assignment on PowerKVM and how generic PCI code handles this
  7. requirement. The first two sections describe the concepts of Partitionable
  8. Endpoints and the implementation on P8 (IODA2). The next two sections talks
  9. about considerations on enabling SRIOV on IODA2.
  10. 1. Introduction to Partitionable Endpoints
  11. A Partitionable Endpoint (PE) is a way to group the various resources
  12. associated with a device or a set of devices to provide isolation between
  13. partitions (i.e., filtering of DMA, MSIs etc.) and to provide a mechanism
  14. to freeze a device that is causing errors in order to limit the possibility
  15. of propagation of bad data.
  16. There is thus, in HW, a table of PE states that contains a pair of "frozen"
  17. state bits (one for MMIO and one for DMA, they get set together but can be
  18. cleared independently) for each PE.
  19. When a PE is frozen, all stores in any direction are dropped and all loads
  20. return all 1's value. MSIs are also blocked. There's a bit more state that
  21. captures things like the details of the error that caused the freeze etc., but
  22. that's not critical.
  23. The interesting part is how the various PCIe transactions (MMIO, DMA, ...)
  24. are matched to their corresponding PEs.
  25. The following section provides a rough description of what we have on P8
  26. (IODA2). Keep in mind that this is all per PHB (PCI host bridge). Each PHB
  27. is a completely separate HW entity that replicates the entire logic, so has
  28. its own set of PEs, etc.
  29. 2. Implementation of Partitionable Endpoints on P8 (IODA2)
  30. P8 supports up to 256 Partitionable Endpoints per PHB.
  31. * Inbound
  32. For DMA, MSIs and inbound PCIe error messages, we have a table (in
  33. memory but accessed in HW by the chip) that provides a direct
  34. correspondence between a PCIe RID (bus/dev/fn) with a PE number.
  35. We call this the RTT.
  36. - For DMA we then provide an entire address space for each PE that can
  37. contain two "windows", depending on the value of PCI address bit 59.
  38. Each window can be configured to be remapped via a "TCE table" (IOMMU
  39. translation table), which has various configurable characteristics
  40. not described here.
  41. - For MSIs, we have two windows in the address space (one at the top of
  42. the 32-bit space and one much higher) which, via a combination of the
  43. address and MSI value, will result in one of the 2048 interrupts per
  44. bridge being triggered. There's a PE# in the interrupt controller
  45. descriptor table as well which is compared with the PE# obtained from
  46. the RTT to "authorize" the device to emit that specific interrupt.
  47. - Error messages just use the RTT.
  48. * Outbound. That's where the tricky part is.
  49. Like other PCI host bridges, the Power8 IODA2 PHB supports "windows"
  50. from the CPU address space to the PCI address space. There is one M32
  51. window and sixteen M64 windows. They have different characteristics.
  52. First what they have in common: they forward a configurable portion of
  53. the CPU address space to the PCIe bus and must be naturally aligned
  54. power of two in size. The rest is different:
  55. - The M32 window:
  56. * Is limited to 4GB in size.
  57. * Drops the top bits of the address (above the size) and replaces
  58. them with a configurable value. This is typically used to generate
  59. 32-bit PCIe accesses. We configure that window at boot from FW and
  60. don't touch it from Linux; it's usually set to forward a 2GB
  61. portion of address space from the CPU to PCIe
  62. 0x8000_0000..0xffff_ffff. (Note: The top 64KB are actually
  63. reserved for MSIs but this is not a problem at this point; we just
  64. need to ensure Linux doesn't assign anything there, the M32 logic
  65. ignores that however and will forward in that space if we try).
  66. * It is divided into 256 segments of equal size. A table in the chip
  67. maps each segment to a PE#. That allows portions of the MMIO space
  68. to be assigned to PEs on a segment granularity. For a 2GB window,
  69. the segment granularity is 2GB/256 = 8MB.
  70. Now, this is the "main" window we use in Linux today (excluding
  71. SR-IOV). We basically use the trick of forcing the bridge MMIO windows
  72. onto a segment alignment/granularity so that the space behind a bridge
  73. can be assigned to a PE.
  74. Ideally we would like to be able to have individual functions in PEs
  75. but that would mean using a completely different address allocation
  76. scheme where individual function BARs can be "grouped" to fit in one or
  77. more segments.
  78. - The M64 windows:
  79. * Must be at least 256MB in size.
  80. * Do not translate addresses (the address on PCIe is the same as the
  81. address on the PowerBus). There is a way to also set the top 14
  82. bits which are not conveyed by PowerBus but we don't use this.
  83. * Can be configured to be segmented. When not segmented, we can
  84. specify the PE# for the entire window. When segmented, a window
  85. has 256 segments; however, there is no table for mapping a segment
  86. to a PE#. The segment number *is* the PE#.
  87. * Support overlaps. If an address is covered by multiple windows,
  88. there's a defined ordering for which window applies.
  89. We have code (fairly new compared to the M32 stuff) that exploits that
  90. for large BARs in 64-bit space:
  91. We configure an M64 window to cover the entire region of address space
  92. that has been assigned by FW for the PHB (about 64GB, ignore the space
  93. for the M32, it comes out of a different "reserve"). We configure it
  94. as segmented.
  95. Then we do the same thing as with M32, using the bridge alignment
  96. trick, to match to those giant segments.
  97. Since we cannot remap, we have two additional constraints:
  98. - We do the PE# allocation *after* the 64-bit space has been assigned
  99. because the addresses we use directly determine the PE#. We then
  100. update the M32 PE# for the devices that use both 32-bit and 64-bit
  101. spaces or assign the remaining PE# to 32-bit only devices.
  102. - We cannot "group" segments in HW, so if a device ends up using more
  103. than one segment, we end up with more than one PE#. There is a HW
  104. mechanism to make the freeze state cascade to "companion" PEs but
  105. that only works for PCIe error messages (typically used so that if
  106. you freeze a switch, it freezes all its children). So we do it in
  107. SW. We lose a bit of effectiveness of EEH in that case, but that's
  108. the best we found. So when any of the PEs freezes, we freeze the
  109. other ones for that "domain". We thus introduce the concept of
  110. "master PE" which is the one used for DMA, MSIs, etc., and "secondary
  111. PEs" that are used for the remaining M64 segments.
  112. We would like to investigate using additional M64 windows in "single
  113. PE" mode to overlay over specific BARs to work around some of that, for
  114. example for devices with very large BARs, e.g., GPUs. It would make
  115. sense, but we haven't done it yet.
  116. 3. Considerations for SR-IOV on PowerKVM
  117. * SR-IOV Background
  118. The PCIe SR-IOV feature allows a single Physical Function (PF) to
  119. support several Virtual Functions (VFs). Registers in the PF's SR-IOV
  120. Capability control the number of VFs and whether they are enabled.
  121. When VFs are enabled, they appear in Configuration Space like normal
  122. PCI devices, but the BARs in VF config space headers are unusual. For
  123. a non-VF device, software uses BARs in the config space header to
  124. discover the BAR sizes and assign addresses for them. For VF devices,
  125. software uses VF BAR registers in the *PF* SR-IOV Capability to
  126. discover sizes and assign addresses. The BARs in the VF's config space
  127. header are read-only zeros.
  128. When a VF BAR in the PF SR-IOV Capability is programmed, it sets the
  129. base address for all the corresponding VF(n) BARs. For example, if the
  130. PF SR-IOV Capability is programmed to enable eight VFs, and it has a
  131. 1MB VF BAR0, the address in that VF BAR sets the base of an 8MB region.
  132. This region is divided into eight contiguous 1MB regions, each of which
  133. is a BAR0 for one of the VFs. Note that even though the VF BAR
  134. describes an 8MB region, the alignment requirement is for a single VF,
  135. i.e., 1MB in this example.
  136. There are several strategies for isolating VFs in PEs:
  137. - M32 window: There's one M32 window, and it is split into 256
  138. equally-sized segments. The finest granularity possible is a 256MB
  139. window with 1MB segments. VF BARs that are 1MB or larger could be
  140. mapped to separate PEs in this window. Each segment can be
  141. individually mapped to a PE via the lookup table, so this is quite
  142. flexible, but it works best when all the VF BARs are the same size. If
  143. they are different sizes, the entire window has to be small enough that
  144. the segment size matches the smallest VF BAR, which means larger VF
  145. BARs span several segments.
  146. - Non-segmented M64 window: A non-segmented M64 window is mapped entirely
  147. to a single PE, so it could only isolate one VF.
  148. - Single segmented M64 windows: A segmented M64 window could be used just
  149. like the M32 window, but the segments can't be individually mapped to
  150. PEs (the segment number is the PE#), so there isn't as much
  151. flexibility. A VF with multiple BARs would have to be in a "domain" of
  152. multiple PEs, which is not as well isolated as a single PE.
  153. - Multiple segmented M64 windows: As usual, each window is split into 256
  154. equally-sized segments, and the segment number is the PE#. But if we
  155. use several M64 windows, they can be set to different base addresses
  156. and different segment sizes. If we have VFs that each have a 1MB BAR
  157. and a 32MB BAR, we could use one M64 window to assign 1MB segments and
  158. another M64 window to assign 32MB segments.
  159. Finally, the plan to use M64 windows for SR-IOV, which will be described
  160. more in the next two sections. For a given VF BAR, we need to
  161. effectively reserve the entire 256 segments (256 * VF BAR size) and
  162. position the VF BAR to start at the beginning of a free range of
  163. segments/PEs inside that M64 window.
  164. The goal is of course to be able to give a separate PE for each VF.
  165. The IODA2 platform has 16 M64 windows, which are used to map MMIO
  166. range to PE#. Each M64 window defines one MMIO range and this range is
  167. divided into 256 segments, with each segment corresponding to one PE.
  168. We decide to leverage this M64 window to map VFs to individual PEs, since
  169. SR-IOV VF BARs are all the same size.
  170. But doing so introduces another problem: total_VFs is usually smaller
  171. than the number of M64 window segments, so if we map one VF BAR directly
  172. to one M64 window, some part of the M64 window will map to another
  173. device's MMIO range.
  174. IODA supports 256 PEs, so segmented windows contain 256 segments, so if
  175. total_VFs is less than 256, we have the situation in Figure 1.0, where
  176. segments [total_VFs, 255] of the M64 window may map to some MMIO range on
  177. other devices:
  178. 0 1 total_VFs - 1
  179. +------+------+- -+------+------+
  180. | | | ... | | |
  181. +------+------+- -+------+------+
  182. VF(n) BAR space
  183. 0 1 total_VFs - 1 255
  184. +------+------+- -+------+------+- -+------+------+
  185. | | | ... | | | ... | | |
  186. +------+------+- -+------+------+- -+------+------+
  187. M64 window
  188. Figure 1.0 Direct map VF(n) BAR space
  189. Our current solution is to allocate 256 segments even if the VF(n) BAR
  190. space doesn't need that much, as shown in Figure 1.1:
  191. 0 1 total_VFs - 1 255
  192. +------+------+- -+------+------+- -+------+------+
  193. | | | ... | | | ... | | |
  194. +------+------+- -+------+------+- -+------+------+
  195. VF(n) BAR space + extra
  196. 0 1 total_VFs - 1 255
  197. +------+------+- -+------+------+- -+------+------+
  198. | | | ... | | | ... | | |
  199. +------+------+- -+------+------+- -+------+------+
  200. M64 window
  201. Figure 1.1 Map VF(n) BAR space + extra
  202. Allocating the extra space ensures that the entire M64 window will be
  203. assigned to this one SR-IOV device and none of the space will be
  204. available for other devices. Note that this only expands the space
  205. reserved in software; there are still only total_VFs VFs, and they only
  206. respond to segments [0, total_VFs - 1]. There's nothing in hardware that
  207. responds to segments [total_VFs, 255].
  208. 4. Implications for the Generic PCI Code
  209. The PCIe SR-IOV spec requires that the base of the VF(n) BAR space be
  210. aligned to the size of an individual VF BAR.
  211. In IODA2, the MMIO address determines the PE#. If the address is in an M32
  212. window, we can set the PE# by updating the table that translates segments
  213. to PE#s. Similarly, if the address is in an unsegmented M64 window, we can
  214. set the PE# for the window. But if it's in a segmented M64 window, the
  215. segment number is the PE#.
  216. Therefore, the only way to control the PE# for a VF is to change the base
  217. of the VF(n) BAR space in the VF BAR. If the PCI core allocates the exact
  218. amount of space required for the VF(n) BAR space, the VF BAR value is fixed
  219. and cannot be changed.
  220. On the other hand, if the PCI core allocates additional space, the VF BAR
  221. value can be changed as long as the entire VF(n) BAR space remains inside
  222. the space allocated by the core.
  223. Ideally the segment size will be the same as an individual VF BAR size.
  224. Then each VF will be in its own PE. The VF BARs (and therefore the PE#s)
  225. are contiguous. If VF0 is in PE(x), then VF(n) is in PE(x+n). If we
  226. allocate 256 segments, there are (256 - numVFs) choices for the PE# of VF0.
  227. If the segment size is smaller than the VF BAR size, it will take several
  228. segments to cover a VF BAR, and a VF will be in several PEs. This is
  229. possible, but the isolation isn't as good, and it reduces the number of PE#
  230. choices because instead of consuming only numVFs segments, the VF(n) BAR
  231. space will consume (numVFs * n) segments. That means there aren't as many
  232. available segments for adjusting base of the VF(n) BAR space.