2019-08-28 14:07:37 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2007-05-24 01:16:46 +08:00
|
|
|
/*
|
|
|
|
* Sysfs entries for PCI Error Recovery for PAPR-compliant platform.
|
|
|
|
* Copyright IBM Corporation 2007
|
|
|
|
* Copyright Linas Vepstas <linas@austin.ibm.com> 2007
|
|
|
|
*
|
|
|
|
* Send comments and feedback to Linas Vepstas <linas@austin.ibm.com>
|
|
|
|
*/
|
|
|
|
#include <linux/pci.h>
|
2011-05-28 01:27:45 +08:00
|
|
|
#include <linux/stat.h>
|
2007-05-24 01:16:46 +08:00
|
|
|
#include <asm/ppc-pci.h>
|
|
|
|
#include <asm/pci-bridge.h>
|
|
|
|
|
|
|
|
/**
|
2012-02-28 04:04:02 +08:00
|
|
|
* EEH_SHOW_ATTR -- Create sysfs entry for eeh statistic
|
2007-05-24 01:16:46 +08:00
|
|
|
* @_name: name of file in sysfs directory
|
2019-07-15 16:56:09 +08:00
|
|
|
* @_memb: name of member in struct eeh_dev to access
|
2007-05-24 01:16:46 +08:00
|
|
|
* @_format: printf format for display
|
|
|
|
*
|
|
|
|
* All of the attributes look very similar, so just
|
|
|
|
* auto-gen a cut-n-paste routine to display them.
|
|
|
|
*/
|
|
|
|
#define EEH_SHOW_ATTR(_name,_memb,_format) \
|
|
|
|
static ssize_t eeh_show_##_name(struct device *dev, \
|
|
|
|
struct device_attribute *attr, char *buf) \
|
|
|
|
{ \
|
|
|
|
struct pci_dev *pdev = to_pci_dev(dev); \
|
2012-02-28 04:04:05 +08:00
|
|
|
struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev); \
|
2007-05-24 01:16:46 +08:00
|
|
|
\
|
2012-02-28 04:04:05 +08:00
|
|
|
if (!edev) \
|
|
|
|
return 0; \
|
2007-05-24 01:16:46 +08:00
|
|
|
\
|
2012-02-28 04:04:05 +08:00
|
|
|
return sprintf(buf, _format "\n", edev->_memb); \
|
2007-05-24 01:16:46 +08:00
|
|
|
} \
|
2017-01-12 11:54:13 +08:00
|
|
|
static DEVICE_ATTR(_name, 0444, eeh_show_##_name, NULL);
|
2007-05-24 01:16:46 +08:00
|
|
|
|
2012-02-28 04:04:05 +08:00
|
|
|
EEH_SHOW_ATTR(eeh_mode, mode, "0x%x");
|
|
|
|
EEH_SHOW_ATTR(eeh_pe_config_addr, pe_config_addr, "0x%x");
|
2007-05-24 01:16:46 +08:00
|
|
|
|
2014-09-30 10:38:51 +08:00
|
|
|
static ssize_t eeh_pe_state_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
struct pci_dev *pdev = to_pci_dev(dev);
|
|
|
|
struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
|
|
|
|
int state;
|
|
|
|
|
|
|
|
if (!edev || !edev->pe)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
state = eeh_ops->get_state(edev->pe, NULL);
|
2014-11-25 06:26:58 +08:00
|
|
|
return sprintf(buf, "0x%08x 0x%08x\n",
|
2014-09-30 10:38:51 +08:00
|
|
|
state, edev->pe->state);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t eeh_pe_state_store(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
const char *buf, size_t count)
|
|
|
|
{
|
|
|
|
struct pci_dev *pdev = to_pci_dev(dev);
|
|
|
|
struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
|
|
|
|
|
|
|
|
if (!edev || !edev->pe)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
/* Nothing to do if it's not frozen */
|
|
|
|
if (!(edev->pe->state & EEH_PE_ISOLATED))
|
|
|
|
return count;
|
|
|
|
|
2018-11-29 11:16:38 +08:00
|
|
|
if (eeh_unfreeze_pe(edev->pe))
|
2014-09-30 10:38:51 +08:00
|
|
|
return -EIO;
|
2018-11-29 11:16:39 +08:00
|
|
|
eeh_pe_state_clear(edev->pe, EEH_PE_ISOLATED, true);
|
2014-09-30 10:38:51 +08:00
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DEVICE_ATTR_RW(eeh_pe_state);
|
|
|
|
|
2019-07-15 16:56:10 +08:00
|
|
|
#if defined(CONFIG_PCI_IOV) && defined(CONFIG_PPC_PSERIES)
|
2018-01-06 00:45:50 +08:00
|
|
|
static ssize_t eeh_notify_resume_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
struct pci_dev *pdev = to_pci_dev(dev);
|
|
|
|
struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
|
|
|
|
struct pci_dn *pdn = pci_get_pdn(pdev);
|
|
|
|
|
|
|
|
if (!edev || !edev->pe)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
return sprintf(buf, "%d\n", pdn->last_allow_rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t eeh_notify_resume_store(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
const char *buf, size_t count)
|
|
|
|
{
|
|
|
|
struct pci_dev *pdev = to_pci_dev(dev);
|
|
|
|
struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
|
|
|
|
|
|
|
|
if (!edev || !edev->pe || !eeh_ops->notify_resume)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
if (eeh_ops->notify_resume(pci_get_pdn(pdev)))
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
static DEVICE_ATTR_RW(eeh_notify_resume);
|
|
|
|
|
|
|
|
static int eeh_notify_resume_add(struct pci_dev *pdev)
|
|
|
|
{
|
|
|
|
struct device_node *np;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
np = pci_device_to_OF_node(pdev->is_physfn ? pdev : pdev->physfn);
|
|
|
|
|
|
|
|
if (of_property_read_bool(np, "ibm,is-open-sriov-pf"))
|
|
|
|
rc = device_create_file(&pdev->dev, &dev_attr_eeh_notify_resume);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void eeh_notify_resume_remove(struct pci_dev *pdev)
|
|
|
|
{
|
|
|
|
struct device_node *np;
|
|
|
|
|
|
|
|
np = pci_device_to_OF_node(pdev->is_physfn ? pdev : pdev->physfn);
|
|
|
|
|
|
|
|
if (of_property_read_bool(np, "ibm,is-open-sriov-pf"))
|
|
|
|
device_remove_file(&pdev->dev, &dev_attr_eeh_notify_resume);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline int eeh_notify_resume_add(struct pci_dev *pdev) { return 0; }
|
|
|
|
static inline void eeh_notify_resume_remove(struct pci_dev *pdev) { }
|
2019-07-15 16:56:10 +08:00
|
|
|
#endif /* CONFIG_PCI_IOV && CONFIG PPC_PSERIES*/
|
2018-01-06 00:45:50 +08:00
|
|
|
|
2007-05-24 01:16:46 +08:00
|
|
|
void eeh_sysfs_add_device(struct pci_dev *pdev)
|
|
|
|
{
|
2013-07-24 10:25:01 +08:00
|
|
|
struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
|
2007-05-24 01:16:46 +08:00
|
|
|
int rc=0;
|
|
|
|
|
2014-06-04 09:49:17 +08:00
|
|
|
if (!eeh_enabled())
|
|
|
|
return;
|
|
|
|
|
2013-07-24 10:25:01 +08:00
|
|
|
if (edev && (edev->mode & EEH_DEV_SYSFS))
|
|
|
|
return;
|
|
|
|
|
2007-05-24 01:16:46 +08:00
|
|
|
rc += device_create_file(&pdev->dev, &dev_attr_eeh_mode);
|
|
|
|
rc += device_create_file(&pdev->dev, &dev_attr_eeh_pe_config_addr);
|
2014-09-30 10:38:51 +08:00
|
|
|
rc += device_create_file(&pdev->dev, &dev_attr_eeh_pe_state);
|
2018-01-06 00:45:50 +08:00
|
|
|
rc += eeh_notify_resume_add(pdev);
|
2007-05-24 01:16:46 +08:00
|
|
|
|
|
|
|
if (rc)
|
2014-09-30 10:38:51 +08:00
|
|
|
pr_warn("EEH: Unable to create sysfs entries\n");
|
2013-07-24 10:25:01 +08:00
|
|
|
else if (edev)
|
|
|
|
edev->mode |= EEH_DEV_SYSFS;
|
2007-05-24 01:16:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void eeh_sysfs_remove_device(struct pci_dev *pdev)
|
|
|
|
{
|
2013-07-24 10:25:01 +08:00
|
|
|
struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
|
|
|
|
|
2019-07-15 16:56:12 +08:00
|
|
|
if (!edev) {
|
|
|
|
WARN_ON(eeh_enabled());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
edev->mode &= ~EEH_DEV_SYSFS;
|
|
|
|
|
powerpc/eeh: Use partial hotplug for EEH unaware drivers
When EEH error happens to one specific PE, some devices with drivers
supporting EEH won't except hotplug on the device. However, there
might have other deivces without driver, or with driver without EEH
support. For the case, we need do partial hotplug in order to make
sure that the PE becomes absolutely quite during reset. Otherise,
the PE reset might fail and leads to failure of error recovery.
The current code doesn't handle that 'mixed' case properly, it either
uses the error callbacks to the drivers, or tries hotplug, but doesn't
handle a PE (EEH domain) composed of a combination of the two.
The patch intends to support so-called "partial" hotplug for EEH:
Before we do reset, we stop and remove those PCI devices without
EEH sensitive driver. The corresponding EEH devices are not detached
from its PE, but with special flag. After the reset is done, those
EEH devices with the special flag will be scanned one by one.
Signed-off-by: Gavin Shan <shangw@linux.vnet.ibm.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
2013-07-24 10:24:58 +08:00
|
|
|
/*
|
|
|
|
* The parent directory might have been removed. We needn't
|
|
|
|
* continue for that case.
|
|
|
|
*/
|
2019-07-15 16:56:12 +08:00
|
|
|
if (!pdev->dev.kobj.sd)
|
powerpc/eeh: Use partial hotplug for EEH unaware drivers
When EEH error happens to one specific PE, some devices with drivers
supporting EEH won't except hotplug on the device. However, there
might have other deivces without driver, or with driver without EEH
support. For the case, we need do partial hotplug in order to make
sure that the PE becomes absolutely quite during reset. Otherise,
the PE reset might fail and leads to failure of error recovery.
The current code doesn't handle that 'mixed' case properly, it either
uses the error callbacks to the drivers, or tries hotplug, but doesn't
handle a PE (EEH domain) composed of a combination of the two.
The patch intends to support so-called "partial" hotplug for EEH:
Before we do reset, we stop and remove those PCI devices without
EEH sensitive driver. The corresponding EEH devices are not detached
from its PE, but with special flag. After the reset is done, those
EEH devices with the special flag will be scanned one by one.
Signed-off-by: Gavin Shan <shangw@linux.vnet.ibm.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
2013-07-24 10:24:58 +08:00
|
|
|
return;
|
|
|
|
|
2007-05-24 01:16:46 +08:00
|
|
|
device_remove_file(&pdev->dev, &dev_attr_eeh_mode);
|
|
|
|
device_remove_file(&pdev->dev, &dev_attr_eeh_pe_config_addr);
|
2014-09-30 10:38:51 +08:00
|
|
|
device_remove_file(&pdev->dev, &dev_attr_eeh_pe_state);
|
2013-07-24 10:25:01 +08:00
|
|
|
|
2018-01-06 00:45:50 +08:00
|
|
|
eeh_notify_resume_remove(pdev);
|
2007-05-24 01:16:46 +08:00
|
|
|
}
|