From: Conor Dooley <conor@kernel.org>
To: Tushar Nimkar <tunimkar@amd.com>
Cc: Tushar Nimkar <tushar.nimkar@amd.com>,
Anirudha Sarangi <anirudha.sarangi@amd.com>,
Thomas Gleixner <tglx@kernel.org>, Radu Rendec <radu@rendec.net>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Michal Simek <michal.simek@amd.com>,
git@amd.com, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org
Subject: Re: [PATCH v3 1/2] dt-bindings: interrupt-controller: Add Xilinx Versal NET SMMU CSR
Date: Thu, 24 Sep 2026 17:52:28 +0100 [thread overview]
Message-ID: <20260924-multitask-rewrite-b82222a968c7@spud> (raw)
In-Reply-To: <359fecbc-0f0a-4498-84ec-b0ddac5987d0@amd.com>
[-- Attachment #1: Type: text/plain, Size: 5087 bytes --]
On Thu, Sep 24, 2026 at 01:13:13PM +0530, Tushar Nimkar wrote:
> Hi Conor,
>
> Thanks for review.
>
> On 9/23/2026 10:11 PM, Conor Dooley wrote:
> > On Wed, Sep 23, 2026 at 12:46:31PM +0530, Tushar Nimkar wrote:
> > > From: Anirudha Sarangi <anirudha.sarangi@amd.com>
> > >
> > > Add a device tree binding schema for the Xilinx Versal NET SMMU CSR
> > > (Control and Status Register) interrupt controller.
> > This sounds like a very odd name for an interrupt controller.
> > What else does this block do?
> >
> > You've actually got a 0x1000 carve out in the example, starting at a
> > round number, so I suspect this is "fine" and if there's other features
> > required later you've not painted yourself into a corner by defining a
> > device for one register. The driver having a starting offset of 0x24 is
> > another point in your favour.
>
> The SMMU_CSR is a Xilinx-specific integration block for the ARM SMMUv3. It
> provides interrupt enable, status, and clear registers for SMMU interrupt
> sources before forwarding them to the parent GIC. The binding models the CSR
> block as a whole, allowing future integration-specific functionality to be
> added if needed.
>
> >
> > I'm inclined to ack this, I just want to see an answer first.
>
> thanks a much !!
Acked-by: Conor Dooley <conor.dooley@microchip.com>
pw-bot: not-applicable
>
> -Tushar
>
> >
> > Cheers,
> > Conor.
> > > The SMMU CSR block acts as a vendor-specific interrupt controller
> > > in front of the ARM SMMUv3, providing registers to enable and clear
> > > standard SMMU interrupts such as EVENTQ, CMDQ_SYNC, GERROR and PRIQ.
> > > Interrupts must be acknowledged in this block before being forwarded
> > > to the parent interrupt controller (e.g. GIC).
> > >
> > > Signed-off-by: Anirudha Sarangi <anirudha.sarangi@amd.com>
> > > Co-developed-by: Tushar Nimkar <tushar.nimkar@amd.com>
> > > Signed-off-by: Tushar Nimkar <tushar.nimkar@amd.com>
> > > ---
> > > .../xlnx,versal-net-smmu-csr.yaml | 75 ++++++++++++++++++++++
> > > 1 file changed, 75 insertions(+)
> > >
> > > diff --git a/Documentation/devicetree/bindings/interrupt-controller/xlnx,versal-net-smmu-csr.yaml b/Documentation/devicetree/bindings/interrupt-controller/xlnx,versal-net-smmu-csr.yaml
> > > new file mode 100644
> > > index 000000000000..38b63e51b732
> > > --- /dev/null
> > > +++ b/Documentation/devicetree/bindings/interrupt-controller/xlnx,versal-net-smmu-csr.yaml
> > > @@ -0,0 +1,75 @@
> > > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> > > +%YAML 1.2
> > > +---
> > > +$id: http://devicetree.org/schemas/interrupt-controller/xlnx,versal-net-smmu-csr.yaml#
> > > +$schema: http://devicetree.org/meta-schemas/core.yaml#
> > > +
> > > +title: Xilinx Versal NET SMMU CSR Interrupt Controller
> > > +
> > > +maintainers:
> > > + - Anirudha Sarangi <anirudha.sarangi@amd.com>
> > > + - Tushar Nimkar <tushar.nimkar@amd.com>
> > > +
> > > +description: |
> > > + The Versal NET platform includes a Xilinx-specific SMMU CSR (Control and
> > > + Status Register) block that acts as an intermediate interrupt controller
> > > + for ARM SMMUv3.
> > > +
> > > + The block provides registers to enable, disable and clear the
> > > + standard SMMUv3 interrupt sources (EVENTQ, CMDQ_SYNC, GERROR and PRIQ)
> > > + before forwarding them to the parent interrupt controller,
> > > + typically a GIC.
> > > +
> > > + The controller receives one parent interrupt and demultiplexes CSR
> > > + status bits into the following child interrupt identifiers
> > > + 0 - EVENTQ
> > > + 1 - CMDQ_SYNC
> > > + 2 - GERROR (GLOBAL)
> > > + 3 - PRIQ
> > > +
> > > +allOf:
> > > + - $ref: /schemas/interrupt-controller.yaml#
> > > +
> > > +properties:
> > > + compatible:
> > > + const: xlnx,versal-net-smmu-csr
> > > +
> > > + reg:
> > > + maxItems: 1
> > > +
> > > + interrupt-controller: true
> > > +
> > > + "#interrupt-cells":
> > > + const: 1
> > > + description: |
> > > + Single cell containing the child interrupt identifier
> > > + 0 - EVENTQ
> > > + 1 - CMDQ_SYNC
> > > + 2 - GERROR (GLOBAL)
> > > + 3 - PRIQ
> > > +
> > > + interrupts:
> > > + maxItems: 1
> > > +
> > > +required:
> > > + - compatible
> > > + - reg
> > > + - interrupt-controller
> > > + - "#interrupt-cells"
> > > + - interrupts
> > > +
> > > +additionalProperties: false
> > > +
> > > +examples:
> > > + - |
> > > + #include <dt-bindings/interrupt-controller/arm-gic.h>
> > > + #include <dt-bindings/interrupt-controller/irq.h>
> > > +
> > > + interrupt-controller@eca10000 {
> > > + compatible = "xlnx,versal-net-smmu-csr";
> > > + reg = <0xeca10000 0x1000>;
> > > + interrupt-controller;
> > > + #interrupt-cells = <1>;
> > > + interrupt-parent = <&gic>;
> > > + interrupts = <GIC_SPI 169 IRQ_TYPE_LEVEL_HIGH>;
> > > + };
> > >
> > > --
> > > 2.34.1
> > >
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2026-09-24 16:52 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-23 7:16 [PATCH v3 0/2] Add Xilinx Versal NET SMMU CSR interrupt controller support Tushar Nimkar
2026-09-23 7:16 ` [PATCH v3 1/2] dt-bindings: interrupt-controller: Add Xilinx Versal NET SMMU CSR Tushar Nimkar
2026-09-23 16:41 ` Conor Dooley
2026-09-24 7:43 ` Tushar Nimkar
2026-09-24 16:52 ` Conor Dooley [this message]
2026-09-23 7:16 ` [PATCH v3 2/2] irqchip: Add Xilinx Versal NET SMMU CSR interrupt controller driver Tushar Nimkar
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=20260924-multitask-rewrite-b82222a968c7@spud \
--to=conor@kernel.org \
--cc=anirudha.sarangi@amd.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=git@amd.com \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=michal.simek@amd.com \
--cc=radu@rendec.net \
--cc=robh@kernel.org \
--cc=tglx@kernel.org \
--cc=tunimkar@amd.com \
--cc=tushar.nimkar@amd.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
all inboxes | Powered by JetHome®