[PATCH v2 6/8] PCI: aardvark: Add 100 ms delay after link training
Hans Zhang
18255117159 at 163.com
Wed May 13 00:00:04 PDT 2026
On 5/13/26 05:25, Pali Rohár wrote:
> On Wednesday 06 May 2026 23:23:44 Hans Zhang wrote:
>> The Aardvark PCIe controller driver waits for the link to come up but
>> does not implement the mandatory 100 ms delay after link training
>> completes for speeds greater than 5.0 GT/s (PCIe r6.0 sec 6.6.1).
>>
>> The driver already maintains a 'link_gen' field that holds the negotiated
>> link speed. Use it together with pcie_wait_after_link_train() to insert
>> the required delay immediately after confirming that the link is up.
>>
>> Signed-off-by: Hans Zhang <18255117159 at 163.com>
>> ---
>> drivers/pci/controller/pci-aardvark.c | 4 +++-
>> 1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/pci/controller/pci-aardvark.c b/drivers/pci/controller/pci-aardvark.c
>> index e34bea1ff0ac..526351c21c49 100644
>> --- a/drivers/pci/controller/pci-aardvark.c
>> +++ b/drivers/pci/controller/pci-aardvark.c
>> @@ -350,8 +350,10 @@ static int advk_pcie_wait_for_link(struct advk_pcie *pcie)
>>
>> /* check if the link is up or not */
>> for (retries = 0; retries < LINK_WAIT_MAX_RETRIES; retries++) {
>> - if (advk_pcie_link_up(pcie))
>> + if (advk_pcie_link_up(pcie)) {
>> + pcie_wait_after_link_train(pcie->link_gen);
>> return 0;
>> + }
>>
>> usleep_range(LINK_WAIT_USLEEP_MIN, LINK_WAIT_USLEEP_MAX);
>> }
>> --
>> 2.34.1
>>
>
> Are you sure that this is correct to do? Have you checked the A3720
> Functional Specification which describes how to bring PCIe link up?
>
> A3720 PCIe controller is buggy and needs more timing hacks to make it
> behave. Playing with random sleeps can break its internal logic.
> I'm not sure if it could be safe without proper testing.
>
> And IIRC A3720 PCIe controller is just PCIe2.0 with 5 GT/s.
Hi Pali,
1. This driver does not support A3720.
static const struct of_device_id advk_pcie_of_match_table[] = {
{ .compatible = "marvell,armada-3700-pcie", },
{},
};
MODULE_DEVICE_TABLE(of, advk_pcie_of_match_table);
If you need support for A3720, please submit the corresponding patch so
that Bjorn and Mani can review it.
2. If A3720 only supports GEN2, you can configure "max-link-speed" to be
2 in the DT. This will not affect the functionality of this patch.
3. This patch is a common delay requirement stipulated by the PCIe
specification. If it is greater than GEN2, then msleep(100) will be
added; otherwise, there will be no such delay.
4. For instance, we often come across the situation where some common
APIs are modified, and in many cases, their functionality does not
require the actual development board for verification. I believe that
many other developers and maintainers have modified different parts of
the code. For example, the recent submission:
commit 750277048afe7ce8ebfc0b120de7dfbc745058a7
Author: Nam Cao <namcao at linutronix.de>
Date: Thu Jun 26 16:47:53 2025 +0200
PCI: aardvark: Switch to msi_create_parent_irq_domain()
Switch to msi_create_parent_irq_domain() from
pci_msi_create_irq_domain()
which was using legacy MSI domain setup.
And many controller drivers have been modified.
Best regards,
Hans
More information about the Linux-mediatek
mailing list