spl.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * (C) Copyright 2012
  3. * NVIDIA Inc, <www.nvidia.com>
  4. *
  5. * Allen Martin <amartin@nvidia.com>
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <common.h>
  26. #include <spl.h>
  27. #include <asm/io.h>
  28. #include <asm/arch/clock.h>
  29. #include <asm/arch/pinmux.h>
  30. #include <asm/arch/tegra.h>
  31. #include <asm/arch-tegra/board.h>
  32. #include <asm/arch/spl.h>
  33. #include "cpu.h"
  34. void spl_board_init(void)
  35. {
  36. struct pmux_tri_ctlr *pmt = (struct pmux_tri_ctlr *)NV_PA_APB_MISC_BASE;
  37. /* enable JTAG */
  38. writel(0xC0, &pmt->pmt_cfg_ctl);
  39. board_init_uart_f();
  40. /* Initialize periph GPIOs */
  41. gpio_early_init_uart();
  42. clock_early_init();
  43. preloader_console_init();
  44. }
  45. u32 spl_boot_device(void)
  46. {
  47. return BOOT_DEVICE_RAM;
  48. }
  49. void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
  50. {
  51. debug("image entry point: 0x%X\n", spl_image->entry_point);
  52. start_cpu((u32)spl_image->entry_point);
  53. halt_avp();
  54. }