From: Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
To: <devicetree@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-edac@vger.kernel.org>
Cc: <git@amd.com>, <ptsm@linux.microsoft.com>,
<srivatsa@csail.mit.edu>, <shubhrajyoti.datta@gmail.com>,
Krzysztof Kozlowski <krzk@kernel.org>,
"Rob Herring" <robh@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
"Borislav Petkov" <bp@alien8.de>, Tony Luck <tony.luck@intel.com>,
James Morse <james.morse@arm.com>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
"Robert Richter" <rric@kernel.org>,
Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
Subject: [PATCH v6 5/6] dt-bindings: memory-controllers: Add support for Versal NET EDAC
Date: Thu, 24 Apr 2025 18:51:17 +0530 [thread overview]
Message-ID: <20250424132118.17074-6-shubhrajyoti.datta@amd.com> (raw)
In-Reply-To: <20250424132118.17074-1-shubhrajyoti.datta@amd.com>
Add device tree bindings for AMD Versal NET EDAC for DDR controller.
Signed-off-by: Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
---
Changes in v6:
- update to the chip name as xlnx,versal-net
- Correct indentation
Changes in v5:
- Update the binding
Changes in v4:
- Update the compatible
- align the example
- Enhance the description for rproc
Changes in v2:
- rename EDAC to memory controller
- update the compatible name
- Add remote proc handle
- Read the data width from the registers
- Remove the dwidth, rank and channel number the same is
read from the RpMsg.
.../xlnx,versal-net-ddrmc5.yaml | 41 +++++++++++++++++++
1 file changed, 41 insertions(+)
create mode 100644 Documentation/devicetree/bindings/memory-controllers/xlnx,versal-net-ddrmc5.yaml
diff --git a/Documentation/devicetree/bindings/memory-controllers/xlnx,versal-net-ddrmc5.yaml b/Documentation/devicetree/bindings/memory-controllers/xlnx,versal-net-ddrmc5.yaml
new file mode 100644
index 000000000000..479288567d0b
--- /dev/null
+++ b/Documentation/devicetree/bindings/memory-controllers/xlnx,versal-net-ddrmc5.yaml
@@ -0,0 +1,41 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/memory-controllers/xlnx,versal-net-ddrmc5.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Xilinx Versal NET Memory Controller
+
+maintainers:
+ - Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
+
+description:
+ The integrated DDR Memory Controllers (DDRMCs) support both DDR5 and LPDDR5
+ compact and extended memory interfaces. Versal NET DDR memory controller
+ has an optional ECC support which correct single bit ECC errors and detect
+ double bit ECC errors. It also has support for reporting other errors like
+ MMCM (Mixed-Mode Clock Manager) errors and General software errors.
+
+properties:
+ compatible:
+ const: xlnx,versal-net-ddrmc5
+
+ amd,rproc:
+ $ref: /schemas/types.yaml#/definitions/phandle
+ description:
+ phandle to the remoteproc_r5 rproc node using which APU interacts
+ with remote processor. APU primarily communicates with the RPU for
+ accessing the DDRMC address space and getting error notification.
+
+required:
+ - compatible
+ - amd,rproc
+
+additionalProperties: false
+
+examples:
+ - |
+ memory-controller {
+ compatible = "xlnx,versal-net-ddrmc5";
+ amd,rproc = <&remoteproc_r5>;
+ };
--
2.17.1
next prev parent reply other threads:[~2025-04-24 13:21 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-24 13:21 [PATCH v6 0/6] EDAC/Versal NET: Add support for error notification Shubhrajyoti Datta
2025-04-24 13:21 ` [PATCH v6 1/6] cdx: add the cdx headers to include/linux Shubhrajyoti Datta
2025-04-25 6:56 ` Krzysztof Kozlowski
2025-04-24 13:21 ` [PATCH v6 2/6] cdx: Add DDRMC Commands for DDR Configuration Retrieval Shubhrajyoti Datta
2025-04-24 13:21 ` [PATCH v6 3/6] cdx: Export Symbols for MCDI RPC and Initialization Shubhrajyoti Datta
2025-04-25 6:57 ` Krzysztof Kozlowski
2025-04-24 13:21 ` [PATCH v6 4/6] ras: Export log_non_standard_event for External Usage Shubhrajyoti Datta
2025-04-24 13:21 ` Shubhrajyoti Datta [this message]
2025-04-25 7:03 ` [PATCH v6 5/6] dt-bindings: memory-controllers: Add support for Versal NET EDAC Krzysztof Kozlowski
2025-04-24 13:21 ` [PATCH v6 6/6] EDAC/VersalNET: Add support for error notification Shubhrajyoti Datta
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=20250424132118.17074-6-shubhrajyoti.datta@amd.com \
--to=shubhrajyoti.datta@amd.com \
--cc=bp@alien8.de \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=git@amd.com \
--cc=james.morse@arm.com \
--cc=krzk@kernel.org \
--cc=linux-edac@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=ptsm@linux.microsoft.com \
--cc=robh@kernel.org \
--cc=rric@kernel.org \
--cc=shubhrajyoti.datta@gmail.com \
--cc=srivatsa@csail.mit.edu \
--cc=tony.luck@intel.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