bootm.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * (C) Copyright 2007 Michal Simek
  3. * (C) Copyright 2004 Atmark Techno, Inc.
  4. *
  5. * Michal SIMEK <monstr@monstr.eu>
  6. * Yasushi SHOJI <yashi@atmark-techno.com>
  7. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. #include <common.h>
  11. #include <command.h>
  12. #include <fdt_support.h>
  13. #include <image.h>
  14. #include <u-boot/zlib.h>
  15. #include <asm/byteorder.h>
  16. DECLARE_GLOBAL_DATA_PTR;
  17. int arch_fixup_fdt(void *blob)
  18. {
  19. return 0;
  20. }
  21. int do_bootm_linux(int flag, int argc, char * const argv[],
  22. bootm_headers_t *images)
  23. {
  24. /* First parameter is mapped to $r5 for kernel boot args */
  25. void (*thekernel) (char *, ulong, ulong);
  26. char *commandline = getenv("bootargs");
  27. ulong rd_data_start, rd_data_end;
  28. /*
  29. * allow the PREP bootm subcommand, it is required for bootm to work
  30. */
  31. if (flag & BOOTM_STATE_OS_PREP)
  32. return 0;
  33. if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
  34. return 1;
  35. int ret;
  36. char *of_flat_tree = NULL;
  37. #if defined(CONFIG_OF_LIBFDT)
  38. /* did generic code already find a device tree? */
  39. if (images->ft_len)
  40. of_flat_tree = images->ft_addr;
  41. #endif
  42. thekernel = (void (*)(char *, ulong, ulong))images->ep;
  43. /* find ramdisk */
  44. ret = boot_get_ramdisk(argc, argv, images, IH_ARCH_MICROBLAZE,
  45. &rd_data_start, &rd_data_end);
  46. if (ret)
  47. return 1;
  48. bootstage_mark(BOOTSTAGE_ID_RUN_OS);
  49. if (!of_flat_tree && argc > 1)
  50. of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16);
  51. /* fixup the initrd now that we know where it should be */
  52. if (images->rd_start && images->rd_end && of_flat_tree)
  53. ret = fdt_initrd(of_flat_tree, images->rd_start,
  54. images->rd_end);
  55. if (ret)
  56. return 1;
  57. #ifdef DEBUG
  58. printf("## Transferring control to Linux (at address 0x%08lx) ",
  59. (ulong)thekernel);
  60. printf("ramdisk 0x%08lx, FDT 0x%08lx...\n",
  61. rd_data_start, (ulong) of_flat_tree);
  62. #endif
  63. #ifdef XILINX_USE_DCACHE
  64. flush_cache(0, XILINX_DCACHE_BYTE_SIZE);
  65. #endif
  66. /*
  67. * Linux Kernel Parameters (passing device tree):
  68. * r5: pointer to command line
  69. * r6: pointer to ramdisk
  70. * r7: pointer to the fdt, followed by the board info data
  71. */
  72. thekernel(commandline, rd_data_start, (ulong)of_flat_tree);
  73. /* does not return */
  74. return 1;
  75. }