From: sashiko-bot@kernel.org
To: "Esben Haabendal" <esben@geanix.com>
Cc: conor+dt@kernel.org, Frank.Li@kernel.org,
devicetree@vger.kernel.org, robh@kernel.org, imx@lists.linux.dev
Subject: Re: [PATCH] arm64: dts: imx8mq: Add dcss node
Date: Fri, 10 Jul 2026 09:52:10 +0000 [thread overview]
Message-ID: <20260710095211.6BE9D1F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260710-imx8mq-dcss-device-tree-node-v1-1-fc724dfd574e@geanix.com>
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [High] The `dcss` device node is missing the `power-domains = <&pgc_disp>;` property, which will cause a bus hang when the driver accesses its registers.
- [Low] The `dcss` node is placed at the `soc` level, outside of the `aips4` bus node, causing an overlapping `reg` region and violating the hardware bus topology.
--
--- Patch [1]: [PATCH] arm64: dts: imx8mq: Add dcss node ---
commit 014c87fe4bc51f0ac006bc4660c8f156f9a40538
Author: Esben Haabendal <esben@geanix.com>
arm64: dts: imx8mq: Add dcss node
Add DCSS node for i.MX8MQ based on the example in the bindings documentation.
> diff --git a/arch/arm64/boot/dts/freescale/imx8mq.dtsi b/arch/arm64/boot/dts/freescale/imx8mq.dtsi
> index e60872aeeb49e..fb99bd3ad7c92 100644
> --- a/arch/arm64/boot/dts/freescale/imx8mq.dtsi
> +++ b/arch/arm64/boot/dts/freescale/imx8mq.dtsi
> @@ -1611,6 +1611,27 @@ irqsteer: interrupt-controller@32e2d000 {
> };
> };
>
> + dcss: display-controller@32e00000 {
[Severity: Low]
The aips4 bus explicitly claims the 0x32c00000 - 0x33000000 address range:
aips4: bus@32c00000 { /* AIPS4 */
compatible = "fsl,aips-bus", "simple-bus";
reg = <0x32c00000 0x400000>;
ranges = <0x32c00000 0x32c00000 0x400000>;
Placing the dcss node at the soc level with address 0x32e00000 creates an
overlapping reg region and violates the hardware bus topology, which can
cause structural devicetree warnings about overlapping ranges.
Should this node be placed as a child of the aips4 bus instead?
> + compatible = "nxp,imx8mq-dcss";
> + reg = <0x32e00000 0x2d000>, <0x32e2f000 0x1000>;
> + interrupts = <6>, <8>, <9>;
[Severity: High]
If power-domains = <&pgc_disp>; is omitted, the generic PM domain framework
won't track the dependency between this device and the DISP domain.
If no other active devices claim pgc_disp, the PM core may disable the
domain during late_initcall.
If a board enables this node and the driver subsequently tries to access the
memory-mapped registers of the unpowered peripheral, it will trigger a
synchronous external abort and panic the kernel.
Is this node missing the power-domains property?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260710-imx8mq-dcss-device-tree-node-v1-1-fc724dfd574e@geanix.com?part=1
next prev parent reply other threads:[~2026-07-10 9:52 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-10 9:34 [PATCH] arm64: dts: imx8mq: Add dcss node Esben Haabendal
2026-07-10 9:52 ` sashiko-bot [this message]
2026-07-10 21:13 ` Frank Li
2026-07-11 10:31 ` Esben Haabendal
-- strict thread matches above, loose matches on Subject: below --
2020-11-25 10:39 [PATCH] arm64: dts: imx8mq: add DCSS node Laurentiu Palcu
2020-11-26 9:43 ` Lucas Stach
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=20260710095211.6BE9D1F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=Frank.Li@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=esben@geanix.com \
--cc=imx@lists.linux.dev \
--cc=robh@kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
/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