From: Ioana Ciocoi Radulescu <ruxandra.radulescu@nxp.com>
To: Tomeu Vizoso <tomeu@tomeuvizoso.net>
Cc: "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>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-doc@vger.kernel.org" <linux-doc@vger.kernel.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"imx@lists.linux.dev" <imx@lists.linux.dev>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"linux-media@vger.kernel.org" <linux-media@vger.kernel.org>,
"linaro-mm-sig@lists.linaro.org" <linaro-mm-sig@lists.linaro.org>,
"Jiwei Fu" <jiwei.fu@nxp.com>, "Forrest Shi" <xuelin.shi@nxp.com>,
"Alexandru Iulian Taran" <alexandru.taran@nxp.com>,
"Daniel Baluta" <daniel.baluta@nxp.com>
Subject: RE: [PATCH v2 0/9] accel: New driver for NXP's Neutron NPU
Date: Tue, 24 Mar 2026 12:12:24 +0000 [thread overview]
Message-ID: <PAXPR04MB9424214A1AA43BD0C36653E89448A@PAXPR04MB9424.eurprd04.prod.outlook.com> (raw)
In-Reply-To: <CAAObsKDAzfib86rXqt9FjXV68yRkBzmijcyR+x=1MsPYd=MQWQ@mail.gmail.com>
On Saturday, March 21, 2026 at 7:19 PM, Tomeu Vizoso wrote:
>
> Hi Ioana,
>
> Looks like the userspace portion of the driver is closed source
> (libNeutronDriver.so)?
>
> https://github.com/nxp-imx/tflite-neutron-delegate/blob/lf-6.12.49_2.2
> .0/CMakeLists.txt
Hi Tomeu,
Yes, it's closed for now. We do plan to publish the source code
on github, but I believe that's still a few months away.
Thanks,
Ioana
>
> Regards,
>
> Tomeu
>
> On Fri, Mar 6, 2026 at 2:27 PM Ioana Ciocoi-Radulescu
> <ruxandra.radulescu@nxp.com> wrote:
> >
> > Introduce a new accel driver for the Neutron Neural Processing Unit
> > (NPU), along with associated dt-bindings and DTS node.
> >
> > The first patch extends the GEM DMA helper APIs to allow bidirectional
> > mapping of non-coherent DMA buffers. While not part of the Neutron
> > driver, it's a prerequisite allowing us to use the GEM DMA helper.
> >
> > Neutron is a Neural Processing Unit from NXP, providing machine
> > learning (ML) acceleration for edge AI applications. Neutron is
> > integrated on NXP SoCs such as the i.MX95.
> >
> > The NPU consists of the following:
> > - RISC-V core running a proprietary firmware
> > - One or more Neutron cores, representing the main computation
> > engine performing ML operations
> > - Dedicated fast memory (TCM)
> > - DMA engine that handles data transfers between DDR and TCM
> >
> > The firmware is closed source and distributed as a binary here [1].
> >
> > The Neutron software stack also contains a userspace library [1] and a
> > LiteRT custom delegate [2] that allow integration with standard LiteRT
> > tools.
> >
> > [1] https://github.com/nxp-upstream/neutron/tree/upstream
> > [2] https://github.com/nxp-imx/tflite-neutron-delegate
> >
> > Signed-off-by: Ioana Ciocoi-Radulescu <ruxandra.radulescu@nxp.com>
> > ---
> > Changes in v2:
> > - rebase on newer drm-misc-next
> > - dt bindings: clock fixes and renames
> > - update DTS to match new names
> > - remove unnecessary fields from neutron_job structure
> > - fix use of uninitialized variable
> >
> > - Link to v1:
> > https://lore.kernel.org/r/20260226-neutron-v1-0-46eccb3bb50a@nxp.com
> >
> > ---
> > Ioana Ciocoi-Radulescu (9):
> > drm/gem-dma: Add flag for bidirectional mapping of non-coherent GEM
> DMA buffers
> > accel/neutron: Add documentation for NXP Neutron accelerator driver
> > dt-bindings: npu: Add NXP Neutron
> > accel/neutron: Add driver for NXP Neutron NPU
> > accel/neutron: Add GEM buffer object support
> > accel/neutron: Add mailbox support
> > accel/neutron: Add job submission IOCTL
> > accel/neutron: Add logging support
> > arm64: dts: imx95: Add Neutron node
> >
> > Documentation/accel/index.rst | 1 +
> > Documentation/accel/neutron/index.rst | 12 +
> > Documentation/accel/neutron/neutron.rst | 131 ++++++++
> > .../devicetree/bindings/npu/nxp,imx95-neutron.yaml | 96 ++++++
> > MAINTAINERS | 10 +
> > arch/arm64/boot/dts/freescale/imx95.dtsi | 28 ++
> > drivers/accel/Kconfig | 1 +
> > drivers/accel/Makefile | 3 +-
> > drivers/accel/neutron/Kconfig | 16 +
> > drivers/accel/neutron/Makefile | 12 +
> > drivers/accel/neutron/neutron_debugfs.c | 34 ++
> > drivers/accel/neutron/neutron_debugfs.h | 15 +
> > drivers/accel/neutron/neutron_device.c | 239 +++++++++++++
> > drivers/accel/neutron/neutron_device.h | 155 +++++++++
> > drivers/accel/neutron/neutron_driver.c | 262 +++++++++++++++
> > drivers/accel/neutron/neutron_driver.h | 16 +
> > drivers/accel/neutron/neutron_gem.c | 116 +++++++
> > drivers/accel/neutron/neutron_gem.h | 14 +
> > drivers/accel/neutron/neutron_job.c | 372
> +++++++++++++++++++++
> > drivers/accel/neutron/neutron_job.h | 43 +++
> > drivers/accel/neutron/neutron_mailbox.c | 47 +++
> > drivers/accel/neutron/neutron_mailbox.h | 42 +++
> > drivers/gpu/drm/drm_gem_dma_helper.c | 6 +-
> > include/drm/drm_gem_dma_helper.h | 3 +
> > include/uapi/drm/neutron_accel.h | 130 +++++++
> > 25 files changed, 1801 insertions(+), 3 deletions(-)
> > ---
> > base-commit: 6716101ae42949e98ad4b9e71eeba08c055be410
> > change-id: 20260226-neutron-c435e39d167f
> >
> > Best regards,
> > --
> > Ioana Ciocoi-Radulescu <ruxandra.radulescu@nxp.com>
> >
next prev parent reply other threads:[~2026-03-24 12:12 UTC|newest]
Thread overview: 18+ 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-06 13:27 ` [PATCH v2 2/9] accel/neutron: Add documentation for NXP Neutron accelerator driver Ioana Ciocoi-Radulescu
2026-03-06 13:27 ` [PATCH v2 3/9] dt-bindings: npu: Add NXP Neutron Ioana Ciocoi-Radulescu
2026-03-06 14:17 ` Krzysztof Kozlowski
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-24 13:36 ` Ioana Ciocoi Radulescu
2026-03-06 13:27 ` [PATCH v2 5/9] accel/neutron: Add GEM buffer object support Ioana Ciocoi-Radulescu
2026-03-06 13:27 ` [PATCH v2 6/9] accel/neutron: Add mailbox support Ioana Ciocoi-Radulescu
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-24 13:38 ` Ioana Ciocoi Radulescu
2026-03-06 13:27 ` [PATCH v2 8/9] accel/neutron: Add logging support Ioana Ciocoi-Radulescu
2026-03-06 13:27 ` [PATCH v2 9/9] arm64: dts: imx95: Add Neutron node Ioana Ciocoi-Radulescu
2026-03-21 17:19 ` [PATCH v2 0/9] accel: New driver for NXP's Neutron NPU Tomeu Vizoso
2026-03-24 12:12 ` Ioana Ciocoi Radulescu [this message]
[not found] ` <CAPsqS2QXcgbi9_e4QmCn1Cgkr-bOVsY-E9qpZsFw3WYWWLugEw@mail.gmail.com>
2026-03-26 7:18 ` Ioana Ciocoi Radulescu
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=PAXPR04MB9424214A1AA43BD0C36653E89448A@PAXPR04MB9424.eurprd04.prod.outlook.com \
--to=ruxandra.radulescu@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=frank.li@nxp.com \
--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=tomeu@tomeuvizoso.net \
--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