From: Mahesh Vaidya <mahesh.vaidya@altera.com>
To: joyce.ooi@intel.com, lpieralisi@kernel.org,
kwilczynski@kernel.org, mani@kernel.org, robh@kernel.org,
bhelgaas@google.com, krzk+dt@kernel.org, conor+dt@kernel.org
Cc: linux-pci@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, subhransu.sekhar.prusty@altera.com,
dinguyen@kernel.org, Mahesh Vaidya <mahesh.vaidya@altera.com>
Subject: [PATCH 1/3] dt-bindings: PCI: altera: add binding for Agilex 5
Date: Fri, 24 Apr 2026 02:49:11 -0700 [thread overview]
Message-ID: <20260424094913.522123-2-mahesh.vaidya@altera.com> (raw)
In-Reply-To: <20260424094913.522123-1-mahesh.vaidya@altera.com>
Add the compatible string for the Agilex 5 PCIe Hard IP root port
controller.
Co-developed-by: Matthew Gerlach <matthew.gerlach@linux.intel.com>
Signed-off-by: Matthew Gerlach <matthew.gerlach@linux.intel.com>
Co-developed-by: Peter Colberg <peter.colberg@intel.com>
Signed-off-by: Peter Colberg <peter.colberg@intel.com>
Signed-off-by: Mahesh Vaidya <mahesh.vaidya@altera.com>
---
.../bindings/pci/altr,pcie-root-port.yaml | 37 ++++++++++---------
1 file changed, 20 insertions(+), 17 deletions(-)
diff --git a/Documentation/devicetree/bindings/pci/altr,pcie-root-port.yaml b/Documentation/devicetree/bindings/pci/altr,pcie-root-port.yaml
index f516db47ab20..f9c2089bad34 100644
--- a/Documentation/devicetree/bindings/pci/altr,pcie-root-port.yaml
+++ b/Documentation/devicetree/bindings/pci/altr,pcie-root-port.yaml
@@ -8,16 +8,17 @@ $schema: http://devicetree.org/meta-schemas/core.yaml#
title: Altera PCIe Root Port
maintainers:
- - Matthew Gerlach <matthew.gerlach@linux.intel.com>
+ - Mahesh Vaidya <mahesh.vaidya@altera.com>
properties:
compatible:
description: Each family of socfpga has its own implementation of the
PCI controller. The altr,pcie-root-port-1.0 is used for the Cyclone5
family of chips. The Stratix10 family of chips is supported by the
- altr,pcie-root-port-2.0. The Agilex family of chips has three,
+ altr,pcie-root-port-2.0. The Agilex7 family of chips has three,
non-register compatible, variants of PCIe Hard IP referred to as the
F-Tile, P-Tile, and R-Tile, depending on the specific chip instance.
+ The altr,pcie-root-port-4.0 is used for the Agilex5 family of chips.
enum:
- altr,pcie-root-port-1.0
@@ -25,20 +26,15 @@ properties:
- altr,pcie-root-port-3.0-f-tile
- altr,pcie-root-port-3.0-p-tile
- altr,pcie-root-port-3.0-r-tile
+ - altr,pcie-root-port-4.0
reg:
- items:
- - description: TX slave port region
- - description: Control register access region
- - description: Hard IP region
minItems: 2
+ maxItems: 3
reg-names:
- items:
- - const: Txs
- - const: Cra
- - const: Hip
minItems: 2
+ maxItems: 3
interrupts:
maxItems: 1
@@ -80,18 +76,25 @@ allOf:
then:
properties:
reg:
- maxItems: 2
-
+ items:
+ - description: TX slave port region
+ - description: Control register access region
reg-names:
- maxItems: 2
-
+ items:
+ - const: Txs
+ - const: Cra
else:
properties:
reg:
- minItems: 3
-
+ items:
+ - description: TX slave port region
+ - description: Control register access region
+ - description: Hard IP region
reg-names:
- minItems: 3
+ items:
+ - const: Txs
+ - const: Cra
+ - const: Hip
unevaluatedProperties: false
--
2.34.1
next prev parent reply other threads:[~2026-04-24 9:49 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-24 9:49 [PATCH 0/3] PCI: altera: Add Agilex 5 PCIe Root Port support Mahesh Vaidya
2026-04-24 9:49 ` Mahesh Vaidya [this message]
2026-04-25 10:22 ` [PATCH 1/3] dt-bindings: PCI: altera: add binding for Agilex 5 Krzysztof Kozlowski
2026-04-27 12:43 ` Mahesh Vaidya
2026-04-24 9:49 ` [PATCH 2/3] PCI: altera: fix resource leaks on probe failure Mahesh Vaidya
2026-04-24 12:42 ` Dinh Nguyen
2026-04-27 12:36 ` Mahesh Vaidya
2026-04-24 9:49 ` [PATCH 3/3] PCI: altera: add Agilex 5 support Mahesh Vaidya
2026-04-24 15:48 ` Bjorn Helgaas
2026-04-27 12:49 ` Mahesh Vaidya
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260424094913.522123-2-mahesh.vaidya@altera.com \
--to=mahesh.vaidya@altera.com \
--cc=bhelgaas@google.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dinguyen@kernel.org \
--cc=joyce.ooi@intel.com \
--cc=krzk+dt@kernel.org \
--cc=kwilczynski@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=lpieralisi@kernel.org \
--cc=mani@kernel.org \
--cc=robh@kernel.org \
--cc=subhransu.sekhar.prusty@altera.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox