khadas-vim.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 <environment.h>
  10. #include <asm/io.h>
  11. #include <asm/arch/gxbb.h>
  12. #include <asm/arch/mem.h>
  13. #include <asm/arch/sm.h>
  14. #include <asm/arch/eth.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 board_init(void)
  20. {
  21. return 0;
  22. }
  23. int misc_init_r(void)
  24. {
  25. u8 mac_addr[EFUSE_MAC_SIZE];
  26. char serial[EFUSE_SN_SIZE];
  27. ssize_t len;
  28. meson_gx_eth_init(PHY_INTERFACE_MODE_RMII,
  29. MESON_GXL_USE_INTERNAL_RMII_PHY);
  30. if (!eth_env_get_enetaddr("ethaddr", mac_addr)) {
  31. len = meson_sm_read_efuse(EFUSE_MAC_OFFSET,
  32. mac_addr, EFUSE_MAC_SIZE);
  33. if (len == EFUSE_MAC_SIZE && is_valid_ethaddr(mac_addr))
  34. eth_env_set_enetaddr("ethaddr", mac_addr);
  35. }
  36. if (!env_get("serial#")) {
  37. len = meson_sm_read_efuse(EFUSE_SN_OFFSET, serial,
  38. EFUSE_SN_SIZE);
  39. if (len == EFUSE_SN_SIZE)
  40. env_set("serial#", serial);
  41. }
  42. return 0;
  43. }
  44. int ft_board_setup(void *blob, bd_t *bd)
  45. {
  46. meson_gx_init_reserved_memory(blob);
  47. return 0;
  48. }