From patchwork Tue Mar 7 09:52:45 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kishon Vijay Abraham I X-Patchwork-Id: 94959 Delivered-To: patch@linaro.org Received: by 10.140.82.71 with SMTP id g65csp1810757qgd; Tue, 7 Mar 2017 01:57:15 -0800 (PST) X-Received: by 10.84.140.131 with SMTP id 3mr33654028plt.151.1488880635541; Tue, 07 Mar 2017 01:57:15 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id d27si22070396pfj.240.2017.03.07.01.57.15; Tue, 07 Mar 2017 01:57:15 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-samsung-soc-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@ti.com; spf=pass (google.com: best guess record for domain of linux-samsung-soc-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-samsung-soc-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=ti.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754747AbdCGJ5P (ORCPT + 4 others); Tue, 7 Mar 2017 04:57:15 -0500 Received: from fllnx210.ext.ti.com ([198.47.19.17]:25520 "EHLO fllnx210.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750824AbdCGJ5N (ORCPT ); Tue, 7 Mar 2017 04:57:13 -0500 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by fllnx210.ext.ti.com (8.15.1/8.15.1) with ESMTP id v279qwf0030252; Tue, 7 Mar 2017 03:52:58 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ti.com; s=ti-com-17Q1; t=1488880378; bh=yB0T6WGC2N3VdsbaXKwEIr9J35iQXMkOt7Q2hH+5YQc=; h=From:To:CC:Subject:Date; b=kqEfvEvtLtz7qdeu4Qj03DC3v+i9jnZO2Iy6ws0KhAT3b8aeowgCzqCYcOIJ2qkPe 6HtHnTEPMFM2pCOSaLdRZCLkE3Dl3jpzy2j6uMl2caGjPh1ggQwusiQbdsONprggju 7ONWmXVe8bva0S+6bF2x9LDXYVko4c1M0nz7+0uM= Received: from DFLE72.ent.ti.com (dfle72.ent.ti.com [128.247.5.109]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id v279qwKb011909; Tue, 7 Mar 2017 03:52:58 -0600 Received: from dflp33.itg.ti.com (10.64.6.16) by DFLE72.ent.ti.com (128.247.5.109) with Microsoft SMTP Server id 14.3.294.0; Tue, 7 Mar 2017 03:52:58 -0600 Received: from a0393678ub.india.ti.com (ileax41-snat.itg.ti.com [10.172.224.153]) by dflp33.itg.ti.com (8.14.3/8.13.8) with ESMTP id v279qsZV011421; Tue, 7 Mar 2017 03:52:55 -0600 From: Kishon Vijay Abraham I To: Bjorn Helgaas , Joao Pinto , , , , , , CC: , Kishon Vijay Abraham I Subject: [PATCH v2 0/7] PCI: dwc: miscellaneous fixes and cleanups Date: Tue, 7 Mar 2017 15:22:45 +0530 Message-ID: <1488880372-7390-1-git-send-email-kishon@ti.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org This should be the final set of cleanups/fixes before endpoint support can be merged. Keerthy's patch is a general fix in dra7xx driver and is not directly related to endpoint mode. This series was previously sent with a different cover letter $subject [1] Changes from v1: *) included a patch to rename _unroll() to _ob_unroll() as similar thing has to be done for inbound window in the case of EP mode. *) used 'size_t' instead of 'int' for specifying the size in read_dbi/write_dbi function arguments. *) Populate cpu_addr_fixup ops for artpec6 as suggested by Niklas This series is based on 4.11-rc1 [1] -> https://lkml.org/lkml/2017/2/16/270 Keerthy (1): PCI: dwc: dra7xx: Push request_irq call to the bottom of probe Kishon Vijay Abraham I (6): PCI: dwc: designware: Add new *ops* for cpu addr fixup PCI: dwc: dra7xx: Populate cpu_addr_fixup ops PCI: dwc: artpec6: Populate cpu_addr_fixup ops PCI: dwc: all: Modify dbi accessors to take dbi_base as argument PCI: dwc: all: Modify dbi accessors to access data of 4/2/1 bytes PCI: dwc: designware: Modify _unroll() to _ob_unroll() drivers/pci/dwc/Kconfig | 18 ++--- drivers/pci/dwc/pci-dra7xx.c | 35 +++++---- drivers/pci/dwc/pci-exynos.c | 14 ++-- drivers/pci/dwc/pci-imx6.c | 62 +++++++++------- drivers/pci/dwc/pci-keystone-dw.c | 16 ++-- drivers/pci/dwc/pcie-armada8k.c | 39 +++++----- drivers/pci/dwc/pcie-artpec6.c | 22 ++++-- drivers/pci/dwc/pcie-designware-host.c | 20 ++--- drivers/pci/dwc/pcie-designware.c | 127 ++++++++++++++++++++------------ drivers/pci/dwc/pcie-designware.h | 13 +++- drivers/pci/dwc/pcie-hisi.c | 17 +++-- 11 files changed, 226 insertions(+), 157 deletions(-) -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Acked-By: Joao Pinto Acked-By: Joao Pinto