spl.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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 <asm/u-boot.h>
  27. #include <asm/utils.h>
  28. #include <nand.h>
  29. #include <mmc.h>
  30. #include <fat.h>
  31. #include <version.h>
  32. #include <i2c.h>
  33. #include <image.h>
  34. #include <malloc.h>
  35. #include <linux/compiler.h>
  36. #include "board.h"
  37. #include "cpu.h"
  38. #include <asm/io.h>
  39. #include <asm/arch/clock.h>
  40. #include <asm/arch/pinmux.h>
  41. #include <asm/arch/tegra.h>
  42. #include <asm/arch-tegra/clk_rst.h>
  43. #include <asm/arch-tegra/pmc.h>
  44. #include <asm/arch-tegra/scu.h>
  45. #include <asm/arch-tegra/sys_proto.h>
  46. DECLARE_GLOBAL_DATA_PTR;
  47. /* Define global data structure pointer to it*/
  48. static gd_t gdata __attribute__ ((section(".data")));
  49. static bd_t bdata __attribute__ ((section(".data")));
  50. inline void hang(void)
  51. {
  52. puts("### ERROR ### Please RESET the board ###\n");
  53. for (;;)
  54. ;
  55. }
  56. void board_init_f(ulong dummy)
  57. {
  58. board_init_uart_f();
  59. /* Initialize periph GPIOs */
  60. gpio_early_init_uart();
  61. /*
  62. * We call relocate_code() with relocation target same as the
  63. * CONFIG_SYS_SPL_TEXT_BASE. This will result in relocation getting
  64. * skipped. Instead, only .bss initialization will happen. That's
  65. * all we need
  66. */
  67. debug(">>board_init_f()\n");
  68. relocate_code(CONFIG_SPL_STACK, &gdata, CONFIG_SPL_TEXT_BASE);
  69. }
  70. /* This requires UART clocks to be enabled */
  71. static void preloader_console_init(void)
  72. {
  73. const char *u_boot_rev = U_BOOT_VERSION;
  74. gd = &gdata;
  75. gd->bd = &bdata;
  76. gd->flags |= GD_FLG_RELOC;
  77. gd->baudrate = CONFIG_BAUDRATE;
  78. serial_init(); /* serial communications setup */
  79. gd->have_console = 1;
  80. /* Avoid a second "U-Boot" coming from this string */
  81. u_boot_rev = &u_boot_rev[7];
  82. printf("\nU-Boot SPL %s (%s - %s)\n", u_boot_rev, U_BOOT_DATE,
  83. U_BOOT_TIME);
  84. }
  85. void board_init_r(gd_t *id, ulong dummy)
  86. {
  87. struct pmux_tri_ctlr *pmt = (struct pmux_tri_ctlr *)NV_PA_APB_MISC_BASE;
  88. /* enable JTAG */
  89. writel(0xC0, &pmt->pmt_cfg_ctl);
  90. debug(">>spl:board_init_r()\n");
  91. mem_malloc_init(CONFIG_SYS_SPL_MALLOC_START,
  92. CONFIG_SYS_SPL_MALLOC_SIZE);
  93. #ifdef CONFIG_SPL_BOARD_INIT
  94. spl_board_init();
  95. #endif
  96. clock_early_init();
  97. serial_init();
  98. preloader_console_init();
  99. start_cpu((u32)CONFIG_SYS_TEXT_BASE);
  100. halt_avp();
  101. /* not reached */
  102. }
  103. int board_usb_init(const void *blob)
  104. {
  105. return 0;
  106. }