Skip to content

drivers: ethernet: vsc8541: various fixes #91726

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
2 changes: 1 addition & 1 deletion boards/sensry/ganymed_bob/ganymed_bob_sy120_gbm.dts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
reg = <0x0>;
status = "okay";

reset-gpios = <&gpio0 11 GPIO_ACTIVE_HIGH>;
reset-gpios = <&gpio0 11 GPIO_ACTIVE_LOW>;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add a entry in the migration guide, stating that this got fixed, so users with custom boards know that they have to change it too

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added


microchip,interface-type = "rgmii";
};
Expand Down
2 changes: 1 addition & 1 deletion boards/sensry/ganymed_bob/ganymed_bob_sy120_gen1.dts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
reg = <0x0>;
status = "okay";

reset-gpios = <&gpio0 11 GPIO_ACTIVE_HIGH>;
reset-gpios = <&gpio0 11 GPIO_ACTIVE_LOW>;

microchip,interface-type = "rgmii";
};
Expand Down
2 changes: 1 addition & 1 deletion boards/sensry/ganymed_sk/ganymed_sk_sy120_gbm.dts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
reg = <0x0b>;
status = "okay";

reset-gpios = <&gpio0 11 GPIO_ACTIVE_HIGH>;
reset-gpios = <&gpio0 11 GPIO_ACTIVE_LOW>;

microchip,interface-type = "rgmii";
};
Expand Down
2 changes: 1 addition & 1 deletion boards/sensry/ganymed_sk/ganymed_sk_sy120_gen1.dts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
reg = <0x0b>;
status = "okay";

reset-gpios = <&gpio0 11 GPIO_ACTIVE_HIGH>;
reset-gpios = <&gpio0 11 GPIO_ACTIVE_LOW>;

microchip,interface-type = "rgmii";
};
Expand Down
4 changes: 4 additions & 0 deletions doc/releases/migration-guide-4.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,10 @@ Ethernet
* :c:func:`phy_configure_link` got a ``flags`` parameter. Set it to ``0`` to preserve the old
behavior (:github:`91354`).

* The :dtcompatible:`microchip,vsc8541` PHY driver now expects the reset-gpios entry to specify
the GPIO_ACTIVE_LOW flag when the reset is being used as active low. Previously the active-low
nature was hard-coded into the driver. (:github:`91726`).

Enhanced Serial Peripheral Interface (eSPI)
===========================================

Expand Down
Loading
Loading