bootm.c 1.7 KB

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