From: sashiko-bot@kernel.org
To: "Simon Glass" <sjg@chromium.org>
Cc: conor+dt@kernel.org, robh@kernel.org, devicetree@vger.kernel.org
Subject: Re: [PATCH 10/12] ARM: dts: rockchip: Add support for RV1106 and RV1103
Date: Mon, 06 Jul 2026 20:17:53 +0000 [thread overview]
Message-ID: <20260706201754.1D6141F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260706195818.3906949-11-sjg@chromium.org>
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [Low] The unit-address of the GIC `interrupt-controller` node does not match its `reg` base address.
- [Low] Introduction of undocumented hardware compatible string for the SoC root node.
--
commit dd5d51e321a7026dddb62fa99ec6452872734a4f
Author: Simon Glass <sjg@chromium.org>
ARM: dts: rockchip: Add support for RV1106 and RV1103
This commit adds devicetree files for the Rockchip RV1106 Cortex-A7 SoC
and its RV1103 variant. The pinctrl data is derived from the vendor kernel
in the Luckfox Pico SDK.
[ ... ]
> diff --git a/arch/arm/boot/dts/rockchip/rv1106.dtsi b/arch/arm/boot/dts/rockchip/rv1106.dtsi
> new file mode 100644
> index 0000000000000..e4b57086e04c1
> --- /dev/null
> +++ b/arch/arm/boot/dts/rockchip/rv1106.dtsi
> @@ -0,0 +1,299 @@
> +// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
> +/*
> + * Copyright (c) 2022 Rockchip Electronics Co., Ltd.
> + */
> +
> +#include <dt-bindings/clock/rockchip,rv1106-cru.h>
> +#include <dt-bindings/gpio/gpio.h>
> +#include <dt-bindings/interrupt-controller/arm-gic.h>
> +#include <dt-bindings/interrupt-controller/irq.h>
> +#include <dt-bindings/pinctrl/rockchip.h>
> +
> +/ {
> + #address-cells = <1>;
> + #size-cells = <1>;
> +
> + compatible = "rockchip,rv1106";
[Severity: Low]
Is this root compatible string documented in
Documentation/devicetree/bindings/arm/rockchip.yaml?
It looks like dtbs_check will report a warning because "rockchip,rv1106" is
used here but lacks corresponding YAML binding documentation in this patch.
> +
> + interrupt-parent = <&gic>;
[ ... ]
> + soc {
> + compatible = "simple-bus";
> + #address-cells = <1>;
> + #size-cells = <1>;
> + ranges;
> +
> + grf: syscon@ff000000 {
> + compatible = "rockchip,rv1106-grf", "syscon", "simple-mfd";
> + reg = <0xff000000 0x68000>;
> +
> + grf_cru: clock-controller {
> + compatible = "rockchip,rv1106-grf-cru";
> + #clock-cells = <1>;
> + };
> + };
> +
> + gic: interrupt-controller@ff1f0000 {
> + compatible = "arm,gic-400";
> + reg = <0xff1f1000 0x1000>,
[Severity: Low]
Does the unit-address @ff1f0000 need to match the first reg address
0xff1f1000?
This mismatch will trigger a devicetree compiler warning (simple_bus_reg
warning) during the build process.
> + <0xff1f2000 0x2000>,
> + <0xff1f4000 0x2000>,
> + <0xff1f6000 0x2000>;
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260706195818.3906949-1-sjg@chromium.org?part=10
next prev parent reply other threads:[~2026-07-06 20:17 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-06 19:57 [PATCH 00/12] Add support for the Rockchip RV1106 and RV1103 Simon Glass
2026-07-06 19:57 ` Simon Glass
2026-07-06 19:57 ` [PATCH 01/12] dt-bindings: clock: rockchip: Add RV1106 CRU support Simon Glass
2026-07-06 19:57 ` Simon Glass
2026-07-10 19:36 ` Jonas Karlman
2026-07-10 19:36 ` Jonas Karlman
2026-07-06 19:57 ` [PATCH 02/12] clk: rockchip: Add clock controller for the RV1106 Simon Glass
2026-07-06 19:57 ` Simon Glass
2026-07-06 20:15 ` sashiko-bot
2026-07-06 19:57 ` [PATCH 03/12] dt-bindings: pinctrl: rockchip: Add RV1106 compatible Simon Glass
2026-07-06 19:57 ` Simon Glass
2026-07-10 19:48 ` Jonas Karlman
2026-07-10 19:48 ` Jonas Karlman
2026-07-06 19:58 ` [PATCH 04/12] pinctrl: rockchip: Add RV1106 pinctrl support Simon Glass
2026-07-06 19:58 ` Simon Glass
2026-07-06 20:14 ` sashiko-bot
2026-07-10 19:01 ` Linus Walleij
2026-07-10 19:01 ` Linus Walleij
2026-07-12 17:00 ` Heiko Stübner
2026-07-12 17:00 ` Heiko Stübner
2026-07-12 17:55 ` Jonas Karlman
2026-07-12 17:55 ` Jonas Karlman
2026-07-06 19:58 ` [PATCH 05/12] dt-bindings: soc: rockchip: grf: Add RV1106 compatibles Simon Glass
2026-07-06 19:58 ` Simon Glass
2026-07-10 20:00 ` Jonas Karlman
2026-07-10 20:00 ` Jonas Karlman
2026-07-06 19:58 ` [PATCH 06/12] dt-bindings: serial: snps-dw-apb-uart: Add RV1106 compatible Simon Glass
2026-07-06 19:58 ` Simon Glass
2026-07-06 20:16 ` sashiko-bot
2026-07-06 19:58 ` [PATCH 07/12] dt-bindings: mmc: rockchip-dw-mshc: " Simon Glass
2026-07-06 19:58 ` Simon Glass
2026-07-10 13:21 ` Ulf Hansson
2026-07-10 13:21 ` Ulf Hansson
2026-07-06 19:58 ` [PATCH 08/12] dt-bindings: watchdog: snps,dw-wdt: " Simon Glass
2026-07-06 19:58 ` Simon Glass
2026-07-12 15:26 ` Krzysztof Kozlowski
2026-07-12 15:26 ` Krzysztof Kozlowski
2026-07-06 19:58 ` [PATCH 09/12] dt-bindings: iio: adc: rockchip-saradc: " Simon Glass
2026-07-06 19:58 ` Simon Glass
2026-07-07 2:09 ` Jonathan Cameron
2026-07-07 2:09 ` Jonathan Cameron
2026-07-08 10:45 ` Krzysztof Kozlowski
2026-07-08 10:45 ` Krzysztof Kozlowski
2026-07-06 19:58 ` [PATCH 10/12] ARM: dts: rockchip: Add support for RV1106 and RV1103 Simon Glass
2026-07-06 19:58 ` Simon Glass
2026-07-06 20:17 ` sashiko-bot [this message]
2026-07-06 19:58 ` [PATCH 11/12] dt-bindings: arm: rockchip: Add Luckfox Pico Mini B Simon Glass
2026-07-06 19:58 ` Simon Glass
2026-07-06 20:18 ` sashiko-bot
2026-07-06 19:58 ` [PATCH 12/12] ARM: dts: " Simon Glass
2026-07-06 19:58 ` Simon Glass
2026-07-06 22:54 ` [PATCH 00/12] Add support for the Rockchip RV1106 and RV1103 Fabio Estevam
2026-07-06 22:54 ` Fabio Estevam
2026-07-07 7:41 ` Heiko Stübner
2026-07-07 7:41 ` Heiko Stübner
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=20260706201754.1D6141F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=robh@kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
--cc=sjg@chromium.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.