blob: bdb4eca8839e8bffa38bb34ec7209ea3c32cfcf3 [file] [log] [blame]
Neil Armstrong64b6de92018-09-05 15:57:11 +02001// 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>
Neil Armstrong64b6de92018-09-05 15:57:11 +02009#include <asm/io.h>
10#include <asm/arch/axg.h>
11#include <asm/arch/sm.h>
12#include <asm/arch/eth.h>
13#include <asm/arch/mem.h>
14
Neil Armstrong64b6de92018-09-05 15:57:11 +020015int misc_init_r(void)
16{
17 meson_eth_init(PHY_INTERFACE_MODE_RGMII, 0);
18
19 return 0;
20}