board.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /*
  2. * (C) Copyright 2010,2011
  3. * NVIDIA Corporation <www.nvidia.com>
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <common.h>
  24. #include <ns16550.h>
  25. #include <linux/compiler.h>
  26. #include <asm/io.h>
  27. #include <asm/arch/clock.h>
  28. #include <asm/arch/emc.h>
  29. #include <asm/arch/funcmux.h>
  30. #include <asm/arch/pinmux.h>
  31. #include <asm/arch/pmu.h>
  32. #include <asm/arch/tegra.h>
  33. #include <asm/arch/usb.h>
  34. #include <asm/arch-tegra/board.h>
  35. #include <asm/arch-tegra/clk_rst.h>
  36. #include <asm/arch-tegra/pmc.h>
  37. #include <asm/arch-tegra/sys_proto.h>
  38. #include <asm/arch-tegra/uart.h>
  39. #include <asm/arch-tegra/warmboot.h>
  40. #include <spi.h>
  41. #include <i2c.h>
  42. #include "emc.h"
  43. DECLARE_GLOBAL_DATA_PTR;
  44. const struct tegra_sysinfo sysinfo = {
  45. CONFIG_TEGRA_BOARD_STRING
  46. };
  47. #ifndef CONFIG_SPL_BUILD
  48. /*
  49. * Routine: timer_init
  50. * Description: init the timestamp and lastinc value
  51. */
  52. int timer_init(void)
  53. {
  54. return 0;
  55. }
  56. #endif
  57. void __pin_mux_usb(void)
  58. {
  59. }
  60. void pin_mux_usb(void) __attribute__((weak, alias("__pin_mux_usb")));
  61. void __pin_mux_spi(void)
  62. {
  63. }
  64. void pin_mux_spi(void) __attribute__((weak, alias("__pin_mux_spi")));
  65. void __gpio_early_init_uart(void)
  66. {
  67. }
  68. void gpio_early_init_uart(void)
  69. __attribute__((weak, alias("__gpio_early_init_uart")));
  70. void __pin_mux_nand(void)
  71. {
  72. funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_DEFAULT);
  73. }
  74. void pin_mux_nand(void) __attribute__((weak, alias("__pin_mux_nand")));
  75. /*
  76. * Routine: power_det_init
  77. * Description: turn off power detects
  78. */
  79. static void power_det_init(void)
  80. {
  81. #if defined(CONFIG_TEGRA20)
  82. struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
  83. /* turn off power detects */
  84. writel(0, &pmc->pmc_pwr_det_latch);
  85. writel(0, &pmc->pmc_pwr_det);
  86. #endif
  87. }
  88. /*
  89. * Routine: board_init
  90. * Description: Early hardware init.
  91. */
  92. int board_init(void)
  93. {
  94. __maybe_unused int err;
  95. /* Do clocks and UART first so that printf() works */
  96. clock_init();
  97. clock_verify();
  98. #ifdef CONFIG_SPI_UART_SWITCH
  99. gpio_config_uart();
  100. #endif
  101. #ifdef CONFIG_TEGRA_SPI
  102. pin_mux_spi();
  103. spi_init();
  104. #endif
  105. /* boot param addr */
  106. gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100);
  107. power_det_init();
  108. #ifdef CONFIG_TEGRA_I2C
  109. #ifndef CONFIG_SYS_I2C_INIT_BOARD
  110. #error "You must define CONFIG_SYS_I2C_INIT_BOARD to use i2c on Nvidia boards"
  111. #endif
  112. i2c_init_board();
  113. # ifdef CONFIG_TEGRA_PMU
  114. if (pmu_set_nominal())
  115. debug("Failed to select nominal voltages\n");
  116. # ifdef CONFIG_TEGRA_CLOCK_SCALING
  117. err = board_emc_init();
  118. if (err)
  119. debug("Memory controller init failed: %d\n", err);
  120. # endif
  121. # endif /* CONFIG_TEGRA_PMU */
  122. #endif /* CONFIG_TEGRA_I2C */
  123. #ifdef CONFIG_USB_EHCI_TEGRA
  124. pin_mux_usb();
  125. board_usb_init(gd->fdt_blob);
  126. #endif
  127. #ifdef CONFIG_TEGRA_NAND
  128. pin_mux_nand();
  129. #endif
  130. #ifdef CONFIG_TEGRA_LP0
  131. /* save Sdram params to PMC 2, 4, and 24 for WB0 */
  132. warmboot_save_sdram_params();
  133. /* prepare the WB code to LP0 location */
  134. warmboot_prepare_code(TEGRA_LP0_ADDR, TEGRA_LP0_SIZE);
  135. #endif
  136. return 0;
  137. }
  138. #ifdef CONFIG_BOARD_EARLY_INIT_F
  139. static void __gpio_early_init(void)
  140. {
  141. }
  142. void gpio_early_init(void) __attribute__((weak, alias("__gpio_early_init")));
  143. int board_early_init_f(void)
  144. {
  145. board_init_uart_f();
  146. /* Initialize periph GPIOs */
  147. gpio_early_init();
  148. gpio_early_init_uart();
  149. return 0;
  150. }
  151. #endif /* EARLY_INIT */