From: Michael Klein <michael@fossekall.de>
To: "Russell King (Oracle)" <linux@armlinux.org.uk>
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>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [net-next,v3,2/2] net: phy: realtek: Add support for PHY LEDs on RTL8211E
Date: Mon, 17 Mar 2025 18:23:07 +0100 [thread overview]
Message-ID: <Z9haewIdFv4bed3H@a98shuttle.de> (raw)
In-Reply-To: <Z9gEP_w6WvuCC_ge@shell.armlinux.org.uk>
Thank you for your insights,
On Mon, Mar 17, 2025 at 11:15:11AM +0000, Russell King (Oracle) wrote:
>On Sun, Mar 16, 2025 at 01:14:23PM +0100, Michael Klein wrote:
>> +static int rtl8211e_led_hw_control_get(struct phy_device *phydev, u8 index,
>> + unsigned long *rules)
>> +{
>> + int ret;
>> + u16 cr1, cr2;
>> +
>> + if (index >= RTL8211x_LED_COUNT)
>> + return -EINVAL;
>> +
>> + ret = rtl8211e_read_ext_page(phydev, RTL8211E_LEDCR_EXT_PAGE,
>> + RTL8211E_LEDCR1);
>> + if (ret < 0)
>> + return ret;
>> +
>> + cr1 = ret >> RTL8211E_LEDCR1_SHIFT * index;
>> + if (cr1 & RTL8211E_LEDCR1_ACT_TXRX) {
>> + set_bit(TRIGGER_NETDEV_RX, rules);
>> + set_bit(TRIGGER_NETDEV_TX, rules);
>> + }
>> +
>> + ret = rtl8211e_read_ext_page(phydev, RTL8211E_LEDCR_EXT_PAGE,
>> + RTL8211E_LEDCR2);
>> + if (ret < 0)
>> + return ret;
>> +
>> + cr2 = ret >> RTL8211E_LEDCR2_SHIFT * index;
>> + if (cr2 & RTL8211E_LEDCR2_LINK_10)
>> + set_bit(TRIGGER_NETDEV_LINK_10, rules);
>> +
>> + if (cr2 & RTL8211E_LEDCR2_LINK_100)
>> + set_bit(TRIGGER_NETDEV_LINK_100, rules);
>> +
>> + if (cr2 & RTL8211E_LEDCR2_LINK_1000)
>> + set_bit(TRIGGER_NETDEV_LINK_1000, rules);
>
>Do you need these set_bit()s to be a heavy-weight atomic operation, or
>will __set_bit() being its lighter-weight non-atomic version be better?
I don't think this needs to be atomic at all, as the phydev lock is held
by the one and only caller (phy_led_hw_control_get()).
rtl8211f_led_hw_control_get() also uses set_bit(). Should I change those
also to __set_bit() in a separate patch while I'm at it?
--
Michael
next prev parent reply other threads:[~2025-03-17 17:23 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-16 12:14 [net-next,v3,0/2] net: phy: realtek: Add support for PHY LEDs on Michael Klein
2025-03-16 12:14 ` [net-next,v3,1/2] net: phy: realtek: Clean up RTL8211E ExtPage access Michael Klein
2025-03-17 11:13 ` Russell King (Oracle)
2025-03-16 12:14 ` [net-next,v3,2/2] net: phy: realtek: Add support for PHY LEDs on RTL8211E Michael Klein
2025-03-17 11:15 ` Russell King (Oracle)
2025-03-17 17:23 ` Michael Klein [this message]
2025-03-17 17:26 ` 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=Z9haewIdFv4bed3H@a98shuttle.de \
--to=michael@fossekall.de \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=hkallweit1@gmail.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox