Patch "net: bcmgenet: Revert "Use stronger register read/writes to assure ordering"" has been added to the 5.17-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    net: bcmgenet: Revert "Use stronger register read/writes to assure ordering"

to the 5.17-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     net-bcmgenet-revert-use-stronger-register-read-write.patch
and it can be found in the queue-5.17 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit b3b415f5b6eb6a42497940c5f42139a1850322ed
Author: Jeremy Linton <jeremy.linton@xxxxxxx>
Date:   Tue Apr 12 16:04:20 2022 -0500

    net: bcmgenet: Revert "Use stronger register read/writes to assure ordering"
    
    [ Upstream commit 2df3fc4a84e917a422935cc5bae18f43f9955d31 ]
    
    It turns out after digging deeper into this bug, that it was being
    triggered by GCC12 failing to call the bcmgenet_enable_dma()
    routine. Given that a gcc12 fix has been merged [1] and the genet
    driver now works properly when built with gcc12, this commit should
    be reverted.
    
    [1]
    https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105160
    https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=aabb9a261ef060cf24fd626713f1d7d9df81aa57
    
    Fixes: 8d3ea3d402db ("net: bcmgenet: Use stronger register read/writes to assure ordering")
    Signed-off-by: Jeremy Linton <jeremy.linton@xxxxxxx>
    Acked-by: Florian Fainelli <f.fainelli@xxxxxxxxx>
    Link: https://lore.kernel.org/r/20220412210420.1129430-1-jeremy.linton@xxxxxxx
    Signed-off-by: Paolo Abeni <pabeni@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/ethernet/broadcom/genet/bcmgenet.c b/drivers/net/ethernet/broadcom/genet/bcmgenet.c
index bd5998012a87..2da804f84b48 100644
--- a/drivers/net/ethernet/broadcom/genet/bcmgenet.c
+++ b/drivers/net/ethernet/broadcom/genet/bcmgenet.c
@@ -76,7 +76,7 @@ static inline void bcmgenet_writel(u32 value, void __iomem *offset)
 	if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN))
 		__raw_writel(value, offset);
 	else
-		writel(value, offset);
+		writel_relaxed(value, offset);
 }
 
 static inline u32 bcmgenet_readl(void __iomem *offset)
@@ -84,7 +84,7 @@ static inline u32 bcmgenet_readl(void __iomem *offset)
 	if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN))
 		return __raw_readl(offset);
 	else
-		return readl(offset);
+		return readl_relaxed(offset);
 }
 
 static inline void dmadesc_set_length_status(struct bcmgenet_priv *priv,



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux