blob: fb0c9188f57e0e6839a135c4c266e1bf57eb01d5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ilya Yanokb9e65a72011-11-28 06:37:35 +00002/*
3 *
4 * DaVinci EMAC initialization.
5 *
6 * (C) Copyright 2011, Ilya Yanok, Emcraft Systems
Ilya Yanokb9e65a72011-11-28 06:37:35 +00007 */
8
9#include <common.h>
Ilya Yanokb9e65a72011-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 */
17int cpu_eth_init(bd_t *bis)
18{
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 Golaszewskie8092852019-07-24 10:12:07 +020026 return 0;
Ilya Yanokb9e65a72011-11-28 06:37:35 +000027}