From patchwork Mon Sep 25 07:21:14 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yoshihiro Shimoda X-Patchwork-Id: 13397307 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id F3B68CE7A8C for ; Mon, 25 Sep 2023 07:21:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230314AbjIYHVn (ORCPT ); Mon, 25 Sep 2023 03:21:43 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43438 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230289AbjIYHVl (ORCPT ); Mon, 25 Sep 2023 03:21:41 -0400 Received: from relmlie6.idc.renesas.com (relmlor2.renesas.com [210.160.252.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 8A4DACF; Mon, 25 Sep 2023 00:21:34 -0700 (PDT) X-IronPort-AV: E=Sophos;i="6.03,174,1694703600"; d="scan'208";a="180864164" Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie6.idc.renesas.com with ESMTP; 25 Sep 2023 16:21:34 +0900 Received: from localhost.localdomain (unknown [10.166.15.32]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id E5E824008C6F; Mon, 25 Sep 2023 16:21:33 +0900 (JST) From: Yoshihiro Shimoda To: lpieralisi@kernel.org, kw@linux.com, robh@kernel.org, bhelgaas@google.com, krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org, jingoohan1@gmail.com, gustavo.pimentel@synopsys.com, mani@kernel.org Cc: marek.vasut+renesas@gmail.com, linux-pci@vger.kernel.org, devicetree@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Yoshihiro Shimoda Subject: [PATCH v22 00/16] PCI: dwc: rcar-gen4: Add R-Car Gen4 PCIe support Date: Mon, 25 Sep 2023 16:21:14 +0900 Message-Id: <20230925072130.3901087-1-yoshihiro.shimoda.uh@renesas.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org Add R-Car S4-8 (R-Car Gen4) PCIe controller for both host and endpoint modes. To support them, modify PCIe DesignWare common codes. Changes from v21: https://lore.kernel.org/linux-pci/20230922065331.3806925-1-yoshihiro.shimoda.uh@renesas.com/ - Based on the latest pci.git / next branch. - Fix -Wmissing-prototypes warnings that was reported by kernel test robot: https://lore.kernel.org/linux-pci/202309222125.KiN4nFhD-lkp@intel.com/ Changes from v20 + squash patches: https://lore.kernel.org/linux-pci/20230825093219.2685912-1-yoshihiro.shimoda.uh@renesas.com/ https://lore.kernel.org/linux-pci/20230901131711.2861283-1-yoshihiro.shimoda.uh@renesas.com/ - Based on the latest pci.git / next branch. - Cherry-picked almost all patches from the pci.git / controller/rcar branch for squashing. - But, drop the following patches which are related to INTx. eb185e1e628a PCI: designware-ep: Add INTx IRQs support 5d0e51f85b23 PCI: dwc: Add outbound MSG TLPs support 4758bef61cc2 PCI: dwc: Change arguments of dw_pcie_prog_outbound_atu() 44938b13046b PCI: Add INTx Mechanism Messages macros - Add a new macro T_PVPERL in the patch 12/16. - Merge pcie-rcar-gen4-{ep,host}-drv.c and pcie-rcar-gen4.h files into pcie-rcar-gen4.c. - Add CONFIG_PCIE_RCAR_GEN4_HOST config. - Fix some comments. - Change return type of rcar_gen4_pcie_speed_change(). - Add registers' full names as comments. - Rename function names of rcar_gen4_{add,remove}_pcie_ep() to rcar_gen4_{add,remove}_dw_pcie_ep() for consistency. Yoshihiro Shimoda (16): PCI: dwc: endpoint: Add multiple PFs support for dbi2 PCI: dwc: Add dw_pcie_link_set_max_link_width() PCI: dwc: Add missing PCI_EXP_LNKCAP_MLW handling PCI: tegra194: Drop PCI_EXP_LNKSTA_NLW setting PCI: dwc: Add EDMA_UNROLL capability flag PCI: dwc: Expose dw_pcie_ep_exit() to module PCI: dwc: Expose dw_pcie_write_dbi2() to module PCI: dwc: endpoint: Introduce .pre_init() and .deinit() dt-bindings: PCI: dwc: Update maxItems of reg and reg-names dt-bindings: PCI: renesas: Add R-Car Gen4 PCIe Host dt-bindings: PCI: renesas: Add R-Car Gen4 PCIe Endpoint PCI: add T_PVPERL macro PCI: dwc: rcar-gen4: Add R-Car Gen4 PCIe controller support PCI: dwc: rcar-gen4: Add R-Car Gen4 PCIe Endpoint support MAINTAINERS: Update PCI DRIVER FOR RENESAS R-CAR for R-Car Gen4 misc: pci_endpoint_test: Add Device ID for R-Car S4-8 PCIe controller .../bindings/pci/rcar-gen4-pci-ep.yaml | 115 ++++ .../bindings/pci/rcar-gen4-pci-host.yaml | 127 +++++ .../bindings/pci/snps,dw-pcie-common.yaml | 4 +- .../bindings/pci/snps,dw-pcie-ep.yaml | 4 +- .../devicetree/bindings/pci/snps,dw-pcie.yaml | 4 +- MAINTAINERS | 1 + drivers/misc/pci_endpoint_test.c | 4 + drivers/pci/controller/dwc/Kconfig | 25 + drivers/pci/controller/dwc/Makefile | 1 + .../pci/controller/dwc/pcie-designware-ep.c | 45 +- drivers/pci/controller/dwc/pcie-designware.c | 102 ++-- drivers/pci/controller/dwc/pcie-designware.h | 8 +- drivers/pci/controller/dwc/pcie-rcar-gen4.c | 511 ++++++++++++++++++ drivers/pci/controller/dwc/pcie-tegra194.c | 6 - drivers/pci/pci.h | 3 + 15 files changed, 891 insertions(+), 69 deletions(-) create mode 100644 Documentation/devicetree/bindings/pci/rcar-gen4-pci-ep.yaml create mode 100644 Documentation/devicetree/bindings/pci/rcar-gen4-pci-host.yaml create mode 100644 drivers/pci/controller/dwc/pcie-rcar-gen4.c