spl_boot.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * Copyright (C) 2012 Samsung Electronics
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #include<common.h>
  23. #include<config.h>
  24. enum boot_mode {
  25. BOOT_MODE_MMC = 4,
  26. BOOT_MODE_SERIAL = 20,
  27. /* Boot based on Operating Mode pin settings */
  28. BOOT_MODE_OM = 32,
  29. BOOT_MODE_USB, /* Boot using USB download */
  30. };
  31. typedef u32 (*spi_copy_func_t)(u32 offset, u32 nblock, u32 dst);
  32. typedef u32 (*usb_copy_func_t)(void);
  33. /*
  34. * Set/clear program flow prediction and return the previous state.
  35. */
  36. static int config_branch_prediction(int set_cr_z)
  37. {
  38. unsigned int cr;
  39. /* System Control Register: 11th bit Z Branch prediction enable */
  40. cr = get_cr();
  41. set_cr(set_cr_z ? cr | CR_Z : cr & ~CR_Z);
  42. return cr & CR_Z;
  43. }
  44. /*
  45. * Copy U-boot from mmc to RAM:
  46. * COPY_BL2_FNPTR_ADDR: Address in iRAM, which Contains
  47. * Pointer to API (Data transfer from mmc to ram)
  48. */
  49. void copy_uboot_to_ram(void)
  50. {
  51. spi_copy_func_t spi_copy;
  52. usb_copy_func_t usb_copy;
  53. int is_cr_z_set;
  54. unsigned int sec_boot_check;
  55. enum boot_mode bootmode = BOOT_MODE_OM;
  56. u32 (*copy_bl2)(u32, u32, u32);
  57. /* Read iRAM location to check for secondary USB boot mode */
  58. sec_boot_check = readl(EXYNOS_IRAM_SECONDARY_BASE);
  59. if (sec_boot_check == EXYNOS_USB_SECONDARY_BOOT)
  60. bootmode = BOOT_MODE_USB;
  61. if (bootmode == BOOT_MODE_OM)
  62. bootmode = readl(EXYNOS5_POWER_BASE) & OM_STAT;
  63. switch (bootmode) {
  64. case BOOT_MODE_SERIAL:
  65. spi_copy = *(spi_copy_func_t *)EXYNOS_COPY_SPI_FNPTR_ADDR;
  66. spi_copy(SPI_FLASH_UBOOT_POS, CONFIG_BL2_SIZE,
  67. CONFIG_SYS_TEXT_BASE);
  68. break;
  69. case BOOT_MODE_MMC:
  70. copy_bl2 = (void *) *(u32 *)COPY_BL2_FNPTR_ADDR;
  71. copy_bl2(BL2_START_OFFSET, BL2_SIZE_BLOC_COUNT,
  72. CONFIG_SYS_TEXT_BASE);
  73. break;
  74. case BOOT_MODE_USB:
  75. /*
  76. * iROM needs program flow prediction to be disabled
  77. * before copy from USB device to RAM
  78. */
  79. is_cr_z_set = config_branch_prediction(0);
  80. usb_copy = *(usb_copy_func_t *)
  81. EXYNOS_COPY_USB_FNPTR_ADDR;
  82. usb_copy();
  83. config_branch_prediction(is_cr_z_set);
  84. break;
  85. default:
  86. break;
  87. }
  88. }
  89. void board_init_f(unsigned long bootflag)
  90. {
  91. __attribute__((noreturn)) void (*uboot)(void);
  92. copy_uboot_to_ram();
  93. /* Jump to U-Boot image */
  94. uboot = (void *)CONFIG_SYS_TEXT_BASE;
  95. (*uboot)();
  96. /* Never returns Here */
  97. }
  98. /* Place Holders */
  99. void board_init_r(gd_t *id, ulong dest_addr)
  100. {
  101. /* Function attribute is no-return */
  102. /* This Function never executes */
  103. while (1)
  104. ;
  105. }
  106. void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3) {}