From: Heiko Stuebner <heiko@sntech.de>
To: devicetree@vger.kernel.org, linux-rockchip@lists.infradead.org,
linux-kernel@vger.kernel.org, robh@kernel.org,
krzk+dt@kernel.org, conor+dt@kernel.org,
Patrick Barsanti <patrick.barsanti@amarulasolutions.com>
Cc: linux-amarula@amarulasolutions.com, michael@amarulasolutions.com,
dario.binacchi@amarulasolutions.com,
Patrick Barsanti <patrick.barsanti@amarulasolutions.com>
Subject: Re: [PATCH 3/3] arm64: dts: rockchip: Add Axelera AI metis-sbc
Date: Mon, 25 May 2026 22:54:14 +0200 [thread overview]
Message-ID: <4976330.xgJ6IN8ObU@phil> (raw)
In-Reply-To: <20260522174918.61523-4-patrick.barsanti@amarulasolutions.com>
Hi,
Am Freitag, 22. Mai 2026, 19:49:18 Mitteleuropäische Sommerzeit schrieb Patrick Barsanti:
[...]
> + pcie20_avdd0v85: pcie20-avdd0v85 {
Regulator nodes should start with "regulator-", so
pcie20_avdd0v85: regulator-pcie20-avdd0v85
same for all others.
> + compatible = "regulator-fixed";
> + regulator-always-on;
> + regulator-boot-on;
> + regulator-min-microvolt = <850000>;
> + regulator-max-microvolt = <850000>;
> + regulator-name = "pcie20_avdd0v85";
> + vin-supply = <&vdda_0v85_s0>;
> + };
> +&cpu_b0 {
> + cpu-supply = <&vdd_cpu_big0_s0>;
> + mem-supply = <&vdd_cpu_big0_s0>;
> +};
There is no mem-supply in the mainline binidng, and it's the same
regulators anyway. Again, same for all cpu nodes.
You should be able to run something like
make ARCH=arm64 .... CHECK_DTBS=y rockchip/rk3588-metis-sbc.dtb
to find all the binding problems.
> +&gmac0 {
> + clock_in_out = "output";
> + phy-handle = <&rgmii_phy0>;
> + /* Use rgmii-rxid mode to disable rx delay inside Soc */
no need for that comment
> + phy-mode = "rgmii-rxid";
> + pinctrl-0 = <&gmac0_miim
> + &gmac0_tx_bus2
> + &gmac0_rx_bus2
> + &gmac0_rgmii_clk
> + &gmac0_rgmii_bus>;
please add a pinctrl entry (setting to GPIO) for that reset-pin
Though ... is that the phy-reset ... this should be ideally
described the phy node with its reset-gpios property.
> + pinctrl-names = "default";
> + tx_delay = <0x44>;
> + snps,reset-gpio = <&gpio4 RK_PB3 GPIO_ACTIVE_LOW>; /* GMAC0_RST_N */
> + snps,reset-active-low;
> + /* Reset time is 20ms, 100ms for rtl8211f */
> + snps,reset-delays-us = <0 20000 100000>;
> + status = "okay";
> +};
> +
That's how far I got today :-)
Heiko
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
WARNING: multiple messages have this Message-ID (diff)
From: Heiko Stuebner <heiko@sntech.de>
To: devicetree@vger.kernel.org, linux-rockchip@lists.infradead.org,
linux-kernel@vger.kernel.org, robh@kernel.org,
krzk+dt@kernel.org, conor+dt@kernel.org,
Patrick Barsanti <patrick.barsanti@amarulasolutions.com>
Cc: linux-amarula@amarulasolutions.com, michael@amarulasolutions.com,
dario.binacchi@amarulasolutions.com,
Patrick Barsanti <patrick.barsanti@amarulasolutions.com>
Subject: Re: [PATCH 3/3] arm64: dts: rockchip: Add Axelera AI metis-sbc
Date: Mon, 25 May 2026 22:54:14 +0200 [thread overview]
Message-ID: <4976330.xgJ6IN8ObU@phil> (raw)
In-Reply-To: <20260522174918.61523-4-patrick.barsanti@amarulasolutions.com>
Hi,
Am Freitag, 22. Mai 2026, 19:49:18 Mitteleuropäische Sommerzeit schrieb Patrick Barsanti:
[...]
> + pcie20_avdd0v85: pcie20-avdd0v85 {
Regulator nodes should start with "regulator-", so
pcie20_avdd0v85: regulator-pcie20-avdd0v85
same for all others.
> + compatible = "regulator-fixed";
> + regulator-always-on;
> + regulator-boot-on;
> + regulator-min-microvolt = <850000>;
> + regulator-max-microvolt = <850000>;
> + regulator-name = "pcie20_avdd0v85";
> + vin-supply = <&vdda_0v85_s0>;
> + };
> +&cpu_b0 {
> + cpu-supply = <&vdd_cpu_big0_s0>;
> + mem-supply = <&vdd_cpu_big0_s0>;
> +};
There is no mem-supply in the mainline binidng, and it's the same
regulators anyway. Again, same for all cpu nodes.
You should be able to run something like
make ARCH=arm64 .... CHECK_DTBS=y rockchip/rk3588-metis-sbc.dtb
to find all the binding problems.
> +&gmac0 {
> + clock_in_out = "output";
> + phy-handle = <&rgmii_phy0>;
> + /* Use rgmii-rxid mode to disable rx delay inside Soc */
no need for that comment
> + phy-mode = "rgmii-rxid";
> + pinctrl-0 = <&gmac0_miim
> + &gmac0_tx_bus2
> + &gmac0_rx_bus2
> + &gmac0_rgmii_clk
> + &gmac0_rgmii_bus>;
please add a pinctrl entry (setting to GPIO) for that reset-pin
Though ... is that the phy-reset ... this should be ideally
described the phy node with its reset-gpios property.
> + pinctrl-names = "default";
> + tx_delay = <0x44>;
> + snps,reset-gpio = <&gpio4 RK_PB3 GPIO_ACTIVE_LOW>; /* GMAC0_RST_N */
> + snps,reset-active-low;
> + /* Reset time is 20ms, 100ms for rtl8211f */
> + snps,reset-delays-us = <0 20000 100000>;
> + status = "okay";
> +};
> +
That's how far I got today :-)
Heiko
next prev parent reply other threads:[~2026-05-25 20:55 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-22 17:49 [PATCH 0/3] arm64: dts: rockchip: Add support for Axelera Metis SBC Patrick Barsanti
2026-05-22 17:49 ` Patrick Barsanti
2026-05-22 17:49 ` [PATCH 1/3] dt-bindings: vendor-prefixes: Add Axelera AI Patrick Barsanti
2026-05-22 17:49 ` Patrick Barsanti
2026-05-22 18:12 ` Heiko Stuebner
2026-05-22 18:12 ` Heiko Stuebner
2026-05-25 16:43 ` Conor Dooley
2026-05-25 16:43 ` Conor Dooley
2026-05-22 17:49 ` [PATCH 2/3] dt-bindings: arm: rockchip: Add Axelera AI Metis Compute Board Patrick Barsanti
2026-05-22 17:49 ` Patrick Barsanti
2026-05-25 16:44 ` Conor Dooley
2026-05-25 16:44 ` Conor Dooley
2026-05-22 17:49 ` [PATCH 3/3] arm64: dts: rockchip: Add Axelera AI metis-sbc Patrick Barsanti
2026-05-22 17:49 ` Patrick Barsanti
2026-05-22 18:21 ` sashiko-bot
2026-05-25 20:54 ` Heiko Stuebner [this message]
2026-05-25 20:54 ` Heiko Stuebner
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=4976330.xgJ6IN8ObU@phil \
--to=heiko@sntech.de \
--cc=conor+dt@kernel.org \
--cc=dario.binacchi@amarulasolutions.com \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-amarula@amarulasolutions.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=michael@amarulasolutions.com \
--cc=patrick.barsanti@amarulasolutions.com \
--cc=robh@kernel.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.