bootm.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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/bootparam.h>
  31. #include <asm/byteorder.h>
  32. #include <asm/zimage.h>
  33. #define COMMAND_LINE_OFFSET 0x9000
  34. /*cmd_boot.c*/
  35. int do_bootm_linux(int flag, int argc, char * const argv[],
  36. bootm_headers_t *images)
  37. {
  38. struct boot_params *base_ptr = NULL;
  39. ulong os_data, os_len;
  40. image_header_t *hdr;
  41. void *load_address;
  42. #if defined(CONFIG_FIT)
  43. const void *data;
  44. size_t len;
  45. #endif
  46. if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
  47. return 1;
  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. int ret;
  61. ret = fit_image_get_data(images->fit_hdr_os,
  62. images->fit_noffset_os, &data, &len);
  63. if (ret) {
  64. puts("Can't get image data/size!\n");
  65. goto error;
  66. }
  67. os_data = (ulong)data;
  68. os_len = (ulong)len;
  69. #endif
  70. } else {
  71. puts("Could not find kernel image!\n");
  72. goto error;
  73. }
  74. #ifdef CONFIG_CMD_ZBOOT
  75. base_ptr = load_zimage((void *)os_data, os_len, &load_address);
  76. #endif
  77. if (NULL == base_ptr) {
  78. printf("## Kernel loading failed ...\n");
  79. goto error;
  80. }
  81. if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET,
  82. 0, images->rd_start,
  83. images->rd_end - images->rd_start)) {
  84. printf("## Setting up boot parameters failed ...\n");
  85. goto error;
  86. }
  87. boot_zimage(base_ptr, load_address);
  88. /* does not return */
  89. error:
  90. return 1;
  91. }