board186.c 412 B

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