]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
net: fsl: Fix busy flag polling register
authorMarkus Koch <markus@notsyncing.net>
Tue, 11 Jan 2022 18:22:54 +0000 (19:22 +0100)
committerRamon Fried <ramon@neureality.ai>
Sat, 15 Jan 2022 16:53:16 +0000 (18:53 +0200)
NXP's mEMAC reference manual, Chapter 6.5.5 "MDIO Ethernet Management
Interface usage", specifies to poll the BSY (0) bit in the CFG/STAT
register to wait until a transaction has finished, not bit 31 in the
data register.

In the Linux kernel, this has already been fixed in commit 26eee0210ad7
("net/fsl: fix a bug in xgmac_mdio").

This patch changes the register in the fman_mdio and fsl_ls_mdio
drivers.

As the MDIO_DATA_BSY define is no longer in use, this patch also removes
its definition from the fsl_memac header.

Signed-off-by: Markus Koch <markus@notsyncing.net>
Reviewed-by: Camelia Groza <camelia.groza@nxp.com>
drivers/net/fm/memac_phy.c
drivers/net/fsl_ls_mdio.c
include/fsl_memac.h

index 72b500a6d14ff41d161b1e4b694737c601f4be54..3ddae97e0979b5b4203663bc60517d5ad621c64e 100644 (file)
@@ -64,7 +64,7 @@ static int memac_wait_until_done(struct memac_mdio_controller *regs)
 {
        unsigned int timeout = MAX_NUM_RETRIES;
 
-       while ((memac_in_32(&regs->mdio_data) & MDIO_DATA_BSY) && timeout--)
+       while ((memac_in_32(&regs->mdio_stat) & MDIO_STAT_BSY) && timeout--)
                ;
 
        if (!timeout) {
index 6d4e682fdfc975c79146df07e0de137053f85152..f213e0dd85901a4d094300fbf53ca5b992329f4e 100644 (file)
@@ -84,7 +84,7 @@ static int dm_fsl_ls_mdio_read(struct udevice *dev, int addr,
        memac_out_32(&regs->mdio_ctl, mdio_ctl);
 
        /* Wait till the MDIO write is complete */
-       while ((memac_in_32(&regs->mdio_data)) & MDIO_DATA_BSY)
+       while ((memac_in_32(&regs->mdio_stat)) & MDIO_STAT_BSY)
                ;
 
        /* Return all Fs if nothing was there */
@@ -107,7 +107,7 @@ static int dm_fsl_ls_mdio_write(struct udevice *dev, int addr, int devad,
        memac_out_32(&regs->mdio_data, MDIO_DATA(val));
 
        /* Wait till the MDIO write is complete */
-       while ((memac_in_32(&regs->mdio_data)) & MDIO_DATA_BSY)
+       while ((memac_in_32(&regs->mdio_stat)) & MDIO_STAT_BSY)
                ;
 
        return 0;
index d067f1511c686ca11f67328242d5b3f51ff7620f..6ac1e558b978f1bc793ce079dfe5243128c46d2e 100644 (file)
@@ -254,7 +254,6 @@ struct memac_mdio_controller {
 #define MDIO_CTL_READ          (1 << 15)
 
 #define MDIO_DATA(x)           (x & 0xffff)
-#define MDIO_DATA_BSY          (1 << 31)
 
 struct fsl_enet_mac;