diff options
| author | Richard Zhu <[email protected]> | 2025-07-08 09:10:03 +0000 |
|---|---|---|
| committer | Bjorn Helgaas <[email protected]> | 2025-07-15 17:03:56 +0000 |
| commit | 399444a87acdea5d21c218bc8e9b621fea1cd218 (patch) | |
| tree | 9bf29191fe11d01914a7ac9a03665f5f930e375f /drivers/pci/controller/dwc | |
| parent | PCI: imx6: Add IMX8MQ_EP third 64-bit BAR in epc_features (diff) | |
| download | kernel-399444a87acdea5d21c218bc8e9b621fea1cd218.tar.gz kernel-399444a87acdea5d21c218bc8e9b621fea1cd218.zip | |
PCI: imx6: Add IMX8MM_EP and IMX8MP_EP fixed 256-byte BAR 4 in epc_features
For IMX8MM_EP and IMX8MP_EP, add fixed 256-byte BAR 4 and reserved BAR 5
in imx8m_pcie_epc_features.
Fixes: 75c2f26da03f ("PCI: imx6: Add i.MX PCIe EP mode support")
Signed-off-by: Richard Zhu <[email protected]>
[bhelgaas: add details in subject]
Signed-off-by: Bjorn Helgaas <[email protected]>
Reviewed-by: Frank Li <[email protected]>
Cc: [email protected]
Link: https://patch.msgid.link/[email protected]
Diffstat (limited to 'drivers/pci/controller/dwc')
| -rw-r--r-- | drivers/pci/controller/dwc/pci-imx6.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/pci/controller/dwc/pci-imx6.c b/drivers/pci/controller/dwc/pci-imx6.c index 7d15bcb7c107..9754cc6e09b9 100644 --- a/drivers/pci/controller/dwc/pci-imx6.c +++ b/drivers/pci/controller/dwc/pci-imx6.c @@ -1385,6 +1385,8 @@ static const struct pci_epc_features imx8m_pcie_epc_features = { .msix_capable = false, .bar[BAR_1] = { .type = BAR_RESERVED, }, .bar[BAR_3] = { .type = BAR_RESERVED, }, + .bar[BAR_4] = { .type = BAR_FIXED, .fixed_size = SZ_256, }, + .bar[BAR_5] = { .type = BAR_RESERVED, }, .align = SZ_64K, }; |
