Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[oweals/u-boot.git] / board / amlogic / s400 / s400.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2016 BayLibre, SAS
4  * Author: Neil Armstrong <narmstrong@baylibre.com>
5  */
6
7 #include <common.h>
8 #include <dm.h>
9 #include <init.h>
10 #include <net.h>
11 #include <asm/io.h>
12 #include <asm/arch/axg.h>
13 #include <asm/arch/sm.h>
14 #include <asm/arch/eth.h>
15 #include <asm/arch/mem.h>
16
17 int misc_init_r(void)
18 {
19         meson_eth_init(PHY_INTERFACE_MODE_RGMII, 0);
20
21         return 0;
22 }