]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
net: dwc_eth_qos: remove use of DWC_NET_PHYADDR
authorRasmus Villemoes <rasmus.villemoes@prevas.dk>
Thu, 12 May 2022 07:33:07 +0000 (09:33 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 8 Aug 2022 14:50:20 +0000 (10:50 -0400)
Only two boards in the tree set the macro DWC_NET_PHYADDR. Both have
CONFIG_DM_ETH_PHY=y, so should set the phy address in DT if necessary.

The imx8mp_evk does set the correct address in device tree.

The other board seems to be a copy-paste-adapt from an old
version of the imx8mp_evk config header, given the "#ifdef
CONFIG_DWC_ETH_QOS" block that has been removed from imx8mp_evk header
in commit 127fb454955. Its device tree doesn't even enable (i.e., set
'status = "okay"') the &eqos node. But the other ethernet device,
&fec, does get enabled, and does have a phy sitting at address 4 (and
it also has a corresponding legacy #define CONFIG_FEC_MXC_PHYADDR
4). So I believe it should be completely safe to remove it from there
as well.

Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
[trini: Re-apply to top of tree, update imx93_evk.h]
Signed-off-by: Tom Rini <trini@konsulko.com>
drivers/net/dwc_eth_qos.c
include/configs/imx8mp_evk.h
include/configs/imx8mp_rsb3720.h
include/configs/imx93_evk.h

index 4f3ea4f6295993a9147cb600862df93ce1fa17de..43af7d91f81dfdba5bbf2ec20b06f3642c5408ff 100644 (file)
@@ -789,9 +789,6 @@ static int eqos_start(struct udevice *dev)
        if (!eqos->phy) {
                int addr = -1;
                addr = eqos_get_phy_addr(eqos, dev);
-#ifdef DWC_NET_PHYADDR
-               addr = DWC_NET_PHYADDR;
-#endif
                eqos->phy = phy_connect(eqos->mii, addr, dev,
                                        eqos->config->interface(dev));
                if (!eqos->phy) {
index 5581c0fac024ffc785ae277bc7ec0176ea25b47d..388f3bc9ffe84e33813c7a00cac5b62844fd07c1 100644 (file)
@@ -24,8 +24,6 @@
 #if defined(CONFIG_CMD_NET)
 #define CONFIG_FEC_MXC_PHYADDR          1
 
-#define DWC_NET_PHYADDR                        1
-
 #define PHY_ANEG_TIMEOUT 20000
 
 #endif
index 17e00f958b6c65168fdfc64815ab42a0119660aa..ddc035ae22861ba6f02d1072af967e03df3ff664 100644 (file)
@@ -42,7 +42,6 @@
 #if defined(CONFIG_CMD_NET)
 #define CONFIG_FEC_MXC_PHYADDR          4
 
-#define DWC_NET_PHYADDR                        4
 #ifdef CONFIG_DWC_ETH_QOS
 #define CONFIG_SYS_NONCACHED_MEMORY     (1 * SZ_1M)     /* 1M */
 #endif
index 21f85f59b28f6491ee9ab98f58ea86a3ad8ab258..f9750da58055ef61a4fc893d187679a6431b71d3 100644 (file)
 #define WDOG_BASE_ADDR          WDG3_BASE_ADDR
 
 #if defined(CONFIG_CMD_NET)
-#define DWC_NET_PHYADDR                        1
 #define PHY_ANEG_TIMEOUT 20000
 #endif