pci-error-recovery.txt 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. PCI Error Recovery
  2. ------------------
  3. February 2, 2006
  4. Current document maintainer:
  5. Linas Vepstas <linasvepstas@gmail.com>
  6. updated by Richard Lary <rlary@us.ibm.com>
  7. and Mike Mason <mmlnx@us.ibm.com> on 27-Jul-2009
  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. busses, 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 DMA's
  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, enum pci_channel_state);
  67. int (*mmio_enabled)(struct pci_dev *dev);
  68. int (*link_reset)(struct pci_dev *dev);
  69. int (*slot_reset)(struct pci_dev *dev);
  70. void (*resume)(struct pci_dev *dev);
  71. };
  72. The possible channel states are:
  73. enum pci_channel_state {
  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. };
  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. If link_reset() is not implemented, the card is assumed to
  92. not care about link resets. Typically a driver will want to know about
  93. a slot_reset().
  94. The actual steps taken by a platform to recover from a PCI error
  95. event will be platform-dependent, but will follow the general
  96. sequence described below.
  97. STEP 0: Error Event
  98. -------------------
  99. A PCI bus error is detected by the PCI hardware. On powerpc, the slot
  100. is isolated, in that all I/O is blocked: all reads return 0xffffffff,
  101. all writes are ignored.
  102. STEP 1: Notification
  103. --------------------
  104. Platform calls the error_detected() callback on every instance of
  105. every driver affected by the error.
  106. At this point, the device might not be accessible anymore, depending on
  107. the platform (the slot will be isolated on powerpc). The driver may
  108. already have "noticed" the error because of a failing I/O, but this
  109. is the proper "synchronization point", that is, it gives the driver
  110. a chance to cleanup, waiting for pending stuff (timers, whatever, etc...)
  111. to complete; it can take semaphores, schedule, etc... everything but
  112. touch the device. Within this function and after it returns, the driver
  113. shouldn't do any new IOs. Called in task context. This is sort of a
  114. "quiesce" point. See note about interrupts at the end of this doc.
  115. All drivers participating in this system must implement this call.
  116. The driver must return one of the following result codes:
  117. - PCI_ERS_RESULT_CAN_RECOVER:
  118. Driver returns this if it thinks it might be able to recover
  119. the HW by just banging IOs or if it wants to be given
  120. a chance to extract some diagnostic information (see
  121. mmio_enable, below).
  122. - PCI_ERS_RESULT_NEED_RESET:
  123. Driver returns this if it can't recover without a
  124. slot reset.
  125. - PCI_ERS_RESULT_DISCONNECT:
  126. Driver returns this if it doesn't want to recover at all.
  127. The next step taken will depend on the result codes returned by the
  128. drivers.
  129. If all drivers on the segment/slot return PCI_ERS_RESULT_CAN_RECOVER,
  130. then the platform should re-enable IOs on the slot (or do nothing in
  131. particular, if the platform doesn't isolate slots), and recovery
  132. proceeds to STEP 2 (MMIO Enable).
  133. If any driver requested a slot reset (by returning PCI_ERS_RESULT_NEED_RESET),
  134. then recovery proceeds to STEP 4 (Slot Reset).
  135. If the platform is unable to recover the slot, the next step
  136. is STEP 6 (Permanent Failure).
  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/O's will fail, returning
  147. >>> a value of 0xff on read, and writes will be dropped. If more than
  148. >>> EEH_MAX_FAILS I/O's 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. >>> The following is proposed; no platform implements this yet:
  167. >>> Proposal: All I/O's should be done _synchronously_ from within
  168. >>> this callback, errors triggered by them will be returned via
  169. >>> the normal pci_check_whatever() API, no new error_detected()
  170. >>> callback will be issued due to an error happening here. However,
  171. >>> such an error might cause IOs to be re-blocked for the whole
  172. >>> segment, and thus invalidate the recovery that other devices
  173. >>> on the same segment might have done, forcing the whole segment
  174. >>> into one of the next states, that is, link reset or slot reset.
  175. The driver should return one of the following result codes:
  176. - PCI_ERS_RESULT_RECOVERED
  177. Driver returns this if it thinks the device is fully
  178. functional and thinks it is ready to start
  179. normal driver operations again. There is no
  180. guarantee that the driver will actually be
  181. allowed to proceed, as another driver on the
  182. same segment might have failed and thus triggered a
  183. slot reset on platforms that support it.
  184. - PCI_ERS_RESULT_NEED_RESET
  185. Driver returns this if it thinks the device is not
  186. recoverable in its current state and it needs a slot
  187. reset to proceed.
  188. - PCI_ERS_RESULT_DISCONNECT
  189. Same as above. Total failure, no recovery even after
  190. reset driver dead. (To be defined more precisely)
  191. The next step taken depends on the results returned by the drivers.
  192. If all drivers returned PCI_ERS_RESULT_RECOVERED, then the platform
  193. proceeds to either STEP3 (Link Reset) or to STEP 5 (Resume Operations).
  194. If any driver returned PCI_ERS_RESULT_NEED_RESET, then the platform
  195. proceeds to STEP 4 (Slot Reset)
  196. STEP 3: Link Reset
  197. ------------------
  198. The platform resets the link, and then calls the link_reset() callback
  199. on all affected device drivers. This is a PCI-Express specific state
  200. and is done whenever a non-fatal error has been detected that can be
  201. "solved" by resetting the link. This call informs the driver of the
  202. reset and the driver should check to see if the device appears to be
  203. in working condition.
  204. The driver is not supposed to restart normal driver I/O operations
  205. at this point. It should limit itself to "probing" the device to
  206. check its recoverability status. If all is right, then the platform
  207. will call resume() once all drivers have ack'd link_reset().
  208. Result codes:
  209. (identical to STEP 3 (MMIO Enabled)
  210. The platform then proceeds to either STEP 4 (Slot Reset) or STEP 5
  211. (Resume Operations).
  212. >>> The current powerpc implementation does not implement this callback.
  213. STEP 4: Slot Reset
  214. ------------------
  215. In response to a return value of PCI_ERS_RESULT_NEED_RESET, the
  216. the platform will perform a slot reset on the requesting PCI device(s).
  217. The actual steps taken by a platform to perform a slot reset
  218. will be platform-dependent. Upon completion of slot reset, the
  219. platform will call the device slot_reset() callback.
  220. Powerpc platforms implement two levels of slot reset:
  221. soft reset(default) and fundamental(optional) reset.
  222. Powerpc soft reset consists of asserting the adapter #RST line and then
  223. restoring the PCI BAR's and PCI configuration header to a state
  224. that is equivalent to what it would be after a fresh system
  225. power-on followed by power-on BIOS/system firmware initialization.
  226. Soft reset is also known as hot-reset.
  227. Powerpc fundamental reset is supported by PCI Express cards only
  228. and results in device's state machines, hardware logic, port states and
  229. configuration registers to initialize to their default conditions.
  230. For most PCI devices, a soft reset will be sufficient for recovery.
  231. Optional fundamental reset is provided to support a limited number
  232. of PCI Express PCI devices for which a soft reset is not sufficient
  233. for recovery.
  234. If the platform supports PCI hotplug, then the reset might be
  235. performed by toggling the slot electrical power off/on.
  236. It is important for the platform to restore the PCI config space
  237. to the "fresh poweron" state, rather than the "last state". After
  238. a slot reset, the device driver will almost always use its standard
  239. device initialization routines, and an unusual config space setup
  240. may result in hung devices, kernel panics, or silent data corruption.
  241. This call gives drivers the chance to re-initialize the hardware
  242. (re-download firmware, etc.). At this point, the driver may assume
  243. that the card is in a fresh state and is fully functional. The slot
  244. is unfrozen and the driver has full access to PCI config space,
  245. memory mapped I/O space and DMA. Interrupts (Legacy, MSI, or MSI-X)
  246. will also be available.
  247. Drivers should not restart normal I/O processing operations
  248. at this point. If all device drivers report success on this
  249. callback, the platform will call resume() to complete the sequence,
  250. and let the driver restart normal I/O processing.
  251. A driver can still return a critical failure for this function if
  252. it can't get the device operational after reset. If the platform
  253. previously tried a soft reset, it might now try a hard reset (power
  254. cycle) and then call slot_reset() again. It the device still can't
  255. be recovered, there is nothing more that can be done; the platform
  256. will typically report a "permanent failure" in such a case. The
  257. device will be considered "dead" in this case.
  258. Drivers for multi-function cards will need to coordinate among
  259. themselves as to which driver instance will perform any "one-shot"
  260. or global device initialization. For example, the Symbios sym53cxx2
  261. driver performs device init only from PCI function 0:
  262. + if (PCI_FUNC(pdev->devfn) == 0)
  263. + sym_reset_scsi_bus(np, 0);
  264. Result codes:
  265. - PCI_ERS_RESULT_DISCONNECT
  266. Same as above.
  267. Drivers for PCI Express cards that require a fundamental reset must
  268. set the needs_freset bit in the pci_dev structure in their probe function.
  269. For example, the QLogic qla2xxx driver sets the needs_freset bit for certain
  270. PCI card types:
  271. + /* Set EEH reset type to fundamental if required by hba */
  272. + if (IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha))
  273. + pdev->needs_freset = 1;
  274. +
  275. Platform proceeds either to STEP 5 (Resume Operations) or STEP 6 (Permanent
  276. Failure).
  277. >>> The current powerpc implementation does not try a power-cycle
  278. >>> reset if the driver returned PCI_ERS_RESULT_DISCONNECT.
  279. >>> However, it probably should.
  280. STEP 5: Resume Operations
  281. -------------------------
  282. The platform will call the resume() callback on all affected device
  283. drivers if all drivers on the segment have returned
  284. PCI_ERS_RESULT_RECOVERED from one of the 3 previous callbacks.
  285. The goal of this callback is to tell the driver to restart activity,
  286. that everything is back and running. This callback does not return
  287. a result code.
  288. At this point, if a new error happens, the platform will restart
  289. a new error recovery sequence.
  290. STEP 6: Permanent Failure
  291. -------------------------
  292. A "permanent failure" has occurred, and the platform cannot recover
  293. the device. The platform will call error_detected() with a
  294. pci_channel_state value of pci_channel_io_perm_failure.
  295. The device driver should, at this point, assume the worst. It should
  296. cancel all pending I/O, refuse all new I/O, returning -EIO to
  297. higher layers. The device driver should then clean up all of its
  298. memory and remove itself from kernel operations, much as it would
  299. during system shutdown.
  300. The platform will typically notify the system operator of the
  301. permanent failure in some way. If the device is hotplug-capable,
  302. the operator will probably want to remove and replace the device.
  303. Note, however, not all failures are truly "permanent". Some are
  304. caused by over-heating, some by a poorly seated card. Many
  305. PCI error events are caused by software bugs, e.g. DMA's to
  306. wild addresses or bogus split transactions due to programming
  307. errors. See the discussion in powerpc/eeh-pci-error-recovery.txt
  308. for additional detail on real-life experience of the causes of
  309. software errors.
  310. Conclusion; General Remarks
  311. ---------------------------
  312. The way the callbacks are called is platform policy. A platform with
  313. no slot reset capability may want to just "ignore" drivers that can't
  314. recover (disconnect them) and try to let other cards on the same segment
  315. recover. Keep in mind that in most real life cases, though, there will
  316. be only one driver per segment.
  317. Now, a note about interrupts. If you get an interrupt and your
  318. device is dead or has been isolated, there is a problem :)
  319. The current policy is to turn this into a platform policy.
  320. That is, the recovery API only requires that:
  321. - There is no guarantee that interrupt delivery can proceed from any
  322. device on the segment starting from the error detection and until the
  323. slot_reset callback is called, at which point interrupts are expected
  324. to be fully operational.
  325. - There is no guarantee that interrupt delivery is stopped, that is,
  326. a driver that gets an interrupt after detecting an error, or that detects
  327. an error within the interrupt handler such that it prevents proper
  328. ack'ing of the interrupt (and thus removal of the source) should just
  329. return IRQ_NOTHANDLED. It's up to the platform to deal with that
  330. condition, typically by masking the IRQ source during the duration of
  331. the error handling. It is expected that the platform "knows" which
  332. interrupts are routed to error-management capable slots and can deal
  333. with temporarily disabling that IRQ number during error processing (this
  334. isn't terribly complex). That means some IRQ latency for other devices
  335. sharing the interrupt, but there is simply no other way. High end
  336. platforms aren't supposed to share interrupts between many devices
  337. anyway :)
  338. >>> Implementation details for the powerpc platform are discussed in
  339. >>> the file Documentation/powerpc/eeh-pci-error-recovery.txt
  340. >>> As of this writing, there is a growing list of device drivers with
  341. >>> patches implementing error recovery. Not all of these patches are in
  342. >>> mainline yet. These may be used as "examples":
  343. >>>
  344. >>> drivers/scsi/ipr
  345. >>> drivers/scsi/sym53c8xx_2
  346. >>> drivers/scsi/qla2xxx
  347. >>> drivers/scsi/lpfc
  348. >>> drivers/next/bnx2.c
  349. >>> drivers/next/e100.c
  350. >>> drivers/net/e1000
  351. >>> drivers/net/e1000e
  352. >>> drivers/net/ixgb
  353. >>> drivers/net/ixgbe
  354. >>> drivers/net/cxgb3
  355. >>> drivers/net/s2io.c
  356. >>> drivers/net/qlge
  357. The End
  358. -------