ARM: dts: am335x-shc: switch to new cpsw switch drv
authorGrygorii Strashko <grygorii.strashko@ti.com>
Sat, 12 Jun 2021 01:14:34 +0000 (04:14 +0300)
committerTony Lindgren <tony@atomide.com>
Fri, 6 Aug 2021 06:25:37 +0000 (09:25 +0300)
The dual_mac mode has been preserved the same way between legacy and new
driver, and one port devices works the same as 1 dual_mac port - it's safe
to switch drivers.

So, switch Bosch SHC to use new cpsw switch driver.
Those boards have or 2 Ext. port wired and configured in dual_mac mode by
default, or only 1 Ext. port.

Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/boot/dts/am335x-shc.dts

index 2bfe60d..6b98775 100644 (file)
        status = "okay";
 };
 
-&davinci_mdio {
-       pinctrl-names = "default", "sleep";
-       pinctrl-0 = <&davinci_mdio_default>;
-       pinctrl-1 = <&davinci_mdio_sleep>;
-       status = "okay";
-
-       ethernetphy0: ethernet-phy@0 {
-               reg = <0>;
-               smsc,disable-energy-detect;
-       };
-};
-
 &epwmss1 {
        status = "okay";
 
        };
 };
 
-&mac {
+&mac_sw {
        pinctrl-names = "default", "sleep";
        pinctrl-0 = <&cpsw_default>;
        pinctrl-1 = <&cpsw_sleep>;
        status = "okay";
-       slaves = <1>;
-       cpsw_emac0: slave@200 {
-               phy-mode = "mii";
-               phy-handle = <&ethernetphy0>;
+};
+
+&cpsw_port1 {
+       phy-mode = "mii";
+       phy-handle = <&ethernetphy0>;
+       ti,dual-emac-pvid = <1>;
+};
+
+&cpsw_port2 {
+       status = "disabled";
+};
+
+&davinci_mdio_sw {
+       pinctrl-names = "default", "sleep";
+       pinctrl-0 = <&davinci_mdio_default>;
+       pinctrl-1 = <&davinci_mdio_sleep>;
+
+       ethernetphy0: ethernet-phy@0 {
+               reg = <0>;
+               smsc,disable-energy-detect;
        };
 };