board186.c 441 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright (c) 2016, NVIDIA CORPORATION.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <asm/arch/tegra.h>
  8. DECLARE_GLOBAL_DATA_PTR;
  9. int board_early_init_f(void)
  10. {
  11. return 0;
  12. }
  13. __weak int tegra_board_init(void)
  14. {
  15. return 0;
  16. }
  17. int board_init(void)
  18. {
  19. return tegra_board_init();
  20. }
  21. __weak int tegra_soc_board_init_late(void)
  22. {
  23. return 0;
  24. }
  25. int board_late_init(void)
  26. {
  27. return tegra_soc_board_init_late();
  28. }