bootstage.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  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. /* Flags for each bootstage record */
  32. enum bootstage_flags {
  33. BOOTSTAGEF_ERROR = 1 << 0, /* Error record */
  34. BOOTSTAGEF_ALLOC = 1 << 1, /* Allocate an id */
  35. };
  36. /* bootstate sub-IDs used for kernel and ramdisk ranges */
  37. enum {
  38. BOOTSTAGE_SUB_FORMAT,
  39. BOOTSTAGE_SUB_FORMAT_OK,
  40. BOOTSTAGE_SUB_NO_UNIT_NAME,
  41. BOOTSTAGE_SUB_UNIT_NAME,
  42. BOOTSTAGE_SUB_SUBNODE,
  43. BOOTSTAGE_SUB_CHECK,
  44. BOOTSTAGE_SUB_HASH = 5,
  45. BOOTSTAGE_SUB_CHECK_ARCH = 5,
  46. BOOTSTAGE_SUB_CHECK_ALL,
  47. BOOTSTAGE_SUB_GET_DATA,
  48. BOOTSTAGE_SUB_CHECK_ALL_OK = 7,
  49. BOOTSTAGE_SUB_GET_DATA_OK,
  50. BOOTSTAGE_SUB_LOAD,
  51. };
  52. /*
  53. * A list of boot stages that we know about. Each of these indicates the
  54. * state that we are at, and the action that we are about to perform. For
  55. * errors, we issue an error for an item when it fails. Therefore the
  56. * normal sequence is:
  57. *
  58. * progress action1
  59. * progress action2
  60. * progress action3
  61. *
  62. * and an error condition where action 3 failed would be:
  63. *
  64. * progress action1
  65. * progress action2
  66. * progress action3
  67. * error on action3
  68. */
  69. enum bootstage_id {
  70. BOOTSTAGE_ID_START = 0,
  71. BOOTSTAGE_ID_CHECK_MAGIC, /* Checking image magic */
  72. BOOTSTAGE_ID_CHECK_HEADER, /* Checking image header */
  73. BOOTSTAGE_ID_CHECK_CHECKSUM, /* Checking image checksum */
  74. BOOTSTAGE_ID_CHECK_ARCH, /* Checking architecture */
  75. BOOTSTAGE_ID_CHECK_IMAGETYPE = 5,/* Checking image type */
  76. BOOTSTAGE_ID_DECOMP_IMAGE, /* Decompressing image */
  77. BOOTSTAGE_ID_KERNEL_LOADED, /* Kernel has been loaded */
  78. BOOTSTAGE_ID_DECOMP_UNIMPL = 7, /* Odd decompression algorithm */
  79. BOOTSTAGE_ID_CHECK_BOOT_OS, /* Calling OS-specific boot function */
  80. BOOTSTAGE_ID_BOOT_OS_RETURNED, /* Tried to boot OS, but it returned */
  81. BOOTSTAGE_ID_CHECK_RAMDISK = 9, /* Checking ram disk */
  82. BOOTSTAGE_ID_RD_MAGIC, /* Checking ram disk magic */
  83. BOOTSTAGE_ID_RD_HDR_CHECKSUM, /* Checking ram disk heder checksum */
  84. BOOTSTAGE_ID_RD_CHECKSUM, /* Checking ram disk checksum */
  85. BOOTSTAGE_ID_COPY_RAMDISK = 12, /* Copying ram disk into place */
  86. BOOTSTAGE_ID_RAMDISK, /* Checking for valid ramdisk */
  87. BOOTSTAGE_ID_NO_RAMDISK, /* No ram disk found (not an error) */
  88. BOOTSTAGE_ID_RUN_OS = 15, /* Exiting U-Boot, entering OS */
  89. BOOTSTAGE_ID_NEED_RESET = 30,
  90. BOOTSTAGE_ID_POST_FAIL, /* Post failure */
  91. BOOTSTAGE_ID_POST_FAIL_R, /* Post failure reported after reloc */
  92. /*
  93. * This set is reported ony by x86, and the meaning is different. In
  94. * this case we are reporting completion of a particular stage.
  95. * This should probably change in he x86 code (which doesn't report
  96. * errors in any case), but discussion this can perhaps wait until we
  97. * have a generic board implementation.
  98. */
  99. BOOTSTAGE_ID_BOARD_INIT_R, /* We have relocated */
  100. BOOTSTAGE_ID_BOARD_GLOBAL_DATA, /* Global data is set up */
  101. BOOTSTAGE_ID_BOARD_INIT_SEQ, /* We completed the init sequence */
  102. BOOTSTAGE_ID_BOARD_FLASH, /* We have configured flash banks */
  103. BOOTSTAGE_ID_BOARD_FLASH_37, /* In case you didn't hear... */
  104. BOOTSTAGE_ID_BOARD_ENV, /* Environment is relocated & ready */
  105. BOOTSTAGE_ID_BOARD_PCI, /* PCI is up */
  106. BOOTSTAGE_ID_BOARD_INTERRUPTS, /* Exceptions / interrupts ready */
  107. BOOTSTAGE_ID_BOARD_DONE, /* Board init done, off to main loop */
  108. /* ^^^ here ends the x86 sequence */
  109. /* Boot stages related to loading a kernel from an IDE device */
  110. BOOTSTAGE_ID_IDE_START = 41,
  111. BOOTSTAGE_ID_IDE_ADDR,
  112. BOOTSTAGE_ID_IDE_BOOT_DEVICE,
  113. BOOTSTAGE_ID_IDE_TYPE,
  114. BOOTSTAGE_ID_IDE_PART,
  115. BOOTSTAGE_ID_IDE_PART_INFO,
  116. BOOTSTAGE_ID_IDE_PART_TYPE,
  117. BOOTSTAGE_ID_IDE_PART_READ,
  118. BOOTSTAGE_ID_IDE_FORMAT,
  119. BOOTSTAGE_ID_IDE_CHECKSUM, /* 50 */
  120. BOOTSTAGE_ID_IDE_READ,
  121. /* Boot stages related to loading a kernel from an NAND device */
  122. BOOTSTAGE_ID_NAND_PART,
  123. BOOTSTAGE_ID_NAND_SUFFIX,
  124. BOOTSTAGE_ID_NAND_BOOT_DEVICE,
  125. BOOTSTAGE_ID_NAND_HDR_READ = 55,
  126. BOOTSTAGE_ID_NAND_AVAILABLE = 55,
  127. BOOTSTAGE_ID_NAND_TYPE = 57,
  128. BOOTSTAGE_ID_NAND_READ,
  129. /* Boot stages related to loading a kernel from an network device */
  130. BOOTSTAGE_ID_NET_CHECKSUM = 60,
  131. BOOTSTAGE_ID_NET_ETH_START = 64,
  132. BOOTSTAGE_ID_NET_ETH_INIT,
  133. BOOTSTAGE_ID_NET_START = 80,
  134. BOOTSTAGE_ID_NET_NETLOOP_OK,
  135. BOOTSTAGE_ID_NET_LOADED,
  136. BOOTSTAGE_ID_NET_DONE_ERR,
  137. BOOTSTAGE_ID_NET_DONE,
  138. BOOTSTAGE_ID_FIT_FDT_START = 90,
  139. /*
  140. * Boot stages related to loading a FIT image. Some of these are a
  141. * bit wonky.
  142. */
  143. BOOTSTAGE_ID_FIT_KERNEL_START = 100,
  144. BOOTSTAGE_ID_FIT_FORMAT = 100,
  145. BOOTSTAGE_ID_FIT_NO_UNIT_NAME,
  146. BOOTSTAGE_ID_FIT_UNIT_NAME,
  147. BOOTSTAGE_ID_FIT_CONFIG,
  148. BOOTSTAGE_ID_FIT_CHECK_SUBIMAGE,
  149. BOOTSTAGE_ID_FIT_CHECK_HASH = 104,
  150. BOOTSTAGE_ID_FIT_CHECK_ARCH,
  151. BOOTSTAGE_ID_FIT_CHECK_KERNEL,
  152. BOOTSTAGE_ID_FIT_CHECKED,
  153. BOOTSTAGE_ID_FIT_KERNEL_INFO_ERR = 107,
  154. BOOTSTAGE_ID_FIT_KERNEL_INFO,
  155. BOOTSTAGE_ID_FIT_TYPE,
  156. BOOTSTAGE_ID_FIT_COMPRESSION,
  157. BOOTSTAGE_ID_FIT_OS,
  158. BOOTSTAGE_ID_FIT_LOADADDR,
  159. BOOTSTAGE_ID_OVERWRITTEN,
  160. /* Next 10 IDs used by BOOTSTAGE_SUB_... */
  161. BOOTSTAGE_ID_FIT_RD_START = 120, /* Ramdisk stages */
  162. BOOTSTAGE_ID_FIT_RD_FORMAT = 120,
  163. BOOTSTAGE_ID_FIT_RD_FORMAT_OK,
  164. BOOTSTAGE_ID_FIT_RD_NO_UNIT_NAME,
  165. BOOTSTAGE_ID_FIT_RD_UNIT_NAME,
  166. BOOTSTAGE_ID_FIT_RD_SUBNODE,
  167. BOOTSTAGE_ID_FIT_RD_CHECK,
  168. BOOTSTAGE_ID_FIT_RD_HASH = 125,
  169. BOOTSTAGE_ID_FIT_RD_CHECK_ALL,
  170. BOOTSTAGE_ID_FIT_RD_GET_DATA,
  171. BOOTSTAGE_ID_FIT_RD_CHECK_ALL_OK = 127,
  172. BOOTSTAGE_ID_FIT_RD_GET_DATA_OK,
  173. BOOTSTAGE_ID_FIT_RD_LOAD,
  174. BOOTSTAGE_ID_IDE_FIT_READ = 140,
  175. BOOTSTAGE_ID_IDE_FIT_READ_OK,
  176. BOOTSTAGE_ID_NAND_FIT_READ = 150,
  177. BOOTSTAGE_ID_NAND_FIT_READ_OK,
  178. /*
  179. * These boot stages are new, higher level, and not directly related
  180. * to the old boot progress numbers. They are useful for recording
  181. * rough boot timing information.
  182. */
  183. BOOTSTAGE_ID_AWAKE,
  184. BOOTSTAGE_ID_START_SPL,
  185. BOOTSTAGE_ID_START_UBOOT_F,
  186. BOOTSTAGE_ID_START_UBOOT_R,
  187. BOOTSTAGE_ID_USB_START,
  188. BOOTSTAGE_ID_ETH_START,
  189. BOOTSTAGE_ID_BOOTP_START,
  190. BOOTSTAGE_ID_BOOTP_STOP,
  191. BOOTSTAGE_ID_BOOTM_START,
  192. BOOTSTAGE_ID_BOOTM_HANDOFF,
  193. BOOTSTAGE_ID_MAIN_LOOP,
  194. BOOTSTAGE_KERNELREAD_START,
  195. BOOTSTAGE_KERNELREAD_STOP,
  196. BOOTSTAGE_ID_BOARD_INIT,
  197. BOOTSTAGE_ID_BOARD_INIT_DONE,
  198. BOOTSTAGE_ID_CPU_AWAKE,
  199. BOOTSTAGE_ID_MAIN_CPU_AWAKE,
  200. BOOTSTAGE_ID_MAIN_CPU_READY,
  201. BOOTSTAGE_ID_ACCUM_LCD,
  202. /* a few spare for the user, from here */
  203. BOOTSTAGE_ID_USER,
  204. BOOTSTAGE_ID_COUNT = BOOTSTAGE_ID_USER + CONFIG_BOOTSTAGE_USER_COUNT,
  205. BOOTSTAGE_ID_ALLOC,
  206. };
  207. /*
  208. * Return the time since boot in microseconds, This is needed for bootstage
  209. * and should be defined in CPU- or board-specific code. If undefined then
  210. * millisecond resolution will be used (the standard get_timer()).
  211. */
  212. ulong timer_get_boot_us(void);
  213. #if !defined(CONFIG_SPL_BUILD) && !defined(USE_HOSTCC)
  214. /*
  215. * Board code can implement show_boot_progress() if needed.
  216. *
  217. * @param val Progress state (enum bootstage_id), or -id if an error
  218. * has occurred.
  219. */
  220. void show_boot_progress(int val);
  221. #else
  222. #define show_boot_progress(val) do {} while (0)
  223. #endif
  224. #if defined(CONFIG_BOOTSTAGE) && !defined(CONFIG_SPL_BUILD) && \
  225. !defined(USE_HOSTCC)
  226. /* This is the full bootstage implementation */
  227. /**
  228. * Relocate existing bootstage records
  229. *
  230. * Call this after relocation has happened and after malloc has been initted.
  231. * We need to copy any pointers in bootstage records that were added pre-
  232. * relocation, since memory can be overritten later.
  233. * @return Always returns 0, to indicate success
  234. */
  235. int bootstage_relocate(void);
  236. /**
  237. * Add a new bootstage record
  238. *
  239. * @param id Bootstage ID to use (ignored if flags & BOOTSTAGEF_ALLOC)
  240. * @param name Name of record, or NULL for none
  241. * @param flags Flags (BOOTSTAGEF_...)
  242. * @param mark Time to record in this record, in microseconds
  243. */
  244. ulong bootstage_add_record(enum bootstage_id id, const char *name,
  245. int flags, ulong mark);
  246. /*
  247. * Mark a time stamp for the current boot stage.
  248. */
  249. ulong bootstage_mark(enum bootstage_id id);
  250. ulong bootstage_error(enum bootstage_id id);
  251. ulong bootstage_mark_name(enum bootstage_id id, const char *name);
  252. /**
  253. * Mark a time stamp in the given function and line number
  254. *
  255. * See BOOTSTAGE_MARKER() for a convenient macro.
  256. *
  257. * @param file Filename to record (NULL if none)
  258. * @param func Function name to record
  259. * @param linenum Line number to record
  260. * @return recorded time stamp
  261. */
  262. ulong bootstage_mark_code(const char *file, const char *func,
  263. int linenum);
  264. /**
  265. * Mark the start of a bootstage activity. The end will be marked later with
  266. * bootstage_accum() and at that point we accumulate the time taken. Calling
  267. * this function turns the given id into a accumulator rather than and
  268. * absolute mark in time. Accumulators record the total amount of time spent
  269. * in an activty during boot.
  270. *
  271. * @param id Bootstage id to record this timestamp against
  272. * @param name Textual name to display for this id in the report (maybe NULL)
  273. * @return start timestamp in microseconds
  274. */
  275. uint32_t bootstage_start(enum bootstage_id id, const char *name);
  276. /**
  277. * Mark the end of a bootstage activity
  278. *
  279. * After previously marking the start of an activity with bootstage_start(),
  280. * call this function to mark the end. You can call these functions in pairs
  281. * as many times as you like.
  282. *
  283. * @param id Bootstage id to record this timestamp against
  284. * @return time spent in this iteration of the activity (i.e. the time now
  285. * less the start time recorded in the last bootstage_start() call
  286. * with this id.
  287. */
  288. uint32_t bootstage_accum(enum bootstage_id id);
  289. /* Print a report about boot time */
  290. void bootstage_report(void);
  291. /**
  292. * Add bootstage information to the device tree
  293. *
  294. * @return 0 if ok, -ve on error
  295. */
  296. int bootstage_fdt_add_report(void);
  297. /*
  298. * Stash bootstage data into memory
  299. *
  300. * @param base Base address of memory buffer
  301. * @param size Size of memory buffer
  302. * @return 0 if stashed ok, -1 if out of space
  303. */
  304. int bootstage_stash(void *base, int size);
  305. /**
  306. * Read bootstage data from memory
  307. *
  308. * Bootstage data is read from memory and placed in the bootstage table
  309. * in the user records.
  310. *
  311. * @param base Base address of memory buffer
  312. * @param size Size of memory buffer (-1 if unknown)
  313. * @return 0 if unstashed ok, -1 if bootstage info not found, or out of space
  314. */
  315. int bootstage_unstash(void *base, int size);
  316. #else
  317. static inline ulong bootstage_add_record(enum bootstage_id id,
  318. const char *name, int flags, ulong mark)
  319. {
  320. return 0;
  321. }
  322. /*
  323. * This is a dummy implementation which just calls show_boot_progress(),
  324. * and won't even do that unless CONFIG_SHOW_BOOT_PROGRESS is defined
  325. */
  326. static inline int bootstage_relocate(void)
  327. {
  328. return 0;
  329. }
  330. static inline ulong bootstage_mark(enum bootstage_id id)
  331. {
  332. show_boot_progress(id);
  333. return 0;
  334. }
  335. static inline ulong bootstage_error(enum bootstage_id id)
  336. {
  337. show_boot_progress(-id);
  338. return 0;
  339. }
  340. static inline ulong bootstage_mark_name(enum bootstage_id id, const char *name)
  341. {
  342. return 0;
  343. }
  344. static inline ulong bootstage_mark_code(const char *file, const char *func,
  345. int linenum)
  346. {
  347. return 0;
  348. }
  349. static inline uint32_t bootstage_start(enum bootstage_id id, const char *name)
  350. {
  351. return 0;
  352. }
  353. static inline uint32_t bootstage_accum(enum bootstage_id id)
  354. {
  355. return 0;
  356. }
  357. static inline int bootstage_stash(void *base, int size)
  358. {
  359. return 0; /* Pretend to succeed */
  360. }
  361. static inline int bootstage_unstash(void *base, int size)
  362. {
  363. return 0; /* Pretend to succeed */
  364. }
  365. #endif /* CONFIG_BOOTSTAGE */
  366. /* Helper macro for adding a bootstage to a line of code */
  367. #define BOOTSTAGE_MARKER() \
  368. bootstage_mark_code(__FILE__, __func__, __LINE__)
  369. #endif