U-Boot 2009.08 for ZTE F460/F660 v3 and HGG420N v3 October 13, 2021 10:15AM |
Registered: 3 years ago Posts: 112 |
tftp u-boot-xxxx_533_128m_ddr3_nand.bin (xxxx should be replaced) nand erase 0x0 0x100000 nand write 0x2000000 0x0 0x100000Then reboot, you will enter your new U-Boot
Re: U-Boot 2009.08 for ZTE F460/F660 v3 and HGG420N v3 October 13, 2021 10:21AM |
Registered: 3 years ago Posts: 112 |
Re: U-Boot 2009.08 for ZTE F460/F660 v3 and HGG420N v3 October 13, 2021 07:22PM |
Admin Registered: 13 years ago Posts: 19,102 |
Re: U-Boot 2009.08 for ZTE F460/F660 v3 and HGG420N v3 October 14, 2021 09:23AM |
Registered: 3 years ago Posts: 112 |
Re: U-Boot 2009.08 for ZTE F460/F660 v3 and HGG420N v3 October 14, 2021 10:21AM |
Registered: 3 years ago Posts: 112 |
Re: U-Boot 2009.08 for ZTE F460/F660 v3 and HGG420N v3 October 16, 2021 09:40PM |
Registered: 3 years ago Posts: 112 |
--- a/drivers/net/ethernet/marvell/mvneta.c +++ b/drivers/net/ethernet/marvell/mvneta.c @@ -2760,7 +2760,10 @@ static void mvneta_port_power_up(struct if (phy_mode == PHY_INTERFACE_MODE_SGMII) mvneta_port_sgmii_config(pp); - mvneta_gmac_rgmii_set(pp, 1); + if (phy_mode == PHY_INTERFACE_MODE_GMII) + mvneta_gmac_rgmii_set(pp, 0); + else + mvneta_gmac_rgmii_set(pp, 1); /* Cancel Port Reset */ val = mvreg_read(pp, MVNETA_GMAC_CTRL_2);In device tree, eth nodes are using
phy-mode = "gmii";But newer mvneta changed this function and made this init section very messy, because they wanted to add qsgmii support which we don't need for 88f6560.
Re: U-Boot 2009.08 for ZTE F460/F660 v3 and HGG420N v3 October 17, 2021 02:50AM |
Registered: 3 years ago Posts: 112 |