cmd_boot.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * (C) Copyright 2008-2011
  3. * Graeme Russ, <graeme.russ@gmail.com>
  4. *
  5. * (C) Copyright 2002
  6. * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
  7. *
  8. * (C) Copyright 2002
  9. * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
  10. *
  11. * (C) Copyright 2002
  12. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  13. * Marius Groeger <mgroeger@sysgo.de>
  14. *
  15. * SPDX-License-Identifier: GPL-2.0+
  16. */
  17. #include <common.h>
  18. #include <command.h>
  19. #include <malloc.h>
  20. #include <asm/u-boot-x86.h>
  21. DECLARE_GLOBAL_DATA_PTR;
  22. unsigned long do_go_exec(ulong (*entry)(int, char * const []),
  23. int argc, char * const argv[])
  24. {
  25. unsigned long ret = 0;
  26. char **argv_tmp;
  27. /*
  28. * x86 does not use a dedicated register to pass the pointer to
  29. * the global_data, so it is instead passed as argv[-1]. By using
  30. * argv[-1], the called 'Application' can use the contents of
  31. * argv natively. However, to safely use argv[-1] a new copy of
  32. * argv is needed with the extra element
  33. */
  34. argv_tmp = malloc(sizeof(char *) * (argc + 1));
  35. if (argv_tmp) {
  36. argv_tmp[0] = (char *)gd;
  37. memcpy(&argv_tmp[1], argv, (size_t)(sizeof(char *) * argc));
  38. ret = (entry) (argc, &argv_tmp[1]);
  39. free(argv_tmp);
  40. }
  41. return ret;
  42. }