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