summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorOliver O'Halloran <oohall@gmail.com>2019-03-18 17:10:57 +1100
committerStewart Smith <stewart@linux.ibm.com>2019-03-28 15:24:12 +1100
commit1ef5a64b85d56abecf82b63356e7ef9303c6a9a0 (patch)
tree58c957b971507bebc8b40078840a3731039000bd /core
parent0c86fef7e502e342df9669d6ccdcd07144ac4cef (diff)
downloadtalos-skiboot-1ef5a64b85d56abecf82b63356e7ef9303c6a9a0.tar.gz
talos-skiboot-1ef5a64b85d56abecf82b63356e7ef9303c6a9a0.zip
core/pcie-slot: Better explain suprise_check
Working out what was actually going on here took forever. Signed-off-by: Oliver O'Halloran <oohall@gmail.com> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'core')
-rw-r--r--core/pcie-slot.c27
1 files changed, 11 insertions, 16 deletions
diff --git a/core/pcie-slot.c b/core/pcie-slot.c
index e90fc5d3..8696129f 100644
--- a/core/pcie-slot.c
+++ b/core/pcie-slot.c
@@ -215,24 +215,19 @@ static int64_t pcie_slot_set_power_state_ext(struct pci_slot *slot, uint8_t val,
return OPAL_SUCCESS;
}
- /* The power supply to the slot should be always on when surprise
- * hotplug is claimed. For this case, update with the requested
- * power state and bail immediately.
+ /*
+ * Suprise hotpluggable slots need to be handled with care since
+ * many systems do not implement the presence detect side-band
+ * signal. Instead, they rely on in-band presence to report the
+ * existence of a hotplugged card.
*
- * The PCIe link is likely down if we're powering on the slot upon
- * the detected presence. Nothing behind the slot will be probed if
- * we do it immediately even we do have PCI devices connected to the
- * slot. For this case, we force upper layer to wait for the PCIe
- * link to be up before probing the PCI devices behind the slot. It's
- * only concerned in surprise hotplug path. In managed hot-add path,
- * the PCIe link should have been ready before we power on the slot.
- * However, it's not harmful to do so in managed hot-add path.
+ * This is problematic because:
+ * a) When PERST is asserted in-band presence doesn't work, and
+ * b) Switches assert PERST as a part of the "slot power down" sequence
*
- * When flag PCI_SLOT_FLAG_FORCE_POWERON is set for the PCI slot, we
- * should turn on the slot's power supply on hardware on user's request
- * because that might have been lost. Otherwise, the PCIe link behind
- * the slot won't become ready for ever and PCI adapter behind the slot
- * can't be probed successfully.
+ * To work around the problem we leave the slot physically powered on
+ * and exit early here. This way when a new card is inserted, the switch
+ * will raise an interrupt due to the PresDet status changing.
*/
if (surprise_check && slot->surprise_pluggable) {
slot->power_state = val;
OpenPOWER on IntegriCloud