Re: [PATCH net-next 4/5] net: phy: add Lynx PCS MDIO module
From: Russell King - ARM Linux admin <linux@armlinux.org.uk>
Date: 2020-06-18 22:27:33
On Fri, Jun 19, 2020 at 12:13:52AM +0200, Andrew Lunn wrote:
quoted
MAINTAINERS | 7 + drivers/net/phy/Kconfig | 6 + drivers/net/phy/Makefile | 1 + drivers/net/phy/mdio-lynx-pcs.c | 358 ++++++++++++++++++++++++++++++++ include/linux/mdio-lynx-pcs.h | 43 ++++ 5 files changed, 415 insertions(+) create mode 100644 drivers/net/phy/mdio-lynx-pcs.c create mode 100644 include/linux/mdio-lynx-pcs.hHi Ioana We should think about naming convention here. All MDIO bus driver, MDIO multiplexors etc use mdio- as a prefix. This is not a bus driver, so i don't think it should use the mdio- prefix. How about pcs-lynx.c? In terms of Kconfig, MDIO_ prefix is used for MDIO bus drivers etc. I don't think it is appropriate here. How about PCS_LYNX? I don't think any other subsystem is using PCS_ as a prefix.quoted
--- a/drivers/net/phy/Kconfig +++ b/drivers/net/phy/Kconfig@@ -235,6 +235,12 @@ config MDIO_XPCS This module provides helper functions for Synopsys DesignWare XPCS controllers. +config MDIO_LYNX_PCS + bool + help + This module provides helper functions for Lynx PCS enablement + representing the PCS as an MDIO device. + endif endifMaybe add this at the end, and add a comment "PCS device drivers" before it? I'm assuming with time we will have more of these drivers.
It think we will. The other thing is, drivers/net/phy is becoming a little cluttered - we have approaching 100 files there. Should we be thinking about drivers/net/phy/mdio/ (for mdio*), drivers/net/phy/lib/ for the core phylib code or leaving it where it is, and, hmm, drivers/net/phy/media/ maybe for the PHY and PCS drivers? Or something like that? -- RMK's Patch system: https://www.armlinux.org.uk/developer/patches/ FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!