blob: 7348e92cabdfe9392821f3eb6e16d70492491c7f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ilya Yanokd2452ea2011-11-28 06:37:35 +00002/*
3 *
4 * DaVinci EMAC initialization.
5 *
6 * (C) Copyright 2011, Ilya Yanok, Emcraft Systems
Ilya Yanokd2452ea2011-11-28 06:37:35 +00007 */
8
Simon Glass274e0b02020-05-10 11:39:56 -06009#include <net.h>
Ilya Yanokd2452ea2011-11-28 06:37:35 +000010#include <asm/io.h>
11#include <asm/arch/am35x_def.h>
12
13/*
14 * Initializes on-chip ethernet controllers.
15 * to override, implement board_eth_init()
16 */
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090017int cpu_eth_init(struct bd_info *bis)
Ilya Yanokd2452ea2011-11-28 06:37:35 +000018{
19 u32 reset;
20
21 /* ensure that the module is out of reset */
22 reset = readl(&am35x_scm_general_regs->ip_sw_reset);
23 reset &= ~CPGMACSS_SW_RST;
24 writel(reset, &am35x_scm_general_regs->ip_sw_reset);
25
Bartosz Golaszewski2cedf752019-07-24 10:12:07 +020026 return 0;
Ilya Yanokd2452ea2011-11-28 06:37:35 +000027}