2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-05-08 06:30:16 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2017-05-17 23:18:03 +00:00
|
|
|
#include <dm.h>
|
2019-08-01 15:46:51 +00:00
|
|
|
#include <env.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2020-05-10 17:39:56 +00:00
|
|
|
#include <net.h>
|
2016-05-08 06:30:16 +00:00
|
|
|
#include <asm/io.h>
|
2018-04-11 15:13:45 +00:00
|
|
|
#include <asm/arch/gx.h>
|
2016-05-08 06:30:17 +00:00
|
|
|
#include <asm/arch/sm.h>
|
2017-11-27 09:16:17 +00:00
|
|
|
#include <asm/arch/eth.h>
|
2017-11-27 09:35:46 +00:00
|
|
|
#include <asm/arch/mem.h>
|
2016-05-08 06:30:16 +00:00
|
|
|
|
2016-05-08 06:30:17 +00:00
|
|
|
#define EFUSE_SN_OFFSET 20
|
|
|
|
#define EFUSE_SN_SIZE 16
|
|
|
|
#define EFUSE_MAC_OFFSET 52
|
|
|
|
#define EFUSE_MAC_SIZE 6
|
|
|
|
|
2016-05-08 06:30:16 +00:00
|
|
|
int misc_init_r(void)
|
|
|
|
{
|
2016-05-08 06:30:17 +00:00
|
|
|
u8 mac_addr[EFUSE_MAC_SIZE];
|
2017-06-23 13:40:00 +00:00
|
|
|
char serial[EFUSE_SN_SIZE];
|
2016-05-08 06:30:17 +00:00
|
|
|
ssize_t len;
|
|
|
|
|
2018-10-05 15:00:37 +00:00
|
|
|
meson_eth_init(PHY_INTERFACE_MODE_RGMII, 0);
|
2016-05-08 06:30:16 +00:00
|
|
|
|
2017-08-03 18:22:14 +00:00
|
|
|
if (!eth_env_get_enetaddr("ethaddr", mac_addr)) {
|
2016-05-08 06:30:17 +00:00
|
|
|
len = meson_sm_read_efuse(EFUSE_MAC_OFFSET,
|
|
|
|
mac_addr, EFUSE_MAC_SIZE);
|
|
|
|
if (len == EFUSE_MAC_SIZE && is_valid_ethaddr(mac_addr))
|
2017-08-03 18:22:11 +00:00
|
|
|
eth_env_set_enetaddr("ethaddr", mac_addr);
|
2016-05-08 06:30:17 +00:00
|
|
|
}
|
|
|
|
|
2017-08-03 18:22:12 +00:00
|
|
|
if (!env_get("serial#")) {
|
2017-06-23 13:40:00 +00:00
|
|
|
len = meson_sm_read_efuse(EFUSE_SN_OFFSET, serial,
|
|
|
|
EFUSE_SN_SIZE);
|
2018-10-05 15:00:37 +00:00
|
|
|
if (len == EFUSE_SN_SIZE)
|
2017-08-03 18:22:09 +00:00
|
|
|
env_set("serial#", serial);
|
2017-06-23 13:40:00 +00:00
|
|
|
}
|
|
|
|
|
2016-05-08 06:30:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|