bootm.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * (C) Copyright 2002
  3. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  4. * Marius Groeger <mgroeger@sysgo.de>
  5. *
  6. * Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (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, MA 02111-1307 USA
  21. *
  22. */
  23. #include <common.h>
  24. #include <command.h>
  25. #include <image.h>
  26. #include <zlib.h>
  27. #include <asm/byteorder.h>
  28. #include <asm/zimage.h>
  29. /*cmd_boot.c*/
  30. extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
  31. void do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
  32. bootm_headers_t *images)
  33. {
  34. void *base_ptr;
  35. ulong os_data, os_len;
  36. ulong initrd_start, initrd_end;
  37. ulong ep;
  38. image_header_t *hdr;
  39. int ret;
  40. #if defined(CONFIG_FIT)
  41. const void *data;
  42. size_t len;
  43. #endif
  44. ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_I386,
  45. &initrd_start, &initrd_end);
  46. if (ret)
  47. goto error;
  48. if (images->legacy_hdr_valid) {
  49. hdr = images->legacy_hdr_os;
  50. if (image_check_type (hdr, IH_TYPE_MULTI)) {
  51. /* if multi-part image, we need to get first subimage */
  52. image_multi_getimg (hdr, 0, &os_data, &os_len);
  53. } else {
  54. /* otherwise get image data */
  55. os_data = image_get_data (hdr);
  56. os_len = image_get_data_size (hdr);
  57. }
  58. #if defined(CONFIG_FIT)
  59. } else if (images->fit_uname_os) {
  60. ret = fit_image_get_data (images->fit_hdr_os,
  61. images->fit_noffset_os, &data, &len);
  62. if (ret) {
  63. puts ("Can't get image data/size!\n");
  64. goto error;
  65. }
  66. os_data = (ulong)data;
  67. os_len = (ulong)len;
  68. #endif
  69. } else {
  70. puts ("Could not find kernel image!\n");
  71. goto error;
  72. }
  73. base_ptr = load_zimage ((void*)os_data, os_len,
  74. initrd_start, initrd_end - initrd_start, 0);
  75. if (NULL == base_ptr) {
  76. printf ("## Kernel loading failed ...\n");
  77. goto error;
  78. }
  79. if (!images->autostart)
  80. return ;
  81. #ifdef DEBUG
  82. printf ("## Transferring control to Linux (at address %08x) ...\n",
  83. (u32)base_ptr);
  84. #endif
  85. /* we assume that the kernel is in place */
  86. printf("\nStarting kernel ...\n\n");
  87. boot_zimage(base_ptr);
  88. /* does not return */
  89. return;
  90. error:
  91. if (images->autostart)
  92. do_reset (cmdtp, flag, argc, argv);
  93. return;
  94. }