spl_mmc.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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 <timestamp_autogenerated.h>
  32. #include <version_autogenerated.h>
  33. #include <asm/omap_common.h>
  34. #include <asm/arch/mmc_host_def.h>
  35. DECLARE_GLOBAL_DATA_PTR;
  36. #ifdef CONFIG_GENERIC_MMC
  37. int board_mmc_init(bd_t *bis)
  38. {
  39. switch (omap_boot_device()) {
  40. case BOOT_DEVICE_MMC1:
  41. omap_mmc_init(0);
  42. break;
  43. case BOOT_DEVICE_MMC2:
  44. omap_mmc_init(1);
  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. static void mmc_load_image_fat(struct mmc *mmc)
  77. {
  78. s32 err;
  79. struct image_header *header;
  80. header = (struct image_header *)(CONFIG_SYS_TEXT_BASE -
  81. sizeof(struct image_header));
  82. err = fat_register_device(&mmc->block_dev,
  83. CONFIG_SYS_MMC_SD_FAT_BOOT_PARTITION);
  84. if (err) {
  85. printf("spl: fat register err - %d\n", err);
  86. hang();
  87. }
  88. err = file_fat_read(CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME,
  89. (u8 *)header, sizeof(struct image_header));
  90. if (err <= 0)
  91. goto end;
  92. spl_parse_image_header(header);
  93. err = file_fat_read(CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME,
  94. (u8 *)spl_image.load_addr, 0);
  95. end:
  96. if (err <= 0) {
  97. printf("spl: error reading image %s, err - %d\n",
  98. CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME, err);
  99. hang();
  100. }
  101. }
  102. void spl_mmc_load_image(void)
  103. {
  104. struct mmc *mmc;
  105. int err;
  106. u32 boot_mode;
  107. mmc_initialize(gd->bd);
  108. /* We register only one device. So, the dev id is always 0 */
  109. mmc = find_mmc_device(0);
  110. if (!mmc) {
  111. puts("spl: mmc device not found!!\n");
  112. hang();
  113. }
  114. err = mmc_init(mmc);
  115. if (err) {
  116. printf("spl: mmc init failed: err - %d\n", err);
  117. hang();
  118. }
  119. boot_mode = omap_boot_mode();
  120. if (boot_mode == MMCSD_MODE_RAW) {
  121. debug("boot mode - RAW\n");
  122. mmc_load_image_raw(mmc);
  123. } else if (boot_mode == MMCSD_MODE_FAT) {
  124. debug("boot mode - FAT\n");
  125. mmc_load_image_fat(mmc);
  126. } else {
  127. puts("spl: wrong MMC boot mode\n");
  128. hang();
  129. }
  130. }