Message ID | 20230114225647.227972-2-aford173@gmail.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 8251c54e0c75f5903c2eb59ff0a593b108a3b329 |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Series | [1/3] arm64: dts: beacon-renesom: Fix gpio expander reference | expand |
On Sat, Jan 14, 2023 at 11:56 PM Adam Ford <aford173@gmail.com> wrote: > Due to the part shortage, the AR8031 PHY was replaced with a > Micrel KSZ9131. Hard-coding the ID of the PHY makes this new > PHY non-operational on newer hardware. Since previous hardware > had only shipped to a limited number of people, and they have > not gone to production, it should be safe to update the PHY ID. > > Signed-off-by: Adam Ford <aford173@gmail.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> i.e. will queue in renesas-devel for v6.3. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds
On Sat, Jan 14, 2023 at 11:56 PM Adam Ford <aford173@gmail.com> wrote: > Due to the part shortage, the AR8031 PHY was replaced with a > Micrel KSZ9131. Hard-coding the ID of the PHY makes this new > PHY non-operational on newer hardware. Since previous hardware > had only shipped to a limited number of people, and they have > not gone to production, it should be safe to update the PHY ID. > > Signed-off-by: Adam Ford <aford173@gmail.com> > > diff --git a/arch/arm64/boot/dts/renesas/beacon-renesom-som.dtsi b/arch/arm64/boot/dts/renesas/beacon-renesom-som.dtsi > index d3fc8ffd5b4c..a302f0ea8a48 100644 > --- a/arch/arm64/boot/dts/renesas/beacon-renesom-som.dtsi > +++ b/arch/arm64/boot/dts/renesas/beacon-renesom-som.dtsi > @@ -59,7 +59,7 @@ &avb { > status = "okay"; > > phy0: ethernet-phy@0 { > - compatible = "ethernet-phy-id004d.d074", > + compatible = "ethernet-phy-i0022.1640", ethernet-phy-id0022.1640 Fixing while applying... > "ethernet-phy-ieee802.3-c22"; > reg = <0>; > interrupt-parent = <&gpio2>; Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds
diff --git a/arch/arm64/boot/dts/renesas/beacon-renesom-som.dtsi b/arch/arm64/boot/dts/renesas/beacon-renesom-som.dtsi index d3fc8ffd5b4c..a302f0ea8a48 100644 --- a/arch/arm64/boot/dts/renesas/beacon-renesom-som.dtsi +++ b/arch/arm64/boot/dts/renesas/beacon-renesom-som.dtsi @@ -59,7 +59,7 @@ &avb { status = "okay"; phy0: ethernet-phy@0 { - compatible = "ethernet-phy-id004d.d074", + compatible = "ethernet-phy-i0022.1640", "ethernet-phy-ieee802.3-c22"; reg = <0>; interrupt-parent = <&gpio2>;
Due to the part shortage, the AR8031 PHY was replaced with a Micrel KSZ9131. Hard-coding the ID of the PHY makes this new PHY non-operational on newer hardware. Since previous hardware had only shipped to a limited number of people, and they have not gone to production, it should be safe to update the PHY ID. Signed-off-by: Adam Ford <aford173@gmail.com>