bootm.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * (C) Copyright 2003, Psyent Corporation <www.psyent.com>
  3. * Scott McNutt <smcnutt@psyent.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. #include <command.h>
  9. #include <asm/byteorder.h>
  10. #include <asm/cache.h>
  11. #define NIOS_MAGIC 0x534f494e /* enable command line and initrd passing */
  12. int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images)
  13. {
  14. void (*kernel)(int, int, int, char *) = (void *)images->ep;
  15. char *commandline = getenv("bootargs");
  16. ulong initrd_start = images->rd_start;
  17. ulong initrd_end = images->rd_end;
  18. char *of_flat_tree = NULL;
  19. #if defined(CONFIG_OF_LIBFDT)
  20. /* did generic code already find a device tree? */
  21. if (images->ft_len)
  22. of_flat_tree = images->ft_addr;
  23. #endif
  24. if (!of_flat_tree && argc > 1)
  25. of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16);
  26. if (of_flat_tree)
  27. initrd_end = (ulong)of_flat_tree;
  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. /* flushes data and instruction caches before calling the kernel */
  36. disable_interrupts();
  37. flush_dcache((ulong)kernel, CONFIG_SYS_DCACHE_SIZE);
  38. flush_icache((ulong)kernel, CONFIG_SYS_ICACHE_SIZE);
  39. debug("bootargs=%s @ 0x%lx\n", commandline, (ulong)&commandline);
  40. debug("initrd=0x%lx-0x%lx\n", (ulong)initrd_start, (ulong)initrd_end);
  41. /* kernel parameters passing
  42. * r4 : NIOS magic
  43. * r5 : initrd start
  44. * r6 : initrd end or fdt
  45. * r7 : kernel command line
  46. * fdt is passed to kernel via r6, the same as initrd_end. fdt will be
  47. * verified with fdt magic. when both initrd and fdt are used at the
  48. * same time, fdt must follow immediately after initrd.
  49. */
  50. kernel(NIOS_MAGIC, initrd_start, initrd_end, commandline);
  51. /* does not return */
  52. return 1;
  53. }