diff mbox series

[05/18] pci: layerscape: add support for kernel/official fsl, ls1088a-pcie binding

Message ID 20230412073830.13928-6-matt@traverse.com.au
State Accepted
Commit e0f74092afdd7f7110b77e4b3f796cff4172f9b9
Delegated to: Peng Fan
Headers show
Series Synchronise LS1088A/Ten64 device tree with Linux | expand

Commit Message

Mathew McBride April 12, 2023, 7:38 a.m. UTC
This allows the Layerscape PCIe RC driver to use the upstream
style binding (two "reg" entries instead of four).

It is similar to the previous commit e10da1f985ad
("pci: layerscape: add official ls1028a binding support")
which implemented this for the LS1028A.

Signed-off-by: Mathew McBride <matt@traverse.com.au>
---
 drivers/pci/pcie_layerscape_rc.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Peng Fan (OSS) April 28, 2023, 3:26 a.m. UTC | #1
On 4/12/2023 3:38 PM, Mathew McBride wrote:
> This allows the Layerscape PCIe RC driver to use the upstream
> style binding (two "reg" entries instead of four).
> 
> It is similar to the previous commit e10da1f985ad
> ("pci: layerscape: add official ls1028a binding support")
> which implemented this for the LS1028A.
> 
> Signed-off-by: Mathew McBride<matt@traverse.com.au>

Reviewed-by: Peng Fan <peng.fan@nxp.com>
diff mbox series

Patch

diff --git a/drivers/pci/pcie_layerscape_rc.c b/drivers/pci/pcie_layerscape_rc.c
index 17969e2f23..6a5bf88da2 100644
--- a/drivers/pci/pcie_layerscape_rc.c
+++ b/drivers/pci/pcie_layerscape_rc.c
@@ -403,6 +403,7 @@  static const struct ls_pcie_drvdata ls1028a_drvdata = {
 static const struct udevice_id ls_pcie_ids[] = {
 	{ .compatible = "fsl,ls-pcie" },
 	{ .compatible = "fsl,ls1028a-pcie", .data = (ulong)&ls1028a_drvdata },
+	{ .compatible = "fsl,ls1088a-pcie", .data = (ulong)&ls1028a_drvdata },
 	{ }
 };