aboutsummaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorAdam Ford <aford173@gmail.com>2022-02-26 10:13:09 -0600
committerTom Rini <trini@konsulko.com>2022-03-10 13:57:04 -0500
commitb2356be87d27efc0d2d1ecf0a65b663c59854aed (patch)
tree7bbd1dea37d49ac21e0fc73b1d8958f5b6ed5570 /board
parent019548efb03b804a4b3ae3329db4a5450be434ca (diff)
downloadu-boot-b2356be87d27efc0d2d1ecf0a65b663c59854aed.zip
u-boot-b2356be87d27efc0d2d1ecf0a65b663c59854aed.tar.gz
u-boot-b2356be87d27efc0d2d1ecf0a65b663c59854aed.tar.bz2
ARM: am3517-evm: Remove more non-DM legacy ethernet reset code
The ethernet controller is DM compliant, and the device tree defines it. There is no need to manually handle pulling the ethernet out of reset. Signed-off-by: Adam Ford <aford173@gmail.com> Tested-by: Derald D. Woods <woods.technical@gmail.com>
Diffstat (limited to 'board')
-rw-r--r--board/logicpd/am3517evm/am3517evm.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/board/logicpd/am3517evm/am3517evm.c b/board/logicpd/am3517evm/am3517evm.c
index f014165..e787441 100644
--- a/board/logicpd/am3517evm/am3517evm.c
+++ b/board/logicpd/am3517evm/am3517evm.c
@@ -117,17 +117,10 @@ static void am3517_evm_musb_init(void)
*/
int misc_init_r(void)
{
- u32 reset;
-
omap_die_id_display();
am3517_evm_musb_init();
- /* ensure that the Ethernet module is out of reset */
- reset = readl(AM3517_IP_SW_RESET);
- reset &= (~CPGMACSS_SW_RST);
- writel(reset, AM3517_IP_SW_RESET);
-
return 0;
}
@@ -142,7 +135,6 @@ void set_muxconf_regs(void)
MUX_AM3517EVM();
}
-
#if defined(CONFIG_USB_ETHER) && defined(CONFIG_USB_MUSB_GADGET)
int board_eth_init(struct bd_info *bis)
{