spl_mmc.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /*
  2. * (C) Copyright 2010
  3. * Texas Instruments, <www.ti.com>
  4. *
  5. * Aneesh V <aneesh@ti.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 <asm/arch/sys_proto.h>
  29. #include <mmc.h>
  30. #include <fat.h>
  31. #include <version.h>
  32. #include <asm/omap_common.h>
  33. #include <asm/arch/mmc_host_def.h>
  34. DECLARE_GLOBAL_DATA_PTR;
  35. #ifdef CONFIG_GENERIC_MMC
  36. int board_mmc_init(bd_t *bis)
  37. {
  38. switch (spl_boot_device()) {
  39. case BOOT_DEVICE_MMC1:
  40. omap_mmc_init(0, 0, 0);
  41. break;
  42. case BOOT_DEVICE_MMC2:
  43. case BOOT_DEVICE_MMC2_2:
  44. omap_mmc_init(1, 0, 0);
  45. break;
  46. }
  47. return 0;
  48. }
  49. #endif
  50. static void mmc_load_image_raw(struct mmc *mmc)
  51. {
  52. u32 image_size_sectors, err;
  53. const struct image_header *header;
  54. header = (struct image_header *)(CONFIG_SYS_TEXT_BASE -
  55. sizeof(struct image_header));
  56. /* read image header to find the image size & load address */
  57. err = mmc->block_dev.block_read(0,
  58. CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR, 1,
  59. (void *)header);
  60. if (err <= 0)
  61. goto end;
  62. spl_parse_image_header(header);
  63. /* convert size to sectors - round up */
  64. image_size_sectors = (spl_image.size + MMCSD_SECTOR_SIZE - 1) /
  65. MMCSD_SECTOR_SIZE;
  66. /* Read the header too to avoid extra memcpy */
  67. err = mmc->block_dev.block_read(0,
  68. CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR,
  69. image_size_sectors, (void *)spl_image.load_addr);
  70. end:
  71. if (err <= 0) {
  72. printf("spl: mmc blk read err - %d\n", err);
  73. hang();
  74. }
  75. }
  76. #ifdef CONFIG_SPL_FAT_SUPPORT
  77. static void mmc_load_image_fat(struct mmc *mmc)
  78. {
  79. s32 err;
  80. struct image_header *header;
  81. header = (struct image_header *)(CONFIG_SYS_TEXT_BASE -
  82. sizeof(struct image_header));
  83. err = fat_register_device(&mmc->block_dev,
  84. CONFIG_SYS_MMC_SD_FAT_BOOT_PARTITION);
  85. if (err) {
  86. printf("spl: fat register err - %d\n", err);
  87. hang();
  88. }
  89. err = file_fat_read(CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME,
  90. (u8 *)header, sizeof(struct image_header));
  91. if (err <= 0)
  92. goto end;
  93. spl_parse_image_header(header);
  94. err = file_fat_read(CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME,
  95. (u8 *)spl_image.load_addr, 0);
  96. end:
  97. if (err <= 0) {
  98. printf("spl: error reading image %s, err - %d\n",
  99. CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME, err);
  100. hang();
  101. }
  102. }
  103. #endif
  104. void spl_mmc_load_image(void)
  105. {
  106. struct mmc *mmc;
  107. int err;
  108. u32 boot_mode;
  109. mmc_initialize(gd->bd);
  110. /* We register only one device. So, the dev id is always 0 */
  111. mmc = find_mmc_device(0);
  112. if (!mmc) {
  113. puts("spl: mmc device not found!!\n");
  114. hang();
  115. }
  116. err = mmc_init(mmc);
  117. if (err) {
  118. printf("spl: mmc init failed: err - %d\n", err);
  119. hang();
  120. }
  121. boot_mode = spl_boot_mode();
  122. if (boot_mode == MMCSD_MODE_RAW) {
  123. debug("boot mode - RAW\n");
  124. mmc_load_image_raw(mmc);
  125. #ifdef CONFIG_SPL_FAT_SUPPORT
  126. } else if (boot_mode == MMCSD_MODE_FAT) {
  127. debug("boot mode - FAT\n");
  128. mmc_load_image_fat(mmc);
  129. #endif
  130. } else {
  131. puts("spl: wrong MMC boot mode\n");
  132. hang();
  133. }
  134. }