2024-02-29 19:53:12

by Horatiu Vultur

[permalink] [raw]
Subject: [PATCH net-next v2 0/2] net: phy: micrel: lan8814 erratas

Add two erratas for lan8814. First one fix the led which might
stay on even that there is no link. The second one improves increases
length of the cable that can be used when used in 1000Base-T.

v1->v2:
- separate errates such that each errate has it's own function.

Horatiu Vultur (2):
net: phy: micrel: lan8814 led errata
net: phy: micrel: lan8814 cable improvement errata

drivers/net/phy/micrel.c | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)

--
2.34.1



2024-02-29 19:53:30

by Horatiu Vultur

[permalink] [raw]
Subject: [PATCH net-next v2 1/2] net: phy: micrel: lan8814 led errata

Lan8814 phy led behavior is not correct. It was noticed that the led
still remains ON when the cable is unplugged while there was traffic
passing at that time.

The fix consists in clearing bit 10 of register 0x38, in this way the
led behaviour is correct and gets OFF when there is no link.

Signed-off-by: Horatiu Vultur <[email protected]>
---
drivers/net/phy/micrel.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)

diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
index 9b69735819896..88cc03982bb78 100644
--- a/drivers/net/phy/micrel.c
+++ b/drivers/net/phy/micrel.c
@@ -114,6 +114,9 @@
#define LAN8814_INTR_CTRL_REG_POLARITY BIT(1)
#define LAN8814_INTR_CTRL_REG_INTR_ENABLE BIT(0)

+#define LAN8814_EEE_STATE 0x38
+#define LAN8814_EEE_STATE_MASK2P5P BIT(10)
+
/* Represents 1ppm adjustment in 2^32 format with
* each nsec contains 4 clock cycles.
* The value is calculated as following: (1/1000000)/((2^-32)/4)
@@ -3288,6 +3291,19 @@ static int lan8814_release_coma_mode(struct phy_device *phydev)
return 0;
}

+static void lan8814_clear_2psp_bit(struct phy_device *phydev)
+{
+ u16 val;
+
+ /* It was noticed that when traffic is passing through the PHY and the
+ * cable is removed then the LED was still one even though there is no
+ * link
+ */
+ val = lanphy_read_page_reg(phydev, 2, LAN8814_EEE_STATE);
+ val &= ~LAN8814_EEE_STATE_MASK2P5P;
+ lanphy_write_page_reg(phydev, 2, LAN8814_EEE_STATE, val);
+}
+
static int lan8814_probe(struct phy_device *phydev)
{
const struct kszphy_type *type = phydev->drv->driver_data;
@@ -3324,6 +3340,9 @@ static int lan8814_probe(struct phy_device *phydev)

lan8814_ptp_init(phydev);

+ /* Errata workarounds */
+ lan8814_clear_2psp_bit(phydev);
+
return 0;
}

--
2.34.1


2024-02-29 19:59:13

by Horatiu Vultur

[permalink] [raw]
Subject: [PATCH net-next v2 2/2] net: phy: micrel: lan8814 cable improvement errata

When the length of the cable is more than 100m and the lan8814 is
configured to run in 1000Base-T Slave then the register of the device
needs to be optimized.

Workaround this by setting the measure time to a value of 0xb. This
value can be set regardless of the configuration.

This issue is described in 'LAN8814 Silicon Errata and Data Sheet
Clarification' and according to that, this will not be corrected in a
future silicon revision.

Signed-off-by: Horatiu Vultur <[email protected]>
---
drivers/net/phy/micrel.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)

diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
index 88cc03982bb78..788fdd54fd22d 100644
--- a/drivers/net/phy/micrel.c
+++ b/drivers/net/phy/micrel.c
@@ -117,6 +117,10 @@
#define LAN8814_EEE_STATE 0x38
#define LAN8814_EEE_STATE_MASK2P5P BIT(10)

+#define LAN8814_PD_CONTROLS 0x9d
+#define LAN8814_PD_CONTROLS_PD_MEAS_TIME_MASK_ GENMASK(3, 0)
+#define LAN8814_PD_CONTROLS_PD_MEAS_TIME_VAL_ 0xb
+
/* Represents 1ppm adjustment in 2^32 format with
* each nsec contains 4 clock cycles.
* The value is calculated as following: (1/1000000)/((2^-32)/4)
@@ -3304,6 +3308,20 @@ static void lan8814_clear_2psp_bit(struct phy_device *phydev)
lanphy_write_page_reg(phydev, 2, LAN8814_EEE_STATE, val);
}

+static void lan8814_update_meas_time(struct phy_device *phydev)
+{
+ u16 val;
+
+ /* By setting the measure time to a value of 0xb this will allow cables
+ * longer than 100m to be used. This configuration can be used
+ * regardless of the mode of operation of the PHY
+ */
+ val = lanphy_read_page_reg(phydev, 1, LAN8814_PD_CONTROLS);
+ val &= ~LAN8814_PD_CONTROLS_PD_MEAS_TIME_MASK_;
+ val |= LAN8814_PD_CONTROLS_PD_MEAS_TIME_VAL_;
+ lanphy_write_page_reg(phydev, 1, LAN8814_PD_CONTROLS, val);
+}
+
static int lan8814_probe(struct phy_device *phydev)
{
const struct kszphy_type *type = phydev->drv->driver_data;
@@ -3342,6 +3360,7 @@ static int lan8814_probe(struct phy_device *phydev)

/* Errata workarounds */
lan8814_clear_2psp_bit(phydev);
+ lan8814_update_meas_time(phydev);

return 0;
}
--
2.34.1


2024-03-01 03:28:02

by Arun Ramadoss

[permalink] [raw]
Subject: Re: [PATCH net-next v2 2/2] net: phy: micrel: lan8814 cable improvement errata

Hi Horatiu,

On Thu, 2024-02-29 at 20:52 +0100, Horatiu Vultur wrote:
> When the length of the cable is more than 100m and the lan8814 is
> configured to run in 1000Base-T Slave then the register of the device
> needs to be optimized.
>
> Workaround this by setting the measure time to a value of 0xb. This
> value can be set regardless of the configuration.
>
> This issue is described in 'LAN8814 Silicon Errata and Data Sheet
> Clarification' and according to that, this will not be corrected in a
> future silicon revision.
>
> Signed-off-by: Horatiu Vultur <[email protected]>
> ---
> drivers/net/phy/micrel.c | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
>
> diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
> index 88cc03982bb78..788fdd54fd22d 100644
> --- a/drivers/net/phy/micrel.c
> +++ b/drivers/net/phy/micrel.c
> @@ -117,6 +117,10 @@
> #define LAN8814_EEE_STATE 0x38
> #define LAN8814_EEE_STATE_MASK2P5P BIT(10)
>
> +#define LAN8814_PD_CONTROLS 0x9d
> +#define LAN8814_PD_CONTROLS_PD_MEAS_TIME_MASK_ GENMASK(3, 0)
> +#define LAN8814_PD_CONTROLS_PD_MEAS_TIME_VAL_ 0xb

nitpick: TIME_VAL macro is very generic if it can end with specific
like TIME_VAL_100M or something similar will gives more readability.

> +
>

2024-03-01 07:31:31

by Horatiu Vultur

[permalink] [raw]
Subject: Re: [PATCH net-next v2 2/2] net: phy: micrel: lan8814 cable improvement errata

The 03/01/2024 03:27, Arun Ramadoss - I17769 wrote:
> Hi Horatiu,

Hi Arun,

>
> On Thu, 2024-02-29 at 20:52 +0100, Horatiu Vultur wrote:
> > When the length of the cable is more than 100m and the lan8814 is
> > configured to run in 1000Base-T Slave then the register of the device
> > needs to be optimized.
> >
> > Workaround this by setting the measure time to a value of 0xb. This
> > value can be set regardless of the configuration.
> >
> > This issue is described in 'LAN8814 Silicon Errata and Data Sheet
> > Clarification' and according to that, this will not be corrected in a
> > future silicon revision.
> >
> > Signed-off-by: Horatiu Vultur <[email protected]>
> > ---
> > drivers/net/phy/micrel.c | 19 +++++++++++++++++++
> > 1 file changed, 19 insertions(+)
> >
> > diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
> > index 88cc03982bb78..788fdd54fd22d 100644
> > --- a/drivers/net/phy/micrel.c
> > +++ b/drivers/net/phy/micrel.c
> > @@ -117,6 +117,10 @@
> > #define LAN8814_EEE_STATE 0x38
> > #define LAN8814_EEE_STATE_MASK2P5P BIT(10)
> >
> > +#define LAN8814_PD_CONTROLS 0x9d
> > +#define LAN8814_PD_CONTROLS_PD_MEAS_TIME_MASK_ GENMASK(3, 0)
> > +#define LAN8814_PD_CONTROLS_PD_MEAS_TIME_VAL_ 0xb
>
> nitpick: TIME_VAL macro is very generic if it can end with specific
> like TIME_VAL_100M or something similar will gives more readability.

Actually I prefer to keep it like this the name if it is possible..
Because the VAL_ represents the value and MASK_ represents the mask
value. Therefore the actual bits name of the register is
LAN8814_PD_CONTROLS_PD_MEAS_TIME.

I am trying to have a naming convetion about how to define names in this
file:
<TARGET>_<REG_NAME>_<REG_BITS_NAME>

In this way it way it is easier to find in the datasheet to what it
refers to.

>
> > +
> >

--
/Horatiu

2024-03-01 08:18:10

by Wojciech Drewek

[permalink] [raw]
Subject: Re: [PATCH net-next v2 1/2] net: phy: micrel: lan8814 led errata



On 29.02.2024 20:52, Horatiu Vultur wrote:
> Lan8814 phy led behavior is not correct. It was noticed that the led
> still remains ON when the cable is unplugged while there was traffic
> passing at that time.
>
> The fix consists in clearing bit 10 of register 0x38, in this way the
> led behaviour is correct and gets OFF when there is no link.
>
> Signed-off-by: Horatiu Vultur <[email protected]>
> ---

Thank you!
Reviewed-by: Wojciech Drewek <[email protected]>

> drivers/net/phy/micrel.c | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
>
> diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
> index 9b69735819896..88cc03982bb78 100644
> --- a/drivers/net/phy/micrel.c
> +++ b/drivers/net/phy/micrel.c
> @@ -114,6 +114,9 @@
> #define LAN8814_INTR_CTRL_REG_POLARITY BIT(1)
> #define LAN8814_INTR_CTRL_REG_INTR_ENABLE BIT(0)
>
> +#define LAN8814_EEE_STATE 0x38
> +#define LAN8814_EEE_STATE_MASK2P5P BIT(10)
> +
> /* Represents 1ppm adjustment in 2^32 format with
> * each nsec contains 4 clock cycles.
> * The value is calculated as following: (1/1000000)/((2^-32)/4)
> @@ -3288,6 +3291,19 @@ static int lan8814_release_coma_mode(struct phy_device *phydev)
> return 0;
> }
>
> +static void lan8814_clear_2psp_bit(struct phy_device *phydev)
> +{
> + u16 val;
> +
> + /* It was noticed that when traffic is passing through the PHY and the
> + * cable is removed then the LED was still one even though there is no
> + * link
> + */
> + val = lanphy_read_page_reg(phydev, 2, LAN8814_EEE_STATE);
> + val &= ~LAN8814_EEE_STATE_MASK2P5P;
> + lanphy_write_page_reg(phydev, 2, LAN8814_EEE_STATE, val);
> +}
> +
> static int lan8814_probe(struct phy_device *phydev)
> {
> const struct kszphy_type *type = phydev->drv->driver_data;
> @@ -3324,6 +3340,9 @@ static int lan8814_probe(struct phy_device *phydev)
>
> lan8814_ptp_init(phydev);
>
> + /* Errata workarounds */
> + lan8814_clear_2psp_bit(phydev);
> +
> return 0;
> }
>

2024-03-01 08:18:42

by Wojciech Drewek

[permalink] [raw]
Subject: Re: [PATCH net-next v2 2/2] net: phy: micrel: lan8814 cable improvement errata



On 29.02.2024 20:52, Horatiu Vultur wrote:
> When the length of the cable is more than 100m and the lan8814 is
> configured to run in 1000Base-T Slave then the register of the device
> needs to be optimized.
>
> Workaround this by setting the measure time to a value of 0xb. This
> value can be set regardless of the configuration.
>
> This issue is described in 'LAN8814 Silicon Errata and Data Sheet
> Clarification' and according to that, this will not be corrected in a
> future silicon revision.
>
> Signed-off-by: Horatiu Vultur <[email protected]>
> ---

Reviewed-by: Wojciech Drewek <[email protected]>

> drivers/net/phy/micrel.c | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
>
> diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
> index 88cc03982bb78..788fdd54fd22d 100644
> --- a/drivers/net/phy/micrel.c
> +++ b/drivers/net/phy/micrel.c
> @@ -117,6 +117,10 @@
> #define LAN8814_EEE_STATE 0x38
> #define LAN8814_EEE_STATE_MASK2P5P BIT(10)
>
> +#define LAN8814_PD_CONTROLS 0x9d
> +#define LAN8814_PD_CONTROLS_PD_MEAS_TIME_MASK_ GENMASK(3, 0)
> +#define LAN8814_PD_CONTROLS_PD_MEAS_TIME_VAL_ 0xb
> +
> /* Represents 1ppm adjustment in 2^32 format with
> * each nsec contains 4 clock cycles.
> * The value is calculated as following: (1/1000000)/((2^-32)/4)
> @@ -3304,6 +3308,20 @@ static void lan8814_clear_2psp_bit(struct phy_device *phydev)
> lanphy_write_page_reg(phydev, 2, LAN8814_EEE_STATE, val);
> }
>
> +static void lan8814_update_meas_time(struct phy_device *phydev)
> +{
> + u16 val;
> +
> + /* By setting the measure time to a value of 0xb this will allow cables
> + * longer than 100m to be used. This configuration can be used
> + * regardless of the mode of operation of the PHY
> + */
> + val = lanphy_read_page_reg(phydev, 1, LAN8814_PD_CONTROLS);
> + val &= ~LAN8814_PD_CONTROLS_PD_MEAS_TIME_MASK_;
> + val |= LAN8814_PD_CONTROLS_PD_MEAS_TIME_VAL_;
> + lanphy_write_page_reg(phydev, 1, LAN8814_PD_CONTROLS, val);
> +}
> +
> static int lan8814_probe(struct phy_device *phydev)
> {
> const struct kszphy_type *type = phydev->drv->driver_data;
> @@ -3342,6 +3360,7 @@ static int lan8814_probe(struct phy_device *phydev)
>
> /* Errata workarounds */
> lan8814_clear_2psp_bit(phydev);
> + lan8814_update_meas_time(phydev);
>
> return 0;
> }

2024-03-03 03:40:58

by Jakub Kicinski

[permalink] [raw]
Subject: Re: [PATCH net-next v2 2/2] net: phy: micrel: lan8814 cable improvement errata

On Fri, 1 Mar 2024 08:27:57 +0100 Horatiu Vultur - M31836 wrote:
> > > +#define LAN8814_PD_CONTROLS 0x9d
> > > +#define LAN8814_PD_CONTROLS_PD_MEAS_TIME_MASK_ GENMASK(3, 0)
> > > +#define LAN8814_PD_CONTROLS_PD_MEAS_TIME_VAL_ 0xb
> >
> > nitpick: TIME_VAL macro is very generic if it can end with specific
> > like TIME_VAL_100M or something similar will gives more readability.
>
> Actually I prefer to keep it like this the name if it is possible..
> Because the VAL_ represents the value and MASK_ represents the mask
> value. Therefore the actual bits name of the register is
> LAN8814_PD_CONTROLS_PD_MEAS_TIME.
>
> I am trying to have a naming convetion about how to define names in this
> file:
> <TARGET>_<REG_NAME>_<REG_BITS_NAME>

Why the trailing underscores, tho?

2024-03-04 08:54:13

by Horatiu Vultur

[permalink] [raw]
Subject: Re: [PATCH net-next v2 2/2] net: phy: micrel: lan8814 cable improvement errata

The 03/02/2024 19:40, Jakub Kicinski wrote:
>
> On Fri, 1 Mar 2024 08:27:57 +0100 Horatiu Vultur - M31836 wrote:
> > > > +#define LAN8814_PD_CONTROLS 0x9d
> > > > +#define LAN8814_PD_CONTROLS_PD_MEAS_TIME_MASK_ GENMASK(3, 0)
> > > > +#define LAN8814_PD_CONTROLS_PD_MEAS_TIME_VAL_ 0xb
> > >
> > > nitpick: TIME_VAL macro is very generic if it can end with specific
> > > like TIME_VAL_100M or something similar will gives more readability.
> >
> > Actually I prefer to keep it like this the name if it is possible..
> > Because the VAL_ represents the value and MASK_ represents the mask
> > value. Therefore the actual bits name of the register is
> > LAN8814_PD_CONTROLS_PD_MEAS_TIME.
> >
> > I am trying to have a naming convetion about how to define names in this
> > file:
> > <TARGET>_<REG_NAME>_<REG_BITS_NAME>
>
> Why the trailing underscores, tho?

That is not really needed. I will update this in the next version.

>

--
/Horatiu