p212.c 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Copyright (C) 2016 BayLibre, SAS
  3. * Author: Neil Armstrong <narmstrong@baylibre.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. #include <dm.h>
  9. #include <asm/io.h>
  10. #include <asm/arch/gxbb.h>
  11. #include <asm/arch/sm.h>
  12. #include <asm/arch/eth.h>
  13. #include <asm/arch/mem.h>
  14. #define EFUSE_SN_OFFSET 20
  15. #define EFUSE_SN_SIZE 16
  16. #define EFUSE_MAC_OFFSET 52
  17. #define EFUSE_MAC_SIZE 6
  18. int board_init(void)
  19. {
  20. return 0;
  21. }
  22. int misc_init_r(void)
  23. {
  24. u8 mac_addr[EFUSE_MAC_SIZE];
  25. char serial[EFUSE_SN_SIZE];
  26. ssize_t len;
  27. meson_gx_eth_init(PHY_INTERFACE_MODE_RMII, 0);
  28. if (!eth_env_get_enetaddr("ethaddr", mac_addr)) {
  29. len = meson_sm_read_efuse(EFUSE_MAC_OFFSET,
  30. mac_addr, EFUSE_MAC_SIZE);
  31. if (len == EFUSE_MAC_SIZE && is_valid_ethaddr(mac_addr))
  32. eth_env_set_enetaddr("ethaddr", mac_addr);
  33. }
  34. if (!env_get("serial#")) {
  35. len = meson_sm_read_efuse(EFUSE_SN_OFFSET, serial,
  36. EFUSE_SN_SIZE);
  37. if (len == EFUSE_SN_SIZE)
  38. env_set("serial#", serial);
  39. }
  40. return 0;
  41. }
  42. int ft_board_setup(void *blob, bd_t *bd)
  43. {
  44. meson_gx_init_reserved_memory(blob);
  45. return 0;
  46. }