[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1e78d2e117fbb8e409f54a00694dc324@walle.cc>
Date: Tue, 14 Mar 2023 15:04:58 +0100
From: Michael Walle <michael@...le.cc>
To: Andrew Lunn <andrew@...n.ch>
Cc: Xu Liang <lxu@...linear.com>, hkallweit1@...il.com,
netdev@...r.kernel.org, davem@...emloft.net, kuba@...nel.org,
linux@...linux.org.uk, hmehrtens@...linear.com,
tmohren@...linear.com, rtanwar@...linear.com,
mohammad.athari.ismail@...el.com, edumazet@...gle.com,
pabeni@...hat.com
Subject: Re: [PATCH net-next v4] net: phy: mxl-gpy: enhance delay time
required by loopback disable function
Am 2023-03-14 14:50, schrieb Andrew Lunn:
>> + /* It takes 3 seconds to fully switch out of loopback mode before
>> + * it can safely re-enter loopback mode. Record the time when
>> + * loopback is disabled. Check and wait if necessary before loopback
>> + * is enabled.
>> + */
>
> Is there are restriction about entering loopback mode within the first
> 3 seconds after power on?
>
>> + bool lb_dis_chk;
>> + u64 lb_dis_to;
>> };
>>
>> static const struct {
>> @@ -769,18 +777,34 @@ static void gpy_get_wol(struct phy_device
>> *phydev,
>>
>> static int gpy_loopback(struct phy_device *phydev, bool enable)
>> {
>> + struct gpy_priv *priv = phydev->priv;
>> + u16 set = 0;
>> int ret;
>>
>> - ret = phy_modify(phydev, MII_BMCR, BMCR_LOOPBACK,
>> - enable ? BMCR_LOOPBACK : 0);
>> - if (!ret) {
>> - /* It takes some time for PHY device to switch
>> - * into/out-of loopback mode.
>> + if (enable) {
>> + /* wait until 3 seconds from last disable */
>> + if (priv->lb_dis_chk && time_is_after_jiffies64(priv->lb_dis_to))
>> + msleep(jiffies64_to_msecs(priv->lb_dis_to - get_jiffies_64()));
>> +
>> + priv->lb_dis_chk = false;
>> + set = BMCR_LOOPBACK;
>
> Maybe this can be simplified by setting priv->lb_dis_to =
> get_jiffies_64() + HZ * 3 in _probe(). Then you don't need
> priv->lb_dis_chk.
First, I wonder if this is worth the effort and code complications.
phy_loopback() seem to be used very seldom. Anyway.
Can't we just save the jiffies on last enable as kind of a timestamp.
If it's 0 you know it wasn't called yet and if it's set, you have to at
least wait for until it is after "jiffies + HZ*3".
Also isn't that racy right now? "priv->lb_dis_to - get_jiffies_64())"
can
get negative, no?
-michael
Powered by blists - more mailing lists