* [PATCH] arm64: dts: imx8mp-verdin: Remove invalid property from eqos
@ 2023-09-28 2:34 Fabio Estevam
2023-09-28 14:36 ` Marcel Ziswiler
2023-10-10 1:21 ` Shawn Guo
0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2023-09-28 2:34 UTC (permalink / raw)
To: shawnguo; +Cc: marcel.ziswiler, linux-arm-kernel, Fabio Estevam
From: Fabio Estevam <festevam@denx.de>
Per nxp,dwmac-imx.yaml, it is not valid to pass 'phy-supply'.
The reg_module_eth1phy regulator is marked with 'regulator-always-on',
so it is safe to remove it from the eqos node.
Remove it to fix the following schema warning:
imx8mp-verdin-nonwifi-dahlia.dtb: ethernet@30bf0000: Unevaluated properties are not allowed ('phy-supply' was unexpected)
from schema $id: http://devicetree.org/schemas/net/nxp,dwmac-imx.yaml#
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi b/arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi
index e9e4fcb562f1..04f2083c4ab2 100644
--- a/arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi
@@ -184,7 +184,6 @@ &ecspi1 {
&eqos {
phy-handle = <ðphy0>;
phy-mode = "rgmii-id";
- phy-supply = <®_module_eth1phy>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_eqos>;
snps,force_thresh_dma_mode;
--
2.34.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] arm64: dts: imx8mp-verdin: Remove invalid property from eqos
2023-09-28 2:34 [PATCH] arm64: dts: imx8mp-verdin: Remove invalid property from eqos Fabio Estevam
@ 2023-09-28 14:36 ` Marcel Ziswiler
2023-10-10 1:21 ` Shawn Guo
1 sibling, 0 replies; 3+ messages in thread
From: Marcel Ziswiler @ 2023-09-28 14:36 UTC (permalink / raw)
To: festevam@gmail.com, shawnguo@kernel.org
Cc: linux-arm-kernel@lists.infradead.org, festevam@denx.de
Hi Fabio
Thanks!
On Wed, 2023-09-27 at 23:34 -0300, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
>
> Per nxp,dwmac-imx.yaml, it is not valid to pass 'phy-supply'.
>
> The reg_module_eth1phy regulator is marked with 'regulator-always-on',
> so it is safe to remove it from the eqos node.
>
> Remove it to fix the following schema warning:
>
> imx8mp-verdin-nonwifi-dahlia.dtb: ethernet@30bf0000: Unevaluated properties are not allowed ('phy-supply' was
> unexpected)
> from schema $id: http://devicetree.org/schemas/net/nxp,dwmac-imx.yaml#
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
Tested-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> ---
> arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi b/arch/arm64/boot/dts/freescale/imx8mp-
> verdin.dtsi
> index e9e4fcb562f1..04f2083c4ab2 100644
> --- a/arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi
> +++ b/arch/arm64/boot/dts/freescale/imx8mp-verdin.dtsi
> @@ -184,7 +184,6 @@ &ecspi1 {
> &eqos {
> phy-handle = <ðphy0>;
> phy-mode = "rgmii-id";
> - phy-supply = <®_module_eth1phy>;
> pinctrl-names = "default";
> pinctrl-0 = <&pinctrl_eqos>;
> snps,force_thresh_dma_mode;
Cheers
Marcel
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] arm64: dts: imx8mp-verdin: Remove invalid property from eqos
2023-09-28 2:34 [PATCH] arm64: dts: imx8mp-verdin: Remove invalid property from eqos Fabio Estevam
2023-09-28 14:36 ` Marcel Ziswiler
@ 2023-10-10 1:21 ` Shawn Guo
1 sibling, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2023-10-10 1:21 UTC (permalink / raw)
To: Fabio Estevam; +Cc: marcel.ziswiler, linux-arm-kernel, Fabio Estevam
On Wed, Sep 27, 2023 at 11:34:53PM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
>
> Per nxp,dwmac-imx.yaml, it is not valid to pass 'phy-supply'.
>
> The reg_module_eth1phy regulator is marked with 'regulator-always-on',
> so it is safe to remove it from the eqos node.
>
> Remove it to fix the following schema warning:
>
> imx8mp-verdin-nonwifi-dahlia.dtb: ethernet@30bf0000: Unevaluated properties are not allowed ('phy-supply' was unexpected)
> from schema $id: http://devicetree.org/schemas/net/nxp,dwmac-imx.yaml#
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
Applied, thanks!
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-10-10 1:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-28 2:34 [PATCH] arm64: dts: imx8mp-verdin: Remove invalid property from eqos Fabio Estevam
2023-09-28 14:36 ` Marcel Ziswiler
2023-10-10 1:21 ` Shawn Guo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).