]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
powerpc/eeh: Refactor around eeh_probe_devices()
authorSam Bobroff <sbobroff@linux.ibm.com>
Fri, 16 Aug 2019 04:48:10 +0000 (14:48 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 22 Aug 2019 13:12:46 +0000 (23:12 +1000)
Now that EEH support for all devices (on PowerNV and pSeries) is
provided by the pcibios bus add device hooks, eeh_probe_devices() and
eeh_addr_cache_build() are redundant and can be removed.

Move the EEH enabled message into it's own function so that it can be
called from multiple places.

Note that previously on pSeries, useless EEH sysfs files were created
for some devices that did not have EEH support and this change
prevents them from being created.

Signed-off-by: Sam Bobroff <sbobroff@linux.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/33b0a6339d5ac88693de092d6fba984f2a5add66.1565930772.git.sbobroff@linux.ibm.com
arch/powerpc/include/asm/eeh.h
arch/powerpc/kernel/eeh.c
arch/powerpc/kernel/eeh_cache.c
arch/powerpc/platforms/powernv/eeh-powernv.c
arch/powerpc/platforms/pseries/pci.c

index 33e797eb0e6af2c666ccb8fc690c99017698440a..1fc2b5e40822c465bdd1dd06332b203005575e16 100644 (file)
@@ -269,13 +269,12 @@ struct pci_bus *eeh_pe_bus_get(struct eeh_pe *pe);
 
 struct eeh_dev *eeh_dev_init(struct pci_dn *pdn);
 void eeh_dev_phb_init_dynamic(struct pci_controller *phb);
-void eeh_probe_devices(void);
+void eeh_show_enabled(void);
 int __init eeh_ops_register(struct eeh_ops *ops);
 int __exit eeh_ops_unregister(const char *name);
 int eeh_check_failure(const volatile void __iomem *token);
 int eeh_dev_check_failure(struct eeh_dev *edev);
 void eeh_addr_cache_init(void);
-void eeh_addr_cache_build(void);
 void eeh_add_device_early(struct pci_dn *);
 void eeh_add_device_tree_early(struct pci_dn *);
 void eeh_add_device_late(struct pci_dev *);
@@ -317,7 +316,7 @@ static inline bool eeh_enabled(void)
         return false;
 }
 
-static inline void eeh_probe_devices(void) { }
+static inline void eeh_show_enabled(void) { }
 
 static inline void *eeh_dev_init(struct pci_dn *pdn, void *data)
 {
@@ -335,8 +334,6 @@ static inline int eeh_check_failure(const volatile void __iomem *token)
 
 static inline void eeh_addr_cache_init(void) { }
 
-static inline void eeh_addr_cache_build(void) { }
-
 static inline void eeh_add_device_early(struct pci_dn *pdn) { }
 
 static inline void eeh_add_device_tree_early(struct pci_dn *pdn) { }
index abf4c1bb1fab5ef0ca7c3804a5d32ce2f70eada4..fc975342e24281e61abcf510020ef5c106f5ce17 100644 (file)
@@ -150,6 +150,16 @@ static int __init eeh_setup(char *str)
 }
 __setup("eeh=", eeh_setup);
 
+void eeh_show_enabled(void)
+{
+       if (eeh_has_flag(EEH_FORCE_DISABLED))
+               pr_info("EEH: Recovery disabled by kernel parameter.\n");
+       else if (eeh_has_flag(EEH_ENABLED))
+               pr_info("EEH: Capable adapter found: recovery enabled.\n");
+       else
+               pr_info("EEH: No capable adapters found: recovery disabled.\n");
+}
+
 /*
  * This routine captures assorted PCI configuration space data
  * for the indicated PCI device, and puts them into a buffer
@@ -1063,23 +1073,6 @@ static struct notifier_block eeh_reboot_nb = {
        .notifier_call = eeh_reboot_notifier,
 };
 
-void eeh_probe_devices(void)
-{
-       struct pci_controller *hose, *tmp;
-       struct pci_dn *pdn;
-
-       /* Enable EEH for all adapters */
-       list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
-               pdn = hose->pci_data;
-               traverse_pci_dn(pdn, eeh_ops->probe, NULL);
-       }
-       if (eeh_enabled())
-               pr_info("EEH: PCI Enhanced I/O Error Handling Enabled\n");
-       else
-               pr_info("EEH: No capable adapters found\n");
-
-}
-
 /**
  * eeh_init - EEH initialization
  *
index 75f0d66dee4bbcc40322084fbb1ee97495f398a7..1e47cd04a1bd750a81ed7ec63c42a4ec85ab950d 100644 (file)
@@ -268,38 +268,6 @@ void eeh_addr_cache_init(void)
        spin_lock_init(&pci_io_addr_cache_root.piar_lock);
 }
 
-/**
- * eeh_addr_cache_build - Build a cache of I/O addresses
- *
- * Build a cache of pci i/o addresses.  This cache will be used to
- * find the pci device that corresponds to a given address.
- * This routine scans all pci busses to build the cache.
- * Must be run late in boot process, after the pci controllers
- * have been scanned for devices (after all device resources are known).
- */
-void eeh_addr_cache_build(void)
-{
-       struct pci_dn *pdn;
-       struct eeh_dev *edev;
-       struct pci_dev *dev = NULL;
-
-       for_each_pci_dev(dev) {
-               pdn = pci_get_pdn_by_devfn(dev->bus, dev->devfn);
-               if (!pdn)
-                       continue;
-
-               edev = pdn_to_eeh_dev(pdn);
-               if (!edev)
-                       continue;
-
-               dev->dev.archdata.edev = edev;
-               edev->pdev = dev;
-
-               eeh_addr_cache_insert_dev(dev);
-               eeh_sysfs_add_device(dev);
-       }
-}
-
 static int eeh_addr_cache_show(struct seq_file *s, void *v)
 {
        struct pci_io_addr_range *piar;
index 00c0b81fd61d464fbab0d55d361f7aae9d3cef40..6ed9b6ccafcc27bd691dcb910006dc580750c21c 100644 (file)
@@ -229,9 +229,7 @@ int pnv_eeh_post_init(void)
        struct pnv_phb *phb;
        int ret = 0;
 
-       /* Probe devices & build address cache */
-       eeh_probe_devices();
-       eeh_addr_cache_build();
+       eeh_show_enabled();
 
        /* Register OPAL event notifier */
        eeh_event_irq = opal_event_request(ilog2(OPAL_EVENT_PCI_ERROR));
index 1eae1d09980cf8bb08c64221bdb604187acee9af..722830978639f05b7949a4df07831413ad8f00c6 100644 (file)
@@ -229,8 +229,7 @@ void __init pSeries_final_fixup(void)
 
        pSeries_request_regions();
 
-       eeh_probe_devices();
-       eeh_addr_cache_build();
+       eeh_show_enabled();
 
 #ifdef CONFIG_PCI_IOV
        ppc_md.pcibios_sriov_enable = pseries_pcibios_sriov_enable;