Re: [PATCH net-next v4 2/2] net:dsa:microchip: add property to select

From: Ante Knezic
Date: Mon Oct 23 2023 - 08:42:05 EST


On Mon, 23 Oct 2023 13:49:16 +0200, Oleksij Rempel wrote:

> In case of KSZ8873 we seems to have something like:
>
> Switch MAC<-.
> |
> PLL -> clk sel -> REFCLKO
> \-----< REFCLKI
>
> Clock select in this case is controlled by Register 198 (0xC6).
>
> In case of KSZ9897 we probably have something like:
>
> Switch MAC<-.
> |
> PLL -> clk sel -> REFCLKO
> \--x--< REFCLKI
> |
> Gate REFCLKI if REFCLKO is used.
>
> In both cases:
> - KSZ8873, Setting bit3 in Register 198 (0xC6) will control use of clk
> select
> - KSZ9897, setting bit2 in Register 0xN301, will controll use of clk
> select and probably gate REFCLKI.
>
> So far, it looks very similar to me and it is usually handled by
> phy-mode rmii vs revrmii. Correct?

Thats correct I guess with one important point: default setting for KSZ88X3 is
not to gate back to REFCLKI, while KSZ9897 will (correct me if I am wrong)
automatically gate to REFCLKI and does not have the ability to gate/not-to-gate
REFCLKO to REFCLKI with any register setting. Thats more-less what this patch
is all about. Something that is automatically active (and can not be changed
during run-time?) on KSZ9897 needs to be manually configured on KSZ88X3.

> So, the main question is still, do we need this kind of configuration
> per port or it is enough to have it per switch?

Thats something on which more experienced developers/maintainers may have more
to say, my impression is that its somewhat specific to KSZ88X3 to have this
option available and the location of the register itself also makes a point on
its own. I may be wrong about this of course.

> For some reasons KSZ8863MLL datasheet provides RMII clock select
> configuration for two ports (port 1 and 3)
> https://ww1.microchip.com/downloads/aemDocuments/documents/UNG/ProductDocuments/DataSheets/KSZ8863MLL-FLL-RLL-Data-Sheet-00002335C.pdf
> May be there are variants with two RMIIs?

As you noticed KSZ8863 provides configuration for port1 as well, but I was not
able to find any reference to what it may actually select. The product
identification system for ksz8863 does not mention devices with 2 RMII
interfaces. The KSZ8873 has this bit set to "Reserved" so I can't really
tell whats going on there...

> Something similar but with multiple RMII interfaces seems to be
> supported by KSZ8864CNX:
> https://eu.mouser.com/datasheet/2/268/00002229A-1082534.pdf
>

As well as these datasheets are sometimes muddled and difficult to get a grasp of
by looking at the KSZ8873 datasheet it seems to me that it can select between
"clock" (default) and "normal" mode, which is something similar to the
rmii-clk-internal property of KSZ88X3 devices, however this mode of operation
seems to be selectable only at boot time by strap pins (see description of
Register 12 (Global Control 10).

> And all KSZ9xxx series seems to handle it per port as well.

I guess you are refering to register 87 (RMII Management Control Register)?
But this only selects whether to enable clock output on RXC pin?