mbox series

[v3,0/2] PCI: Add Intel PCIe Driver and respective dt-binding yaml file

Message ID cover.1567585181.git.eswara.kota@linux.intel.com
Headers show
Series PCI: Add Intel PCIe Driver and respective dt-binding yaml file | expand

Message

Dilip Kota Sept. 4, 2019, 10:10 a.m. UTC
Intel PCIe is synopsys based controller utilizes the Designware
framework for host initialization and intel application
specific register configurations.

Changes on v3:
        Compared to v2, map_irq() patch is removed as it is no longer
          required for Intel PCIe driver. Intel PCIe driver does platform
          specific interrupt configuration during core initialization. So
          changed the subject line too.
        Address v2 review comments for DT binding and PCIe driver

Dilip Kota (2):
  dt-bindings: PCI: intel: Add YAML schemas for the PCIe RC controller
  dwc: PCI: intel: Intel PCIe RC controller driver

 .../devicetree/bindings/pci/intel,lgm-pcie.yaml    | 137 ++++
 drivers/pci/controller/dwc/Kconfig                 |  13 +
 drivers/pci/controller/dwc/Makefile                |   1 +
 drivers/pci/controller/dwc/pcie-intel-axi.c        | 840 +++++++++++++++++++++
 4 files changed, 991 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/pci/intel,lgm-pcie.yaml
 create mode 100644 drivers/pci/controller/dwc/pcie-intel-axi.c