Jerome Brunet | d1e5b14 | 2019-02-12 14:23:25 +0100 | [diff] [blame] | 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> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 9 | #include <init.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 10 | #include <net.h> |
Jerome Brunet | d1e5b14 | 2019-02-12 14:23:25 +0100 | [diff] [blame] | 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_RMII, |
| 20 | MESON_USE_INTERNAL_RMII_PHY); |
| 21 | |
| 22 | return 0; |
| 23 | } |