blob: 7c0abbcc0a7a7bc56dc662dfc426aa51afa54002 [file] [log] [blame]
Neil Armstrongcade8652017-10-12 15:50:32 +02001/*
2 * Copyright (C) 2016 BayLibre, SAS
3 * Author: Neil Armstrong <narmstrong@baylibre.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
9#include <dm.h>
Alex Kiernan9925f1d2018-04-01 09:22:38 +000010#include <environment.h>
Neil Armstrongcade8652017-10-12 15:50:32 +020011#include <asm/io.h>
12#include <asm/arch/gxbb.h>
Neil Armstrongae0d82f2017-10-18 10:02:12 +020013#include <asm/arch/sm.h>
Neil Armstrongf49638e2017-11-27 10:16:18 +010014#include <asm/arch/eth.h>
Neil Armstrongc7be3e52017-11-27 10:35:46 +010015#include <asm/arch/mem.h>
Neil Armstrongae0d82f2017-10-18 10:02:12 +020016
17#define EFUSE_SN_OFFSET 20
18#define EFUSE_SN_SIZE 16
19#define EFUSE_MAC_OFFSET 52
20#define EFUSE_MAC_SIZE 6
Neil Armstrongcade8652017-10-12 15:50:32 +020021
22int board_init(void)
23{
24 return 0;
25}
26
27int misc_init_r(void)
28{
Neil Armstrongae0d82f2017-10-18 10:02:12 +020029 u8 mac_addr[EFUSE_MAC_SIZE];
30 char serial[EFUSE_SN_SIZE];
31 ssize_t len;
32
Neil Armstrongf49638e2017-11-27 10:16:18 +010033 meson_gx_eth_init(PHY_INTERFACE_MODE_RMII, 0);
Neil Armstrongae0d82f2017-10-18 10:02:12 +020034
35 if (!eth_env_get_enetaddr("ethaddr", mac_addr)) {
36 len = meson_sm_read_efuse(EFUSE_MAC_OFFSET,
37 mac_addr, EFUSE_MAC_SIZE);
38 if (len == EFUSE_MAC_SIZE && is_valid_ethaddr(mac_addr))
39 eth_env_set_enetaddr("ethaddr", mac_addr);
40 }
41
42 if (!env_get("serial#")) {
43 len = meson_sm_read_efuse(EFUSE_SN_OFFSET, serial,
44 EFUSE_SN_SIZE);
45 if (len == EFUSE_SN_SIZE)
46 env_set("serial#", serial);
47 }
48
49 return 0;
Neil Armstrongcade8652017-10-12 15:50:32 +020050}
Neil Armstrongc7be3e52017-11-27 10:35:46 +010051
52int ft_board_setup(void *blob, bd_t *bd)
53{
54 meson_gx_init_reserved_memory(blob);
55
56 return 0;
57}