p212.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2016 BayLibre, SAS
  4. * Author: Neil Armstrong <narmstrong@baylibre.com>
  5. */
  6. #include <common.h>
  7. #include <dm.h>
  8. #include <env.h>
  9. #include <environment.h>
  10. #include <asm/io.h>
  11. #include <asm/arch/gx.h>
  12. #include <asm/arch/sm.h>
  13. #include <asm/arch/eth.h>
  14. #include <asm/arch/mem.h>
  15. #define EFUSE_SN_OFFSET 20
  16. #define EFUSE_SN_SIZE 16
  17. #define EFUSE_MAC_OFFSET 52
  18. #define EFUSE_MAC_SIZE 6
  19. int misc_init_r(void)
  20. {
  21. u8 mac_addr[EFUSE_MAC_SIZE];
  22. char serial[EFUSE_SN_SIZE];
  23. ssize_t len;
  24. meson_eth_init(PHY_INTERFACE_MODE_RMII,
  25. MESON_USE_INTERNAL_RMII_PHY);
  26. if (!eth_env_get_enetaddr("ethaddr", mac_addr)) {
  27. len = meson_sm_read_efuse(EFUSE_MAC_OFFSET,
  28. mac_addr, EFUSE_MAC_SIZE);
  29. if (len == EFUSE_MAC_SIZE && is_valid_ethaddr(mac_addr))
  30. eth_env_set_enetaddr("ethaddr", mac_addr);
  31. else
  32. meson_generate_serial_ethaddr();
  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. }