On Wed, May 06, 2020 at 05:42:28PM -0500, Bjorn Helgaas wrote: > On Thu, Apr 16, 2020 at 11:32:45AM +0300, Mika Westerberg wrote: > > Kai-Heng Feng reported that it takes long time (>1s) to resume > > Thunderbolt connected PCIe devices from both runtime suspend and system > > sleep (s2idle). > > > > These PCIe downstream ports the second link capability (PCI_EXP_LNKCAP2) > > announces support for speeds > 5 GT/s but it is then capped by the > > second link control (PCI_EXP_LNKCTL2) register to 2.5 GT/s. This > > possiblity was not considered in pci_bridge_wait_for_secondary_bus() so > > it ended up waiting for 1100 ms as these ports do not support active > > link layer reporting either. > > > > PCIe spec 5.0 section 6.6.1 mandates that we must wait minimum of 100 ms > > before sending configuration request to the device below, if the port > > does not support speeds > 5 GT/s, and if it does we first need to wait > > for the data link layer to become active before waiting for that 100 ms. > > > > PCIe spec 5.0 section 7.5.3.6 further says that all downstream ports > > that support speeds > 5 GT/s must support active link layer reporting so > > instead of looking for the speed we can check for the active link layer > > reporting capability and determine how to wait based on that (as they go > > hand in hand). > > I can't quite tell what the defect is here. > > I assume you're talking about this text from sec 6.6.1: > > - With a Downstream Port that does not support Link speeds greater > than 5.0 GT/s, software must wait a minimum of 100 ms before > sending a Configuration Request to the device immediately below > that Port. > > - With a Downstream Port that supports Link speeds greater than 5.0 > GT/s, software must wait a minimum of 100 ms after Link training > completes before sending a Configuration Request to the device > immediately below that Port. Software can determine when Link > training completes by polling the Data Link Layer Link Active bit > or by setting up an associated interrupt (see Section 6.7.3.3 ). > > I don't understand what Link Control 2 has to do with this. The spec > talks about ports *supporting* certain link speeds, which sounds to me > like the Link Capabilities. It doesn't say anything about the current > or target link speed. PCIe 5.0 page 764 recommends using Supported Link Speeds Vector in Link Capabilities 2 register and that's what pcie_get_speed_cap() is doing. However, we can avoid figuring the speed altogether by checking the dev->link_active_reporting instead because that needs to be implemented by all Downstream Ports that supports speeds > 5 GT/s (PCIe 5.0 page 735).