* [PATCH 6.6 0/2] PCI: imx6: Fix i.MX7D controller_id backport regression
@ 2025-05-04 19:13 Ryan Matthews
2025-05-04 19:13 ` [PATCH 6.6 1/2] Revert "PCI: imx6: Skip controller_id generation logic for i.MX7D" Ryan Matthews
` (2 more replies)
0 siblings, 3 replies; 11+ messages in thread
From: Ryan Matthews @ 2025-05-04 19:13 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Richard Zhu, Lucas Stach, stable, linux-pci, Ryan Matthews
Hello,
This fixes an i.Mx 7D SoC PCIe regression caused by a backport mistake.
The regression is broken PCIe initialization and for me a boot hang.
I don't know how to organize this. I think a revert and redo best captures
what's happening.
To complicate things, it looks like the redo patch could also be applied to
5.4, 5.10, 5.15, and 6.1. But those versions don't have the original
backport commit. Version 6.12 matches master and needs no change.
One conflict resolution is needed to apply the redo patch back to versions
6.1 -> 5.15 -> 5.10. One more resolution to apply back to -> 5.4. Patches
against those other versions aren't included here.
-- Ryan
Richard Zhu (1):
PCI: imx6: Skip controller_id generation logic for i.MX7D
Ryan Matthews (1):
Revert "PCI: imx6: Skip controller_id generation logic for i.MX7D"
drivers/pci/controller/dwc/pci-imx6.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
base-commit: 814637ca257f4faf57a73fd4e38888cce88b5911
--
2.47.2
^ permalink raw reply [flat|nested] 11+ messages in thread* [PATCH 6.6 1/2] Revert "PCI: imx6: Skip controller_id generation logic for i.MX7D"
2025-05-04 19:13 [PATCH 6.6 0/2] PCI: imx6: Fix i.MX7D controller_id backport regression Ryan Matthews
@ 2025-05-04 19:13 ` Ryan Matthews
2025-05-05 15:13 ` Sasha Levin
2025-05-04 19:13 ` [PATCH 6.6 2/2] PCI: imx6: Skip controller_id generation logic for i.MX7D Ryan Matthews
2025-05-05 9:23 ` [PATCH 6.6 0/2] PCI: imx6: Fix i.MX7D controller_id backport regression Greg Kroah-Hartman
2 siblings, 1 reply; 11+ messages in thread
From: Ryan Matthews @ 2025-05-04 19:13 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Richard Zhu, Lucas Stach, stable, linux-pci, Ryan Matthews
This reverts commit 2a12efc567a270a155e3b886258297abd79cdea0 which is
commit f068ffdd034c93f0c768acdc87d4d2d7023c1379 upstream.
This is a backport mistake.
Deleting "IMX7D" here skips more than just controller_id logic. It skips
reset assignments too, which causes:
imx6q-pcie 33800000.pcie: PCIe PLL lock timeout
In my case, in addition to broken PCIe, kernel boot hangs entirely.
This isn't a problem upstream because before this, they moved the rest of
the code out of the switch case.
Signed-off-by: Ryan Matthews <ryanmatthews@fastmail.com>
---
drivers/pci/controller/dwc/pci-imx6.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/pci/controller/dwc/pci-imx6.c b/drivers/pci/controller/dwc/pci-imx6.c
index 822a750b064b..20c8f2cba453 100644
--- a/drivers/pci/controller/dwc/pci-imx6.c
+++ b/drivers/pci/controller/dwc/pci-imx6.c
@@ -1281,6 +1281,7 @@ static int imx6_pcie_probe(struct platform_device *pdev)
switch (imx6_pcie->drvdata->variant) {
case IMX8MQ:
case IMX8MQ_EP:
+ case IMX7D:
if (dbi_base->start == IMX8MQ_PCIE2_BASE_ADDR)
imx6_pcie->controller_id = 1;
--
2.47.2
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH 6.6 1/2] Revert "PCI: imx6: Skip controller_id generation logic for i.MX7D"
2025-05-04 19:13 ` [PATCH 6.6 1/2] Revert "PCI: imx6: Skip controller_id generation logic for i.MX7D" Ryan Matthews
@ 2025-05-05 15:13 ` Sasha Levin
0 siblings, 0 replies; 11+ messages in thread
From: Sasha Levin @ 2025-05-05 15:13 UTC (permalink / raw)
To: stable; +Cc: Ryan Matthews, Sasha Levin
[ Sasha's backport helper bot ]
Hi,
✅ All tests passed successfully. No issues detected.
No action required from the submitter.
The upstream commit SHA1 provided is correct: f068ffdd034c93f0c768acdc87d4d2d7023c1379
WARNING: Author mismatch between patch and upstream commit:
Backport author: Ryan Matthews<ryanmatthews@fastmail.com>
Commit author: Richard Zhu<hongxing.zhu@nxp.com>
Status in newer kernel trees:
6.14.y | Present (exact SHA1)
6.12.y | Present (different SHA1: d0f8c566464d)
Note: The patch differs from the upstream commit:
---
1: f068ffdd034c9 < -: ------------- PCI: imx6: Skip controller_id generation logic for i.MX7D
-: ------------- > 1: ca4fa020c1b07 Revert "PCI: imx6: Skip controller_id generation logic for i.MX7D"
---
Results of testing on various branches:
| Branch | Patch Apply | Build Test |
|---------------------------|-------------|------------|
| stable/linux-6.6.y | Success | Success |
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 6.6 2/2] PCI: imx6: Skip controller_id generation logic for i.MX7D
2025-05-04 19:13 [PATCH 6.6 0/2] PCI: imx6: Fix i.MX7D controller_id backport regression Ryan Matthews
2025-05-04 19:13 ` [PATCH 6.6 1/2] Revert "PCI: imx6: Skip controller_id generation logic for i.MX7D" Ryan Matthews
@ 2025-05-04 19:13 ` Ryan Matthews
2025-05-05 15:13 ` Sasha Levin
2025-05-05 9:23 ` [PATCH 6.6 0/2] PCI: imx6: Fix i.MX7D controller_id backport regression Greg Kroah-Hartman
2 siblings, 1 reply; 11+ messages in thread
From: Ryan Matthews @ 2025-05-04 19:13 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Richard Zhu, Lucas Stach, stable, linux-pci, Ryan Matthews,
Krzysztof Wilczyński, Bjorn Helgaas, Manivannan Sadhasivam,
Frank Li
From: Richard Zhu <hongxing.zhu@nxp.com>
[ Upstream commit f068ffdd034c93f0c768acdc87d4d2d7023c1379 ]
The i.MX7D only has one PCIe controller, so controller_id should always be
0. The previous code is incorrect although yielding the correct result.
Fix by removing "IMX7D" from the switch case branch.
Fixes: 2d8ed461dbc9 ("PCI: imx6: Add support for i.MX8MQ")
Link: https://lore.kernel.org/r/20241126075702.4099164-5-hongxing.zhu@nxp.com
Signed-off-by: Richard Zhu <hongxing.zhu@nxp.com>
Signed-off-by: Krzysztof Wilczyński <kwilczynski@kernel.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Reviewed-by: Frank Li <Frank.Li@nxp.com>
[Because this switch case does more than just controller_id
logic, move the "IMX7D" case label instead of removing it entirely.]
Signed-off-by: Ryan Matthews <ryanmatthews@fastmail.com>
---
drivers/pci/controller/dwc/pci-imx6.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/pci/controller/dwc/pci-imx6.c b/drivers/pci/controller/dwc/pci-imx6.c
index 20c8f2cba453..cedfbd425863 100644
--- a/drivers/pci/controller/dwc/pci-imx6.c
+++ b/drivers/pci/controller/dwc/pci-imx6.c
@@ -1281,10 +1281,10 @@ static int imx6_pcie_probe(struct platform_device *pdev)
switch (imx6_pcie->drvdata->variant) {
case IMX8MQ:
case IMX8MQ_EP:
- case IMX7D:
if (dbi_base->start == IMX8MQ_PCIE2_BASE_ADDR)
imx6_pcie->controller_id = 1;
-
+ fallthrough;
+ case IMX7D:
imx6_pcie->pciephy_reset = devm_reset_control_get_exclusive(dev,
"pciephy");
if (IS_ERR(imx6_pcie->pciephy_reset)) {
--
2.47.2
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH 6.6 2/2] PCI: imx6: Skip controller_id generation logic for i.MX7D
2025-05-04 19:13 ` [PATCH 6.6 2/2] PCI: imx6: Skip controller_id generation logic for i.MX7D Ryan Matthews
@ 2025-05-05 15:13 ` Sasha Levin
0 siblings, 0 replies; 11+ messages in thread
From: Sasha Levin @ 2025-05-05 15:13 UTC (permalink / raw)
To: stable; +Cc: Ryan Matthews, Sasha Levin
[ Sasha's backport helper bot ]
Hi,
✅ All tests passed successfully. No issues detected.
No action required from the submitter.
The upstream commit SHA1 provided is correct: f068ffdd034c93f0c768acdc87d4d2d7023c1379
WARNING: Author mismatch between patch and upstream commit:
Backport author: Ryan Matthews<ryanmatthews@fastmail.com>
Commit author: Richard Zhu<hongxing.zhu@nxp.com>
Status in newer kernel trees:
6.14.y | Present (exact SHA1)
6.12.y | Present (different SHA1: d0f8c566464d)
Note: The patch differs from the upstream commit:
---
1: f068ffdd034c9 < -: ------------- PCI: imx6: Skip controller_id generation logic for i.MX7D
-: ------------- > 1: 6f456b8c64c73 PCI: imx6: Skip controller_id generation logic for i.MX7D
---
Results of testing on various branches:
| Branch | Patch Apply | Build Test |
|---------------------------|-------------|------------|
| stable/linux-6.12.y | Success | Success |
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 6.6 0/2] PCI: imx6: Fix i.MX7D controller_id backport regression
2025-05-04 19:13 [PATCH 6.6 0/2] PCI: imx6: Fix i.MX7D controller_id backport regression Ryan Matthews
2025-05-04 19:13 ` [PATCH 6.6 1/2] Revert "PCI: imx6: Skip controller_id generation logic for i.MX7D" Ryan Matthews
2025-05-04 19:13 ` [PATCH 6.6 2/2] PCI: imx6: Skip controller_id generation logic for i.MX7D Ryan Matthews
@ 2025-05-05 9:23 ` Greg Kroah-Hartman
2025-05-06 5:42 ` [PATCH 6.1 0/1] " Ryan Matthews
2025-05-06 5:44 ` [PATCH 5.4 0/1] PCI: imx6: Fix i.MX7D controller_id backport regression Ryan Matthews
2 siblings, 2 replies; 11+ messages in thread
From: Greg Kroah-Hartman @ 2025-05-05 9:23 UTC (permalink / raw)
To: Ryan Matthews; +Cc: Richard Zhu, Lucas Stach, stable, linux-pci
On Sun, May 04, 2025 at 03:13:54PM -0400, Ryan Matthews wrote:
> Hello,
>
> This fixes an i.Mx 7D SoC PCIe regression caused by a backport mistake.
>
> The regression is broken PCIe initialization and for me a boot hang.
>
> I don't know how to organize this. I think a revert and redo best captures
> what's happening.
>
> To complicate things, it looks like the redo patch could also be applied to
> 5.4, 5.10, 5.15, and 6.1. But those versions don't have the original
> backport commit. Version 6.12 matches master and needs no change.
>
> One conflict resolution is needed to apply the redo patch back to versions
> 6.1 -> 5.15 -> 5.10. One more resolution to apply back to -> 5.4. Patches
> against those other versions aren't included here.
If you want to submit patches for those branches, I'll gladly take them,
thanks!
greg k-h
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 6.1 0/1] PCI: imx6: Fix i.MX7D controller_id backport regression
2025-05-05 9:23 ` [PATCH 6.6 0/2] PCI: imx6: Fix i.MX7D controller_id backport regression Greg Kroah-Hartman
@ 2025-05-06 5:42 ` Ryan Matthews
2025-05-06 5:42 ` [PATCH 6.1 1/1] PCI: imx6: Skip controller_id generation logic for i.MX7D Ryan Matthews
2025-05-06 5:44 ` [PATCH 5.4 0/1] PCI: imx6: Fix i.MX7D controller_id backport regression Ryan Matthews
1 sibling, 1 reply; 11+ messages in thread
From: Ryan Matthews @ 2025-05-06 5:42 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Richard Zhu, Lucas Stach, stable, linux-pci, Ryan Matthews
On Sun, May 04, 2025 at 03:13:54PM -0400, Ryan Matthews wrote:
> One conflict resolution is needed to apply the redo patch back to versions
> 6.1 -> 5.15 -> 5.10. One more resolution to apply back to -> 5.4. Patches
> against those other versions aren't included here.
On Mon, May 5, 2025, at 05:23, Greg Kroah-Hartman wrote:
> If you want to submit patches for those branches, I'll gladly take them,
> thanks!
This patch applies to versions 6.1, 5.15, and 5.10.
On these versions I build tested but didn't run test. I have practical
access to relevant hardware which runs 6.6 but not the others.
-- Ryan
Richard Zhu (1):
PCI: imx6: Skip controller_id generation logic for i.MX7D
drivers/pci/controller/dwc/pci-imx6.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
base-commit: b6736e03756f42186840724eb38cb412dfb547be
--
2.47.2
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 6.1 1/1] PCI: imx6: Skip controller_id generation logic for i.MX7D
2025-05-06 5:42 ` [PATCH 6.1 0/1] " Ryan Matthews
@ 2025-05-06 5:42 ` Ryan Matthews
0 siblings, 0 replies; 11+ messages in thread
From: Ryan Matthews @ 2025-05-06 5:42 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Richard Zhu, Lucas Stach, stable, linux-pci, Ryan Matthews,
Krzysztof Wilczyński, Bjorn Helgaas, Manivannan Sadhasivam,
Frank Li
From: Richard Zhu <hongxing.zhu@nxp.com>
[ Upstream commit f068ffdd034c93f0c768acdc87d4d2d7023c1379 ]
The i.MX7D only has one PCIe controller, so controller_id should always be
0. The previous code is incorrect although yielding the correct result.
Fix by removing "IMX7D" from the switch case branch.
Fixes: 2d8ed461dbc9 ("PCI: imx6: Add support for i.MX8MQ")
Link: https://lore.kernel.org/r/20241126075702.4099164-5-hongxing.zhu@nxp.com
Signed-off-by: Richard Zhu <hongxing.zhu@nxp.com>
Signed-off-by: Krzysztof Wilczyński <kwilczynski@kernel.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Reviewed-by: Frank Li <Frank.Li@nxp.com>
[Because this switch case does more than just controller_id
logic, move the "IMX7D" case label instead of removing it entirely.]
Signed-off-by: Ryan Matthews <ryanmatthews@fastmail.com>
---
drivers/pci/controller/dwc/pci-imx6.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/pci/controller/dwc/pci-imx6.c b/drivers/pci/controller/dwc/pci-imx6.c
index a3acf144a40d..4f20094faee5 100644
--- a/drivers/pci/controller/dwc/pci-imx6.c
+++ b/drivers/pci/controller/dwc/pci-imx6.c
@@ -1172,11 +1172,10 @@ static int imx6_pcie_probe(struct platform_device *pdev)
if (IS_ERR(imx6_pcie->pcie_aux))
return dev_err_probe(dev, PTR_ERR(imx6_pcie->pcie_aux),
"pcie_aux clock source missing or invalid\n");
- fallthrough;
- case IMX7D:
if (dbi_base->start == IMX8MQ_PCIE2_BASE_ADDR)
imx6_pcie->controller_id = 1;
-
+ fallthrough;
+ case IMX7D:
imx6_pcie->pciephy_reset = devm_reset_control_get_exclusive(dev,
"pciephy");
if (IS_ERR(imx6_pcie->pciephy_reset)) {
--
2.47.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 5.4 0/1] PCI: imx6: Fix i.MX7D controller_id backport regression
2025-05-05 9:23 ` [PATCH 6.6 0/2] PCI: imx6: Fix i.MX7D controller_id backport regression Greg Kroah-Hartman
2025-05-06 5:42 ` [PATCH 6.1 0/1] " Ryan Matthews
@ 2025-05-06 5:44 ` Ryan Matthews
2025-05-06 5:44 ` [PATCH 5.4 1/1] PCI: imx6: Skip controller_id generation logic for i.MX7D Ryan Matthews
1 sibling, 1 reply; 11+ messages in thread
From: Ryan Matthews @ 2025-05-06 5:44 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Richard Zhu, Lucas Stach, stable, linux-pci, Ryan Matthews
On Sun, May 04, 2025 at 03:13:54PM -0400, Ryan Matthews wrote:
> One conflict resolution is needed to apply the redo patch back to versions
> 6.1 -> 5.15 -> 5.10. One more resolution to apply back to -> 5.4. Patches
> against those other versions aren't included here.
On Mon, May 5, 2025, at 05:23, Greg Kroah-Hartman wrote:
> If you want to submit patches for those branches, I'll gladly take them,
> thanks!
This patch applies to version 5.4 only.
On this version I build tested but didn't run test. I have practical access
to relevant hardware which runs 6.6 but not this.
-- Ryan
Richard Zhu (1):
PCI: imx6: Skip controller_id generation logic for i.MX7D
drivers/pci/controller/dwc/pci-imx6.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
base-commit: 2c8115e4757809ffd537ed9108da115026d3581f
--
2.47.2
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 5.4 1/1] PCI: imx6: Skip controller_id generation logic for i.MX7D
2025-05-06 5:44 ` [PATCH 5.4 0/1] PCI: imx6: Fix i.MX7D controller_id backport regression Ryan Matthews
@ 2025-05-06 5:44 ` Ryan Matthews
2025-05-08 16:18 ` Sasha Levin
0 siblings, 1 reply; 11+ messages in thread
From: Ryan Matthews @ 2025-05-06 5:44 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Richard Zhu, Lucas Stach, stable, linux-pci, Ryan Matthews,
Krzysztof Wilczyński, Bjorn Helgaas, Manivannan Sadhasivam,
Frank Li
From: Richard Zhu <hongxing.zhu@nxp.com>
[ Upstream commit f068ffdd034c93f0c768acdc87d4d2d7023c1379 ]
The i.MX7D only has one PCIe controller, so controller_id should always be
0. The previous code is incorrect although yielding the correct result.
Fix by removing "IMX7D" from the switch case branch.
Fixes: 2d8ed461dbc9 ("PCI: imx6: Add support for i.MX8MQ")
Link: https://lore.kernel.org/r/20241126075702.4099164-5-hongxing.zhu@nxp.com
Signed-off-by: Richard Zhu <hongxing.zhu@nxp.com>
Signed-off-by: Krzysztof Wilczyński <kwilczynski@kernel.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Reviewed-by: Frank Li <Frank.Li@nxp.com>
[Because this switch case does more than just controller_id
logic, move the "IMX7D" case label instead of removing it entirely.]
Signed-off-by: Ryan Matthews <ryanmatthews@fastmail.com>
---
drivers/pci/controller/dwc/pci-imx6.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/pci/controller/dwc/pci-imx6.c b/drivers/pci/controller/dwc/pci-imx6.c
index 30c259f63239..86cdd27cdd3b 100644
--- a/drivers/pci/controller/dwc/pci-imx6.c
+++ b/drivers/pci/controller/dwc/pci-imx6.c
@@ -1112,11 +1112,10 @@ static int imx6_pcie_probe(struct platform_device *pdev)
dev_err(dev, "pcie_aux clock source missing or invalid\n");
return PTR_ERR(imx6_pcie->pcie_aux);
}
- /* fall through */
- case IMX7D:
if (dbi_base->start == IMX8MQ_PCIE2_BASE_ADDR)
imx6_pcie->controller_id = 1;
-
+ /* fall through */
+ case IMX7D:
imx6_pcie->pciephy_reset = devm_reset_control_get_exclusive(dev,
"pciephy");
if (IS_ERR(imx6_pcie->pciephy_reset)) {
--
2.47.2
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH 5.4 1/1] PCI: imx6: Skip controller_id generation logic for i.MX7D
2025-05-06 5:44 ` [PATCH 5.4 1/1] PCI: imx6: Skip controller_id generation logic for i.MX7D Ryan Matthews
@ 2025-05-08 16:18 ` Sasha Levin
0 siblings, 0 replies; 11+ messages in thread
From: Sasha Levin @ 2025-05-08 16:18 UTC (permalink / raw)
To: stable; +Cc: Ryan Matthews, Sasha Levin
[ Sasha's backport helper bot ]
Hi,
✅ All tests passed successfully. No issues detected.
No action required from the submitter.
The upstream commit SHA1 provided is correct: f068ffdd034c93f0c768acdc87d4d2d7023c1379
WARNING: Author mismatch between patch and upstream commit:
Backport author: Ryan Matthews<ryanmatthews@fastmail.com>
Commit author: Richard Zhu<hongxing.zhu@nxp.com>
Status in newer kernel trees:
6.14.y | Present (exact SHA1)
6.12.y | Present (different SHA1: d0f8c566464d)
6.6.y | Present (different SHA1: 8f5a9b5cc102)
6.1.y | Not found
5.15.y | Not found
5.10.y | Not found
Note: The patch differs from the upstream commit:
---
1: f068ffdd034c9 < -: ------------- PCI: imx6: Skip controller_id generation logic for i.MX7D
-: ------------- > 1: 34963c5f41fd6 PCI: imx6: Skip controller_id generation logic for i.MX7D
---
Results of testing on various branches:
| Branch | Patch Apply | Build Test |
|---------------------------|-------------|------------|
| stable/linux-5.4.y | Success | Success |
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-05-08 16:18 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-04 19:13 [PATCH 6.6 0/2] PCI: imx6: Fix i.MX7D controller_id backport regression Ryan Matthews
2025-05-04 19:13 ` [PATCH 6.6 1/2] Revert "PCI: imx6: Skip controller_id generation logic for i.MX7D" Ryan Matthews
2025-05-05 15:13 ` Sasha Levin
2025-05-04 19:13 ` [PATCH 6.6 2/2] PCI: imx6: Skip controller_id generation logic for i.MX7D Ryan Matthews
2025-05-05 15:13 ` Sasha Levin
2025-05-05 9:23 ` [PATCH 6.6 0/2] PCI: imx6: Fix i.MX7D controller_id backport regression Greg Kroah-Hartman
2025-05-06 5:42 ` [PATCH 6.1 0/1] " Ryan Matthews
2025-05-06 5:42 ` [PATCH 6.1 1/1] PCI: imx6: Skip controller_id generation logic for i.MX7D Ryan Matthews
2025-05-06 5:44 ` [PATCH 5.4 0/1] PCI: imx6: Fix i.MX7D controller_id backport regression Ryan Matthews
2025-05-06 5:44 ` [PATCH 5.4 1/1] PCI: imx6: Skip controller_id generation logic for i.MX7D Ryan Matthews
2025-05-08 16:18 ` Sasha Levin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox