On Tue, Jun 10, 2025 at 04:39:03PM +0200, Mike Looijmans wrote:Yeah, true, I misread the comment in pci.h. I cannot find any #define to match the "how long to wait for link training". Each driver appears to use its own timeout. So I should just create my own?
When the driver loads, the transceiver and endpoint may still be settingI don't think this is what PCIE_T_RRS_READY_MS is for. Sec 6.6.1
up a link. Wait for that to complete before continuing. This fixes that
the PCIe core does not work when loading the PL bitstream from
userspace. Existing reference designs worked because the endpoint and
PL were initialized by a bootloader. If the endpoint power and/or reset
is supplied by the kernel, or if the PL is programmed from within the
kernel, the link won't be up yet and the driver just has to wait for
link training to finish.
As the PCIe spec allows up to 100 ms time to establish a link, we'll
allow up to 200ms before giving up.
+static int xilinx_pci_wait_link_up(struct xilinx_pcie *pcie)
+{
+ u32 val;
+
+ /*
+ * PCIe r6.0, sec 6.6.1 provides 100ms timeout. Since this is FPGA
+ * fabric, we're more lenient and allow 200 ms for link training.
+ */
+ return readl_poll_timeout(pcie->reg_base + XILINX_PCIE_REG_PSCR, val,
+ (val & XILINX_PCIE_REG_PSCR_LNKUP), 2 * USEC_PER_MSEC,
+ 2 * PCIE_T_RRS_READY_MS * USEC_PER_MSEC);
+}
requires 100ms *after* the link is up before sending config requests:
For cases where system software cannot determine that DRS is
supported by the attached device, or by the Downstream Port above
the attached device:
◦ With a Downstream Port that does not support Link speeds greater
than 5.0 GT/s, software must wait a minimum of 100 ms following
exit from a Conventional Reset 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). It is strongly recommended for software to
use this mechanism whenever the Downstream Port supports it.