Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com> |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 11c89f3 | 2017-05-17 17:18:03 -0600 | [diff] [blame] | 8 | #include <dm.h> |
Alex Kiernan | 9c21549 | 2018-04-01 09:22:38 +0000 | [diff] [blame] | 9 | #include <environment.h> |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 10 | #include <asm/io.h> |
| 11 | #include <asm/arch/gxbb.h> |
Beniamino Galvani | 38e1a60 | 2016-05-08 08:30:17 +0200 | [diff] [blame] | 12 | #include <asm/arch/sm.h> |
Neil Armstrong | 1aca6b1 | 2017-11-27 10:16:17 +0100 | [diff] [blame] | 13 | #include <asm/arch/eth.h> |
Neil Armstrong | 8b24569 | 2017-11-27 10:35:46 +0100 | [diff] [blame] | 14 | #include <asm/arch/mem.h> |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 15 | |
Beniamino Galvani | 38e1a60 | 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 | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 21 | int board_init(void) |
| 22 | { |
| 23 | return 0; |
| 24 | } |
| 25 | |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 26 | int misc_init_r(void) |
| 27 | { |
Beniamino Galvani | 38e1a60 | 2016-05-08 08:30:17 +0200 | [diff] [blame] | 28 | u8 mac_addr[EFUSE_MAC_SIZE]; |
Martin Böh | df15eec | 2017-06-23 13:40:00 +0000 | [diff] [blame] | 29 | char serial[EFUSE_SN_SIZE]; |
Beniamino Galvani | 38e1a60 | 2016-05-08 08:30:17 +0200 | [diff] [blame] | 30 | ssize_t len; |
| 31 | |
Neil Armstrong | 1aca6b1 | 2017-11-27 10:16:17 +0100 | [diff] [blame] | 32 | meson_gx_eth_init(PHY_INTERFACE_MODE_RGMII, 0); |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 33 | |
| 34 | /* Enable power and clock gate */ |
Beniamino Galvani | 1000422 | 2017-10-29 10:09:01 +0100 | [diff] [blame] | 35 | setbits_le32(GXBB_GCLK_MPEG_0, GXBB_GCLK_MPEG_0_I2C); |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 36 | |
| 37 | /* Reset PHY on GPIOZ_14 */ |
| 38 | clrbits_le32(GXBB_GPIO_EN(3), BIT(14)); |
| 39 | clrbits_le32(GXBB_GPIO_OUT(3), BIT(14)); |
| 40 | mdelay(10); |
| 41 | setbits_le32(GXBB_GPIO_OUT(3), BIT(14)); |
| 42 | |
Simon Glass | 399a9ce | 2017-08-03 12:22:14 -0600 | [diff] [blame] | 43 | if (!eth_env_get_enetaddr("ethaddr", mac_addr)) { |
Beniamino Galvani | 38e1a60 | 2016-05-08 08:30:17 +0200 | [diff] [blame] | 44 | len = meson_sm_read_efuse(EFUSE_MAC_OFFSET, |
| 45 | mac_addr, EFUSE_MAC_SIZE); |
| 46 | if (len == EFUSE_MAC_SIZE && is_valid_ethaddr(mac_addr)) |
Simon Glass | 8551d55 | 2017-08-03 12:22:11 -0600 | [diff] [blame] | 47 | eth_env_set_enetaddr("ethaddr", mac_addr); |
Beniamino Galvani | 38e1a60 | 2016-05-08 08:30:17 +0200 | [diff] [blame] | 48 | } |
| 49 | |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 50 | if (!env_get("serial#")) { |
Martin Böh | df15eec | 2017-06-23 13:40:00 +0000 | [diff] [blame] | 51 | len = meson_sm_read_efuse(EFUSE_SN_OFFSET, serial, |
| 52 | EFUSE_SN_SIZE); |
| 53 | if (len == EFUSE_SN_SIZE) |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 54 | env_set("serial#", serial); |
Martin Böh | df15eec | 2017-06-23 13:40:00 +0000 | [diff] [blame] | 55 | } |
| 56 | |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 57 | return 0; |
| 58 | } |
Neil Armstrong | 8b24569 | 2017-11-27 10:35:46 +0100 | [diff] [blame] | 59 | |
| 60 | int ft_board_setup(void *blob, bd_t *bd) |
| 61 | { |
| 62 | meson_gx_init_reserved_memory(blob); |
| 63 | |
| 64 | return 0; |
| 65 | } |