fb_common.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * (C) Copyright 2008 - 2009
  4. * Windriver, <www.windriver.com>
  5. * Tom Rix <Tom.Rix@windriver.com>
  6. *
  7. * Copyright 2011 Sebastian Andrzej Siewior <bigeasy@linutronix.de>
  8. *
  9. * Copyright 2014 Linaro, Ltd.
  10. * Rob Herring <robh@kernel.org>
  11. */
  12. #include <common.h>
  13. #include <fastboot.h>
  14. #include <net/fastboot.h>
  15. /**
  16. * fastboot_buf_addr - base address of the fastboot download buffer
  17. */
  18. void *fastboot_buf_addr;
  19. /**
  20. * fastboot_buf_size - size of the fastboot download buffer
  21. */
  22. u32 fastboot_buf_size;
  23. /**
  24. * fastboot_progress_callback - callback executed during long operations
  25. */
  26. void (*fastboot_progress_callback)(const char *msg);
  27. /**
  28. * fastboot_response() - Writes a response of the form "$tag$reason".
  29. *
  30. * @tag: The first part of the response
  31. * @response: Pointer to fastboot response buffer
  32. * @format: printf style format string
  33. */
  34. void fastboot_response(const char *tag, char *response,
  35. const char *format, ...)
  36. {
  37. va_list args;
  38. strlcpy(response, tag, FASTBOOT_RESPONSE_LEN);
  39. if (format) {
  40. va_start(args, format);
  41. vsnprintf(response + strlen(response),
  42. FASTBOOT_RESPONSE_LEN - strlen(response) - 1,
  43. format, args);
  44. va_end(args);
  45. }
  46. }
  47. /**
  48. * fastboot_fail() - Write a FAIL response of the form "FAIL$reason".
  49. *
  50. * @reason: Pointer to returned reason string
  51. * @response: Pointer to fastboot response buffer
  52. */
  53. void fastboot_fail(const char *reason, char *response)
  54. {
  55. fastboot_response("FAIL", response, "%s", reason);
  56. }
  57. /**
  58. * fastboot_okay() - Write an OKAY response of the form "OKAY$reason".
  59. *
  60. * @reason: Pointer to returned reason string, or NULL to send a bare "OKAY"
  61. * @response: Pointer to fastboot response buffer
  62. */
  63. void fastboot_okay(const char *reason, char *response)
  64. {
  65. if (reason)
  66. fastboot_response("OKAY", response, "%s", reason);
  67. else
  68. fastboot_response("OKAY", response, NULL);
  69. }
  70. /**
  71. * fastboot_set_reboot_flag() - Set flag to indicate reboot-bootloader
  72. *
  73. * Set flag which indicates that we should reboot into the bootloader
  74. * following the reboot that fastboot executes after this function.
  75. *
  76. * This function should be overridden in your board file with one
  77. * which sets whatever flag your board specific Android bootloader flow
  78. * requires in order to re-enter the bootloader.
  79. */
  80. int __weak fastboot_set_reboot_flag(void)
  81. {
  82. return -ENOSYS;
  83. }
  84. /**
  85. * fastboot_get_progress_callback() - Return progress callback
  86. *
  87. * Return: Pointer to function called during long operations
  88. */
  89. void (*fastboot_get_progress_callback(void))(const char *)
  90. {
  91. return fastboot_progress_callback;
  92. }
  93. /**
  94. * fastboot_boot() - Execute fastboot boot command
  95. *
  96. * If ${fastboot_bootcmd} is set, run that command to execute the boot
  97. * process, if that returns, then exit the fastboot server and return
  98. * control to the caller.
  99. *
  100. * Otherwise execute "bootm <fastboot_buf_addr>", if that fails, reset
  101. * the board.
  102. */
  103. void fastboot_boot(void)
  104. {
  105. char *s;
  106. s = env_get("fastboot_bootcmd");
  107. if (s) {
  108. run_command(s, CMD_FLAG_ENV);
  109. } else {
  110. static char boot_addr_start[12];
  111. static char *const bootm_args[] = {
  112. "bootm", boot_addr_start, NULL
  113. };
  114. snprintf(boot_addr_start, sizeof(boot_addr_start) - 1,
  115. "0x%p", fastboot_buf_addr);
  116. printf("Booting kernel at %s...\n\n\n", boot_addr_start);
  117. do_bootm(NULL, 0, 2, bootm_args);
  118. /*
  119. * This only happens if image is somehow faulty so we start
  120. * over. We deliberately leave this policy to the invocation
  121. * of fastbootcmd if that's what's being run
  122. */
  123. do_reset(NULL, 0, 0, NULL);
  124. }
  125. }
  126. /**
  127. * fastboot_set_progress_callback() - set progress callback
  128. *
  129. * @progress: Pointer to progress callback
  130. *
  131. * Set a callback which is invoked periodically during long running operations
  132. * (flash and erase). This can be used (for example) by the UDP transport to
  133. * send INFO responses to keep the client alive whilst those commands are
  134. * executing.
  135. */
  136. void fastboot_set_progress_callback(void (*progress)(const char *msg))
  137. {
  138. fastboot_progress_callback = progress;
  139. }
  140. /*
  141. * fastboot_init() - initialise new fastboot protocol session
  142. *
  143. * @buf_addr: Pointer to download buffer, or NULL for default
  144. * @buf_size: Size of download buffer, or zero for default
  145. */
  146. void fastboot_init(void *buf_addr, u32 buf_size)
  147. {
  148. fastboot_buf_addr = buf_addr ? buf_addr :
  149. (void *)CONFIG_FASTBOOT_BUF_ADDR;
  150. fastboot_buf_size = buf_size ? buf_size : CONFIG_FASTBOOT_BUF_SIZE;
  151. fastboot_set_progress_callback(NULL);
  152. }