bootm.c 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. * See file CREDITS for list of people who contributed to this
  9. * project.
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation; either version 2 of
  14. * the License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  24. * MA 02111-1307 USA
  25. */
  26. #include <common.h>
  27. #include <command.h>
  28. #include <image.h>
  29. #include <u-boot/zlib.h>
  30. #include <asm/byteorder.h>
  31. #include <asm/zimage.h>
  32. /*cmd_boot.c*/
  33. int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images)
  34. {
  35. void *base_ptr;
  36. ulong os_data, os_len;
  37. image_header_t *hdr;
  38. #if defined(CONFIG_FIT)
  39. const void *data;
  40. size_t len;
  41. #endif
  42. if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
  43. return 1;
  44. if (images->legacy_hdr_valid) {
  45. hdr = images->legacy_hdr_os;
  46. if (image_check_type (hdr, IH_TYPE_MULTI)) {
  47. /* if multi-part image, we need to get first subimage */
  48. image_multi_getimg (hdr, 0, &os_data, &os_len);
  49. } else {
  50. /* otherwise get image data */
  51. os_data = image_get_data (hdr);
  52. os_len = image_get_data_size (hdr);
  53. }
  54. #if defined(CONFIG_FIT)
  55. } else if (images->fit_uname_os) {
  56. ret = fit_image_get_data (images->fit_hdr_os,
  57. images->fit_noffset_os, &data, &len);
  58. if (ret) {
  59. puts ("Can't get image data/size!\n");
  60. goto error;
  61. }
  62. os_data = (ulong)data;
  63. os_len = (ulong)len;
  64. #endif
  65. } else {
  66. puts ("Could not find kernel image!\n");
  67. goto error;
  68. }
  69. base_ptr = load_zimage ((void*)os_data, os_len,
  70. images->rd_start, images->rd_end - images->rd_start, 0);
  71. if (NULL == base_ptr) {
  72. printf ("## Kernel loading failed ...\n");
  73. goto error;
  74. }
  75. #ifdef DEBUG
  76. printf ("## Transferring control to Linux (at address %08x) ...\n",
  77. (u32)base_ptr);
  78. #endif
  79. /* we assume that the kernel is in place */
  80. printf("\nStarting kernel ...\n\n");
  81. boot_zimage(base_ptr);
  82. /* does not return */
  83. error:
  84. return 1;
  85. }