From: "Russell King (Oracle)" <linux@armlinux.org.uk>
To: Charles Perry <charles.perry@microchip.com>
Cc: netdev@vger.kernel.org, Sean Anderson <sean.anderson@linux.dev>,
Nicolas Ferre <nicolas.ferre@microchip.com>,
Claudiu Beznea <claudiu.beznea@tuxon.dev>,
Andrew Lunn <andrew+netdev@lunn.ch>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH net-next 1/2] net: macb: fix SGMII with inband aneg disabled
Date: Thu, 19 Feb 2026 17:13:02 +0000 [thread overview]
Message-ID: <aZdEnm9Vlb41T_DT@shell.armlinux.org.uk> (raw)
In-Reply-To: <20260219170113.1774090-1-charles.perry@microchip.com>
On Thu, Feb 19, 2026 at 09:01:11AM -0800, Charles Perry wrote:
> @@ -574,6 +574,25 @@ static int macb_pcs_config(struct phylink_pcs *pcs,
> const unsigned long *advertising,
> bool permit_pause_to_mac)
> {
> + struct macb *bp = container_of(pcs, struct macb, phylink_sgmii_pcs);
> + unsigned long flags;
> + u32 old, new;
> +
> + spin_lock_irqsave(&bp->lock, flags);
> + old = gem_readl(bp, PCSANADV);
> + new = phylink_mii_c22_pcs_encode_advertisement(interface, advertising);
> + if (new != -EINVAL && old != new)
> + gem_writel(bp, PCSANADV, new);
> +
> + old = gem_readl(bp, PCSCNTRL);
> + if (neg_mode == PHYLINK_PCS_NEG_INBAND_ENABLED)
> + new = old | BMCR_ANENABLE;
> + else
> + new = old & ~BMCR_ANENABLE;
> + if (old != new)
> + gem_writel(bp, PCSCNTRL, new);
> +
> + spin_unlock_irqrestore(&bp->lock, flags);
What purpose does the spinlock serve?
phylink will call this under the phylink state_mutex lock, which will
guarantee that two threads can't execute this code simultaneously.
> return 0;
> }
>
> @@ -628,22 +647,6 @@ static void macb_mac_config(struct phylink_config *config, unsigned int mode,
> if (old_ncr ^ ncr)
> macb_or_gem_writel(bp, NCR, ncr);
>
> - /* Disable AN for SGMII fixed link configuration, enable otherwise.
> - * Must be written after PCSSEL is set in NCFGR,
> - * otherwise writes will not take effect.
This looks like a key piece of information that is being removed from
the driver. Might be worth keeping it as a note that macb_pcs_config()
will be called after PCSSEL has been set in NCFGR?
--
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:[~2026-02-19 17:13 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-19 17:01 [PATCH net-next 1/2] net: macb: fix SGMII with inband aneg disabled Charles Perry
2026-02-19 17:01 ` [PATCH net-next 2/2] net: macb: add support for reporting SGMII inband link status Charles Perry
2026-02-19 17:15 ` Russell King (Oracle)
2026-02-19 17:13 ` Russell King (Oracle) [this message]
2026-02-19 17:19 ` [PATCH net-next 1/2] net: macb: fix SGMII with inband aneg disabled 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=aZdEnm9Vlb41T_DT@shell.armlinux.org.uk \
--to=linux@armlinux.org.uk \
--cc=andrew+netdev@lunn.ch \
--cc=charles.perry@microchip.com \
--cc=claudiu.beznea@tuxon.dev \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=nicolas.ferre@microchip.com \
--cc=pabeni@redhat.com \
--cc=sean.anderson@linux.dev \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox