linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Bjorn Helgaas <helgaas@kernel.org>
To: Kishon Vijay Abraham I <kishon@ti.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>,
	Jingoo Han <jingoohan1@gmail.com>,
	linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org,
	linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org, linuxppc-dev@lists.ozlabs.org,
	linux-arm-kernel@axis.com, nsekhar@ti.com
Subject: Re: [PATCH 00/10] PCI: dwc: Rework and cleanup designware driver
Date: Wed, 15 Feb 2017 17:00:03 -0600	[thread overview]
Message-ID: <20170215230003.GA26758@bhelgaas-glaptop.roam.corp.google.com> (raw)
In-Reply-To: <1487164699-30708-1-git-send-email-kishon@ti.com>

On Wed, Feb 15, 2017 at 06:48:09PM +0530, Kishon Vijay Abraham I wrote:
> This series reworks designware driver in preparation for adding endpoint
> mode support to designware driver.
> 
> This series was previously sent as part of endpoint support series
> https://lkml.org/lkml/2017/1/13/562
> 
> Validate pci host only in pci-dra7xx. Any help in validating other
> platforms would be highly appreciated.
> 
> This series is created after cherrypicking the following patch and
> then applying pci/host-designware.
> 
> commit a782b5f986c3fa1cfa7f2b57941200c6a5809242
> Author: Murali Karicheri <m-karicheri2@ti.com>
> Date:   Wed Jan 4 14:32:30 2017 -0500
> 
>     PCI: designware: Check for iATU unroll only on platforms that use ATU
> 
> The patches has been pushed to
> git://git.ti.com/linux-phy/linux-phy.git dwc-rework
> 
> Kishon Vijay Abraham I (10):
>   PCI: dwc: designware: Move the register defines to designware header
>     file
>   PCI: dwc: *all*: Add platform_set_drvdata
>   PCI: dwc: *all*: Rename cfg_read/cfg_write to read/write
>   PCI: dwc: designware: Get device pointer at the start of
>     dw_pcie_host_init
>   PCI: dwc: *all*: Split *struct pcie_port* into host only and core
>     structures
>   PCI: dwc: designware: Parse *num-lanes* property in dw_pcie_setup_rc
>   PCI: dwc: designware: Fix style errors in pcie-designware.c
>   PCI: dwc: Split pcie-designware.c into host and core files
>   PCI: dwc: Create a new config symbol to enable pci dwc host
>   PCI: dwc: Remove dependency of designware to CONFIG_PCI
> 
>  drivers/Makefile                       |    3 +
>  drivers/pci/Makefile                   |    3 -
>  drivers/pci/dwc/Kconfig                |   39 +-
>  drivers/pci/dwc/Makefile               |    1 +
>  drivers/pci/dwc/pci-dra7xx.c           |   91 ++--
>  drivers/pci/dwc/pci-exynos.c           |   81 ++--
>  drivers/pci/dwc/pci-imx6.c             |  131 ++---
>  drivers/pci/dwc/pci-keystone-dw.c      |   87 ++--
>  drivers/pci/dwc/pci-keystone.c         |   56 ++-
>  drivers/pci/dwc/pci-keystone.h         |    4 +-
>  drivers/pci/dwc/pci-layerscape.c       |   93 ++--
>  drivers/pci/dwc/pcie-armada8k.c        |   87 ++--
>  drivers/pci/dwc/pcie-artpec6.c         |   50 +-
>  drivers/pci/dwc/pcie-designware-host.c |  635 ++++++++++++++++++++++++
>  drivers/pci/dwc/pcie-designware-plat.c |   29 +-
>  drivers/pci/dwc/pcie-designware.c      |  823 +++-----------------------------
>  drivers/pci/dwc/pcie-designware.h      |  170 +++++--
>  drivers/pci/dwc/pcie-hisi.c            |   57 ++-
>  drivers/pci/dwc/pcie-qcom.c            |   72 ++-
>  drivers/pci/dwc/pcie-spear13xx.c       |   85 ++--
>  20 files changed, 1434 insertions(+), 1163 deletions(-)
>  create mode 100644 drivers/pci/dwc/pcie-designware-host.c

I applied these to pci/host-designware with the intent of merging them
for v4.11.  They're not in -next yet; I'll merge them into -next after
the autobuilder completes.

Bjorn

      parent reply	other threads:[~2017-02-15 23:00 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-15 13:18 [PATCH 00/10] PCI: dwc: Rework and cleanup designware driver Kishon Vijay Abraham I
2017-02-15 13:18 ` [PATCH 01/10] PCI: dwc: designware: Move the register defines to designware header file Kishon Vijay Abraham I
2017-02-16 14:49   ` Jingoo Han
2017-02-15 13:18 ` [PATCH 02/10] PCI: dwc: *all*: Add platform_set_drvdata Kishon Vijay Abraham I
2017-02-15 13:18 ` [PATCH 03/10] PCI: dwc: *all*: Rename cfg_read/cfg_write to read/write Kishon Vijay Abraham I
2017-02-15 13:18 ` [PATCH 04/10] PCI: dwc: designware: Get device pointer at the start of dw_pcie_host_init Kishon Vijay Abraham I
2017-02-15 13:18 ` [RFT PATCH 05/10] PCI: dwc: *all*: Split *struct pcie_port* into host only and core structures Kishon Vijay Abraham I
2017-02-15 13:18 ` [PATCH 06/10] PCI: dwc: designware: Parse *num-lanes* property in dw_pcie_setup_rc Kishon Vijay Abraham I
2017-02-15 13:18 ` [PATCH 07/10] PCI: dwc: designware: Fix style errors in pcie-designware.c Kishon Vijay Abraham I
2017-02-15 13:18 ` [PATCH 08/10] PCI: dwc: Split pcie-designware.c into host and core files Kishon Vijay Abraham I
2017-02-15 13:18 ` [PATCH 09/10] PCI: dwc: Create a new config symbol to enable pci dwc host Kishon Vijay Abraham I
2017-02-15 13:18 ` [PATCH 10/10] PCI: dwc: Remove dependency of designware to CONFIG_PCI Kishon Vijay Abraham I
2017-02-15 23:00 ` Bjorn Helgaas [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170215230003.GA26758@bhelgaas-glaptop.roam.corp.google.com \
    --to=helgaas@kernel.org \
    --cc=bhelgaas@google.com \
    --cc=jingoohan1@gmail.com \
    --cc=kishon@ti.com \
    --cc=linux-arm-kernel@axis.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=nsekhar@ti.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).