Skip to content

Commit 4600a0c

Browse files
chenhuacaigregkh
authored andcommitted
net: stmmac: dwmac-loongson: Set clk_csr_i to 100-150MHz
commit e1aa5ef upstream. Current clk_csr_i setting of Loongson STMMAC (including LS7A1000/2000 and LS2K1000/2000/3000) are copy & paste from other drivers. In fact, Loongson STMMAC use 125MHz clocks and need 62 freq division to within 2.5MHz, meeting most PHY MDC requirement. So fix by setting clk_csr_i to 100-150MHz, otherwise some PHYs may link fail. Cc: stable@vger.kernel.org Fixes: 30bba69 ("stmmac: pci: Add dwmac support for Loongson") Signed-off-by: Hongliang Wang <wanghongliang@loongson.cn> Signed-off-by: Huacai Chen <chenhuacai@loongson.cn> Link: https://patch.msgid.link/20260203062901.2158236-1-chenhuacai@loongson.cn Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 0b88147 commit 4600a0c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ static void loongson_default_data(struct pci_dev *pdev,
9191
/* Get bus_id, this can be overwritten later */
9292
plat->bus_id = pci_dev_id(pdev);
9393

94-
/* clk_csr_i = 20-35MHz & MDC = clk_csr_i/16 */
95-
plat->clk_csr = STMMAC_CSR_20_35M;
94+
/* clk_csr_i = 100-150MHz & MDC = clk_csr_i/62 */
95+
plat->clk_csr = STMMAC_CSR_100_150M;
9696
plat->core_type = DWMAC_CORE_GMAC;
9797
plat->force_sf_dma_mode = 1;
9898

0 commit comments

Comments
 (0)