2018-05-17 21:44:15 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/*
|
|
|
|
* This file implements the error recovery as a core part of PCIe error
|
|
|
|
* reporting. When a PCIe error is delivered, an error message will be
|
|
|
|
* collected and printed to console, then, an error recovery procedure
|
|
|
|
* will be executed by following the PCI error recovery rules.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Intel Corp.
|
|
|
|
* Tom Long Nguyen (tom.l.nguyen@intel.com)
|
|
|
|
* Zhang Yanmin (yanmin.zhang@intel.com)
|
|
|
|
*/
|
|
|
|
|
2019-12-13 22:46:05 +00:00
|
|
|
#define dev_fmt(fmt) "AER: " fmt
|
|
|
|
|
2018-05-17 21:44:15 +00:00
|
|
|
#include <linux/pci.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/aer.h>
|
|
|
|
#include "portdrv.h"
|
|
|
|
#include "../pci.h"
|
|
|
|
|
|
|
|
static pci_ers_result_t merge_result(enum pci_ers_result orig,
|
|
|
|
enum pci_ers_result new)
|
|
|
|
{
|
|
|
|
if (new == PCI_ERS_RESULT_NO_AER_DRIVER)
|
|
|
|
return PCI_ERS_RESULT_NO_AER_DRIVER;
|
|
|
|
|
|
|
|
if (new == PCI_ERS_RESULT_NONE)
|
|
|
|
return orig;
|
|
|
|
|
|
|
|
switch (orig) {
|
|
|
|
case PCI_ERS_RESULT_CAN_RECOVER:
|
|
|
|
case PCI_ERS_RESULT_RECOVERED:
|
|
|
|
orig = new;
|
|
|
|
break;
|
|
|
|
case PCI_ERS_RESULT_DISCONNECT:
|
|
|
|
if (new == PCI_ERS_RESULT_NEED_RESET)
|
|
|
|
orig = PCI_ERS_RESULT_NEED_RESET;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return orig;
|
|
|
|
}
|
|
|
|
|
2018-09-20 16:27:14 +00:00
|
|
|
static int report_error_detected(struct pci_dev *dev,
|
|
|
|
enum pci_channel_state state,
|
|
|
|
enum pci_ers_result *result)
|
2018-05-17 21:44:15 +00:00
|
|
|
{
|
|
|
|
pci_ers_result_t vote;
|
|
|
|
const struct pci_error_handlers *err_handler;
|
|
|
|
|
|
|
|
device_lock(&dev->dev);
|
2018-09-20 16:27:16 +00:00
|
|
|
if (!pci_dev_set_io_state(dev, state) ||
|
|
|
|
!dev->driver ||
|
2018-05-17 21:44:15 +00:00
|
|
|
!dev->driver->err_handler ||
|
|
|
|
!dev->driver->err_handler->error_detected) {
|
|
|
|
/*
|
PCI/ERR: Run error recovery callbacks for all affected devices
If an Endpoint reported an error with ERR_FATAL, we previously ran driver
error recovery callbacks only for the Endpoint's driver. But if we reset a
Link to recover from the error, all downstream components are affected,
including the Endpoint, any multi-function peers, and children of those
peers.
Initiate the Link reset from the deepest Downstream Port that is
reliable, and call the error recovery callbacks for all its children.
If a Downstream Port (including a Root Port) reports an error, we assume
the Port itself is reliable and we need to reset its downstream Link. In
all other cases (Switch Upstream Ports, Endpoints, Bridges, etc), we assume
the Link leading to the component needs to be reset, so we initiate the
reset at the parent Downstream Port.
This allows two other clean-ups. First, we currently only use a Link
reset, which can only be initiated using a Downstream Port, so we can
remove checks for Endpoints. Second, the Downstream Port where we initiate
the Link reset is reliable (unlike components downstream from it), so the
special cases for error detect and resume are no longer necessary.
Signed-off-by: Keith Busch <keith.busch@intel.com>
[bhelgaas: changelog]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Sinan Kaya <okaya@kernel.org>
2018-09-20 16:27:13 +00:00
|
|
|
* If any device in the subtree does not have an error_detected
|
|
|
|
* callback, PCI_ERS_RESULT_NO_AER_DRIVER prevents subsequent
|
|
|
|
* error callbacks of "any" device in the subtree, and will
|
|
|
|
* exit in the disconnected error state.
|
2018-05-17 21:44:15 +00:00
|
|
|
*/
|
2019-12-13 11:44:34 +00:00
|
|
|
if (dev->hdr_type != PCI_HEADER_TYPE_BRIDGE) {
|
2018-05-17 21:44:15 +00:00
|
|
|
vote = PCI_ERS_RESULT_NO_AER_DRIVER;
|
2019-12-13 22:46:05 +00:00
|
|
|
pci_info(dev, "can't recover (no error_detected callback)\n");
|
2019-12-13 11:44:34 +00:00
|
|
|
} else {
|
2018-05-17 21:44:15 +00:00
|
|
|
vote = PCI_ERS_RESULT_NONE;
|
2019-12-13 11:44:34 +00:00
|
|
|
}
|
2018-05-17 21:44:15 +00:00
|
|
|
} else {
|
|
|
|
err_handler = dev->driver->err_handler;
|
2018-09-20 16:27:14 +00:00
|
|
|
vote = err_handler->error_detected(dev, state);
|
2018-05-17 21:44:15 +00:00
|
|
|
}
|
2018-09-20 16:27:15 +00:00
|
|
|
pci_uevent_ers(dev, vote);
|
2018-09-20 16:27:14 +00:00
|
|
|
*result = merge_result(*result, vote);
|
2018-05-17 21:44:15 +00:00
|
|
|
device_unlock(&dev->dev);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-20 16:27:14 +00:00
|
|
|
static int report_frozen_detected(struct pci_dev *dev, void *data)
|
|
|
|
{
|
|
|
|
return report_error_detected(dev, pci_channel_io_frozen, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int report_normal_detected(struct pci_dev *dev, void *data)
|
|
|
|
{
|
|
|
|
return report_error_detected(dev, pci_channel_io_normal, data);
|
|
|
|
}
|
|
|
|
|
2018-05-17 21:44:15 +00:00
|
|
|
static int report_mmio_enabled(struct pci_dev *dev, void *data)
|
|
|
|
{
|
2018-09-20 16:27:14 +00:00
|
|
|
pci_ers_result_t vote, *result = data;
|
2018-05-17 21:44:15 +00:00
|
|
|
const struct pci_error_handlers *err_handler;
|
|
|
|
|
|
|
|
device_lock(&dev->dev);
|
|
|
|
if (!dev->driver ||
|
|
|
|
!dev->driver->err_handler ||
|
|
|
|
!dev->driver->err_handler->mmio_enabled)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
err_handler = dev->driver->err_handler;
|
|
|
|
vote = err_handler->mmio_enabled(dev);
|
2018-09-20 16:27:14 +00:00
|
|
|
*result = merge_result(*result, vote);
|
2018-05-17 21:44:15 +00:00
|
|
|
out:
|
|
|
|
device_unlock(&dev->dev);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int report_slot_reset(struct pci_dev *dev, void *data)
|
|
|
|
{
|
2018-09-20 16:27:14 +00:00
|
|
|
pci_ers_result_t vote, *result = data;
|
2018-05-17 21:44:15 +00:00
|
|
|
const struct pci_error_handlers *err_handler;
|
|
|
|
|
|
|
|
device_lock(&dev->dev);
|
|
|
|
if (!dev->driver ||
|
|
|
|
!dev->driver->err_handler ||
|
|
|
|
!dev->driver->err_handler->slot_reset)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
err_handler = dev->driver->err_handler;
|
|
|
|
vote = err_handler->slot_reset(dev);
|
2018-09-20 16:27:14 +00:00
|
|
|
*result = merge_result(*result, vote);
|
2018-05-17 21:44:15 +00:00
|
|
|
out:
|
|
|
|
device_unlock(&dev->dev);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int report_resume(struct pci_dev *dev, void *data)
|
|
|
|
{
|
|
|
|
const struct pci_error_handlers *err_handler;
|
|
|
|
|
|
|
|
device_lock(&dev->dev);
|
2018-09-20 16:27:16 +00:00
|
|
|
if (!pci_dev_set_io_state(dev, pci_channel_io_normal) ||
|
|
|
|
!dev->driver ||
|
2018-05-17 21:44:15 +00:00
|
|
|
!dev->driver->err_handler ||
|
|
|
|
!dev->driver->err_handler->resume)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
err_handler = dev->driver->err_handler;
|
|
|
|
err_handler->resume(dev);
|
|
|
|
out:
|
2018-09-20 16:27:15 +00:00
|
|
|
pci_uevent_ers(dev, PCI_ERS_RESULT_RECOVERED);
|
2018-05-17 21:44:15 +00:00
|
|
|
device_unlock(&dev->dev);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* default_reset_link - default reset function
|
|
|
|
* @dev: pointer to pci_dev data structure
|
|
|
|
*
|
|
|
|
* Invoked when performing link reset on a Downstream Port or a
|
|
|
|
* Root Port with no aer driver.
|
|
|
|
*/
|
|
|
|
static pci_ers_result_t default_reset_link(struct pci_dev *dev)
|
|
|
|
{
|
2018-07-19 23:04:09 +00:00
|
|
|
int rc;
|
|
|
|
|
2018-09-20 16:27:11 +00:00
|
|
|
rc = pci_bus_error_reset(dev);
|
2018-05-17 21:44:15 +00:00
|
|
|
pci_printk(KERN_DEBUG, dev, "downstream link has been reset\n");
|
2018-07-19 23:04:09 +00:00
|
|
|
return rc ? PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_RECOVERED;
|
2018-05-17 21:44:15 +00:00
|
|
|
}
|
|
|
|
|
2018-05-17 21:44:19 +00:00
|
|
|
static pci_ers_result_t reset_link(struct pci_dev *dev, u32 service)
|
2018-05-17 21:44:15 +00:00
|
|
|
{
|
|
|
|
pci_ers_result_t status;
|
|
|
|
struct pcie_port_service_driver *driver = NULL;
|
|
|
|
|
PCI/ERR: Run error recovery callbacks for all affected devices
If an Endpoint reported an error with ERR_FATAL, we previously ran driver
error recovery callbacks only for the Endpoint's driver. But if we reset a
Link to recover from the error, all downstream components are affected,
including the Endpoint, any multi-function peers, and children of those
peers.
Initiate the Link reset from the deepest Downstream Port that is
reliable, and call the error recovery callbacks for all its children.
If a Downstream Port (including a Root Port) reports an error, we assume
the Port itself is reliable and we need to reset its downstream Link. In
all other cases (Switch Upstream Ports, Endpoints, Bridges, etc), we assume
the Link leading to the component needs to be reset, so we initiate the
reset at the parent Downstream Port.
This allows two other clean-ups. First, we currently only use a Link
reset, which can only be initiated using a Downstream Port, so we can
remove checks for Endpoints. Second, the Downstream Port where we initiate
the Link reset is reliable (unlike components downstream from it), so the
special cases for error detect and resume are no longer necessary.
Signed-off-by: Keith Busch <keith.busch@intel.com>
[bhelgaas: changelog]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Sinan Kaya <okaya@kernel.org>
2018-09-20 16:27:13 +00:00
|
|
|
driver = pcie_port_find_service(dev, service);
|
2018-05-17 21:44:15 +00:00
|
|
|
if (driver && driver->reset_link) {
|
PCI/ERR: Run error recovery callbacks for all affected devices
If an Endpoint reported an error with ERR_FATAL, we previously ran driver
error recovery callbacks only for the Endpoint's driver. But if we reset a
Link to recover from the error, all downstream components are affected,
including the Endpoint, any multi-function peers, and children of those
peers.
Initiate the Link reset from the deepest Downstream Port that is
reliable, and call the error recovery callbacks for all its children.
If a Downstream Port (including a Root Port) reports an error, we assume
the Port itself is reliable and we need to reset its downstream Link. In
all other cases (Switch Upstream Ports, Endpoints, Bridges, etc), we assume
the Link leading to the component needs to be reset, so we initiate the
reset at the parent Downstream Port.
This allows two other clean-ups. First, we currently only use a Link
reset, which can only be initiated using a Downstream Port, so we can
remove checks for Endpoints. Second, the Downstream Port where we initiate
the Link reset is reliable (unlike components downstream from it), so the
special cases for error detect and resume are no longer necessary.
Signed-off-by: Keith Busch <keith.busch@intel.com>
[bhelgaas: changelog]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Sinan Kaya <okaya@kernel.org>
2018-09-20 16:27:13 +00:00
|
|
|
status = driver->reset_link(dev);
|
2019-08-22 08:55:53 +00:00
|
|
|
} else if (pcie_downstream_port(dev)) {
|
PCI/ERR: Run error recovery callbacks for all affected devices
If an Endpoint reported an error with ERR_FATAL, we previously ran driver
error recovery callbacks only for the Endpoint's driver. But if we reset a
Link to recover from the error, all downstream components are affected,
including the Endpoint, any multi-function peers, and children of those
peers.
Initiate the Link reset from the deepest Downstream Port that is
reliable, and call the error recovery callbacks for all its children.
If a Downstream Port (including a Root Port) reports an error, we assume
the Port itself is reliable and we need to reset its downstream Link. In
all other cases (Switch Upstream Ports, Endpoints, Bridges, etc), we assume
the Link leading to the component needs to be reset, so we initiate the
reset at the parent Downstream Port.
This allows two other clean-ups. First, we currently only use a Link
reset, which can only be initiated using a Downstream Port, so we can
remove checks for Endpoints. Second, the Downstream Port where we initiate
the Link reset is reliable (unlike components downstream from it), so the
special cases for error detect and resume are no longer necessary.
Signed-off-by: Keith Busch <keith.busch@intel.com>
[bhelgaas: changelog]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Sinan Kaya <okaya@kernel.org>
2018-09-20 16:27:13 +00:00
|
|
|
status = default_reset_link(dev);
|
2018-05-17 21:44:15 +00:00
|
|
|
} else {
|
|
|
|
pci_printk(KERN_DEBUG, dev, "no link-reset support at upstream device %s\n",
|
PCI/ERR: Run error recovery callbacks for all affected devices
If an Endpoint reported an error with ERR_FATAL, we previously ran driver
error recovery callbacks only for the Endpoint's driver. But if we reset a
Link to recover from the error, all downstream components are affected,
including the Endpoint, any multi-function peers, and children of those
peers.
Initiate the Link reset from the deepest Downstream Port that is
reliable, and call the error recovery callbacks for all its children.
If a Downstream Port (including a Root Port) reports an error, we assume
the Port itself is reliable and we need to reset its downstream Link. In
all other cases (Switch Upstream Ports, Endpoints, Bridges, etc), we assume
the Link leading to the component needs to be reset, so we initiate the
reset at the parent Downstream Port.
This allows two other clean-ups. First, we currently only use a Link
reset, which can only be initiated using a Downstream Port, so we can
remove checks for Endpoints. Second, the Downstream Port where we initiate
the Link reset is reliable (unlike components downstream from it), so the
special cases for error detect and resume are no longer necessary.
Signed-off-by: Keith Busch <keith.busch@intel.com>
[bhelgaas: changelog]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Sinan Kaya <okaya@kernel.org>
2018-09-20 16:27:13 +00:00
|
|
|
pci_name(dev));
|
2018-05-17 21:44:15 +00:00
|
|
|
return PCI_ERS_RESULT_DISCONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status != PCI_ERS_RESULT_RECOVERED) {
|
|
|
|
pci_printk(KERN_DEBUG, dev, "link reset at upstream device %s failed\n",
|
PCI/ERR: Run error recovery callbacks for all affected devices
If an Endpoint reported an error with ERR_FATAL, we previously ran driver
error recovery callbacks only for the Endpoint's driver. But if we reset a
Link to recover from the error, all downstream components are affected,
including the Endpoint, any multi-function peers, and children of those
peers.
Initiate the Link reset from the deepest Downstream Port that is
reliable, and call the error recovery callbacks for all its children.
If a Downstream Port (including a Root Port) reports an error, we assume
the Port itself is reliable and we need to reset its downstream Link. In
all other cases (Switch Upstream Ports, Endpoints, Bridges, etc), we assume
the Link leading to the component needs to be reset, so we initiate the
reset at the parent Downstream Port.
This allows two other clean-ups. First, we currently only use a Link
reset, which can only be initiated using a Downstream Port, so we can
remove checks for Endpoints. Second, the Downstream Port where we initiate
the Link reset is reliable (unlike components downstream from it), so the
special cases for error detect and resume are no longer necessary.
Signed-off-by: Keith Busch <keith.busch@intel.com>
[bhelgaas: changelog]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Sinan Kaya <okaya@kernel.org>
2018-09-20 16:27:13 +00:00
|
|
|
pci_name(dev));
|
2018-05-17 21:44:15 +00:00
|
|
|
return PCI_ERS_RESULT_DISCONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2018-09-20 16:27:12 +00:00
|
|
|
void pcie_do_recovery(struct pci_dev *dev, enum pci_channel_state state,
|
|
|
|
u32 service)
|
2018-05-17 21:44:15 +00:00
|
|
|
{
|
2018-09-20 16:27:14 +00:00
|
|
|
pci_ers_result_t status = PCI_ERS_RESULT_CAN_RECOVER;
|
|
|
|
struct pci_bus *bus;
|
2018-05-17 21:44:15 +00:00
|
|
|
|
PCI/ERR: Run error recovery callbacks for all affected devices
If an Endpoint reported an error with ERR_FATAL, we previously ran driver
error recovery callbacks only for the Endpoint's driver. But if we reset a
Link to recover from the error, all downstream components are affected,
including the Endpoint, any multi-function peers, and children of those
peers.
Initiate the Link reset from the deepest Downstream Port that is
reliable, and call the error recovery callbacks for all its children.
If a Downstream Port (including a Root Port) reports an error, we assume
the Port itself is reliable and we need to reset its downstream Link. In
all other cases (Switch Upstream Ports, Endpoints, Bridges, etc), we assume
the Link leading to the component needs to be reset, so we initiate the
reset at the parent Downstream Port.
This allows two other clean-ups. First, we currently only use a Link
reset, which can only be initiated using a Downstream Port, so we can
remove checks for Endpoints. Second, the Downstream Port where we initiate
the Link reset is reliable (unlike components downstream from it), so the
special cases for error detect and resume are no longer necessary.
Signed-off-by: Keith Busch <keith.busch@intel.com>
[bhelgaas: changelog]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Sinan Kaya <okaya@kernel.org>
2018-09-20 16:27:13 +00:00
|
|
|
/*
|
|
|
|
* Error recovery runs on all subordinates of the first downstream port.
|
|
|
|
* If the downstream port detected the error, it is cleared at the end.
|
|
|
|
*/
|
|
|
|
if (!(pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT ||
|
|
|
|
pci_pcie_type(dev) == PCI_EXP_TYPE_DOWNSTREAM))
|
|
|
|
dev = dev->bus->self;
|
2018-09-20 16:27:14 +00:00
|
|
|
bus = dev->subordinate;
|
PCI/ERR: Run error recovery callbacks for all affected devices
If an Endpoint reported an error with ERR_FATAL, we previously ran driver
error recovery callbacks only for the Endpoint's driver. But if we reset a
Link to recover from the error, all downstream components are affected,
including the Endpoint, any multi-function peers, and children of those
peers.
Initiate the Link reset from the deepest Downstream Port that is
reliable, and call the error recovery callbacks for all its children.
If a Downstream Port (including a Root Port) reports an error, we assume
the Port itself is reliable and we need to reset its downstream Link. In
all other cases (Switch Upstream Ports, Endpoints, Bridges, etc), we assume
the Link leading to the component needs to be reset, so we initiate the
reset at the parent Downstream Port.
This allows two other clean-ups. First, we currently only use a Link
reset, which can only be initiated using a Downstream Port, so we can
remove checks for Endpoints. Second, the Downstream Port where we initiate
the Link reset is reliable (unlike components downstream from it), so the
special cases for error detect and resume are no longer necessary.
Signed-off-by: Keith Busch <keith.busch@intel.com>
[bhelgaas: changelog]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Sinan Kaya <okaya@kernel.org>
2018-09-20 16:27:13 +00:00
|
|
|
|
2018-09-20 16:27:14 +00:00
|
|
|
pci_dbg(dev, "broadcast error_detected message\n");
|
|
|
|
if (state == pci_channel_io_frozen)
|
|
|
|
pci_walk_bus(bus, report_frozen_detected, &status);
|
|
|
|
else
|
|
|
|
pci_walk_bus(bus, report_normal_detected, &status);
|
2018-05-17 21:44:15 +00:00
|
|
|
|
2018-09-20 16:27:12 +00:00
|
|
|
if (state == pci_channel_io_frozen &&
|
|
|
|
reset_link(dev, service) != PCI_ERS_RESULT_RECOVERED)
|
|
|
|
goto failed;
|
|
|
|
|
2018-09-20 16:27:14 +00:00
|
|
|
if (status == PCI_ERS_RESULT_CAN_RECOVER) {
|
|
|
|
status = PCI_ERS_RESULT_RECOVERED;
|
|
|
|
pci_dbg(dev, "broadcast mmio_enabled message\n");
|
|
|
|
pci_walk_bus(bus, report_mmio_enabled, &status);
|
|
|
|
}
|
2018-05-17 21:44:15 +00:00
|
|
|
|
|
|
|
if (status == PCI_ERS_RESULT_NEED_RESET) {
|
|
|
|
/*
|
|
|
|
* TODO: Should call platform-specific
|
|
|
|
* functions to reset slot before calling
|
|
|
|
* drivers' slot_reset callbacks?
|
|
|
|
*/
|
2018-09-20 16:27:14 +00:00
|
|
|
status = PCI_ERS_RESULT_RECOVERED;
|
|
|
|
pci_dbg(dev, "broadcast slot_reset message\n");
|
|
|
|
pci_walk_bus(bus, report_slot_reset, &status);
|
2018-05-17 21:44:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (status != PCI_ERS_RESULT_RECOVERED)
|
|
|
|
goto failed;
|
|
|
|
|
2018-09-20 16:27:14 +00:00
|
|
|
pci_dbg(dev, "broadcast resume message\n");
|
|
|
|
pci_walk_bus(bus, report_resume, &status);
|
2018-05-17 21:44:15 +00:00
|
|
|
|
PCI/ERR: Run error recovery callbacks for all affected devices
If an Endpoint reported an error with ERR_FATAL, we previously ran driver
error recovery callbacks only for the Endpoint's driver. But if we reset a
Link to recover from the error, all downstream components are affected,
including the Endpoint, any multi-function peers, and children of those
peers.
Initiate the Link reset from the deepest Downstream Port that is
reliable, and call the error recovery callbacks for all its children.
If a Downstream Port (including a Root Port) reports an error, we assume
the Port itself is reliable and we need to reset its downstream Link. In
all other cases (Switch Upstream Ports, Endpoints, Bridges, etc), we assume
the Link leading to the component needs to be reset, so we initiate the
reset at the parent Downstream Port.
This allows two other clean-ups. First, we currently only use a Link
reset, which can only be initiated using a Downstream Port, so we can
remove checks for Endpoints. Second, the Downstream Port where we initiate
the Link reset is reliable (unlike components downstream from it), so the
special cases for error detect and resume are no longer necessary.
Signed-off-by: Keith Busch <keith.busch@intel.com>
[bhelgaas: changelog]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Sinan Kaya <okaya@kernel.org>
2018-09-20 16:27:13 +00:00
|
|
|
pci_aer_clear_device_status(dev);
|
|
|
|
pci_cleanup_aer_uncorrect_error_status(dev);
|
2019-12-13 22:46:05 +00:00
|
|
|
pci_info(dev, "device recovery successful\n");
|
2018-05-17 21:44:15 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
failed:
|
|
|
|
pci_uevent_ers(dev, PCI_ERS_RESULT_DISCONNECT);
|
|
|
|
|
|
|
|
/* TODO: Should kernel panic here? */
|
2019-12-13 22:46:05 +00:00
|
|
|
pci_info(dev, "device recovery failed\n");
|
2018-05-17 21:44:15 +00:00
|
|
|
}
|