From patchwork Wed Jan 11 12:53:12 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daire.McNamara@microchip.com X-Patchwork-Id: 641450 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 7FF89C46467 for ; Wed, 11 Jan 2023 12:53:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232758AbjAKMxl (ORCPT ); Wed, 11 Jan 2023 07:53:41 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57104 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238549AbjAKMxe (ORCPT ); Wed, 11 Jan 2023 07:53:34 -0500 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.154.123]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B0EA818B10; Wed, 11 Jan 2023 04:53:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1673441614; x=1704977614; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=QKLSe53ZxfhTjhv3XU7LdIwDt1114h07vebSpiOwft4=; b=Ilk7fx/hscrVQfBDU6abK2L2wwosdEa7djxDymOUJnmguMVrgOS/4Mzo 8NnTTkwwCqCUg9Iu/kz1NCg0+h6AO+Rg5XKtg3SSCK77SDTisZPX2GLg1 CSD95djrs28F7uRufAnIAHGo+/ew3QSUGLe9sTXfMiZw2uE4GOfAgBX0X mYGap52M+uYaPVpLOoEGSDyAFF58GDbaGTyEHIXeb6vIkvdcUjzZkLAcQ 3VKoPe/q5MLzbZ1JTX//8GBH2Vtfm7MjPVyieXuTlrQ0fqdvmpg5+kcUC 70SYL+Bny6ne7hAtMSDlI0CD8kKvsRQJDNitIVxb+eEtI++ntNFTzjgs6 A==; X-IronPort-AV: E=Sophos;i="5.96,317,1665471600"; d="scan'208";a="191745067" Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa4.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 11 Jan 2023 05:53:34 -0700 Received: from chn-vm-ex01.mchp-main.com (10.10.85.143) by chn-vm-ex03.mchp-main.com (10.10.85.151) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.16; Wed, 11 Jan 2023 05:53:29 -0700 Received: from daire-X570.amer.actel.com (10.10.115.15) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server id 15.1.2507.16 via Frontend Transport; Wed, 11 Jan 2023 05:53:26 -0700 From: To: , , , , , , , , , , , CC: Daire McNamara Subject: [PATCH v3 00/11] PCI: microchip: Partition address translations Date: Wed, 11 Jan 2023 12:53:12 +0000 Message-ID: <20230111125323.1911373-1-daire.mcnamara@microchip.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org From: Daire McNamara Changes since v2: - Replaced GENMASK(63,0) with GENMASK_ULL(63,0) to remove warning - Added patch to avoid warning on cast of argument to devm_add_action_or_reset() - Added patch to enable building driver as a module Changes since v1: - Removed unused variables causing compile warnings - Removed incorrect Signed-off-by: tags - Capitalised msi and msi-x - Capitalised FIC and respelled busses to buses - Capitalised all comments - Renamed fabric inter connect to Fabric Interface Controller as per PolarFire SoC TRM Microchip PolarFire SoC is a 64-bit device and has DDR starting at 0x80000000 and 0x1000000000. Its PCIe rootport is connected to the CPU Coreplex via an FPGA fabric. The AXI connections between the Coreplex and the fabric are 64-bit and the AXI connections between the fabric and the rootport are 32-bit. For the CPU CorePlex to act as an AXI-Master to the PCIe devices and for the PCIe devices to act as bus masters to DDR at these base addresses, the fabric can be customised to add/remove offsets for bits 38-32 in each direction. These offsets, if present, vary with each customer's design. To support this variety, the rootport driver must know how much address translation (both inbound and outbound) is performed by a particular customer design and how much address translation must be provided by the rootport. This patchset contains a parent/child dma-ranges scheme suggested by Rob Herring. It creates an FPGA PCIe parent bus which wraps the PCIe rootport and implements a parsing scheme where the root port identifies what address translations are performed by the FPGA fabric parent bus, and what address translations must be done by the rootport itself. See https://lore.kernel.org/linux-pci/20220902142202.2437658-1-daire.mcnamara@microchip.com/ for the relevant previous patch submission discussion. It also re-partitions the probe() and init() functions as suggested by Bjorn Helgaas to make them more maintainable as the init() function had become too large. It also contains some minor fixes and clean-ups that are pre-requisites: - to align register, offset, and mask names with the hardware documentation and to have the register definitions appear in the same order as in the hardware documentation; - to harvest the MSI information from the hardware configuration register as these depend on the FPGA fabric design and can vary with different customer designs; - to clean up interrupt initialisation to make it more maintainable; - to fix SEC and DED interrupt handling. I expect Conor will take the dts patch via the soc tree once the PCIe parts of the series are accepted. Conor Dooley (1): riscv: dts: microchip: add parent ranges and dma-ranges for IKRD v2022.09 Daire McNamara (10): PCI: microchip: Correct the DED and SEC interrupt bit offsets PCI: microchip: Remove cast warning for devm_add_action_or_reset() arg PCI: microchip: enable building this driver as a module PCI: microchip: Align register, offset, and mask names with hw docs PCI: microchip: Enable event handlers to access bridge and ctrl ptrs PCI: microchip: Clean up initialisation of interrupts PCI: microchip: Gather MSI information from hardware config registers PCI: microchip: Re-partition code between probe() and init() PCI: microchip: Partition outbound address translation PCI: microchip: Partition inbound address translation .../dts/microchip/mpfs-icicle-kit-fabric.dtsi | 62 +- drivers/pci/controller/Kconfig | 2 +- drivers/pci/controller/pcie-microchip-host.c | 688 +++++++++++++----- 3 files changed, 533 insertions(+), 219 deletions(-) base-commit: 3c1f24109dfc4fb1a3730ed237e50183c6bb26b3