spl_nand.c 3.1 KB

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