From: "Russell King (Oracle)" <linux@armlinux.org.uk>
To: Jean-Michel Hautbois <jeanmichel.hautbois@yoseli.org>
Cc: Andrew Lunn <andrew@lunn.ch>,
Heiner Kallweit <hkallweit1@gmail.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Catalin Popescu <catalin.popescu@leica-geosystems.com>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] net: phy: dp83826: Add support for straps reading
Date: Mon, 3 Mar 2025 17:25:09 +0000 [thread overview]
Message-ID: <Z8Xl9blPRVXQiOSm@shell.armlinux.org.uk> (raw)
In-Reply-To: <20250303-dp83826-fixes-v1-2-6901a04f262d@yoseli.org>
On Mon, Mar 03, 2025 at 06:05:52PM +0100, Jean-Michel Hautbois wrote:
> + /* Bit 10: MDIX mode */
> + if (val & BIT(10))
> + phydev_dbg(phydev, "MDIX mode enabled\n");
> +
> + /* Bit 9: auto-MDIX disable */
> + if (val & BIT(9))
> + phydev_dbg(phydev, "Auto-MDIX disabled\n");
> +
> + /* Bit 8: RMII */
> + if (val & BIT(8)) {
> + phydev_dbg(phydev, "RMII mode enabled\n");
> + phydev->interface = PHY_INTERFACE_MODE_RMII;
> + }
Do all users of this PHY driver support having phydev->interface
changed?
> +
> + /* Bit 5: Slave mode */
> + if (val & BIT(5))
> + phydev_dbg(phydev, "RMII slave mode enabled\n");
> +
> + /* Bit 0: autoneg disable */
> + if (val & BIT(0)) {
> + phydev_dbg(phydev, "Auto-negotiation disabled\n");
> + phydev->autoneg = AUTONEG_DISABLE;
> + phydev->speed = SPEED_100;
> + phydev->duplex = DUPLEX_FULL;
> + }
This doesn't force phylib to disallow autoneg.
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!
next prev parent reply other threads:[~2025-03-03 17:25 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-03 17:05 [PATCH 0/2] net: phy: dp83826: Enable strap reading and fix TX data voltage support Jean-Michel Hautbois
2025-03-03 17:05 ` [PATCH 1/2] net: phy: dp83826: Fix " Jean-Michel Hautbois
2025-03-14 9:00 ` Jean-Michel Hautbois
2025-03-03 17:05 ` [PATCH 2/2] net: phy: dp83826: Add support for straps reading Jean-Michel Hautbois
2025-03-03 17:20 ` Andrew Lunn
2025-03-03 17:37 ` Jean-Michel Hautbois
2025-03-03 17:50 ` Andrew Lunn
2025-03-03 17:53 ` Jean-Michel Hautbois
2025-03-04 6:37 ` Jean-Michel Hautbois
2025-03-03 17:25 ` Russell King (Oracle) [this message]
2025-03-03 17:35 ` Jean-Michel Hautbois
2025-03-03 18:08 ` Russell King (Oracle)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Z8Xl9blPRVXQiOSm@shell.armlinux.org.uk \
--to=linux@armlinux.org.uk \
--cc=andrew@lunn.ch \
--cc=catalin.popescu@leica-geosystems.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=hkallweit1@gmail.com \
--cc=jeanmichel.hautbois@yoseli.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.