From: Andrew Lunn <andrew@lunn.ch>
To: Michael Walle <michael@walle.cc>
Cc: David Miller <davem@davemloft.net>,
netdev <netdev@vger.kernel.org>,
Florian Fainelli <f.fainelli@gmail.com>,
Heiner Kallweit <hkallweit1@gmail.com>,
Chris Healy <cphealy@gmail.com>,
Michal Kubecek <mkubecek@suse.cz>
Subject: Re: [PATCH net-next v2 08/10] net: phy: marvell: Add cable test support
Date: Tue, 5 May 2020 15:32:26 +0200 [thread overview]
Message-ID: <20200505133226.GH208718@lunn.ch> (raw)
In-Reply-To: <6c50c8892e7639e5b0772c9ea8d37d3a@walle.cc>
> > +static int marvell_vct7_cable_test_start(struct phy_device *phydev)
> > +{
> > + int bmcr, bmsr, ret;
> > +
> > + /* If auto-negotiation is enabled, but not complete, the cable
> > + * test never completes. So disable auto-neg.
> > + */
> > + bmcr = phy_read(phydev, MII_BMCR);
> > + if (bmcr < 0)
> > + return bmcr;
> > +
> > + bmsr = phy_read(phydev, MII_BMSR);
> > +
> > + if (bmsr < 0)
> > + return bmsr;
> > +
> > + if (bmcr & BMCR_ANENABLE) {
> > + ret = phy_modify(phydev, MII_BMCR, BMCR_ANENABLE, 0);
> > + if (ret < 0)
> > + return ret;
> > + ret = genphy_soft_reset(phydev);
> > + if (ret < 0)
> > + return ret;
> > + }
> > +
> > + /* If the link is up, allow it some time to go down */
> > + if (bmsr & BMSR_LSTATUS)
> > + msleep(1500);
>
> Is it mandatory to wait 1.5s unconditionally or can we poll for link down?
Polling is fine. I think i got this from the Marvell SDK.
> > +
> > + return phy_write_paged(phydev, MII_MARVELL_VCT7_PAGE,
> > + MII_VCT7_CTRL,
> > + MII_VCT7_CTRL_RUN_NOW |
> > + MII_VCT7_CTRL_CENTIMETERS);
> > +}
> > +
> > +static int marvell_vct7_distance_to_length(int distance, bool meter)
> > +{
> > + if (meter)
> > + distance *= 100;
>
> I've never understood the use of the meter unit. If we always use
> centimeters, we have 2^16 cm = 655m, shouldn't that be enough given
> that the max cable length is 100m in TP ethernet? Also you hardcode
> the unit to centimeters, so this should be superfluous, making this
> function a noop.
Yes, it should never be used now. But i did use it initially, to see
if the results were different/better. It is a rather odd design, and
i'm wondering if some of the older PHYs only have meters? I guess i
should go look at the SDK.
> > + return distance;
> > +}
> > +
> > +static bool marvell_vct7_distance_valid(int result)
> > +{
> > + switch (result) {
> > + case MII_VCT7_RESULTS_OPEN:
> > + case MII_VCT7_RESULTS_SAME_SHORT:
> > + case MII_VCT7_RESULTS_CROSS_SHORT:
>
> btw on the BCM54140 I've observed, that if you have a intra-pair
> short, the length is wrong; looks like it is twice the value it
> should be.
>
> Does the Marvell PHY report the correct value?
I've not tested that.
Chris, do you have results for this test?
> > +static int marvell_vct7_cable_test_report(struct phy_device *phydev)
> > +{
> > + int pair0, pair1, pair2, pair3;
> > + bool meter;
> > + int ret;
> > +
> > + ret = phy_read_paged(phydev, MII_MARVELL_VCT7_PAGE,
> > + MII_VCT7_RESULTS);
> > + if (ret < 0)
> > + return ret;
> > +
> > + pair3 = (ret & MII_VCT7_RESULTS_PAIR3_MASK) >>
> > + MII_VCT7_RESULTS_PAIR3_SHIFT;
> > + pair2 = (ret & MII_VCT7_RESULTS_PAIR2_MASK) >>
> > + MII_VCT7_RESULTS_PAIR2_SHIFT;
> > + pair1 = (ret & MII_VCT7_RESULTS_PAIR1_MASK) >>
> > + MII_VCT7_RESULTS_PAIR1_SHIFT;
> > + pair0 = (ret & MII_VCT7_RESULTS_PAIR0_MASK) >>
> > + MII_VCT7_RESULTS_PAIR0_SHIFT;
>
> I'm sure you know FIELD_GET(), so there must be another
> reason why you use mask and shift, consistency?
Consistency, and FIELD_GET() just looks odd, only taking a mask, not a
shift.
Andrew
next prev parent reply other threads:[~2020-05-05 13:32 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-05 0:18 [PATCH net-next v2 00/10] Ethernet Cable test support Andrew Lunn
2020-05-05 0:18 ` [PATCH net-next v2 01/10] net: phy: Add cable test support to state machine Andrew Lunn
2020-05-05 0:18 ` [PATCH net-next v2 02/10] net: phy: Add support for polling cable test Andrew Lunn
2020-05-05 3:15 ` Florian Fainelli
2020-05-05 0:18 ` [PATCH net-next v2 03/10] net: ethtool: netlink: Add support for triggering a " Andrew Lunn
2020-05-05 3:18 ` Florian Fainelli
2020-05-05 7:15 ` Michal Kubecek
2020-05-05 0:18 ` [PATCH net-next v2 04/10] net: ethtool: Add attributes for cable test reports Andrew Lunn
2020-05-05 3:19 ` Florian Fainelli
2020-05-05 8:28 ` Michal Kubecek
2020-05-05 13:15 ` Andrew Lunn
2020-05-05 13:24 ` Michal Kubecek
2020-05-05 0:18 ` [PATCH net-next v2 05/10] net: ethtool: Make helpers public Andrew Lunn
2020-05-05 3:20 ` Florian Fainelli
2020-05-05 8:29 ` Michal Kubecek
2020-05-05 0:18 ` [PATCH net-next v2 06/10] net: ethtool: Add infrastructure for reporting cable test results Andrew Lunn
2020-05-05 3:21 ` Florian Fainelli
2020-05-05 10:42 ` Michal Kubecek
2020-05-05 13:19 ` Andrew Lunn
2020-05-05 0:18 ` [PATCH net-next v2 07/10] net: ethtool: Add helpers for reporting " Andrew Lunn
2020-05-05 3:22 ` Florian Fainelli
2020-05-05 10:50 ` Michal Kubecek
2020-05-05 13:22 ` Andrew Lunn
2020-05-05 13:32 ` Michal Kubecek
2020-05-05 0:18 ` [PATCH net-next v2 08/10] net: phy: marvell: Add cable test support Andrew Lunn
2020-05-05 3:24 ` Florian Fainelli
2020-05-05 10:11 ` Michael Walle
2020-05-05 13:32 ` Andrew Lunn [this message]
2020-05-05 10:52 ` Michal Kubecek
2020-05-05 0:18 ` [PATCH net-next v2 09/10] net: phy: Put interface into oper testing during cable test Andrew Lunn
2020-05-05 3:24 ` Florian Fainelli
2020-05-05 11:26 ` Michal Kubecek
2020-05-05 0:18 ` [PATCH net-next v2 10/10] net: phy: Send notifier when starting the " Andrew Lunn
2020-05-05 3:25 ` Florian Fainelli
2020-05-05 11:32 ` Michal Kubecek
2020-05-05 13:35 ` Andrew Lunn
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=20200505133226.GH208718@lunn.ch \
--to=andrew@lunn.ch \
--cc=cphealy@gmail.com \
--cc=davem@davemloft.net \
--cc=f.fainelli@gmail.com \
--cc=hkallweit1@gmail.com \
--cc=michael@walle.cc \
--cc=mkubecek@suse.cz \
--cc=netdev@vger.kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).