bootm.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
  31. {
  32. void *base_ptr;
  33. ulong os_data, os_len;
  34. image_header_t *hdr;
  35. #if defined(CONFIG_FIT)
  36. const void *data;
  37. size_t len;
  38. #endif
  39. if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
  40. return 1;
  41. if (images->legacy_hdr_valid) {
  42. hdr = images->legacy_hdr_os;
  43. if (image_check_type (hdr, IH_TYPE_MULTI)) {
  44. /* if multi-part image, we need to get first subimage */
  45. image_multi_getimg (hdr, 0, &os_data, &os_len);
  46. } else {
  47. /* otherwise get image data */
  48. os_data = image_get_data (hdr);
  49. os_len = image_get_data_size (hdr);
  50. }
  51. #if defined(CONFIG_FIT)
  52. } else if (images->fit_uname_os) {
  53. ret = fit_image_get_data (images->fit_hdr_os,
  54. images->fit_noffset_os, &data, &len);
  55. if (ret) {
  56. puts ("Can't get image data/size!\n");
  57. goto error;
  58. }
  59. os_data = (ulong)data;
  60. os_len = (ulong)len;
  61. #endif
  62. } else {
  63. puts ("Could not find kernel image!\n");
  64. goto error;
  65. }
  66. base_ptr = load_zimage ((void*)os_data, os_len,
  67. images->rd_start, images->rd_end - images->rd_start, 0);
  68. if (NULL == base_ptr) {
  69. printf ("## Kernel loading failed ...\n");
  70. goto error;
  71. }
  72. #ifdef DEBUG
  73. printf ("## Transferring control to Linux (at address %08x) ...\n",
  74. (u32)base_ptr);
  75. #endif
  76. /* we assume that the kernel is in place */
  77. printf("\nStarting kernel ...\n\n");
  78. boot_zimage(base_ptr);
  79. /* does not return */
  80. error:
  81. return 1;
  82. }