Jerome Brunet | 0998367 | 2019-02-15 13:53:59 +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> |
Tom Rini | 60f38d8 | 2019-08-12 18:48:34 -0400 | [diff] [blame] | 9 | #include <env_internal.h> |
Jerome Brunet | 0998367 | 2019-02-15 13:53:59 +0100 | [diff] [blame] | 10 | #include <asm/io.h> |
| 11 | #include <asm/arch/axg.h> |
| 12 | #include <asm/arch/sm.h> |
| 13 | #include <asm/arch/eth.h> |
| 14 | #include <asm/arch/mem.h> |
| 15 | |
| 16 | int misc_init_r(void) |
| 17 | { |
| 18 | meson_eth_init(PHY_INTERFACE_MODE_RMII, |
| 19 | MESON_USE_INTERNAL_RMII_PHY); |
| 20 | |
| 21 | meson_generate_serial_ethaddr(); |
| 22 | |
| 23 | env_set("serial#", "AMLG12ASEI510"); |
| 24 | |
| 25 | return 0; |
| 26 | } |