bootstage.h 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. /*
  2. * This file implements recording of each stage of the boot process. It is
  3. * intended to implement timing of each stage, reporting this information
  4. * to the user and passing it to the OS for logging / further analysis.
  5. *
  6. * Copyright (c) 2011 The Chromium OS Authors.
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #ifndef _BOOTSTAGE_H
  26. #define _BOOTSTAGE_H
  27. /* The number of boot stage records available for the user */
  28. #ifndef CONFIG_BOOTSTAGE_USER_COUNT
  29. #define CONFIG_BOOTSTAGE_USER_COUNT 20
  30. #endif
  31. /*
  32. * A list of boot stages that we know about. Each of these indicates the
  33. * state that we are at, and the action that we are about to perform. For
  34. * errors, we issue an error for an item when it fails. Therefore the
  35. * normal sequence is:
  36. *
  37. * progress action1
  38. * progress action2
  39. * progress action3
  40. *
  41. * and an error condition where action 3 failed would be:
  42. *
  43. * progress action1
  44. * progress action2
  45. * progress action3
  46. * error on action3
  47. */
  48. enum bootstage_id {
  49. BOOTSTAGE_ID_START = 0,
  50. BOOTSTAGE_ID_CHECK_MAGIC, /* Checking image magic */
  51. BOOTSTAGE_ID_CHECK_HEADER, /* Checking image header */
  52. BOOTSTAGE_ID_CHECK_CHECKSUM, /* Checking image checksum */
  53. BOOTSTAGE_ID_CHECK_ARCH, /* Checking architecture */
  54. BOOTSTAGE_ID_CHECK_IMAGETYPE = 5,/* Checking image type */
  55. BOOTSTAGE_ID_DECOMP_IMAGE, /* Decompressing image */
  56. BOOTSTAGE_ID_KERNEL_LOADED, /* Kernel has been loaded */
  57. BOOTSTAGE_ID_DECOMP_UNIMPL = 7, /* Odd decompression algorithm */
  58. BOOTSTAGE_ID_CHECK_BOOT_OS, /* Calling OS-specific boot function */
  59. BOOTSTAGE_ID_BOOT_OS_RETURNED, /* Tried to boot OS, but it returned */
  60. BOOTSTAGE_ID_CHECK_RAMDISK = 9, /* Checking ram disk */
  61. BOOTSTAGE_ID_RD_MAGIC, /* Checking ram disk magic */
  62. BOOTSTAGE_ID_RD_HDR_CHECKSUM, /* Checking ram disk heder checksum */
  63. BOOTSTAGE_ID_RD_CHECKSUM, /* Checking ram disk checksum */
  64. BOOTSTAGE_ID_COPY_RAMDISK = 12, /* Copying ram disk into place */
  65. BOOTSTAGE_ID_RAMDISK, /* Checking for valid ramdisk */
  66. BOOTSTAGE_ID_NO_RAMDISK, /* No ram disk found (not an error) */
  67. BOOTSTAGE_ID_RUN_OS = 15, /* Exiting U-Boot, entering OS */
  68. BOOTSTAGE_ID_NEED_RESET = 30,
  69. BOOTSTAGE_ID_POST_FAIL, /* Post failure */
  70. BOOTSTAGE_ID_POST_FAIL_R, /* Post failure reported after reloc */
  71. /*
  72. * This set is reported ony by x86, and the meaning is different. In
  73. * this case we are reporting completion of a particular stage.
  74. * This should probably change in he x86 code (which doesn't report
  75. * errors in any case), but discussion this can perhaps wait until we
  76. * have a generic board implementation.
  77. */
  78. BOOTSTAGE_ID_BOARD_INIT_R, /* We have relocated */
  79. BOOTSTAGE_ID_BOARD_GLOBAL_DATA, /* Global data is set up */
  80. BOOTSTAGE_ID_BOARD_INIT_SEQ, /* We completed the init sequence */
  81. BOOTSTAGE_ID_BOARD_FLASH, /* We have configured flash banks */
  82. BOOTSTAGE_ID_BOARD_FLASH_37, /* In case you didn't hear... */
  83. BOOTSTAGE_ID_BOARD_ENV, /* Environment is relocated & ready */
  84. BOOTSTAGE_ID_BOARD_PCI, /* PCI is up */
  85. BOOTSTAGE_ID_BOARD_INTERRUPTS, /* Exceptions / interrupts ready */
  86. BOOTSTAGE_ID_BOARD_DONE, /* Board init done, off to main loop */
  87. /* ^^^ here ends the x86 sequence */
  88. /* Boot stages related to loading a kernel from an IDE device */
  89. BOOTSTAGE_ID_IDE_START = 41,
  90. BOOTSTAGE_ID_IDE_ADDR,
  91. BOOTSTAGE_ID_IDE_BOOT_DEVICE,
  92. BOOTSTAGE_ID_IDE_TYPE,
  93. BOOTSTAGE_ID_IDE_PART,
  94. BOOTSTAGE_ID_IDE_PART_INFO,
  95. BOOTSTAGE_ID_IDE_PART_TYPE,
  96. BOOTSTAGE_ID_IDE_PART_READ,
  97. BOOTSTAGE_ID_IDE_FORMAT,
  98. BOOTSTAGE_ID_IDE_CHECKSUM, /* 50 */
  99. BOOTSTAGE_ID_IDE_READ,
  100. /* Boot stages related to loading a kernel from an NAND device */
  101. BOOTSTAGE_ID_NAND_PART,
  102. BOOTSTAGE_ID_NAND_SUFFIX,
  103. BOOTSTAGE_ID_NAND_BOOT_DEVICE,
  104. BOOTSTAGE_ID_NAND_HDR_READ = 55,
  105. BOOTSTAGE_ID_NAND_AVAILABLE = 55,
  106. BOOTSTAGE_ID_NAND_TYPE = 57,
  107. BOOTSTAGE_ID_NAND_READ,
  108. /* Boot stages related to loading a kernel from an network device */
  109. BOOTSTAGE_ID_NET_CHECKSUM = 60,
  110. BOOTSTAGE_ID_NET_ETH_START = 64,
  111. BOOTSTAGE_ID_NET_ETH_INIT,
  112. BOOTSTAGE_ID_NET_START = 80,
  113. BOOTSTAGE_ID_NET_NETLOOP_OK,
  114. BOOTSTAGE_ID_NET_LOADED,
  115. BOOTSTAGE_ID_NET_DONE_ERR,
  116. BOOTSTAGE_ID_NET_DONE,
  117. /*
  118. * Boot stages related to loading a FIT image. Some of these are a
  119. * bit wonky.
  120. */
  121. BOOTSTAGE_ID_FIT_FORMAT = 100,
  122. BOOTSTAGE_ID_FIT_NO_UNIT_NAME,
  123. BOOTSTAGE_ID_FIT_UNIT_NAME,
  124. BOOTSTAGE_ID_FIT_CONFIG,
  125. BOOTSTAGE_ID_FIT_CHECK_SUBIMAGE,
  126. BOOTSTAGE_ID_FIT_CHECK_HASH = 104,
  127. BOOTSTAGE_ID_FIT_CHECK_ARCH,
  128. BOOTSTAGE_ID_FIT_CHECK_KERNEL,
  129. BOOTSTAGE_ID_FIT_CHECKED,
  130. BOOTSTAGE_ID_FIT_KERNEL_INFO_ERR = 107,
  131. BOOTSTAGE_ID_FIT_KERNEL_INFO,
  132. BOOTSTAGE_ID_FIT_TYPE,
  133. BOOTSTAGE_ID_FIT_COMPRESSION,
  134. BOOTSTAGE_ID_FIT_OS,
  135. BOOTSTAGE_ID_FIT_LOADADDR,
  136. BOOTSTAGE_ID_OVERWRITTEN,
  137. BOOTSTAGE_ID_FIT_RD_FORMAT = 120,
  138. BOOTSTAGE_ID_FIT_RD_FORMAT_OK,
  139. BOOTSTAGE_ID_FIT_RD_NO_UNIT_NAME,
  140. BOOTSTAGE_ID_FIT_RD_UNIT_NAME,
  141. BOOTSTAGE_ID_FIT_RD_SUBNODE,
  142. BOOTSTAGE_ID_FIT_RD_CHECK,
  143. BOOTSTAGE_ID_FIT_RD_HASH = 125,
  144. BOOTSTAGE_ID_FIT_RD_CHECK_ALL,
  145. BOOTSTAGE_ID_FIT_RD_GET_DATA,
  146. BOOTSTAGE_ID_FIT_RD_CHECK_ALL_OK = 127,
  147. BOOTSTAGE_ID_FIT_RD_GET_DATA_OK,
  148. BOOTSTAGE_ID_FIT_RD_LOAD,
  149. BOOTSTAGE_ID_IDE_FIT_READ = 140,
  150. BOOTSTAGE_ID_IDE_FIT_READ_OK,
  151. BOOTSTAGE_ID_NAND_FIT_READ = 150,
  152. BOOTSTAGE_ID_NAND_FIT_READ_OK,
  153. /*
  154. * These boot stages are new, higher level, and not directly related
  155. * to the old boot progress numbers. They are useful for recording
  156. * rough boot timing information.
  157. */
  158. BOOTSTAGE_ID_AWAKE,
  159. BOOTSTAGE_ID_START_UBOOT_F,
  160. BOOTSTAGE_ID_START_UBOOT_R,
  161. BOOTSTAGE_ID_USB_START,
  162. BOOTSTAGE_ID_ETH_START,
  163. BOOTSTAGE_ID_BOOTP_START,
  164. BOOTSTAGE_ID_BOOTP_STOP,
  165. BOOTSTAGE_ID_BOOTM_START,
  166. BOOTSTAGE_ID_BOOTM_HANDOFF,
  167. BOOTSTAGE_ID_MAIN_LOOP,
  168. BOOTSTAGE_KERNELREAD_START,
  169. BOOTSTAGE_KERNELREAD_STOP,
  170. BOOTSTAGE_ID_CPU_AWAKE,
  171. BOOTSTAGE_ID_MAIN_CPU_AWAKE,
  172. BOOTSTAGE_ID_MAIN_CPU_READY,
  173. /* a few spare for the user, from here */
  174. BOOTSTAGE_ID_USER,
  175. BOOTSTAGE_ID_COUNT = BOOTSTAGE_ID_USER + CONFIG_BOOTSTAGE_USER_COUNT,
  176. BOOTSTAGE_ID_ALLOC,
  177. };
  178. /*
  179. * Return the time since boot in microseconds, This is needed for bootstage
  180. * and should be defined in CPU- or board-specific code. If undefined then
  181. * millisecond resolution will be used (the standard get_timer()).
  182. */
  183. ulong timer_get_boot_us(void);
  184. #ifndef CONFIG_SPL_BUILD
  185. /*
  186. * Board code can implement show_boot_progress() if needed.
  187. *
  188. * @param val Progress state (enum bootstage_id), or -id if an error
  189. * has occurred.
  190. */
  191. void show_boot_progress(int val);
  192. #else
  193. #define show_boot_progress(val) do {} while (0)
  194. #endif
  195. #if defined(CONFIG_BOOTSTAGE) && !defined(CONFIG_SPL_BUILD)
  196. /* This is the full bootstage implementation */
  197. /*
  198. * Mark a time stamp for the current boot stage.
  199. */
  200. ulong bootstage_mark(enum bootstage_id id);
  201. ulong bootstage_error(enum bootstage_id id);
  202. ulong bootstage_mark_name(enum bootstage_id id, const char *name);
  203. /* Print a report about boot time */
  204. void bootstage_report(void);
  205. #else
  206. /*
  207. * This is a dummy implementation which just calls show_boot_progress(),
  208. * and won't even do that unless CONFIG_SHOW_BOOT_PROGRESS is defined
  209. */
  210. static inline ulong bootstage_mark(enum bootstage_id id)
  211. {
  212. show_boot_progress(id);
  213. return 0;
  214. }
  215. static inline ulong bootstage_error(enum bootstage_id id)
  216. {
  217. show_boot_progress(-id);
  218. return 0;
  219. }
  220. static inline ulong bootstage_mark_name(enum bootstage_id id, const char *name)
  221. {
  222. return 0;
  223. }
  224. #endif /* CONFIG_BOOTSTAGE */
  225. #endif