From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753297AbdBOXAR (ORCPT ); Wed, 15 Feb 2017 18:00:17 -0500 Received: from mail.kernel.org ([198.145.29.136]:59254 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752861AbdBOXAO (ORCPT ); Wed, 15 Feb 2017 18:00:14 -0500 Date: Wed, 15 Feb 2017 17:00:03 -0600 From: Bjorn Helgaas To: Kishon Vijay Abraham I Cc: Bjorn Helgaas , Jingoo Han , 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 Message-ID: <20170215230003.GA26758@bhelgaas-glaptop.roam.corp.google.com> References: <1487164699-30708-1-git-send-email-kishon@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1487164699-30708-1-git-send-email-kishon@ti.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 > 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