blob: 3aa6d8f200e288fa19a275dd6b622f9c2eb08608 [file] [log] [blame]
Loic Devulder8afd4ea2018-10-03 12:02:07 +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>
Simon Glass9fb625c2019-08-01 09:46:51 -06009#include <env.h>
Simon Glass691d7192020-05-10 11:40:02 -060010#include <init.h>
Simon Glass90526e92020-05-10 11:39:56 -060011#include <net.h>
Loic Devulder8afd4ea2018-10-03 12:02:07 +020012#include <asm/io.h>
13#include <asm/arch/gx.h>
14#include <asm/arch/mem.h>
15#include <asm/arch/sm.h>
16#include <asm/arch/eth.h>
17
18#define EFUSE_SN_OFFSET 20
19#define EFUSE_SN_SIZE 16
20#define EFUSE_MAC_OFFSET 52
21#define EFUSE_MAC_SIZE 6
22
Loic Devulder8afd4ea2018-10-03 12:02:07 +020023int misc_init_r(void)
24{
25 u8 mac_addr[EFUSE_MAC_SIZE];
26 char serial[EFUSE_SN_SIZE];
27 ssize_t len;
28
Loic Devulder8afd4ea2018-10-03 12:02:07 +020029 if (!eth_env_get_enetaddr("ethaddr", mac_addr)) {
30 len = meson_sm_read_efuse(EFUSE_MAC_OFFSET,
31 mac_addr, EFUSE_MAC_SIZE);
32 if (len == EFUSE_MAC_SIZE && is_valid_ethaddr(mac_addr))
33 eth_env_set_enetaddr("ethaddr", mac_addr);
Neil Armstrong3f1f9f02019-06-12 11:49:08 +020034 else
35 meson_generate_serial_ethaddr();
Loic Devulder8afd4ea2018-10-03 12:02:07 +020036 }
37
38 if (!env_get("serial#")) {
39 len = meson_sm_read_efuse(EFUSE_SN_OFFSET, serial,
40 EFUSE_SN_SIZE);
41 if (len == EFUSE_SN_SIZE)
42 env_set("serial#", serial);
43 }
44
45 return 0;
46}