* [PATCH 1/3] [PATCH 1/3]powerpc/eeh: Propagate needs_freset flag to device at PE
@ 2011-04-22 19:59 Richard A Lary
2011-05-04 6:07 ` Benjamin Herrenschmidt
0 siblings, 1 reply; 2+ messages in thread
From: Richard A Lary @ 2011-04-22 19:59 UTC (permalink / raw)
To: linuxppc-dev; +Cc: antonb
From: Richard A Lary <rlary@linux.vnet.ibm.com>
For multifunction adapters with a PCI bridge or switch as the device
at the Partitionable Endpoint(PE), if one or more devices below PE
sets dev->needs_freset, that value will be set for the PE device.
In other words, if any device below PE requires a fundamental reset
the PE will request a fundamental reset.
Signed-off-by: Richard A Lary <rlary@linux.vnet.ibm.com>
---
arch/powerpc/platforms/pseries/eeh.c | 48 42 + 6 - 0 !
1 file changed, 42 insertions(+), 6 deletions(-)
Index: b/arch/powerpc/platforms/pseries/eeh.c
===================================================================
--- a/arch/powerpc/platforms/pseries/eeh.c
+++ b/arch/powerpc/platforms/pseries/eeh.c
@@ -448,6 +448,39 @@ void eeh_clear_slot (struct device_node
raw_spin_unlock_irqrestore(&confirm_error_lock, flags);
}
+void __eeh_set_pe_freset(struct device_node *parent, unsigned int *freset)
+{
+ struct device_node *dn;
+
+ for_each_child_of_node(parent, dn) {
+ if (PCI_DN(dn)) {
+
+ struct pci_dev *dev = PCI_DN(dn)->pcidev;
+
+ if (dev && dev->driver)
+ *freset |= dev->needs_freset;
+
+ __eeh_set_pe_freset(dn, freset);
+ }
+ }
+}
+
+void eeh_set_pe_freset(struct device_node *dn, unsigned int *freset)
+{
+ struct pci_dev *dev;
+ dn = find_device_pe(dn);
+
+ /* Back up one, since config addrs might be shared */
+ if (!pcibios_find_pci_bus(dn) && PCI_DN(dn->parent))
+ dn = dn->parent;
+
+ dev = PCI_DN(dn)->pcidev;
+ if (dev)
+ *freset |= dev->needs_freset;
+
+ __eeh_set_pe_freset(dn, freset);
+}
+
/**
* eeh_dn_check_failure - check if all 1's data is due to EEH slot freeze
* @dn device node
@@ -736,18 +769,21 @@ int pcibios_set_pcie_reset_state(struct
/**
* rtas_set_slot_reset -- assert the pci #RST line for 1/4 second
* @pdn: pci device node to be reset.
- *
- * Return 0 if success, else a non-zero value.
*/
static void __rtas_set_slot_reset(struct pci_dn *pdn)
{
- struct pci_dev *dev = pdn->pcidev;
+ unsigned int freset = 0;
- /* Determine type of EEH reset required by device,
- * default hot reset or fundamental reset
+ /* Determine type of EEH reset required for
+ * Partitionable Endpoint, a hot-reset (1)
+ * or a fundamental reset (3).
+ * A fundamental reset required by any device under
+ * Partitionable Endpoint trumps hot-reset.
*/
- if (dev && dev->needs_freset)
+ eeh_set_pe_freset(pdn->node, &freset);
+
+ if (freset)
rtas_pci_slot_reset(pdn, 3);
else
rtas_pci_slot_reset(pdn, 1);
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 1/3] [PATCH 1/3]powerpc/eeh: Propagate needs_freset flag to device at PE
2011-04-22 19:59 [PATCH 1/3] [PATCH 1/3]powerpc/eeh: Propagate needs_freset flag to device at PE Richard A Lary
@ 2011-05-04 6:07 ` Benjamin Herrenschmidt
0 siblings, 0 replies; 2+ messages in thread
From: Benjamin Herrenschmidt @ 2011-05-04 6:07 UTC (permalink / raw)
To: Richard A Lary; +Cc: antonb, linuxppc-dev
On Fri, 2011-04-22 at 12:59 -0700, Richard A Lary wrote:
> From: Richard A Lary <rlary@linux.vnet.ibm.com>
>
> For multifunction adapters with a PCI bridge or switch as the device
> at the Partitionable Endpoint(PE), if one or more devices below PE
> sets dev->needs_freset, that value will be set for the PE device.
>
> In other words, if any device below PE requires a fundamental reset
> the PE will request a fundamental reset.
>
> Signed-off-by: Richard A Lary <rlary@linux.vnet.ibm.com>
> ---
This patch and the next one didn't apply cleanly for some reason.
I've hand applied both and will push to -next in a few minutes, please
let me know if it's all correct.
The third one, I gave up as I was running out of time, please re-post a
version that applies on top of powerpc-next.
Cheers,
Ben.
> arch/powerpc/platforms/pseries/eeh.c | 48 42 + 6 - 0 !
> 1 file changed, 42 insertions(+), 6 deletions(-)
>
> Index: b/arch/powerpc/platforms/pseries/eeh.c
> ===================================================================
> --- a/arch/powerpc/platforms/pseries/eeh.c
> +++ b/arch/powerpc/platforms/pseries/eeh.c
> @@ -448,6 +448,39 @@ void eeh_clear_slot (struct device_node
> raw_spin_unlock_irqrestore(&confirm_error_lock, flags);
> }
>
> +void __eeh_set_pe_freset(struct device_node *parent, unsigned int *freset)
> +{
> + struct device_node *dn;
> +
> + for_each_child_of_node(parent, dn) {
> + if (PCI_DN(dn)) {
> +
> + struct pci_dev *dev = PCI_DN(dn)->pcidev;
> +
> + if (dev && dev->driver)
> + *freset |= dev->needs_freset;
> +
> + __eeh_set_pe_freset(dn, freset);
> + }
> + }
> +}
> +
> +void eeh_set_pe_freset(struct device_node *dn, unsigned int *freset)
> +{
> + struct pci_dev *dev;
> + dn = find_device_pe(dn);
> +
> + /* Back up one, since config addrs might be shared */
> + if (!pcibios_find_pci_bus(dn) && PCI_DN(dn->parent))
> + dn = dn->parent;
> +
> + dev = PCI_DN(dn)->pcidev;
> + if (dev)
> + *freset |= dev->needs_freset;
> +
> + __eeh_set_pe_freset(dn, freset);
> +}
> +
> /**
> * eeh_dn_check_failure - check if all 1's data is due to EEH slot freeze
> * @dn device node
> @@ -736,18 +769,21 @@ int pcibios_set_pcie_reset_state(struct
> /**
> * rtas_set_slot_reset -- assert the pci #RST line for 1/4 second
> * @pdn: pci device node to be reset.
> - *
> - * Return 0 if success, else a non-zero value.
> */
>
> static void __rtas_set_slot_reset(struct pci_dn *pdn)
> {
> - struct pci_dev *dev = pdn->pcidev;
> + unsigned int freset = 0;
>
> - /* Determine type of EEH reset required by device,
> - * default hot reset or fundamental reset
> + /* Determine type of EEH reset required for
> + * Partitionable Endpoint, a hot-reset (1)
> + * or a fundamental reset (3).
> + * A fundamental reset required by any device under
> + * Partitionable Endpoint trumps hot-reset.
> */
> - if (dev && dev->needs_freset)
> + eeh_set_pe_freset(pdn->node, &freset);
> +
> + if (freset)
> rtas_pci_slot_reset(pdn, 3);
> else
> rtas_pci_slot_reset(pdn, 1);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-05-04 6:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-22 19:59 [PATCH 1/3] [PATCH 1/3]powerpc/eeh: Propagate needs_freset flag to device at PE Richard A Lary
2011-05-04 6:07 ` Benjamin Herrenschmidt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).