spl.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. #ifdef CONFIG_SPI_UART_SWITCH
  61. gpio_early_init_uart();
  62. #else
  63. gpio_config_uart();
  64. #endif
  65. /*
  66. * We call relocate_code() with relocation target same as the
  67. * CONFIG_SYS_SPL_TEXT_BASE. This will result in relocation getting
  68. * skipped. Instead, only .bss initialization will happen. That's
  69. * all we need
  70. */
  71. debug(">>board_init_f()\n");
  72. relocate_code(CONFIG_SPL_STACK, &gdata, CONFIG_SPL_TEXT_BASE);
  73. }
  74. /* This requires UART clocks to be enabled */
  75. static void preloader_console_init(void)
  76. {
  77. const char *u_boot_rev = U_BOOT_VERSION;
  78. gd = &gdata;
  79. gd->bd = &bdata;
  80. gd->flags |= GD_FLG_RELOC;
  81. gd->baudrate = CONFIG_BAUDRATE;
  82. serial_init(); /* serial communications setup */
  83. gd->have_console = 1;
  84. /* Avoid a second "U-Boot" coming from this string */
  85. u_boot_rev = &u_boot_rev[7];
  86. printf("\nU-Boot SPL %s (%s - %s)\n", u_boot_rev, U_BOOT_DATE,
  87. U_BOOT_TIME);
  88. }
  89. void board_init_r(gd_t *id, ulong dummy)
  90. {
  91. struct pmux_tri_ctlr *pmt = (struct pmux_tri_ctlr *)NV_PA_APB_MISC_BASE;
  92. /* enable JTAG */
  93. writel(0xC0, &pmt->pmt_cfg_ctl);
  94. debug(">>spl:board_init_r()\n");
  95. mem_malloc_init(CONFIG_SYS_SPL_MALLOC_START,
  96. CONFIG_SYS_SPL_MALLOC_SIZE);
  97. #ifdef CONFIG_SPL_BOARD_INIT
  98. spl_board_init();
  99. #endif
  100. clock_early_init();
  101. serial_init();
  102. preloader_console_init();
  103. start_cpu((u32)CONFIG_SYS_TEXT_BASE);
  104. halt_avp();
  105. /* not reached */
  106. }
  107. int board_usb_init(const void *blob)
  108. {
  109. return 0;
  110. }