From: Robert Hancock <hidden> Date: 2021-06-30 17:50:35
Allow phytool ioctl access to read/write registers in the internal
PCS/PMA PHY if it is enabled.
Signed-off-by: Robert Hancock <redacted>
---
.../net/ethernet/xilinx/xilinx_axienet_main.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
From: "Russell King (Oracle)" <linux@armlinux.org.uk> Date: 2021-06-30 17:47:04
On Wed, Jun 30, 2021 at 11:40:22AM -0600, Robert Hancock wrote:
Allow phytool ioctl access to read/write registers in the internal
PCS/PMA PHY if it is enabled.
I wonder if this is something that should happen in phylink?
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!
From: Robert Hancock <hidden> Date: 2021-06-30 18:23:55
On Wed, 2021-06-30 at 18:46 +0100, Russell King (Oracle) wrote:
On Wed, Jun 30, 2021 at 11:40:22AM -0600, Robert Hancock wrote:
quoted
Allow phytool ioctl access to read/write registers in the internal
PCS/PMA PHY if it is enabled.
I wonder if this is something that should happen in phylink?
If there are other drivers which have a PCS which could be accessed with
phytool etc., it might make sense. Right now phylink core doesn't really have
any knowledge that the PCS PHY actually exists as something that can be
accessed via MDIO registers, it just talks to it indirectly through the
mac_config and mac_pcs_get_state callbacks in the driver which then call back
into the c22_pcs helper functions to actually talk to the PCS.
I'm not sure phylink could generically assume that the PCS can be accessed over
MDIO however, as I believe that the Cadence MACB IP, for example, at least as
implemented in the Xilinx ZynqMP parts, exposes its PCS with some PHY-style
registers but they are just a portion of the device's register space and not
accessed via MDIO, so we'd want to support that kind of setup. I suppose it
could implement an emulated MDIO bus to access those registers for that
purpose?
--
Robert Hancock
Senior Hardware Designer, Calian Advanced Technologies
www.calian.com
From: "Russell King (Oracle)" <linux@armlinux.org.uk> Date: 2021-06-30 18:28:17
On Wed, Jun 30, 2021 at 06:23:46PM +0000, Robert Hancock wrote:
On Wed, 2021-06-30 at 18:46 +0100, Russell King (Oracle) wrote:
quoted
On Wed, Jun 30, 2021 at 11:40:22AM -0600, Robert Hancock wrote:
quoted
Allow phytool ioctl access to read/write registers in the internal
PCS/PMA PHY if it is enabled.
I wonder if this is something that should happen in phylink?
If there are other drivers which have a PCS which could be accessed with
phytool etc., it might make sense. Right now phylink core doesn't really have
any knowledge that the PCS PHY actually exists as something that can be
accessed via MDIO registers, it just talks to it indirectly through the
mac_config and mac_pcs_get_state callbacks in the driver which then call back
into the c22_pcs helper functions to actually talk to the PCS.
Phylink does know that a PCS exists. It has separate pcs_ops for it, and
slightly changes its behaviour when a PCS exists.
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!
From: Andrew Lunn <andrew@lunn.ch> Date: 2021-06-30 20:29:10
On Wed, Jun 30, 2021 at 11:40:22AM -0600, Robert Hancock wrote:
quoted hunk
Allow phytool ioctl access to read/write registers in the internal
PCS/PMA PHY if it is enabled.
Signed-off-by: Robert Hancock <redacted>
---
.../net/ethernet/xilinx/xilinx_axienet_main.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
I would prefer not to allow write. The kernel should be driving the
hardware, and if user space changes values, the kernel has no idea
about it, and can do the wrong things.
Andrew