2018-09-05 13:57:11 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 BayLibre, SAS
|
|
|
|
* Author: Neil Armstrong <narmstrong@baylibre.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2020-05-10 17:39:56 +00:00
|
|
|
#include <net.h>
|
2018-09-05 13:57:11 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/arch/axg.h>
|
|
|
|
#include <asm/arch/sm.h>
|
|
|
|
#include <asm/arch/eth.h>
|
|
|
|
#include <asm/arch/mem.h>
|
|
|
|
|
|
|
|
int misc_init_r(void)
|
|
|
|
{
|
2020-09-10 08:50:39 +00:00
|
|
|
meson_generate_serial_ethaddr();
|
|
|
|
|
2018-09-05 13:57:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|