From: Ioana Ciocoi-Radulescu <ruxandra.radulescu@nxp.com>
To: Oded Gabbay <ogabbay@kernel.org>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
Sumit Semwal <sumit.semwal@linaro.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Shawn Guo <shawnguo@kernel.org>, Frank Li <Frank.Li@nxp.com>,
Christian König <christian.koenig@amd.com>
Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
linux-doc@vger.kernel.org, devicetree@vger.kernel.org,
imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org,
linux-media@vger.kernel.org, linaro-mm-sig@lists.linaro.org,
Jiwei Fu <jiwei.fu@nxp.com>, Forrest Shi <xuelin.shi@nxp.com>,
Alexandru Taran <alexandru.taran@nxp.com>,
Daniel Baluta <daniel.baluta@nxp.com>,
Ioana Ciocoi-Radulescu <ruxandra.radulescu@nxp.com>
Subject: [PATCH v2 3/9] dt-bindings: npu: Add NXP Neutron
Date: Fri, 06 Mar 2026 15:27:20 +0200 [thread overview]
Message-ID: <20260306-neutron-v2-3-3019bd8c91ef@nxp.com> (raw)
In-Reply-To: <20260306-neutron-v2-0-3019bd8c91ef@nxp.com>
Add the bindings for Neutron, a Neural Processing Unit from NXP.
Signed-off-by: Jiwei Fu <jiwei.fu@nxp.com>
Signed-off-by: Ioana Ciocoi-Radulescu <ruxandra.radulescu@nxp.com>
---
v2:
- clock fixes: add description, rename, make clocks mandatory
- rename node from neutron to npu
- fix indentation
---
.../devicetree/bindings/npu/nxp,imx95-neutron.yaml | 96 ++++++++++++++++++++++
1 file changed, 96 insertions(+)
diff --git a/Documentation/devicetree/bindings/npu/nxp,imx95-neutron.yaml b/Documentation/devicetree/bindings/npu/nxp,imx95-neutron.yaml
new file mode 100644
index 000000000000..a06de4bc3f0a
--- /dev/null
+++ b/Documentation/devicetree/bindings/npu/nxp,imx95-neutron.yaml
@@ -0,0 +1,96 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/npu/nxp,imx95-neutron.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: NXP Neutron NPU
+
+maintainers:
+ - Ioana Ciocoi-Radulescu <ruxandra.radulescu@nxp.com>
+ - Jiwei Fu <jiwei.fu@nxp.com>
+
+description:
+ Neutron is an NPU from NXP targeting edge AI inference applications.
+ Initially supported on i.MX95 SoCs.
+
+properties:
+ compatible:
+ enum:
+ - nxp,imx95-neutron
+
+ reg:
+ items:
+ - description: Register space
+ - description: Instruction area of the TCM space
+ - description: Data area of the TCM space
+
+ reg-names:
+ items:
+ - const: regs
+ - const: itcm
+ - const: dtcm
+
+ memory-region:
+ description:
+ Phandle referencing a "shared-dma-pool" to be used for Neutron
+ inference buffers, which need to be 1MB aligned.
+
+ The memory region must be defined with alignment of 1MB and size
+ should be large enough to accommodate the targeted ML models. It
+ should be marked as reusable.
+ maxItems: 1
+
+ interrupts:
+ maxItems: 1
+
+ clocks:
+ items:
+ - description: Core clock
+ - description: APB bus clock
+
+ clock-names:
+ items:
+ - const: core
+ - const: apb
+
+ iommus:
+ maxItems: 1
+
+ power-domains:
+ maxItems: 1
+
+required:
+ - compatible
+ - reg
+ - reg-names
+ - memory-region
+ - interrupts
+ - clocks
+ - clock-names
+
+additionalProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/interrupt-controller/arm-gic.h>
+ #include <dt-bindings/interrupt-controller/irq.h>
+
+ bus {
+ #address-cells = <2>;
+ #size-cells = <2>;
+
+ npu@4ab00000 {
+ compatible = "nxp,imx95-neutron";
+ reg = <0x0 0x4ab00000 0x0 0x00000400>,
+ <0x0 0x4AB10000 0x0 0x00010000>,
+ <0x0 0x4AB08000 0x0 0x00008000>;
+ reg-names = "regs", "itcm", "dtcm";
+ memory-region = <&neutron_pool>;
+ interrupts = <GIC_SPI 318 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&scmi_clk 68>, <&scmi_clk 67>;
+ clock-names = "core", "apb";
+ power-domains = <&scmi_devpd 20>;
+ };
+ };
+...
--
2.34.1
next prev parent reply other threads:[~2026-03-06 13:28 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-06 13:27 [PATCH v2 0/9] accel: New driver for NXP's Neutron NPU Ioana Ciocoi-Radulescu
2026-03-06 13:27 ` [PATCH v2 1/9] drm/gem-dma: Add flag for bidirectional mapping of non-coherent GEM DMA buffers Ioana Ciocoi-Radulescu
2026-03-08 22:49 ` Claude review: " Claude Code Review Bot
2026-03-06 13:27 ` [PATCH v2 2/9] accel/neutron: Add documentation for NXP Neutron accelerator driver Ioana Ciocoi-Radulescu
2026-03-08 22:49 ` Claude review: " Claude Code Review Bot
2026-03-06 13:27 ` Ioana Ciocoi-Radulescu [this message]
2026-03-06 14:17 ` [PATCH v2 3/9] dt-bindings: npu: Add NXP Neutron Krzysztof Kozlowski
2026-03-08 22:49 ` Claude review: " Claude Code Review Bot
2026-03-06 13:27 ` [PATCH v2 4/9] accel/neutron: Add driver for NXP Neutron NPU Ioana Ciocoi-Radulescu
2026-03-06 14:21 ` Krzysztof Kozlowski
2026-03-08 22:49 ` Claude review: " Claude Code Review Bot
2026-03-06 13:27 ` [PATCH v2 5/9] accel/neutron: Add GEM buffer object support Ioana Ciocoi-Radulescu
2026-03-08 22:49 ` Claude review: " Claude Code Review Bot
2026-03-06 13:27 ` [PATCH v2 6/9] accel/neutron: Add mailbox support Ioana Ciocoi-Radulescu
2026-03-08 22:49 ` Claude review: " Claude Code Review Bot
2026-03-06 13:27 ` [PATCH v2 7/9] accel/neutron: Add job submission IOCTL Ioana Ciocoi-Radulescu
2026-03-06 17:02 ` Frank Li
2026-03-08 22:49 ` Claude review: " Claude Code Review Bot
2026-03-06 13:27 ` [PATCH v2 8/9] accel/neutron: Add logging support Ioana Ciocoi-Radulescu
2026-03-08 22:49 ` Claude review: " Claude Code Review Bot
2026-03-06 13:27 ` [PATCH v2 9/9] arm64: dts: imx95: Add Neutron node Ioana Ciocoi-Radulescu
2026-03-08 22:49 ` Claude review: " Claude Code Review Bot
2026-03-08 22:49 ` Claude review: accel: New driver for NXP's Neutron NPU Claude Code Review Bot
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=20260306-neutron-v2-3-3019bd8c91ef@nxp.com \
--to=ruxandra.radulescu@nxp.com \
--cc=Frank.Li@nxp.com \
--cc=airlied@gmail.com \
--cc=alexandru.taran@nxp.com \
--cc=christian.koenig@amd.com \
--cc=conor+dt@kernel.org \
--cc=daniel.baluta@nxp.com \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=imx@lists.linux.dev \
--cc=jiwei.fu@nxp.com \
--cc=krzk+dt@kernel.org \
--cc=linaro-mm-sig@lists.linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=ogabbay@kernel.org \
--cc=robh@kernel.org \
--cc=shawnguo@kernel.org \
--cc=simona@ffwll.ch \
--cc=sumit.semwal@linaro.org \
--cc=tzimmermann@suse.de \
--cc=xuelin.shi@nxp.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