On 3/19/20 8:49 AM, Daire McNamara wrote: > Signed-off-by: Daire McNamara <daire.mcnamara@xxxxxxxxxxxxx> > -- > This v5 patch series adds support for PCIe IP block on Microchip PolarFire SoC. > > Updates since v4: > * Fix compile issues > > Updates since v3: > * Update all references to Microsemi to Microchip > * Separate MSI functionality from legacy PCIe interrupt handling functionality > > Updates since v2: > * Split out DT bindings and Vendor ID updates into their own patch > from PCIe driver. > * Updated Change Log > > Updates since v1: > * Incorporate feedback from Bjorn Helgaas > > > Daire McNamara (1): > PCI: microchip: Add host driver for Microchip PCIe controller > > .../bindings/pci/microchip-pcie.txt | 64 ++ > drivers/pci/controller/Kconfig | 7 + > drivers/pci/controller/Makefile | 1 + > drivers/pci/controller/pcie-microchip.c | 789 ++++++++++++++++++ > 4 files changed, 861 insertions(+) > create mode 100644 Documentation/devicetree/bindings/pci/microchip-pcie.txt > create mode 100644 drivers/pci/controller/pcie-microchip.c > Hi, Is the Kconfig symbol "PC" below a typo? diff --git a/drivers/pci/controller/Kconfig b/drivers/pci/controller/Kconfig index 6671946dbf66..7141d26e668c 100644 --- a/drivers/pci/controller/Kconfig +++ b/drivers/pci/controller/Kconfig @@ -280,5 +280,15 @@ config VMD To compile this driver as a module, choose M here: the module will be called vmd. +config PCIE_MICROCHIP + bool "Microchip AXI PCIe host bridge support" + depends on PCI_MSI && OF + select PCI_MSI_IRQ_DOMAIN + select GENERIC_MSI_IRQ_DOMAIN + select PC <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< + help + Say Y here if you want kernel to support the Microchip AXI PCIe + Host Bridge driver. + -- ~Randy