blob: 02d8cd0ce0a7501de9e67a22fa8df91fbfbeb59e [file] [log] [blame]
Neil Armstrong7520aba2020-09-21 09:34:13 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2020 BayLibre, SAS
4 * Author: Neil Armstrong <narmstrong@baylibre.com>
5 */
6
7#include <common.h>
8#include <dm.h>
9#include <env_internal.h>
10#include <init.h>
11#include <net.h>
12#include <asm/io.h>
13#include <asm/arch/eth.h>
14
15int misc_init_r(void)
16{
17 meson_eth_init(PHY_INTERFACE_MODE_RGMII, 0);
18
19 return 0;
20}