pci-error-recovery.rst 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. .. SPDX-License-Identifier: GPL-2.0
  2. ==================
  3. PCI Error Recovery
  4. ==================
  5. :Authors: - Linas Vepstas <linasvepstas@gmail.com>
  6. - Richard Lary <rlary@us.ibm.com>
  7. - Mike Mason <mmlnx@us.ibm.com>
  8. Many PCI bus controllers are able to detect a variety of hardware
  9. PCI errors on the bus, such as parity errors on the data and address
  10. buses, as well as SERR and PERR errors. Some of the more advanced
  11. chipsets are able to deal with these errors; these include PCI-E chipsets,
  12. and the PCI-host bridges found on IBM Power4, Power5 and Power6-based
  13. pSeries boxes. A typical action taken is to disconnect the affected device,
  14. halting all I/O to it. The goal of a disconnection is to avoid system
  15. corruption; for example, to halt system memory corruption due to DMAs
  16. to "wild" addresses. Typically, a reconnection mechanism is also
  17. offered, so that the affected PCI device(s) are reset and put back
  18. into working condition. The reset phase requires coordination
  19. between the affected device drivers and the PCI controller chip.
  20. This document describes a generic API for notifying device drivers
  21. of a bus disconnection, and then performing error recovery.
  22. This API is currently implemented in the 2.6.16 and later kernels.
  23. Reporting and recovery is performed in several steps. First, when
  24. a PCI hardware error has resulted in a bus disconnect, that event
  25. is reported as soon as possible to all affected device drivers,
  26. including multiple instances of a device driver on multi-function
  27. cards. This allows device drivers to avoid deadlocking in spinloops,
  28. waiting for some i/o-space register to change, when it never will.
  29. It also gives the drivers a chance to defer incoming I/O as
  30. needed.
  31. Next, recovery is performed in several stages. Most of the complexity
  32. is forced by the need to handle multi-function devices, that is,
  33. devices that have multiple device drivers associated with them.
  34. In the first stage, each driver is allowed to indicate what type
  35. of reset it desires, the choices being a simple re-enabling of I/O
  36. or requesting a slot reset.
  37. If any driver requests a slot reset, that is what will be done.
  38. After a reset and/or a re-enabling of I/O, all drivers are
  39. again notified, so that they may then perform any device setup/config
  40. that may be required. After these have all completed, a final
  41. "resume normal operations" event is sent out.
  42. The biggest reason for choosing a kernel-based implementation rather
  43. than a user-space implementation was the need to deal with bus
  44. disconnects of PCI devices attached to storage media, and, in particular,
  45. disconnects from devices holding the root file system. If the root
  46. file system is disconnected, a user-space mechanism would have to go
  47. through a large number of contortions to complete recovery. Almost all
  48. of the current Linux file systems are not tolerant of disconnection
  49. from/reconnection to their underlying block device. By contrast,
  50. bus errors are easy to manage in the device driver. Indeed, most
  51. device drivers already handle very similar recovery procedures;
  52. for example, the SCSI-generic layer already provides significant
  53. mechanisms for dealing with SCSI bus errors and SCSI bus resets.
  54. Detailed Design
  55. ===============
  56. Design and implementation details below, based on a chain of
  57. public email discussions with Ben Herrenschmidt, circa 5 April 2005.
  58. The error recovery API support is exposed to the driver in the form of
  59. a structure of function pointers pointed to by a new field in struct
  60. pci_driver. A driver that fails to provide the structure is "non-aware",
  61. and the actual recovery steps taken are platform dependent. The
  62. arch/powerpc implementation will simulate a PCI hotplug remove/add.
  63. This structure has the form::
  64. struct pci_error_handlers
  65. {
  66. int (*error_detected)(struct pci_dev *dev, pci_channel_state_t);
  67. int (*mmio_enabled)(struct pci_dev *dev);
  68. int (*slot_reset)(struct pci_dev *dev);
  69. void (*resume)(struct pci_dev *dev);
  70. void (*cor_error_detected)(struct pci_dev *dev);
  71. };
  72. The possible channel states are::
  73. typedef enum {
  74. pci_channel_io_normal, /* I/O channel is in normal state */
  75. pci_channel_io_frozen, /* I/O to channel is blocked */
  76. pci_channel_io_perm_failure, /* PCI card is dead */
  77. } pci_channel_state_t;
  78. Possible return values are::
  79. enum pci_ers_result {
  80. PCI_ERS_RESULT_NONE, /* no result/none/not supported in device driver */
  81. PCI_ERS_RESULT_CAN_RECOVER, /* Device driver can recover without slot reset */
  82. PCI_ERS_RESULT_NEED_RESET, /* Device driver wants slot to be reset. */
  83. PCI_ERS_RESULT_DISCONNECT, /* Device has completely failed, is unrecoverable */
  84. PCI_ERS_RESULT_RECOVERED, /* Device driver is fully recovered and operational */
  85. };
  86. A driver does not have to implement all of these callbacks; however,
  87. if it implements any, it must implement error_detected(). If a callback
  88. is not implemented, the corresponding feature is considered unsupported.
  89. For example, if mmio_enabled() and resume() aren't there, then it
  90. is assumed that the driver is not doing any direct recovery and requires
  91. a slot reset. Typically a driver will want to know about
  92. a slot_reset().
  93. The actual steps taken by a platform to recover from a PCI error
  94. event will be platform-dependent, but will follow the general
  95. sequence described below.
  96. STEP 0: Error Event
  97. -------------------
  98. A PCI bus error is detected by the PCI hardware. On powerpc, the slot
  99. is isolated, in that all I/O is blocked: all reads return 0xffffffff,
  100. all writes are ignored.
  101. STEP 1: Notification
  102. --------------------
  103. Platform calls the error_detected() callback on every instance of
  104. every driver affected by the error.
  105. At this point, the device might not be accessible anymore, depending on
  106. the platform (the slot will be isolated on powerpc). The driver may
  107. already have "noticed" the error because of a failing I/O, but this
  108. is the proper "synchronization point", that is, it gives the driver
  109. a chance to cleanup, waiting for pending stuff (timers, whatever, etc...)
  110. to complete; it can take semaphores, schedule, etc... everything but
  111. touch the device. Within this function and after it returns, the driver
  112. shouldn't do any new IOs. Called in task context. This is sort of a
  113. "quiesce" point. See note about interrupts at the end of this doc.
  114. All drivers participating in this system must implement this call.
  115. The driver must return one of the following result codes:
  116. - PCI_ERS_RESULT_CAN_RECOVER
  117. Driver returns this if it thinks it might be able to recover
  118. the HW by just banging IOs or if it wants to be given
  119. a chance to extract some diagnostic information (see
  120. mmio_enable, below).
  121. - PCI_ERS_RESULT_NEED_RESET
  122. Driver returns this if it can't recover without a
  123. slot reset.
  124. - PCI_ERS_RESULT_DISCONNECT
  125. Driver returns this if it doesn't want to recover at all.
  126. The next step taken will depend on the result codes returned by the
  127. drivers.
  128. If all drivers on the segment/slot return PCI_ERS_RESULT_CAN_RECOVER,
  129. then the platform should re-enable IOs on the slot (or do nothing in
  130. particular, if the platform doesn't isolate slots), and recovery
  131. proceeds to STEP 2 (MMIO Enable).
  132. If any driver requested a slot reset (by returning PCI_ERS_RESULT_NEED_RESET),
  133. then recovery proceeds to STEP 4 (Slot Reset).
  134. If the platform is unable to recover the slot, the next step
  135. is STEP 6 (Permanent Failure).
  136. .. note::
  137. The current powerpc implementation assumes that a device driver will
  138. *not* schedule or semaphore in this routine; the current powerpc
  139. implementation uses one kernel thread to notify all devices;
  140. thus, if one device sleeps/schedules, all devices are affected.
  141. Doing better requires complex multi-threaded logic in the error
  142. recovery implementation (e.g. waiting for all notification threads
  143. to "join" before proceeding with recovery.) This seems excessively
  144. complex and not worth implementing.
  145. The current powerpc implementation doesn't much care if the device
  146. attempts I/O at this point, or not. I/Os will fail, returning
  147. a value of 0xff on read, and writes will be dropped. If more than
  148. EEH_MAX_FAILS I/Os are attempted to a frozen adapter, EEH
  149. assumes that the device driver has gone into an infinite loop
  150. and prints an error to syslog. A reboot is then required to
  151. get the device working again.
  152. STEP 2: MMIO Enabled
  153. --------------------
  154. The platform re-enables MMIO to the device (but typically not the
  155. DMA), and then calls the mmio_enabled() callback on all affected
  156. device drivers.
  157. This is the "early recovery" call. IOs are allowed again, but DMA is
  158. not, with some restrictions. This is NOT a callback for the driver to
  159. start operations again, only to peek/poke at the device, extract diagnostic
  160. information, if any, and eventually do things like trigger a device local
  161. reset or some such, but not restart operations. This callback is made if
  162. all drivers on a segment agree that they can try to recover and if no automatic
  163. link reset was performed by the HW. If the platform can't just re-enable IOs
  164. without a slot reset or a link reset, it will not call this callback, and
  165. instead will have gone directly to STEP 3 (Link Reset) or STEP 4 (Slot Reset)
  166. .. note::
  167. The following is proposed; no platform implements this yet:
  168. Proposal: All I/Os should be done _synchronously_ from within
  169. this callback, errors triggered by them will be returned via
  170. the normal pci_check_whatever() API, no new error_detected()
  171. callback will be issued due to an error happening here. However,
  172. such an error might cause IOs to be re-blocked for the whole
  173. segment, and thus invalidate the recovery that other devices
  174. on the same segment might have done, forcing the whole segment
  175. into one of the next states, that is, link reset or slot reset.
  176. The driver should return one of the following result codes:
  177. - PCI_ERS_RESULT_RECOVERED
  178. Driver returns this if it thinks the device is fully
  179. functional and thinks it is ready to start
  180. normal driver operations again. There is no
  181. guarantee that the driver will actually be
  182. allowed to proceed, as another driver on the
  183. same segment might have failed and thus triggered a
  184. slot reset on platforms that support it.
  185. - PCI_ERS_RESULT_NEED_RESET
  186. Driver returns this if it thinks the device is not
  187. recoverable in its current state and it needs a slot
  188. reset to proceed.
  189. - PCI_ERS_RESULT_DISCONNECT
  190. Same as above. Total failure, no recovery even after
  191. reset driver dead. (To be defined more precisely)
  192. The next step taken depends on the results returned by the drivers.
  193. If all drivers returned PCI_ERS_RESULT_RECOVERED, then the platform
  194. proceeds to either STEP3 (Link Reset) or to STEP 5 (Resume Operations).
  195. If any driver returned PCI_ERS_RESULT_NEED_RESET, then the platform
  196. proceeds to STEP 4 (Slot Reset)
  197. STEP 3: Link Reset
  198. ------------------
  199. The platform resets the link. This is a PCI-Express specific step
  200. and is done whenever a fatal error has been detected that can be
  201. "solved" by resetting the link.
  202. STEP 4: Slot Reset
  203. ------------------
  204. In response to a return value of PCI_ERS_RESULT_NEED_RESET, the
  205. platform will perform a slot reset on the requesting PCI device(s).
  206. The actual steps taken by a platform to perform a slot reset
  207. will be platform-dependent. Upon completion of slot reset, the
  208. platform will call the device slot_reset() callback.
  209. Powerpc platforms implement two levels of slot reset:
  210. soft reset(default) and fundamental(optional) reset.
  211. Powerpc soft reset consists of asserting the adapter #RST line and then
  212. restoring the PCI BARs and PCI configuration header to a state
  213. that is equivalent to what it would be after a fresh system
  214. power-on followed by power-on BIOS/system firmware initialization.
  215. Soft reset is also known as hot-reset.
  216. Powerpc fundamental reset is supported by PCI Express cards only
  217. and results in device's state machines, hardware logic, port states and
  218. configuration registers to initialize to their default conditions.
  219. For most PCI devices, a soft reset will be sufficient for recovery.
  220. Optional fundamental reset is provided to support a limited number
  221. of PCI Express devices for which a soft reset is not sufficient
  222. for recovery.
  223. If the platform supports PCI hotplug, then the reset might be
  224. performed by toggling the slot electrical power off/on.
  225. It is important for the platform to restore the PCI config space
  226. to the "fresh poweron" state, rather than the "last state". After
  227. a slot reset, the device driver will almost always use its standard
  228. device initialization routines, and an unusual config space setup
  229. may result in hung devices, kernel panics, or silent data corruption.
  230. This call gives drivers the chance to re-initialize the hardware
  231. (re-download firmware, etc.). At this point, the driver may assume
  232. that the card is in a fresh state and is fully functional. The slot
  233. is unfrozen and the driver has full access to PCI config space,
  234. memory mapped I/O space and DMA. Interrupts (Legacy, MSI, or MSI-X)
  235. will also be available.
  236. Drivers should not restart normal I/O processing operations
  237. at this point. If all device drivers report success on this
  238. callback, the platform will call resume() to complete the sequence,
  239. and let the driver restart normal I/O processing.
  240. A driver can still return a critical failure for this function if
  241. it can't get the device operational after reset. If the platform
  242. previously tried a soft reset, it might now try a hard reset (power
  243. cycle) and then call slot_reset() again. If the device still can't
  244. be recovered, there is nothing more that can be done; the platform
  245. will typically report a "permanent failure" in such a case. The
  246. device will be considered "dead" in this case.
  247. Drivers for multi-function cards will need to coordinate among
  248. themselves as to which driver instance will perform any "one-shot"
  249. or global device initialization. For example, the Symbios sym53cxx2
  250. driver performs device init only from PCI function 0::
  251. + if (PCI_FUNC(pdev->devfn) == 0)
  252. + sym_reset_scsi_bus(np, 0);
  253. Result codes:
  254. - PCI_ERS_RESULT_DISCONNECT
  255. Same as above.
  256. Drivers for PCI Express cards that require a fundamental reset must
  257. set the needs_freset bit in the pci_dev structure in their probe function.
  258. For example, the QLogic qla2xxx driver sets the needs_freset bit for certain
  259. PCI card types::
  260. + /* Set EEH reset type to fundamental if required by hba */
  261. + if (IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha))
  262. + pdev->needs_freset = 1;
  263. +
  264. Platform proceeds either to STEP 5 (Resume Operations) or STEP 6 (Permanent
  265. Failure).
  266. .. note::
  267. The current powerpc implementation does not try a power-cycle
  268. reset if the driver returned PCI_ERS_RESULT_DISCONNECT.
  269. However, it probably should.
  270. STEP 5: Resume Operations
  271. -------------------------
  272. The platform will call the resume() callback on all affected device
  273. drivers if all drivers on the segment have returned
  274. PCI_ERS_RESULT_RECOVERED from one of the 3 previous callbacks.
  275. The goal of this callback is to tell the driver to restart activity,
  276. that everything is back and running. This callback does not return
  277. a result code.
  278. At this point, if a new error happens, the platform will restart
  279. a new error recovery sequence.
  280. STEP 6: Permanent Failure
  281. -------------------------
  282. A "permanent failure" has occurred, and the platform cannot recover
  283. the device. The platform will call error_detected() with a
  284. pci_channel_state_t value of pci_channel_io_perm_failure.
  285. The device driver should, at this point, assume the worst. It should
  286. cancel all pending I/O, refuse all new I/O, returning -EIO to
  287. higher layers. The device driver should then clean up all of its
  288. memory and remove itself from kernel operations, much as it would
  289. during system shutdown.
  290. The platform will typically notify the system operator of the
  291. permanent failure in some way. If the device is hotplug-capable,
  292. the operator will probably want to remove and replace the device.
  293. Note, however, not all failures are truly "permanent". Some are
  294. caused by over-heating, some by a poorly seated card. Many
  295. PCI error events are caused by software bugs, e.g. DMAs to
  296. wild addresses or bogus split transactions due to programming
  297. errors. See the discussion in Documentation/arch/powerpc/eeh-pci-error-recovery.rst
  298. for additional detail on real-life experience of the causes of
  299. software errors.
  300. Conclusion; General Remarks
  301. ---------------------------
  302. The way the callbacks are called is platform policy. A platform with
  303. no slot reset capability may want to just "ignore" drivers that can't
  304. recover (disconnect them) and try to let other cards on the same segment
  305. recover. Keep in mind that in most real life cases, though, there will
  306. be only one driver per segment.
  307. Now, a note about interrupts. If you get an interrupt and your
  308. device is dead or has been isolated, there is a problem :)
  309. The current policy is to turn this into a platform policy.
  310. That is, the recovery API only requires that:
  311. - There is no guarantee that interrupt delivery can proceed from any
  312. device on the segment starting from the error detection and until the
  313. slot_reset callback is called, at which point interrupts are expected
  314. to be fully operational.
  315. - There is no guarantee that interrupt delivery is stopped, that is,
  316. a driver that gets an interrupt after detecting an error, or that detects
  317. an error within the interrupt handler such that it prevents proper
  318. ack'ing of the interrupt (and thus removal of the source) should just
  319. return IRQ_NOTHANDLED. It's up to the platform to deal with that
  320. condition, typically by masking the IRQ source during the duration of
  321. the error handling. It is expected that the platform "knows" which
  322. interrupts are routed to error-management capable slots and can deal
  323. with temporarily disabling that IRQ number during error processing (this
  324. isn't terribly complex). That means some IRQ latency for other devices
  325. sharing the interrupt, but there is simply no other way. High end
  326. platforms aren't supposed to share interrupts between many devices
  327. anyway :)
  328. .. note::
  329. Implementation details for the powerpc platform are discussed in
  330. the file Documentation/arch/powerpc/eeh-pci-error-recovery.rst
  331. As of this writing, there is a growing list of device drivers with
  332. patches implementing error recovery. Not all of these patches are in
  333. mainline yet. These may be used as "examples":
  334. - drivers/scsi/ipr
  335. - drivers/scsi/sym53c8xx_2
  336. - drivers/scsi/qla2xxx
  337. - drivers/scsi/lpfc
  338. - drivers/next/bnx2.c
  339. - drivers/next/e100.c
  340. - drivers/net/e1000
  341. - drivers/net/e1000e
  342. - drivers/net/ixgbe
  343. - drivers/net/cxgb3
  344. - drivers/net/s2io.c
  345. The cor_error_detected() callback is invoked in handle_error_source() when
  346. the error severity is "correctable". The callback is optional and allows
  347. additional logging to be done if desired. See example:
  348. - drivers/cxl/pci.c
  349. The End
  350. -------