spl_nand.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * Copyright (C) 2011
  3. * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
  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 <asm/spl.h>
  25. #include <asm/u-boot.h>
  26. #include <asm/utils.h>
  27. #include <asm/io.h>
  28. #include <nand.h>
  29. #include <version.h>
  30. void spl_nand_load_image(void)
  31. {
  32. struct image_header *header;
  33. int *src __attribute__((unused));
  34. int *dst __attribute__((unused));
  35. debug("spl: nand - using hw ecc\n");
  36. gpmc_init();
  37. nand_init();
  38. /*use CONFIG_SYS_TEXT_BASE as temporary storage area */
  39. header = (struct image_header *)(CONFIG_SYS_TEXT_BASE);
  40. #ifdef CONFIG_SPL_OS_BOOT
  41. if (!spl_start_uboot()) {
  42. /*
  43. * load parameter image
  44. * load to temp position since nand_spl_load_image reads
  45. * a whole block which is typically larger than
  46. * CONFIG_CMD_SPL_WRITE_SIZE therefore may overwrite
  47. * following sections like BSS
  48. */
  49. nand_spl_load_image(CONFIG_CMD_SPL_NAND_OFS,
  50. CONFIG_CMD_SPL_WRITE_SIZE,
  51. (void *)CONFIG_SYS_TEXT_BASE);
  52. /* copy to destintion */
  53. for (dst = (int *)CONFIG_SYS_SPL_ARGS_ADDR,
  54. src = (int *)CONFIG_SYS_TEXT_BASE;
  55. src < (int *)(CONFIG_SYS_TEXT_BASE +
  56. CONFIG_CMD_SPL_WRITE_SIZE);
  57. src++, dst++) {
  58. writel(readl(src), dst);
  59. }
  60. /* load linux */
  61. nand_spl_load_image(CONFIG_SYS_NAND_SPL_KERNEL_OFFS,
  62. CONFIG_SYS_NAND_PAGE_SIZE, (void *)header);
  63. spl_parse_image_header(header);
  64. if (header->ih_os == IH_OS_LINUX) {
  65. /* happy - was a linux */
  66. nand_spl_load_image(CONFIG_SYS_NAND_SPL_KERNEL_OFFS,
  67. spl_image.size, (void *)spl_image.load_addr);
  68. nand_deselect();
  69. return;
  70. } else {
  71. printf("The Expected Linux image was not"
  72. "found. Please check your NAND"
  73. "configuration.\n");
  74. printf("Trying to start u-boot now...\n");
  75. }
  76. }
  77. #endif
  78. #ifdef CONFIG_NAND_ENV_DST
  79. nand_spl_load_image(CONFIG_ENV_OFFSET,
  80. CONFIG_SYS_NAND_PAGE_SIZE, (void *)header);
  81. spl_parse_image_header(header);
  82. nand_spl_load_image(CONFIG_ENV_OFFSET, spl_image.size,
  83. (void *)spl_image.load_addr);
  84. #ifdef CONFIG_ENV_OFFSET_REDUND
  85. nand_spl_load_image(CONFIG_ENV_OFFSET_REDUND,
  86. CONFIG_SYS_NAND_PAGE_SIZE, (void *)header);
  87. spl_parse_image_header(header);
  88. nand_spl_load_image(CONFIG_ENV_OFFSET_REDUND, spl_image.size,
  89. (void *)spl_image.load_addr);
  90. #endif
  91. #endif
  92. /* Load u-boot */
  93. nand_spl_load_image(CONFIG_SYS_NAND_U_BOOT_OFFS,
  94. CONFIG_SYS_NAND_PAGE_SIZE, (void *)header);
  95. spl_parse_image_header(header);
  96. nand_spl_load_image(CONFIG_SYS_NAND_U_BOOT_OFFS,
  97. spl_image.size, (void *)spl_image.load_addr);
  98. nand_deselect();
  99. }