From: Hans Zhang <hans.zhang@xxxxxxxxxxx> --- Dear Maintainers, This series is Cadence's HPA PCIe IP and the Root Port driver of our CIX sky1. Please help review. Thank you very much. --- Enhances the exiting Cadence PCIe controller drivers to support HPA (High Performance Architecture) Cadence PCIe controllers. The patch set enhances the Cadence PCIe driver for HPA support. The header files are separated out for legacy and high performance register maps, register address and bit definitions. The driver read register and write register functions for HPA take the updated offset stored from the platform driver to access the registers. As part of refactoring of the code, few new files are added to the driver by splitting the existing files. This helps SoC vendor who change the address map within PCIe controller in their designs. Setting the menuconfig appropriately will allow selection between RP and/or EP PCIe controller support. The support will include Legacy and HPA for the selected configuration. The TI SoC continues to be supported with the changes incorporated. The changes address the review comments in the previous patches where the need to move away from "ops" pointers used in current implementation and separate out the Legacy and HPA driver implementation was stressed. The scripts/checkpatch.pl has been run on the patches with and without --strict. With the --strict option, 4 checks are generated on 2 patch, which can be ignored. There are no code fixes required for these checks. All other checks generated by ./scripts/checkpatch.pl --strict can be ignored. --- Changes for v7 - Rebase to v6.17-rc1. - Fixed the error issue of cix,sky1-pcie-host.yaml make dt_binding_check. - CIX SKY1 Root Port driver compilation error issue: Add header file, Kconfig select PCI_ECAM. Changes for v6 - Based on the latest linux master branch. - The IP level DTS changes for HPA have been removed as the SoC level DTS is added - Virtual FPGA platform is also removed as the CiX SoC support is added - Fix the issue of dt bindings - Modify the order of PCIe node attributes in sky1-orion-o6.dts and delete unnecessary attributes. - Continue to simplify the RC driver. - The patch of the Cix Sky1 platform has been accepted and merged into the linux master branch. https://patchwork.kernel.org/project/linux-arm-kernel/cover/20250721144500.302202-1-peter.chen@xxxxxxxxxxx/ Changes for v5 - Header and code files separated for library functions(common functions used by both architectures) and Legacy and HPA. - Few new files added as part of refactoring - No checks for "is_hpa" as the functions have been separated out - Review comments from previous patches have been addressed - Add region 0 for ECAM and region 1 for message. - Add CIX sky1 PCIe drivers. Submissions based on the following v9 patches: https://patchwork.kernel.org/project/linux-arm-kernel/cover/20250609031627.1605851-1-peter.chen@xxxxxxxxxxx/ Cix Sky1 base dts review link to show its review status: https://lore.kernel.org/all/20250609031627.1605851-9-peter.chen@xxxxxxxxxxx/ The test log on the Orion O6 board is as follows: root@cix-localhost:~# lspci 0000:c0:00.0 PCI bridge: Device 1f6c:0001 0000:c1:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. Device 8126 (rev 01) 0001:90:00.0 PCI bridge: Device 1f6c:0001 0001:91:00.0 Non-Volatile memory controller: Samsung Electronics Co Ltd NVMe SSD Controller PM9A1/PM9A3/980PRO 0002:60:00.0 PCI bridge: Device 1f6c:0001 0002:61:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8852BE PCIe 802.11ax Wireless Network Controller 0003:00:00.0 PCI bridge: Device 1f6c:0001 0003:01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. Device 8126 (rev 01) 0004:30:00.0 PCI bridge: Device 1f6c:0001 0004:31:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. Device 8126 (rev 01) root@cix-localhost:~# uname -a Linux cix-localhost 6.16.0-rc1-00023-gbaa962a95a28 #138 SMP PREEMPT Fri Jun 27 16:43:41 CST 2025 aarch64 GNU/Linux root@cix-localhost:~# cat /etc/issue Debian GNU/Linux 12 \n \l Changes for v4 - Add header file bitfield.h to pcie-cadence.h - Addressed the following review comments Merged the TI patch as it Removed initialization of struct variables to '0' Changes for v3 - Patch version v3 added to the subject - Use HPA tag for architecture descriptions - Remove bug related changes to be submitted later as a separate patch - Two patches merged from the last series to ensure readability to address the review comments - Fix several description related issues, coding style issues and some misleading comments - Remove cpu_addr_fixup() functions --- Hans Zhang (6): dt-bindings: PCI: Add CIX Sky1 PCIe Root Complex bindings PCI: Add Cix Technology Vendor and Device ID PCI: sky1: Add PCIe host support for CIX Sky1 MAINTAINERS: add entry for CIX Sky1 PCIe driver arm64: dts: cix: Add PCIe Root Complex on sky1 arm64: dts: cix: Enable PCIe on the Orion O6 board Manikandan K Pillai (7): PCI: cadence: Add support for modules for cadence controller builds PCI: cadence: Split PCIe controller header file PCI: cadence: Add register definitions for HPA(High Perf Architecture) PCI: cadence: Split PCIe EP support into common and specific functions PCI: cadence: Split PCIe RP support into common and specific functions PCI: cadence: Split the common functions for PCIe controller support PCI: cadence: Add support for High Performance Arch(HPA) controller .../bindings/pci/cix,sky1-pcie-host.yaml | 79 +++ MAINTAINERS | 7 + arch/arm64/boot/dts/cix/sky1-orion-o6.dts | 20 + arch/arm64/boot/dts/cix/sky1.dtsi | 121 ++++ drivers/pci/controller/cadence/Kconfig | 19 +- drivers/pci/controller/cadence/Makefile | 11 +- drivers/pci/controller/cadence/pci-sky1.c | 294 +++++++++ .../controller/cadence/pcie-cadence-common.c | 142 +++++ .../cadence/pcie-cadence-ep-common.c | 252 ++++++++ .../cadence/pcie-cadence-ep-common.h | 36 ++ .../controller/cadence/pcie-cadence-ep-hpa.c | 528 ++++++++++++++++ .../pci/controller/cadence/pcie-cadence-ep.c | 243 +------- .../cadence/pcie-cadence-host-common.c | 181 ++++++ .../cadence/pcie-cadence-host-common.h | 25 + .../cadence/pcie-cadence-host-hpa.c | 586 ++++++++++++++++++ .../controller/cadence/pcie-cadence-host.c | 156 +---- .../cadence/pcie-cadence-hpa-regs.h | 212 +++++++ .../pci/controller/cadence/pcie-cadence-hpa.c | 207 +++++++ .../cadence/pcie-cadence-lga-regs.h | 228 +++++++ .../controller/cadence/pcie-cadence-plat.c | 28 +- drivers/pci/controller/cadence/pcie-cadence.c | 139 +---- drivers/pci/controller/cadence/pcie-cadence.h | 436 ++++++------- include/linux/pci_ids.h | 3 + 23 files changed, 3174 insertions(+), 779 deletions(-) create mode 100644 Documentation/devicetree/bindings/pci/cix,sky1-pcie-host.yaml create mode 100644 drivers/pci/controller/cadence/pci-sky1.c create mode 100644 drivers/pci/controller/cadence/pcie-cadence-common.c create mode 100644 drivers/pci/controller/cadence/pcie-cadence-ep-common.c create mode 100644 drivers/pci/controller/cadence/pcie-cadence-ep-common.h create mode 100644 drivers/pci/controller/cadence/pcie-cadence-ep-hpa.c create mode 100644 drivers/pci/controller/cadence/pcie-cadence-host-common.c create mode 100644 drivers/pci/controller/cadence/pcie-cadence-host-common.h create mode 100644 drivers/pci/controller/cadence/pcie-cadence-host-hpa.c create mode 100644 drivers/pci/controller/cadence/pcie-cadence-hpa-regs.h create mode 100644 drivers/pci/controller/cadence/pcie-cadence-hpa.c create mode 100644 drivers/pci/controller/cadence/pcie-cadence-lga-regs.h base-commit: 8742b2d8935f476449ef37e263bc4da3295c7b58 -- 2.49.0