]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
3a608ca0 SG |
2 | /* |
3 | * Copyright (c) 2011, Google Inc. All rights reserved. | |
3a608ca0 SG |
4 | */ |
5 | ||
6 | ||
7 | /* | |
8 | * This module records the progress of boot and arbitrary commands, and | |
9 | * permits accurate timestamping of each. | |
3a608ca0 SG |
10 | */ |
11 | ||
eb26d88d SG |
12 | #define LOG_CATEGORY LOGC_BOOT |
13 | ||
3a608ca0 | 14 | #include <common.h> |
52f24238 | 15 | #include <bootstage.h> |
db41d65a | 16 | #include <hang.h> |
f7ae49fc | 17 | #include <log.h> |
fb7db41c | 18 | #include <malloc.h> |
8bef79bf | 19 | #include <sort.h> |
65b2d96f | 20 | #include <spl.h> |
401d1c4f | 21 | #include <asm/global_data.h> |
fb7db41c | 22 | #include <linux/compiler.h> |
65b2d96f | 23 | #include <linux/libfdt.h> |
3a608ca0 SG |
24 | |
25 | DECLARE_GLOBAL_DATA_PTR; | |
26 | ||
03ecac31 | 27 | enum { |
d69bb0ec | 28 | RECORD_COUNT = CONFIG_VAL(BOOTSTAGE_RECORD_COUNT), |
03ecac31 SG |
29 | }; |
30 | ||
3a608ca0 SG |
31 | struct bootstage_record { |
32 | ulong time_us; | |
094e06a5 | 33 | uint32_t start_us; |
3a608ca0 SG |
34 | const char *name; |
35 | int flags; /* see enum bootstage_flags */ | |
36 | enum bootstage_id id; | |
37 | }; | |
38 | ||
b383d6c0 | 39 | struct bootstage_data { |
03ecac31 | 40 | uint rec_count; |
b383d6c0 | 41 | uint next_id; |
03ecac31 | 42 | struct bootstage_record record[RECORD_COUNT]; |
b383d6c0 | 43 | }; |
3a608ca0 | 44 | |
fcf509b8 SG |
45 | enum { |
46 | BOOTSTAGE_VERSION = 0, | |
47 | BOOTSTAGE_MAGIC = 0xb00757a3, | |
b8bcaa3a | 48 | BOOTSTAGE_DIGITS = 9, |
fcf509b8 SG |
49 | }; |
50 | ||
51 | struct bootstage_hdr { | |
53a4f253 SG |
52 | u32 version; /* BOOTSTAGE_VERSION */ |
53 | u32 count; /* Number of records */ | |
54 | u32 size; /* Total data size (non-zero if valid) */ | |
55 | u32 magic; /* Magic number */ | |
56 | u32 next_id; /* Next ID to use for bootstage */ | |
fcf509b8 SG |
57 | }; |
58 | ||
150678a5 DA |
59 | int bootstage_relocate(void) |
60 | { | |
b383d6c0 | 61 | struct bootstage_data *data = gd->bootstage; |
150678a5 | 62 | int i; |
ac9cd480 SG |
63 | char *ptr; |
64 | ||
65 | /* Figure out where to relocate the strings to */ | |
66 | ptr = (char *)(data + 1); | |
150678a5 DA |
67 | |
68 | /* | |
69 | * Duplicate all strings. They may point to an old location in the | |
70 | * program .text section that can eventually get trashed. | |
71 | */ | |
03ecac31 | 72 | debug("Relocating %d records\n", data->rec_count); |
ac9cd480 SG |
73 | for (i = 0; i < data->rec_count; i++) { |
74 | const char *from = data->record[i].name; | |
75 | ||
76 | strcpy(ptr, from); | |
77 | data->record[i].name = ptr; | |
78 | ptr += strlen(ptr) + 1; | |
79 | } | |
150678a5 DA |
80 | |
81 | return 0; | |
82 | } | |
83 | ||
03ecac31 SG |
84 | struct bootstage_record *find_id(struct bootstage_data *data, |
85 | enum bootstage_id id) | |
86 | { | |
87 | struct bootstage_record *rec; | |
88 | struct bootstage_record *end; | |
89 | ||
90 | for (rec = data->record, end = rec + data->rec_count; rec < end; | |
91 | rec++) { | |
92 | if (rec->id == id) | |
93 | return rec; | |
94 | } | |
95 | ||
96 | return NULL; | |
97 | } | |
98 | ||
99 | struct bootstage_record *ensure_id(struct bootstage_data *data, | |
100 | enum bootstage_id id) | |
101 | { | |
102 | struct bootstage_record *rec; | |
103 | ||
104 | rec = find_id(data, id); | |
105 | if (!rec && data->rec_count < RECORD_COUNT) { | |
106 | rec = &data->record[data->rec_count++]; | |
107 | rec->id = id; | |
108 | return rec; | |
109 | } | |
110 | ||
111 | return rec; | |
112 | } | |
113 | ||
3a608ca0 | 114 | ulong bootstage_add_record(enum bootstage_id id, const char *name, |
094e06a5 | 115 | int flags, ulong mark) |
3a608ca0 | 116 | { |
b383d6c0 | 117 | struct bootstage_data *data = gd->bootstage; |
3a608ca0 | 118 | struct bootstage_record *rec; |
3a608ca0 | 119 | |
17357725 SG |
120 | /* |
121 | * initf_bootstage() is called very early during boot but since hang() | |
122 | * calls bootstage_error() we can be called before bootstage is set up. | |
123 | * Add a check to avoid this. | |
124 | */ | |
125 | if (!data) | |
126 | return mark; | |
3a608ca0 | 127 | if (flags & BOOTSTAGEF_ALLOC) |
b383d6c0 | 128 | id = data->next_id++; |
3a608ca0 | 129 | |
03ecac31 SG |
130 | /* Only record the first event for each */ |
131 | rec = find_id(data, id); | |
eb26d88d SG |
132 | if (!rec) { |
133 | if (data->rec_count < RECORD_COUNT) { | |
134 | rec = &data->record[data->rec_count++]; | |
135 | rec->time_us = mark; | |
136 | rec->name = name; | |
137 | rec->flags = flags; | |
138 | rec->id = id; | |
139 | } else { | |
140 | log_warning("Bootstage space exhasuted\n"); | |
141 | } | |
3a608ca0 SG |
142 | } |
143 | ||
144 | /* Tell the board about this progress */ | |
145 | show_boot_progress(flags & BOOTSTAGEF_ERROR ? -id : id); | |
cbcd6970 | 146 | |
3a608ca0 SG |
147 | return mark; |
148 | } | |
149 | ||
55bc2276 | 150 | ulong bootstage_error_name(enum bootstage_id id, const char *name) |
3a608ca0 | 151 | { |
55bc2276 | 152 | return bootstage_add_record(id, name, BOOTSTAGEF_ERROR, |
094e06a5 | 153 | timer_get_boot_us()); |
3a608ca0 SG |
154 | } |
155 | ||
156 | ulong bootstage_mark_name(enum bootstage_id id, const char *name) | |
157 | { | |
158 | int flags = 0; | |
159 | ||
160 | if (id == BOOTSTAGE_ID_ALLOC) | |
161 | flags = BOOTSTAGEF_ALLOC; | |
cbcd6970 | 162 | |
094e06a5 | 163 | return bootstage_add_record(id, name, flags, timer_get_boot_us()); |
3a608ca0 SG |
164 | } |
165 | ||
fb7db41c SG |
166 | ulong bootstage_mark_code(const char *file, const char *func, int linenum) |
167 | { | |
168 | char *str, *p; | |
169 | __maybe_unused char *end; | |
170 | int len = 0; | |
171 | ||
172 | /* First work out the length we need to allocate */ | |
173 | if (linenum != -1) | |
174 | len = 11; | |
175 | if (func) | |
176 | len += strlen(func); | |
177 | if (file) | |
178 | len += strlen(file); | |
179 | ||
180 | str = malloc(len + 1); | |
181 | p = str; | |
182 | end = p + len; | |
183 | if (file) | |
184 | p += snprintf(p, end - p, "%s,", file); | |
185 | if (linenum != -1) | |
186 | p += snprintf(p, end - p, "%d", linenum); | |
187 | if (func) | |
188 | p += snprintf(p, end - p, ": %s", func); | |
189 | ||
190 | return bootstage_mark_name(BOOTSTAGE_ID_ALLOC, str); | |
191 | } | |
192 | ||
0e996773 SG |
193 | uint32_t bootstage_start(enum bootstage_id id, const char *name) |
194 | { | |
b383d6c0 | 195 | struct bootstage_data *data = gd->bootstage; |
03ecac31 SG |
196 | struct bootstage_record *rec = ensure_id(data, id); |
197 | ulong start_us = timer_get_boot_us(); | |
0e996773 | 198 | |
03ecac31 SG |
199 | if (rec) { |
200 | rec->start_us = start_us; | |
201 | rec->name = name; | |
202 | } | |
cbcd6970 | 203 | |
03ecac31 | 204 | return start_us; |
0e996773 SG |
205 | } |
206 | ||
207 | uint32_t bootstage_accum(enum bootstage_id id) | |
208 | { | |
b383d6c0 | 209 | struct bootstage_data *data = gd->bootstage; |
03ecac31 | 210 | struct bootstage_record *rec = ensure_id(data, id); |
0e996773 SG |
211 | uint32_t duration; |
212 | ||
03ecac31 SG |
213 | if (!rec) |
214 | return 0; | |
0e996773 SG |
215 | duration = (uint32_t)timer_get_boot_us() - rec->start_us; |
216 | rec->time_us += duration; | |
cbcd6970 | 217 | |
0e996773 SG |
218 | return duration; |
219 | } | |
220 | ||
94fd1316 SG |
221 | /** |
222 | * Get a record name as a printable string | |
223 | * | |
224 | * @param buf Buffer to put name if needed | |
225 | * @param len Length of buffer | |
226 | * @param rec Boot stage record to get the name from | |
185f812c | 227 | * Return: pointer to name, either from the record or pointing to buf. |
94fd1316 SG |
228 | */ |
229 | static const char *get_record_name(char *buf, int len, | |
9d2542d0 | 230 | const struct bootstage_record *rec) |
94fd1316 SG |
231 | { |
232 | if (rec->name) | |
233 | return rec->name; | |
234 | else if (rec->id >= BOOTSTAGE_ID_USER) | |
235 | snprintf(buf, len, "user_%d", rec->id - BOOTSTAGE_ID_USER); | |
236 | else | |
237 | snprintf(buf, len, "id=%d", rec->id); | |
238 | ||
239 | return buf; | |
240 | } | |
241 | ||
b383d6c0 | 242 | static uint32_t print_time_record(struct bootstage_record *rec, uint32_t prev) |
3a608ca0 | 243 | { |
94fd1316 SG |
244 | char buf[20]; |
245 | ||
0e996773 SG |
246 | if (prev == -1U) { |
247 | printf("%11s", ""); | |
b8bcaa3a | 248 | print_grouped_ull(rec->time_us, BOOTSTAGE_DIGITS); |
0e996773 | 249 | } else { |
b8bcaa3a SG |
250 | print_grouped_ull(rec->time_us, BOOTSTAGE_DIGITS); |
251 | print_grouped_ull(rec->time_us - prev, BOOTSTAGE_DIGITS); | |
0e996773 | 252 | } |
94fd1316 SG |
253 | printf(" %s\n", get_record_name(buf, sizeof(buf), rec)); |
254 | ||
3a608ca0 SG |
255 | return rec->time_us; |
256 | } | |
257 | ||
258 | static int h_compare_record(const void *r1, const void *r2) | |
259 | { | |
260 | const struct bootstage_record *rec1 = r1, *rec2 = r2; | |
261 | ||
262 | return rec1->time_us > rec2->time_us ? 1 : -1; | |
263 | } | |
264 | ||
94fd1316 SG |
265 | #ifdef CONFIG_OF_LIBFDT |
266 | /** | |
267 | * Add all bootstage timings to a device tree. | |
268 | * | |
269 | * @param blob Device tree blob | |
185f812c | 270 | * Return: 0 on success, != 0 on failure. |
94fd1316 SG |
271 | */ |
272 | static int add_bootstages_devicetree(struct fdt_header *blob) | |
273 | { | |
b383d6c0 | 274 | struct bootstage_data *data = gd->bootstage; |
94fd1316 SG |
275 | int bootstage; |
276 | char buf[20]; | |
03ecac31 | 277 | int recnum; |
94fd1316 SG |
278 | int i; |
279 | ||
280 | if (!blob) | |
281 | return 0; | |
282 | ||
283 | /* | |
284 | * Create the node for bootstage. | |
285 | * The address of flat device tree is set up by the command bootm. | |
286 | */ | |
287 | bootstage = fdt_add_subnode(blob, 0, "bootstage"); | |
288 | if (bootstage < 0) | |
e003310a | 289 | return -EINVAL; |
94fd1316 SG |
290 | |
291 | /* | |
292 | * Insert the timings to the device tree in the reverse order so | |
293 | * that they can be printed in the Linux kernel in the right order. | |
294 | */ | |
03ecac31 SG |
295 | for (recnum = data->rec_count - 1, i = 0; recnum >= 0; recnum--, i++) { |
296 | struct bootstage_record *rec = &data->record[recnum]; | |
94fd1316 SG |
297 | int node; |
298 | ||
03ecac31 | 299 | if (rec->id != BOOTSTAGE_ID_AWAKE && rec->time_us == 0) |
94fd1316 SG |
300 | continue; |
301 | ||
302 | node = fdt_add_subnode(blob, bootstage, simple_itoa(i)); | |
303 | if (node < 0) | |
304 | break; | |
305 | ||
306 | /* add properties to the node. */ | |
307 | if (fdt_setprop_string(blob, node, "name", | |
03ecac31 | 308 | get_record_name(buf, sizeof(buf), rec))) |
e003310a | 309 | return -EINVAL; |
94fd1316 SG |
310 | |
311 | /* Check if this is a 'mark' or 'accum' record */ | |
312 | if (fdt_setprop_cell(blob, node, | |
313 | rec->start_us ? "accum" : "mark", | |
314 | rec->time_us)) | |
e003310a | 315 | return -EINVAL; |
94fd1316 SG |
316 | } |
317 | ||
318 | return 0; | |
319 | } | |
320 | ||
321 | int bootstage_fdt_add_report(void) | |
322 | { | |
323 | if (add_bootstages_devicetree(working_fdt)) | |
324 | puts("bootstage: Failed to add to device tree\n"); | |
325 | ||
326 | return 0; | |
327 | } | |
328 | #endif | |
329 | ||
3a608ca0 SG |
330 | void bootstage_report(void) |
331 | { | |
b383d6c0 SG |
332 | struct bootstage_data *data = gd->bootstage; |
333 | struct bootstage_record *rec = data->record; | |
3a608ca0 | 334 | uint32_t prev; |
03ecac31 | 335 | int i; |
3a608ca0 | 336 | |
03ecac31 SG |
337 | printf("Timer summary in microseconds (%d records):\n", |
338 | data->rec_count); | |
3a608ca0 SG |
339 | printf("%11s%11s %s\n", "Mark", "Elapsed", "Stage"); |
340 | ||
b383d6c0 | 341 | prev = print_time_record(rec, 0); |
3a608ca0 SG |
342 | |
343 | /* Sort records by increasing time */ | |
03ecac31 | 344 | qsort(data->record, data->rec_count, sizeof(*rec), h_compare_record); |
3a608ca0 | 345 | |
03ecac31 SG |
346 | for (i = 1, rec++; i < data->rec_count; i++, rec++) { |
347 | if (rec->id && !rec->start_us) | |
b383d6c0 | 348 | prev = print_time_record(rec, prev); |
3a608ca0 | 349 | } |
03ecac31 SG |
350 | if (data->rec_count > RECORD_COUNT) |
351 | printf("Overflowed internal boot id table by %d entries\n" | |
939b04e9 | 352 | "Please increase CONFIG_(SPL_TPL_)BOOTSTAGE_RECORD_COUNT\n", |
03ecac31 | 353 | data->rec_count - RECORD_COUNT); |
0e996773 SG |
354 | |
355 | puts("\nAccumulated time:\n"); | |
03ecac31 | 356 | for (i = 0, rec = data->record; i < data->rec_count; i++, rec++) { |
0e996773 | 357 | if (rec->start_us) |
b383d6c0 | 358 | prev = print_time_record(rec, -1); |
0e996773 | 359 | } |
3a608ca0 | 360 | } |
3786980d | 361 | |
fcf509b8 SG |
362 | /** |
363 | * Append data to a memory buffer | |
364 | * | |
365 | * Write data to the buffer if there is space. Whether there is space or not, | |
366 | * the buffer pointer is incremented. | |
367 | * | |
368 | * @param ptrp Pointer to buffer, updated by this function | |
369 | * @param end Pointer to end of buffer | |
370 | * @param data Data to write to buffer | |
371 | * @param size Size of data | |
372 | */ | |
373 | static void append_data(char **ptrp, char *end, const void *data, int size) | |
374 | { | |
375 | char *ptr = *ptrp; | |
376 | ||
377 | *ptrp += size; | |
378 | if (*ptrp > end) | |
379 | return; | |
380 | ||
381 | memcpy(ptr, data, size); | |
382 | } | |
383 | ||
384 | int bootstage_stash(void *base, int size) | |
385 | { | |
9d2542d0 | 386 | const struct bootstage_data *data = gd->bootstage; |
fcf509b8 | 387 | struct bootstage_hdr *hdr = (struct bootstage_hdr *)base; |
9d2542d0 | 388 | const struct bootstage_record *rec; |
fcf509b8 SG |
389 | char buf[20]; |
390 | char *ptr = base, *end = ptr + size; | |
03ecac31 | 391 | int i; |
fcf509b8 SG |
392 | |
393 | if (hdr + 1 > (struct bootstage_hdr *)end) { | |
394 | debug("%s: Not enough space for bootstage hdr\n", __func__); | |
e003310a | 395 | return -ENOSPC; |
fcf509b8 SG |
396 | } |
397 | ||
398 | /* Write an arbitrary version number */ | |
399 | hdr->version = BOOTSTAGE_VERSION; | |
400 | ||
ed54bdaf | 401 | hdr->count = data->rec_count; |
fcf509b8 SG |
402 | hdr->size = 0; |
403 | hdr->magic = BOOTSTAGE_MAGIC; | |
53a4f253 | 404 | hdr->next_id = data->next_id; |
fcf509b8 SG |
405 | ptr += sizeof(*hdr); |
406 | ||
407 | /* Write the records, silently stopping when we run out of space */ | |
ed54bdaf | 408 | for (rec = data->record, i = 0; i < data->rec_count; i++, rec++) |
c91001f6 | 409 | append_data(&ptr, end, rec, sizeof(*rec)); |
fcf509b8 SG |
410 | |
411 | /* Write the name strings */ | |
03ecac31 | 412 | for (rec = data->record, i = 0; i < data->rec_count; i++, rec++) { |
c91001f6 | 413 | const char *name; |
fcf509b8 | 414 | |
c91001f6 SG |
415 | name = get_record_name(buf, sizeof(buf), rec); |
416 | append_data(&ptr, end, name, strlen(name) + 1); | |
fcf509b8 SG |
417 | } |
418 | ||
419 | /* Check for buffer overflow */ | |
420 | if (ptr > end) { | |
421 | debug("%s: Not enough space for bootstage stash\n", __func__); | |
e003310a | 422 | return -ENOSPC; |
fcf509b8 SG |
423 | } |
424 | ||
425 | /* Update total data size */ | |
426 | hdr->size = ptr - (char *)base; | |
ff00226e | 427 | debug("Stashed %d records\n", hdr->count); |
fcf509b8 SG |
428 | |
429 | return 0; | |
430 | } | |
431 | ||
9d2542d0 | 432 | int bootstage_unstash(const void *base, int size) |
fcf509b8 | 433 | { |
9d2542d0 | 434 | const struct bootstage_hdr *hdr = (struct bootstage_hdr *)base; |
b383d6c0 | 435 | struct bootstage_data *data = gd->bootstage; |
9d2542d0 | 436 | const char *ptr = base, *end = ptr + size; |
fcf509b8 | 437 | struct bootstage_record *rec; |
fcf509b8 | 438 | uint rec_size; |
03ecac31 | 439 | int i; |
fcf509b8 SG |
440 | |
441 | if (size == -1) | |
442 | end = (char *)(~(uintptr_t)0); | |
443 | ||
444 | if (hdr + 1 > (struct bootstage_hdr *)end) { | |
445 | debug("%s: Not enough space for bootstage hdr\n", __func__); | |
e003310a | 446 | return -EPERM; |
fcf509b8 SG |
447 | } |
448 | ||
449 | if (hdr->magic != BOOTSTAGE_MAGIC) { | |
450 | debug("%s: Invalid bootstage magic\n", __func__); | |
e003310a | 451 | return -ENOENT; |
fcf509b8 SG |
452 | } |
453 | ||
454 | if (ptr + hdr->size > end) { | |
455 | debug("%s: Bootstage data runs past buffer end\n", __func__); | |
e003310a | 456 | return -ENOSPC; |
fcf509b8 SG |
457 | } |
458 | ||
459 | if (hdr->count * sizeof(*rec) > hdr->size) { | |
5d3bd345 | 460 | debug("%s: Bootstage has %d records needing %lu bytes, but " |
fcf509b8 | 461 | "only %d bytes is available\n", __func__, hdr->count, |
5d3bd345 | 462 | (ulong)hdr->count * sizeof(*rec), hdr->size); |
e003310a | 463 | return -ENOSPC; |
fcf509b8 SG |
464 | } |
465 | ||
466 | if (hdr->version != BOOTSTAGE_VERSION) { | |
467 | debug("%s: Bootstage data version %#0x unrecognised\n", | |
468 | __func__, hdr->version); | |
e003310a | 469 | return -EINVAL; |
fcf509b8 SG |
470 | } |
471 | ||
03ecac31 | 472 | if (data->rec_count + hdr->count > RECORD_COUNT) { |
fcf509b8 | 473 | debug("%s: Bootstage has %d records, we have space for %d\n" |
d69bb0ec | 474 | "Please increase CONFIG_(SPL_)BOOTSTAGE_RECORD_COUNT\n", |
03ecac31 | 475 | __func__, hdr->count, RECORD_COUNT - data->rec_count); |
e003310a | 476 | return -ENOSPC; |
fcf509b8 SG |
477 | } |
478 | ||
479 | ptr += sizeof(*hdr); | |
480 | ||
481 | /* Read the records */ | |
b383d6c0 | 482 | rec_size = hdr->count * sizeof(*data->record); |
03ecac31 | 483 | memcpy(data->record + data->rec_count, ptr, rec_size); |
fcf509b8 SG |
484 | |
485 | /* Read the name strings */ | |
486 | ptr += rec_size; | |
03ecac31 SG |
487 | for (rec = data->record + data->next_id, i = 0; i < hdr->count; |
488 | i++, rec++) { | |
fcf509b8 | 489 | rec->name = ptr; |
65b2d96f SG |
490 | if (spl_phase() == PHASE_SPL) |
491 | rec->name = strdup(ptr); | |
fcf509b8 SG |
492 | |
493 | /* Assume no data corruption here */ | |
494 | ptr += strlen(ptr) + 1; | |
495 | } | |
496 | ||
497 | /* Mark the records as read */ | |
03ecac31 | 498 | data->rec_count += hdr->count; |
53a4f253 | 499 | data->next_id = hdr->next_id; |
ff00226e | 500 | debug("Unstashed %d records\n", hdr->count); |
fcf509b8 SG |
501 | |
502 | return 0; | |
503 | } | |
b383d6c0 | 504 | |
17ba5010 SG |
505 | int _bootstage_stash_default(void) |
506 | { | |
507 | return bootstage_stash(map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR, 0), | |
508 | CONFIG_BOOTSTAGE_STASH_SIZE); | |
509 | } | |
510 | ||
511 | int _bootstage_unstash_default(void) | |
512 | { | |
513 | const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR, | |
514 | CONFIG_BOOTSTAGE_STASH_SIZE); | |
515 | ||
516 | return bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE); | |
517 | } | |
518 | ||
25e7dc6a SG |
519 | int bootstage_get_size(void) |
520 | { | |
ac9cd480 SG |
521 | struct bootstage_data *data = gd->bootstage; |
522 | struct bootstage_record *rec; | |
523 | int size; | |
524 | int i; | |
525 | ||
526 | size = sizeof(struct bootstage_data); | |
527 | for (rec = data->record, i = 0; i < data->rec_count; | |
528 | i++, rec++) | |
529 | size += strlen(rec->name) + 1; | |
530 | ||
531 | return size; | |
25e7dc6a SG |
532 | } |
533 | ||
b383d6c0 SG |
534 | int bootstage_init(bool first) |
535 | { | |
536 | struct bootstage_data *data; | |
537 | int size = sizeof(struct bootstage_data); | |
538 | ||
539 | gd->bootstage = (struct bootstage_data *)malloc(size); | |
540 | if (!gd->bootstage) | |
541 | return -ENOMEM; | |
542 | data = gd->bootstage; | |
543 | memset(data, '\0', size); | |
03ecac31 SG |
544 | if (first) { |
545 | data->next_id = BOOTSTAGE_ID_USER; | |
b383d6c0 | 546 | bootstage_add_record(BOOTSTAGE_ID_AWAKE, "reset", 0, 0); |
03ecac31 | 547 | } |
b383d6c0 SG |
548 | |
549 | return 0; | |
550 | } |