]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
arm64: dts: imx93-11x11-evk: Use phys to replace xceiver-supply
authorPeng Fan <peng.fan@nxp.com>
Fri, 12 Dec 2025 09:57:21 +0000 (17:57 +0800)
committerShawn Guo <shawnguo@kernel.org>
Tue, 30 Dec 2025 07:02:15 +0000 (15:02 +0800)
The TJA1057 used on i.MX93 EVK is actually high-speed CAN
transceiver, not a regulator supply. So use phys to reflect the truth.

Reviewed-by: Frank Li <Frank.Li@nxp.com>
Acked-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
arch/arm64/boot/dts/freescale/imx93-11x11-evk.dts

index b94a24193e199b266943c58466f4f620e81480ba..8dd5340e8141f44913be8167e85337f179f5edbf 100644 (file)
 
        };
 
+       flexcan_phy: can-phy {
+               compatible = "nxp,tja1057";
+               #phy-cells = <0>;
+               max-bitrate = <5000000>;
+               silent-gpios = <&adp5585 6 GPIO_ACTIVE_HIGH>;
+       };
+
        reg_vdd_12v: regulator-vdd-12v {
                compatible = "regulator-fixed";
                regulator-name = "VDD_12V";
                enable-active-high;
        };
 
-       reg_can2_standby: regulator-can2-standby {
-               compatible = "regulator-fixed";
-               regulator-name = "can2-stby";
-               regulator-min-microvolt = <3300000>;
-               regulator-max-microvolt = <3300000>;
-               gpio = <&adp5585 6 GPIO_ACTIVE_LOW>;
-       };
-
        reg_m2_pwr: regulator-m2-pwr {
                compatible = "regulator-fixed";
                regulator-name = "M.2-power";
 &flexcan2 {
        pinctrl-names = "default";
        pinctrl-0 = <&pinctrl_flexcan2>;
-       xceiver-supply = <&reg_can2_standby>;
+       phys = <&flexcan_phy>;
        status = "okay";
 };