Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1305097
| From | David Daney <ddaney.cavm@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v3 0/2] pci: Add host controller driver for Cavium ThunderX PCIe |
| Date | 2016-01-09 01:00 +0100 |
| Message-ID | <qOP6N-5zU-5@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: David Daney <david.daney@cavium.com> Some Cavium ThunderX processors require quirky access methods for the config space of the PCIe bridge. There are two patches: 1) Refactor code in pci-host-generic so that it can more easily be used by other drivers. This splits the driver for CAM and ECAM access methods to a separate file from the common host driver code. 2) Add the ThunderX PCIe driver, which leverages the code in pci-host-generic Changes from v2: Improve device tree binding example as noted by Rob Herring. Rename pcie-thunder-pem.* to pci-thunder-pem.* for better consistency. Update MAINTAINERS to reflect the changes. Changes from v1: Split CAM and ECAM code from common driver code as suggested by Arnd Bergmann. Fix spelling errors in pcie-thunder-pem.txt David Daney (2): PCI: generic: Refactor code to enable reuse by other drivers. pci, pci-thunder-pem: Add PCIe host driver for ThunderX processors. .../devicetree/bindings/pci/pci-thunder-pem.txt | 43 ++++ MAINTAINERS | 9 + drivers/pci/host/Kconfig | 11 + drivers/pci/host/Makefile | 2 + drivers/pci/host/pci-host-common.c | 194 ++++++++++++++ drivers/pci/host/pci-host-common.h | 56 ++++ drivers/pci/host/pci-host-generic.c | 190 +------------- drivers/pci/host/pci-thunder-pem.c | 283 +++++++++++++++++++++ 8 files changed, 602 insertions(+), 186 deletions(-) create mode 100644 Documentation/devicetree/bindings/pci/pci-thunder-pem.txt create mode 100644 drivers/pci/host/pci-host-common.c create mode 100644 drivers/pci/host/pci-host-common.h create mode 100644 drivers/pci/host/pci-thunder-pem.c -- 1.8.3.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v3 0/2] pci: Add host controller driver for Cavium ThunderX PCIe David Daney <ddaney.cavm@gmail.com> - 2016-01-09 01:00 +0100
[PATCH v3 2/2] pci, pci-thunder-pem: Add PCIe host driver for ThunderX processors. David Daney <ddaney.cavm@gmail.com> - 2016-01-09 01:00 +0100
Re: [PATCH v3 2/2] pci, pci-thunder-pem: Add PCIe host driver for ThunderX processors. Rob Herring <robh@kernel.org> - 2016-01-10 00:00 +0100
Re: [PATCH v3 0/2] pci: Add host controller driver for Cavium ThunderX PCIe Arnd Bergmann <arnd@arndb.de> - 2016-01-12 23:00 +0100
csiph-web