lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Tue, 4 Apr 2023 11:43:09 +1000
From:   Greg Ungerer <gerg@...ux-m68k.org>
To:     Andrew Lunn <andrew@...n.ch>
Cc:     "netdev@...r.kernel.org" <netdev@...r.kernel.org>
Subject: Re: net: fec: Separate C22 and C45 transactions

Hi Andrew,

On 3/4/23 22:20, Andrew Lunn wrote:
> On Mon, Apr 03, 2023 at 02:41:46PM +1000, Greg Ungerer wrote:
>> Hi Andrew,
>>
>> On Mon, Jan 9, at 16:30 Andrew Lunn wrote:
>>> net: fec: Separate C22 and C45 transactions
>>> The fec MDIO bus driver can perform both C22 and C45 transfers.
>>> Create separate functions for each and register the C45 versions using
>>> the new API calls where appropriate.
>>
>> Are you sure that all FEC hardware blocks MDIO bus units support C45
>> transactions?
> 
> Hi Greg
> 
> My aim was to keep the existing behaviour. The old code did not have
> variant specific limitations to C45, so neither does the new. Meaning,
> the driver might of been broken before and it is still broken now. It
> is however more likely that broken behaviour is now invoked while
> scanning the bus for devices.

Yes, that is the case. The change in scanning behavior due to commit
1a136ca2e089 ("net: mdio: scan bus based on bus capabilities for C22
and C45") means that the c45 variant is now called - but wasn't before.


>>  From c4a2c5faf08593d0a3e14fefe996218df11d2c01 Mon Sep 17 00:00:00 2001
>> From: Greg Ungerer <gerg@...ux-m68k.org>
>> Date: Mon, 3 Apr 2023 13:36:27 +1000
>> Subject: [PATCH] net: fec: make use of MDIO C45 a quirk
>>
>> Not all fec MDIO bus drivers support C45 mode. The older fec hardware
>> block in many ColdFire SoCs do not appear to support this, at least
>> according to most of the different ColdFire SoC reference manuals.
>> The bits used to generate C45 access on the iMX parts, in the OP field
>> of the MMFR register, are documented as generating non-compliant MII
>> frames (it is not documented as to exactly how they are non-compliant).
>>
>> Commit 8d03ad1ab0b0 ("net: fec: Separate C22 and C45 transactions")
>> means the fec driver will always register c45 MDIO read and write
>> methods. During probe these will always be accessed generating
>> non-complant MII accesses on ColdFire based devices.
>>
>> Add a quirk define, FEC_QUIRK_HAS_MDIO_C45, that can be used to
>> distinguish silicon that supports MDIO C45 framing or not. Add this to
>> all the existing iMX quirks, so they will be behave as they do now (*).
>>
>> (*) it seems that some iMX parts may not support C45 framing either.
>>      The iMX25 and iMX50 Reference Manuals contains similar wording to
>>      the ColdFire Reference Manuals on this.
>>
>> Fixes: 8d03ad1ab0b0 ("net: fec: Separate C22 and C45 transactions")
>> Signed-off-by: Greg Ungerer <gerg@...ux-m68k.org>
>> ---
>>   drivers/net/ethernet/freescale/fec.h      |  5 ++++
>>   drivers/net/ethernet/freescale/fec_main.c | 32 ++++++++++++++---------
>>   2 files changed, 25 insertions(+), 12 deletions(-)
>>
>> diff --git a/drivers/net/ethernet/freescale/fec.h b/drivers/net/ethernet/freescale/fec.h
>> index 5ba1e0d71c68..9939ccafb556 100644
>> --- a/drivers/net/ethernet/freescale/fec.h
>> +++ b/drivers/net/ethernet/freescale/fec.h
>> @@ -507,6 +507,11 @@ struct bufdesc_ex {
>>   /* i.MX6Q adds pm_qos support */
>>   #define FEC_QUIRK_HAS_PMQOS			BIT(23)
>>   
>> +/* Not all FEC hardware block MDIOs support accesses in C45 mode.
>> + * Older blocks in the ColdFire parts do not support it.
>> + */
>> +#define FEC_QUIRK_HAS_MDIO_C45		BIT(24)
>> +
>>   struct bufdesc_prop {
>>   	int qid;
>>   	/* Address of Rx and Tx buffers */
>> diff --git a/drivers/net/ethernet/freescale/fec_main.c b/drivers/net/ethernet/freescale/fec_main.c
>> index f3b16a6673e2..160c1b3525f5 100644
>> --- a/drivers/net/ethernet/freescale/fec_main.c
>> +++ b/drivers/net/ethernet/freescale/fec_main.c
>> @@ -100,18 +100,19 @@ struct fec_devinfo {
>>   
>>   static const struct fec_devinfo fec_imx25_info = {
>>   	.quirks = FEC_QUIRK_USE_GASKET | FEC_QUIRK_MIB_CLEAR |
>> -		  FEC_QUIRK_HAS_FRREG,
>> +		  FEC_QUIRK_HAS_FRREG | FEC_QUIRK_HAS_MDIO_C45,
>>   };
>>   
>>   static const struct fec_devinfo fec_imx27_info = {
>> -	.quirks = FEC_QUIRK_MIB_CLEAR | FEC_QUIRK_HAS_FRREG,
>> +	.quirks = FEC_QUIRK_MIB_CLEAR | FEC_QUIRK_HAS_FRREG |
>> +		  FEC_QUIRK_HAS_MDIO_C45,
>>   };
>>   
>>   static const struct fec_devinfo fec_imx28_info = {
>>   	.quirks = FEC_QUIRK_ENET_MAC | FEC_QUIRK_SWAP_FRAME |
>>   		  FEC_QUIRK_SINGLE_MDIO | FEC_QUIRK_HAS_RACC |
>>   		  FEC_QUIRK_HAS_FRREG | FEC_QUIRK_CLEAR_SETUP_MII |
>> -		  FEC_QUIRK_NO_HARD_RESET,
>> +		  FEC_QUIRK_NO_HARD_RESET | FEC_QUIRK_HAS_MDIO_C45,
>>   };
>>   
>>   static const struct fec_devinfo fec_imx6q_info = {
>> @@ -119,11 +120,12 @@ static const struct fec_devinfo fec_imx6q_info = {
>>   		  FEC_QUIRK_HAS_BUFDESC_EX | FEC_QUIRK_HAS_CSUM |
>>   		  FEC_QUIRK_HAS_VLAN | FEC_QUIRK_ERR006358 |
>>   		  FEC_QUIRK_HAS_RACC | FEC_QUIRK_CLEAR_SETUP_MII |
>> -		  FEC_QUIRK_HAS_PMQOS,
>> +		  FEC_QUIRK_HAS_PMQOS | FEC_QUIRK_HAS_MDIO_C45,
>>   };
>>   
>>   static const struct fec_devinfo fec_mvf600_info = {
>> -	.quirks = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_RACC,
>> +	.quirks = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_RACC |
>> +		  FEC_QUIRK_HAS_MDIO_C45,
>>   };
>>   
>>   static const struct fec_devinfo fec_imx6x_info = {
>> @@ -132,7 +134,8 @@ static const struct fec_devinfo fec_imx6x_info = {
>>   		  FEC_QUIRK_HAS_VLAN | FEC_QUIRK_HAS_AVB |
>>   		  FEC_QUIRK_ERR007885 | FEC_QUIRK_BUG_CAPTURE |
>>   		  FEC_QUIRK_HAS_RACC | FEC_QUIRK_HAS_COALESCE |
>> -		  FEC_QUIRK_CLEAR_SETUP_MII | FEC_QUIRK_HAS_MULTI_QUEUES,
>> +		  FEC_QUIRK_CLEAR_SETUP_MII | FEC_QUIRK_HAS_MULTI_QUEUES |
>> +		  FEC_QUIRK_HAS_MDIO_C45,
>>   };
>>   
>>   static const struct fec_devinfo fec_imx6ul_info = {
>> @@ -140,7 +143,8 @@ static const struct fec_devinfo fec_imx6ul_info = {
>>   		  FEC_QUIRK_HAS_BUFDESC_EX | FEC_QUIRK_HAS_CSUM |
>>   		  FEC_QUIRK_HAS_VLAN | FEC_QUIRK_ERR007885 |
>>   		  FEC_QUIRK_BUG_CAPTURE | FEC_QUIRK_HAS_RACC |
>> -		  FEC_QUIRK_HAS_COALESCE | FEC_QUIRK_CLEAR_SETUP_MII,
>> +		  FEC_QUIRK_HAS_COALESCE | FEC_QUIRK_CLEAR_SETUP_MII |
>> +		  FEC_QUIRK_HAS_MDIO_C45,
>>   };
>>   
>>   static const struct fec_devinfo fec_imx8mq_info = {
>> @@ -150,7 +154,8 @@ static const struct fec_devinfo fec_imx8mq_info = {
>>   		  FEC_QUIRK_ERR007885 | FEC_QUIRK_BUG_CAPTURE |
>>   		  FEC_QUIRK_HAS_RACC | FEC_QUIRK_HAS_COALESCE |
>>   		  FEC_QUIRK_CLEAR_SETUP_MII | FEC_QUIRK_HAS_MULTI_QUEUES |
>> -		  FEC_QUIRK_HAS_EEE | FEC_QUIRK_WAKEUP_FROM_INT2,
>> +		  FEC_QUIRK_HAS_EEE | FEC_QUIRK_WAKEUP_FROM_INT2 |
>> +		  FEC_QUIRK_HAS_MDIO_C45,
>>   };
>>   
>>   static const struct fec_devinfo fec_imx8qm_info = {
>> @@ -160,14 +165,15 @@ static const struct fec_devinfo fec_imx8qm_info = {
>>   		  FEC_QUIRK_ERR007885 | FEC_QUIRK_BUG_CAPTURE |
>>   		  FEC_QUIRK_HAS_RACC | FEC_QUIRK_HAS_COALESCE |
>>   		  FEC_QUIRK_CLEAR_SETUP_MII | FEC_QUIRK_HAS_MULTI_QUEUES |
>> -		  FEC_QUIRK_DELAYED_CLKS_SUPPORT,
>> +		  FEC_QUIRK_DELAYED_CLKS_SUPPORT | FEC_QUIRK_HAS_MDIO_C45,
>>   };
>>   
>>   static const struct fec_devinfo fec_s32v234_info = {
>>   	.quirks = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_GBIT |
>>   		  FEC_QUIRK_HAS_BUFDESC_EX | FEC_QUIRK_HAS_CSUM |
>>   		  FEC_QUIRK_HAS_VLAN | FEC_QUIRK_HAS_AVB |
>> -		  FEC_QUIRK_ERR007885 | FEC_QUIRK_BUG_CAPTURE,
>> +		  FEC_QUIRK_ERR007885 | FEC_QUIRK_BUG_CAPTURE |
>> +		  FEC_QUIRK_HAS_MDIO_C45,
>>   };
>>   
>>   static struct platform_device_id fec_devtype[] = {
>> @@ -2434,8 +2440,10 @@ static int fec_enet_mii_init(struct platform_device *pdev)
>>   	fep->mii_bus->name = "fec_enet_mii_bus";
>>   	fep->mii_bus->read = fec_enet_mdio_read_c22;
>>   	fep->mii_bus->write = fec_enet_mdio_write_c22;
>> -	fep->mii_bus->read_c45 = fec_enet_mdio_read_c45;
>> -	fep->mii_bus->write_c45 = fec_enet_mdio_write_c45;
>> +	if (fep->quirks & FEC_QUIRK_HAS_MDIO_C45) {
>> +		fep->mii_bus->read_c45 = fec_enet_mdio_read_c45;
>> +		fep->mii_bus->write_c45 = fec_enet_mdio_write_c45;
>> +	}
>>   	snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
>>   		pdev->name, fep->dev_id + 1);
>>   	fep->mii_bus->priv = fep;
>> -- 
>> 2.25.1
>>
> 
> This patch looks reasonable. Please formally submit it.

Ok, will do, thanks.

Regards
Greg


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ