From patchwork Mon Mar 13 13:43:21 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: 95235 Delivered-To: patch@linaro.org Received: by 10.140.82.71 with SMTP id g65csp1178619qgd; Mon, 13 Mar 2017 06:46:38 -0700 (PDT) X-Received: by 10.84.209.194 with SMTP id y60mr48218946plh.115.1489412798192; Mon, 13 Mar 2017 06:46:38 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id c5si11486791pfh.191.2017.03.13.06.46.38; Mon, 13 Mar 2017 06:46:38 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-omap-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-omap-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-omap-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 S1753102AbdCMNqc (ORCPT + 4 others); Mon, 13 Mar 2017 09:46:32 -0400 Received: from fllnx210.ext.ti.com ([198.47.19.17]:51258 "EHLO fllnx210.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752228AbdCMNoQ (ORCPT ); Mon, 13 Mar 2017 09:44:16 -0400 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by fllnx210.ext.ti.com (8.15.1/8.15.1) with ESMTP id v2DDhdDD021157; Mon, 13 Mar 2017 08:43:39 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ti.com; s=ti-com-17Q1; t=1489412619; bh=gGcnCkCPGb+Qa+Ab3RoFY6T1pdxuW6RkeFJrfQiIBw4=; h=From:To:CC:Subject:Date; b=wYilXuoDJZdkqMxVl5AsW1ERbtZ1eV+pMBESek4vepDtVKPsxytFvAg9TYhrC+Wi2 9CVjWoWzWIK3X5rEfpXbjLaXSyLNG0Hdzm8mKTLb9G3JUSZD4yIZBbH2VMm4yjhvG3 TdNdpKTcHxjzyACz1qaVGFPXUsJ6pbyrNmRnMw8U= Received: from DFLE73.ent.ti.com (dfle73.ent.ti.com [128.247.5.110]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id v2DDhdKp019279; Mon, 13 Mar 2017 08:43:39 -0500 Received: from dflp32.itg.ti.com (10.64.6.15) by DFLE73.ent.ti.com (128.247.5.110) with Microsoft SMTP Server id 14.3.294.0; Mon, 13 Mar 2017 08:43:38 -0500 Received: from a0393678ub.india.ti.com (ileax41-snat.itg.ti.com [10.172.224.153]) by dflp32.itg.ti.com (8.14.3/8.13.8) with ESMTP id v2DDhZvi017427; Mon, 13 Mar 2017 08:43:36 -0500 From: Kishon Vijay Abraham I To: Bjorn Helgaas , Joao Pinto , Niklas Cassel , , , , CC: , Subject: [PATCH v4 0/7] PCI: dwc: Miscellaneous fixes and cleanups Date: Mon, 13 Mar 2017 19:13:21 +0530 Message-ID: <20170313134328.1588-1-kishon@ti.com> X-Mailer: git-send-email 2.11.0 MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@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 v1 of this series was previously sent with a different cover letter $subject [1] Changes from v3: *) instead of changing all the callers of dbi accessors (taking dbi_base and size), manage it using static inline as suggested by Niklas (used static inline instead of macros because of checkpatch error). Changes from v2: *) Kconfig changes that was spilled into a patch is removed. *) In addition to renaming _unroll() to _ob_unroll(), all the _unroll configurations is also moved a separate function. 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: Move _unroll configurations to a separate function drivers/pci/dwc/pci-dra7xx.c | 25 +++---- drivers/pci/dwc/pci-exynos.c | 14 ++-- drivers/pci/dwc/pcie-artpec6.c | 15 +++-- drivers/pci/dwc/pcie-designware.c | 133 ++++++++++++++++++++++++-------------- drivers/pci/dwc/pcie-designware.h | 23 +++++-- 5 files changed, 135 insertions(+), 75 deletions(-) -- 2.11.0 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html