blob: 0b6bb3ef449ee7a8ee45afe9b4be61a2859ac8e3 [file] [log] [blame]
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06001
2 PCI Error Recovery
3 ------------------
Linas Vepstasc9ab8b62006-02-03 03:03:45 -08004 February 2, 2006
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005
Linas Vepstasc9ab8b62006-02-03 03:03:45 -08006 Current document maintainer:
Mike Masonfe14acd2009-07-30 15:39:29 -07007 Linas Vepstas <linasvepstas@gmail.com>
8 updated by Richard Lary <rlary@us.ibm.com>
9 and Mike Mason <mmlnx@us.ibm.com> on 27-Jul-2009
linas@austin.ibm.com065c6352005-12-02 19:16:18 -060010
11
Linas Vepstasc9ab8b62006-02-03 03:03:45 -080012Many PCI bus controllers are able to detect a variety of hardware
13PCI errors on the bus, such as parity errors on the data and address
Cao jin97e4e952017-03-21 21:24:18 +080014buses, as well as SERR and PERR errors. Some of the more advanced
Linas Vepstasc9ab8b62006-02-03 03:03:45 -080015chipsets are able to deal with these errors; these include PCI-E chipsets,
Mike Masonfe14acd2009-07-30 15:39:29 -070016and the PCI-host bridges found on IBM Power4, Power5 and Power6-based
17pSeries boxes. A typical action taken is to disconnect the affected device,
Linas Vepstasc9ab8b62006-02-03 03:03:45 -080018halting all I/O to it. The goal of a disconnection is to avoid system
19corruption; for example, to halt system memory corruption due to DMA's
20to "wild" addresses. Typically, a reconnection mechanism is also
21offered, so that the affected PCI device(s) are reset and put back
22into working condition. The reset phase requires coordination
23between the affected device drivers and the PCI controller chip.
24This document describes a generic API for notifying device drivers
25of a bus disconnection, and then performing error recovery.
26This API is currently implemented in the 2.6.16 and later kernels.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -060027
Linas Vepstasc9ab8b62006-02-03 03:03:45 -080028Reporting and recovery is performed in several steps. First, when
29a PCI hardware error has resulted in a bus disconnect, that event
30is reported as soon as possible to all affected device drivers,
31including multiple instances of a device driver on multi-function
32cards. This allows device drivers to avoid deadlocking in spinloops,
33waiting for some i/o-space register to change, when it never will.
34It also gives the drivers a chance to defer incoming I/O as
35needed.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -060036
Linas Vepstasc9ab8b62006-02-03 03:03:45 -080037Next, recovery is performed in several stages. Most of the complexity
38is forced by the need to handle multi-function devices, that is,
39devices that have multiple device drivers associated with them.
40In the first stage, each driver is allowed to indicate what type
41of reset it desires, the choices being a simple re-enabling of I/O
Mike Masonfe14acd2009-07-30 15:39:29 -070042or requesting a slot reset.
Linas Vepstasc9ab8b62006-02-03 03:03:45 -080043
Mike Masonfe14acd2009-07-30 15:39:29 -070044If any driver requests a slot reset, that is what will be done.
45
46After a reset and/or a re-enabling of I/O, all drivers are
Linas Vepstasc9ab8b62006-02-03 03:03:45 -080047again notified, so that they may then perform any device setup/config
48that may be required. After these have all completed, a final
49"resume normal operations" event is sent out.
50
51The biggest reason for choosing a kernel-based implementation rather
52than a user-space implementation was the need to deal with bus
53disconnects of PCI devices attached to storage media, and, in particular,
54disconnects from devices holding the root file system. If the root
55file system is disconnected, a user-space mechanism would have to go
56through a large number of contortions to complete recovery. Almost all
57of the current Linux file systems are not tolerant of disconnection
58from/reconnection to their underlying block device. By contrast,
59bus errors are easy to manage in the device driver. Indeed, most
60device drivers already handle very similar recovery procedures;
61for example, the SCSI-generic layer already provides significant
62mechanisms for dealing with SCSI bus errors and SCSI bus resets.
63
64
65Detailed Design
66---------------
67Design and implementation details below, based on a chain of
68public email discussions with Ben Herrenschmidt, circa 5 April 2005.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -060069
70The error recovery API support is exposed to the driver in the form of
71a structure of function pointers pointed to by a new field in struct
Linas Vepstasc9ab8b62006-02-03 03:03:45 -080072pci_driver. A driver that fails to provide the structure is "non-aware",
73and the actual recovery steps taken are platform dependent. The
74arch/powerpc implementation will simulate a PCI hotplug remove/add.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -060075
76This structure has the form:
linas@austin.ibm.com065c6352005-12-02 19:16:18 -060077struct pci_error_handlers
78{
Linas Vepstasc9ab8b62006-02-03 03:03:45 -080079 int (*error_detected)(struct pci_dev *dev, enum pci_channel_state);
linas@austin.ibm.com065c6352005-12-02 19:16:18 -060080 int (*mmio_enabled)(struct pci_dev *dev);
linas@austin.ibm.com065c6352005-12-02 19:16:18 -060081 int (*slot_reset)(struct pci_dev *dev);
Linas Vepstasc9ab8b62006-02-03 03:03:45 -080082 void (*resume)(struct pci_dev *dev);
linas@austin.ibm.com065c6352005-12-02 19:16:18 -060083};
84
Linas Vepstasc9ab8b62006-02-03 03:03:45 -080085The possible channel states are:
86enum pci_channel_state {
87 pci_channel_io_normal, /* I/O channel is in normal state */
88 pci_channel_io_frozen, /* I/O to channel is blocked */
89 pci_channel_io_perm_failure, /* PCI card is dead */
90};
91
92Possible return values are:
93enum pci_ers_result {
94 PCI_ERS_RESULT_NONE, /* no result/none/not supported in device driver */
95 PCI_ERS_RESULT_CAN_RECOVER, /* Device driver can recover without slot reset */
96 PCI_ERS_RESULT_NEED_RESET, /* Device driver wants slot to be reset. */
97 PCI_ERS_RESULT_DISCONNECT, /* Device has completely failed, is unrecoverable */
98 PCI_ERS_RESULT_RECOVERED, /* Device driver is fully recovered and operational */
99};
100
101A driver does not have to implement all of these callbacks; however,
102if it implements any, it must implement error_detected(). If a callback
103is not implemented, the corresponding feature is considered unsupported.
104For example, if mmio_enabled() and resume() aren't there, then it
105is assumed that the driver is not doing any direct recovery and requires
Michael S. Tsirkin2fd260f2017-01-24 19:35:56 +0200106a slot reset. Typically a driver will want to know about
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800107a slot_reset().
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600108
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800109The actual steps taken by a platform to recover from a PCI error
110event will be platform-dependent, but will follow the general
111sequence described below.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600112
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800113STEP 0: Error Event
114-------------------
Mike Masonfe14acd2009-07-30 15:39:29 -0700115A PCI bus error is detected by the PCI hardware. On powerpc, the slot
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800116is isolated, in that all I/O is blocked: all reads return 0xffffffff,
117all writes are ignored.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600118
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800119
120STEP 1: Notification
121--------------------
122Platform calls the error_detected() callback on every instance of
123every driver affected by the error.
124
125At this point, the device might not be accessible anymore, depending on
126the platform (the slot will be isolated on powerpc). The driver may
127already have "noticed" the error because of a failing I/O, but this
128is the proper "synchronization point", that is, it gives the driver
129a chance to cleanup, waiting for pending stuff (timers, whatever, etc...)
130to complete; it can take semaphores, schedule, etc... everything but
131touch the device. Within this function and after it returns, the driver
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600132shouldn't do any new IOs. Called in task context. This is sort of a
133"quiesce" point. See note about interrupts at the end of this doc.
134
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800135All drivers participating in this system must implement this call.
136The driver must return one of the following result codes:
137 - PCI_ERS_RESULT_CAN_RECOVER:
138 Driver returns this if it thinks it might be able to recover
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600139 the HW by just banging IOs or if it wants to be given
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800140 a chance to extract some diagnostic information (see
141 mmio_enable, below).
142 - PCI_ERS_RESULT_NEED_RESET:
Mike Masonfe14acd2009-07-30 15:39:29 -0700143 Driver returns this if it can't recover without a
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800144 slot reset.
145 - PCI_ERS_RESULT_DISCONNECT:
146 Driver returns this if it doesn't want to recover at all.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600147
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800148The next step taken will depend on the result codes returned by the
149drivers.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600150
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800151If all drivers on the segment/slot return PCI_ERS_RESULT_CAN_RECOVER,
152then the platform should re-enable IOs on the slot (or do nothing in
153particular, if the platform doesn't isolate slots), and recovery
154proceeds to STEP 2 (MMIO Enable).
155
156If any driver requested a slot reset (by returning PCI_ERS_RESULT_NEED_RESET),
157then recovery proceeds to STEP 4 (Slot Reset).
158
159If the platform is unable to recover the slot, the next step
160is STEP 6 (Permanent Failure).
161
162>>> The current powerpc implementation assumes that a device driver will
163>>> *not* schedule or semaphore in this routine; the current powerpc
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600164>>> implementation uses one kernel thread to notify all devices;
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800165>>> thus, if one device sleeps/schedules, all devices are affected.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600166>>> Doing better requires complex multi-threaded logic in the error
167>>> recovery implementation (e.g. waiting for all notification threads
168>>> to "join" before proceeding with recovery.) This seems excessively
169>>> complex and not worth implementing.
170
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800171>>> The current powerpc implementation doesn't much care if the device
172>>> attempts I/O at this point, or not. I/O's will fail, returning
Mike Masonfe14acd2009-07-30 15:39:29 -0700173>>> a value of 0xff on read, and writes will be dropped. If more than
174>>> EEH_MAX_FAILS I/O's are attempted to a frozen adapter, EEH
175>>> assumes that the device driver has gone into an infinite loop
Cao jin97e4e952017-03-21 21:24:18 +0800176>>> and prints an error to syslog. A reboot is then required to
Mike Masonfe14acd2009-07-30 15:39:29 -0700177>>> get the device working again.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600178
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800179STEP 2: MMIO Enabled
180-------------------
181The platform re-enables MMIO to the device (but typically not the
182DMA), and then calls the mmio_enabled() callback on all affected
183device drivers.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600184
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800185This is the "early recovery" call. IOs are allowed again, but DMA is
Mike Masonfe14acd2009-07-30 15:39:29 -0700186not, with some restrictions. This is NOT a callback for the driver to
187start operations again, only to peek/poke at the device, extract diagnostic
188information, if any, and eventually do things like trigger a device local
189reset or some such, but not restart operations. This callback is made if
190all drivers on a segment agree that they can try to recover and if no automatic
191link reset was performed by the HW. If the platform can't just re-enable IOs
192without a slot reset or a link reset, it will not call this callback, and
193instead will have gone directly to STEP 3 (Link Reset) or STEP 4 (Slot Reset)
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600194
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800195>>> The following is proposed; no platform implements this yet:
196>>> Proposal: All I/O's should be done _synchronously_ from within
197>>> this callback, errors triggered by them will be returned via
198>>> the normal pci_check_whatever() API, no new error_detected()
199>>> callback will be issued due to an error happening here. However,
200>>> such an error might cause IOs to be re-blocked for the whole
201>>> segment, and thus invalidate the recovery that other devices
202>>> on the same segment might have done, forcing the whole segment
203>>> into one of the next states, that is, link reset or slot reset.
204
205The driver should return one of the following result codes:
206 - PCI_ERS_RESULT_RECOVERED
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600207 Driver returns this if it thinks the device is fully
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800208 functional and thinks it is ready to start
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600209 normal driver operations again. There is no
210 guarantee that the driver will actually be
211 allowed to proceed, as another driver on the
212 same segment might have failed and thus triggered a
213 slot reset on platforms that support it.
214
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800215 - PCI_ERS_RESULT_NEED_RESET
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600216 Driver returns this if it thinks the device is not
Francis Galieguea33f3222010-04-23 00:08:02 +0200217 recoverable in its current state and it needs a slot
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600218 reset to proceed.
219
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800220 - PCI_ERS_RESULT_DISCONNECT
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600221 Same as above. Total failure, no recovery even after
222 reset driver dead. (To be defined more precisely)
223
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800224The next step taken depends on the results returned by the drivers.
225If all drivers returned PCI_ERS_RESULT_RECOVERED, then the platform
226proceeds to either STEP3 (Link Reset) or to STEP 5 (Resume Operations).
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600227
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800228If any driver returned PCI_ERS_RESULT_NEED_RESET, then the platform
229proceeds to STEP 4 (Slot Reset)
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600230
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800231STEP 3: Link Reset
232------------------
Michael S. Tsirkin2fd260f2017-01-24 19:35:56 +0200233The platform resets the link. This is a PCI-Express specific step
Cao jin97e4e952017-03-21 21:24:18 +0800234and is done whenever a fatal error has been detected that can be
Michael S. Tsirkin2fd260f2017-01-24 19:35:56 +0200235"solved" by resetting the link.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600236
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800237STEP 4: Slot Reset
238------------------
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800239
Mike Masonfe14acd2009-07-30 15:39:29 -0700240In response to a return value of PCI_ERS_RESULT_NEED_RESET, the
Cao jin97e4e952017-03-21 21:24:18 +0800241the platform will perform a slot reset on the requesting PCI device(s).
Mike Masonfe14acd2009-07-30 15:39:29 -0700242The actual steps taken by a platform to perform a slot reset
243will be platform-dependent. Upon completion of slot reset, the
244platform will call the device slot_reset() callback.
245
246Powerpc platforms implement two levels of slot reset:
247soft reset(default) and fundamental(optional) reset.
248
249Powerpc soft reset consists of asserting the adapter #RST line and then
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800250restoring the PCI BAR's and PCI configuration header to a state
251that is equivalent to what it would be after a fresh system
252power-on followed by power-on BIOS/system firmware initialization.
Mike Masonfe14acd2009-07-30 15:39:29 -0700253Soft reset is also known as hot-reset.
254
255Powerpc fundamental reset is supported by PCI Express cards only
256and results in device's state machines, hardware logic, port states and
257configuration registers to initialize to their default conditions.
258
259For most PCI devices, a soft reset will be sufficient for recovery.
260Optional fundamental reset is provided to support a limited number
Cao jin97e4e952017-03-21 21:24:18 +0800261of PCI Express devices for which a soft reset is not sufficient
Mike Masonfe14acd2009-07-30 15:39:29 -0700262for recovery.
263
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800264If the platform supports PCI hotplug, then the reset might be
265performed by toggling the slot electrical power off/on.
266
267It is important for the platform to restore the PCI config space
268to the "fresh poweron" state, rather than the "last state". After
269a slot reset, the device driver will almost always use its standard
270device initialization routines, and an unusual config space setup
271may result in hung devices, kernel panics, or silent data corruption.
272
273This call gives drivers the chance to re-initialize the hardware
274(re-download firmware, etc.). At this point, the driver may assume
Mike Masonfe14acd2009-07-30 15:39:29 -0700275that the card is in a fresh state and is fully functional. The slot
276is unfrozen and the driver has full access to PCI config space,
277memory mapped I/O space and DMA. Interrupts (Legacy, MSI, or MSI-X)
278will also be available.
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800279
Mike Masonfe14acd2009-07-30 15:39:29 -0700280Drivers should not restart normal I/O processing operations
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800281at this point. If all device drivers report success on this
282callback, the platform will call resume() to complete the sequence,
283and let the driver restart normal I/O processing.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600284
285A driver can still return a critical failure for this function if
286it can't get the device operational after reset. If the platform
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800287previously tried a soft reset, it might now try a hard reset (power
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600288cycle) and then call slot_reset() again. It the device still can't
289be recovered, there is nothing more that can be done; the platform
290will typically report a "permanent failure" in such a case. The
291device will be considered "dead" in this case.
292
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800293Drivers for multi-function cards will need to coordinate among
294themselves as to which driver instance will perform any "one-shot"
295or global device initialization. For example, the Symbios sym53cxx2
296driver performs device init only from PCI function 0:
297
298+ if (PCI_FUNC(pdev->devfn) == 0)
299+ sym_reset_scsi_bus(np, 0);
300
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600301 Result codes:
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800302 - PCI_ERS_RESULT_DISCONNECT
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600303 Same as above.
304
Mike Masonfe14acd2009-07-30 15:39:29 -0700305Drivers for PCI Express cards that require a fundamental reset must
Cao jin97e4e952017-03-21 21:24:18 +0800306set the needs_freset bit in the pci_dev structure in their probe function.
Mike Masonfe14acd2009-07-30 15:39:29 -0700307For example, the QLogic qla2xxx driver sets the needs_freset bit for certain
308PCI card types:
309
310+ /* Set EEH reset type to fundamental if required by hba */
311+ if (IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha))
312+ pdev->needs_freset = 1;
313+
314
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800315Platform proceeds either to STEP 5 (Resume Operations) or STEP 6 (Permanent
316Failure).
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600317
Mike Masonfe14acd2009-07-30 15:39:29 -0700318>>> The current powerpc implementation does not try a power-cycle
319>>> reset if the driver returned PCI_ERS_RESULT_DISCONNECT.
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800320>>> However, it probably should.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600321
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600322
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800323STEP 5: Resume Operations
324-------------------------
325The platform will call the resume() callback on all affected device
326drivers if all drivers on the segment have returned
327PCI_ERS_RESULT_RECOVERED from one of the 3 previous callbacks.
328The goal of this callback is to tell the driver to restart activity,
329that everything is back and running. This callback does not return
330a result code.
331
332At this point, if a new error happens, the platform will restart
333a new error recovery sequence.
334
335STEP 6: Permanent Failure
336-------------------------
337A "permanent failure" has occurred, and the platform cannot recover
338the device. The platform will call error_detected() with a
339pci_channel_state value of pci_channel_io_perm_failure.
340
341The device driver should, at this point, assume the worst. It should
342cancel all pending I/O, refuse all new I/O, returning -EIO to
343higher layers. The device driver should then clean up all of its
344memory and remove itself from kernel operations, much as it would
345during system shutdown.
346
347The platform will typically notify the system operator of the
348permanent failure in some way. If the device is hotplug-capable,
349the operator will probably want to remove and replace the device.
350Note, however, not all failures are truly "permanent". Some are
351caused by over-heating, some by a poorly seated card. Many
352PCI error events are caused by software bugs, e.g. DMA's to
353wild addresses or bogus split transactions due to programming
354errors. See the discussion in powerpc/eeh-pci-error-recovery.txt
355for additional detail on real-life experience of the causes of
356software errors.
357
358
359Conclusion; General Remarks
360---------------------------
Mike Masonfe14acd2009-07-30 15:39:29 -0700361The way the callbacks are called is platform policy. A platform with
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800362no slot reset capability may want to just "ignore" drivers that can't
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600363recover (disconnect them) and try to let other cards on the same segment
364recover. Keep in mind that in most real life cases, though, there will
365be only one driver per segment.
366
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800367Now, a note about interrupts. If you get an interrupt and your
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600368device is dead or has been isolated, there is a problem :)
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800369The current policy is to turn this into a platform policy.
370That is, the recovery API only requires that:
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600371
372 - There is no guarantee that interrupt delivery can proceed from any
373device on the segment starting from the error detection and until the
Mike Masonfe14acd2009-07-30 15:39:29 -0700374slot_reset callback is called, at which point interrupts are expected
375to be fully operational.
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600376
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800377 - There is no guarantee that interrupt delivery is stopped, that is,
378a driver that gets an interrupt after detecting an error, or that detects
379an error within the interrupt handler such that it prevents proper
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600380ack'ing of the interrupt (and thus removal of the source) should just
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800381return IRQ_NOTHANDLED. It's up to the platform to deal with that
382condition, typically by masking the IRQ source during the duration of
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600383the error handling. It is expected that the platform "knows" which
384interrupts are routed to error-management capable slots and can deal
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800385with temporarily disabling that IRQ number during error processing (this
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600386isn't terribly complex). That means some IRQ latency for other devices
387sharing the interrupt, but there is simply no other way. High end
388platforms aren't supposed to share interrupts between many devices
389anyway :)
390
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800391>>> Implementation details for the powerpc platform are discussed in
392>>> the file Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -0600393
Mike Masonfe14acd2009-07-30 15:39:29 -0700394>>> As of this writing, there is a growing list of device drivers with
395>>> patches implementing error recovery. Not all of these patches are in
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800396>>> mainline yet. These may be used as "examples":
397>>>
Mike Masonfe14acd2009-07-30 15:39:29 -0700398>>> drivers/scsi/ipr
399>>> drivers/scsi/sym53c8xx_2
400>>> drivers/scsi/qla2xxx
401>>> drivers/scsi/lpfc
402>>> drivers/next/bnx2.c
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800403>>> drivers/next/e100.c
404>>> drivers/net/e1000
Mike Masonfe14acd2009-07-30 15:39:29 -0700405>>> drivers/net/e1000e
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800406>>> drivers/net/ixgb
Mike Masonfe14acd2009-07-30 15:39:29 -0700407>>> drivers/net/ixgbe
408>>> drivers/net/cxgb3
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800409>>> drivers/net/s2io.c
Mike Masonfe14acd2009-07-30 15:39:29 -0700410>>> drivers/net/qlge
Linas Vepstasc9ab8b62006-02-03 03:03:45 -0800411
412The End
413-------