Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com> |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 9d92245 | 2017-05-17 17:18:03 -0600 | [diff] [blame] | 7 | #include <dm.h> |
Simon Glass | 9fb625c | 2019-08-01 09:46:51 -0600 | [diff] [blame^] | 8 | #include <env.h> |
Alex Kiernan | 9925f1d | 2018-04-01 09:22:38 +0000 | [diff] [blame] | 9 | #include <environment.h> |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 10 | #include <asm/io.h> |
Neil Armstrong | f0f3762 | 2018-04-11 17:13:45 +0200 | [diff] [blame] | 11 | #include <asm/arch/gx.h> |
Beniamino Galvani | c7757d4 | 2016-05-08 08:30:17 +0200 | [diff] [blame] | 12 | #include <asm/arch/sm.h> |
Neil Armstrong | 9a41746 | 2017-11-27 10:16:17 +0100 | [diff] [blame] | 13 | #include <asm/arch/eth.h> |
Neil Armstrong | c7be3e5 | 2017-11-27 10:35:46 +0100 | [diff] [blame] | 14 | #include <asm/arch/mem.h> |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 15 | |
Beniamino Galvani | c7757d4 | 2016-05-08 08:30:17 +0200 | [diff] [blame] | 16 | #define EFUSE_SN_OFFSET 20 |
| 17 | #define EFUSE_SN_SIZE 16 |
| 18 | #define EFUSE_MAC_OFFSET 52 |
| 19 | #define EFUSE_MAC_SIZE 6 |
| 20 | |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 21 | int misc_init_r(void) |
| 22 | { |
Beniamino Galvani | c7757d4 | 2016-05-08 08:30:17 +0200 | [diff] [blame] | 23 | u8 mac_addr[EFUSE_MAC_SIZE]; |
Martin Böh | cb86d37 | 2017-06-23 13:40:00 +0000 | [diff] [blame] | 24 | char serial[EFUSE_SN_SIZE]; |
Beniamino Galvani | c7757d4 | 2016-05-08 08:30:17 +0200 | [diff] [blame] | 25 | ssize_t len; |
| 26 | |
Jerome Brunet | 33e3378 | 2018-10-05 17:00:37 +0200 | [diff] [blame] | 27 | meson_eth_init(PHY_INTERFACE_MODE_RGMII, 0); |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 28 | |
Simon Glass | 35affd7 | 2017-08-03 12:22:14 -0600 | [diff] [blame] | 29 | if (!eth_env_get_enetaddr("ethaddr", mac_addr)) { |
Beniamino Galvani | c7757d4 | 2016-05-08 08:30:17 +0200 | [diff] [blame] | 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)) |
Simon Glass | fd1e959 | 2017-08-03 12:22:11 -0600 | [diff] [blame] | 33 | eth_env_set_enetaddr("ethaddr", mac_addr); |
Beniamino Galvani | c7757d4 | 2016-05-08 08:30:17 +0200 | [diff] [blame] | 34 | } |
| 35 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 36 | if (!env_get("serial#")) { |
Martin Böh | cb86d37 | 2017-06-23 13:40:00 +0000 | [diff] [blame] | 37 | len = meson_sm_read_efuse(EFUSE_SN_OFFSET, serial, |
| 38 | EFUSE_SN_SIZE); |
Jerome Brunet | 33e3378 | 2018-10-05 17:00:37 +0200 | [diff] [blame] | 39 | if (len == EFUSE_SN_SIZE) |
Simon Glass | 382bee5 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 40 | env_set("serial#", serial); |
Martin Böh | cb86d37 | 2017-06-23 13:40:00 +0000 | [diff] [blame] | 41 | } |
| 42 | |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 43 | return 0; |
| 44 | } |