From: <Claudiu.Beznea@microchip.com>
To: <michael@walle.cc>, <netdev@vger.kernel.org>,
<linux-kernel@vger.kernel.org>
Cc: <Nicolas.Ferre@microchip.com>, <davem@davemloft.net>
Subject: Re: [PATCH] net: macb: ignore tx_clk if MII is used
Date: Thu, 21 Jan 2021 09:19:12 +0000 [thread overview]
Message-ID: <38734f00-e672-e694-1344-35f4dd68c90c@microchip.com> (raw)
In-Reply-To: <20210120194303.28268-1-michael@walle.cc>
Hi Michael,
On 20.01.2021 21:43, Michael Walle wrote:
> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
>
> If the MII interface is used, the PHY is the clock master, thus don't
> set the clock rate. On Zynq-7000, this will prevent the following
> warning:
> macb e000b000.ethernet eth0: unable to generate target frequency: 25000000 Hz
>
Since in this case the PHY provides the TX clock and it provides the proper
rate based on link speed, the MACB driver should not handle the bp->tx_clk
at all (MACB driver uses this clock only for setting the proper rate on it
based on link speed). So, I believe the proper fix would be to not pass the
tx_clk at all in device tree. This clock is optional for MACB driver.
Thank you,
Claudiu Beznea
> Signed-off-by: Michael Walle <michael@walle.cc>
> ---
> drivers/net/ethernet/cadence/macb_main.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/net/ethernet/cadence/macb_main.c b/drivers/net/ethernet/cadence/macb_main.c
> index 814a5b10141d..472bf8f220bc 100644
> --- a/drivers/net/ethernet/cadence/macb_main.c
> +++ b/drivers/net/ethernet/cadence/macb_main.c
> @@ -470,6 +470,10 @@ static void macb_set_tx_clk(struct macb *bp, int speed)
> if (!bp->tx_clk || (bp->caps & MACB_CAPS_CLK_HW_CHG))
> return;
>
> + /* In case of MII the PHY is the clock master */
> + if (bp->phy_interface == PHY_INTERFACE_MODE_MII)
> + return;
> +
> switch (speed) {
> case SPEED_10:
> rate = 2500000;
> --
> 2.20.1
>
next prev parent reply other threads:[~2021-01-21 9:20 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-20 19:43 [PATCH] net: macb: ignore tx_clk if MII is used Michael Walle
2021-01-20 20:29 ` Andrew Lunn
2021-01-21 9:19 ` Claudiu.Beznea [this message]
2021-01-21 9:41 ` Michael Walle
2021-01-22 9:10 ` Claudiu.Beznea
2021-01-22 11:20 ` Michael Walle
2021-01-22 11:38 ` Claudiu.Beznea
2021-01-22 12:32 ` Michael Walle
2021-01-22 4:00 ` patchwork-bot+netdevbpf
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=38734f00-e672-e694-1344-35f4dd68c90c@microchip.com \
--to=claudiu.beznea@microchip.com \
--cc=Nicolas.Ferre@microchip.com \
--cc=davem@davemloft.net \
--cc=linux-kernel@vger.kernel.org \
--cc=michael@walle.cc \
--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).