1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2012 The Chromium OS Authors.
11 #include <asm/sections.h>
13 DECLARE_GLOBAL_DATA_PTR;
15 static char trace_enabled __attribute__((section(".data")));
16 static char trace_inited __attribute__((section(".data")));
18 /* The header block at the start of the trace memory area */
20 int func_count; /* Total number of function call sites */
21 u64 call_count; /* Total number of tracked function calls */
22 u64 untracked_count; /* Total number of untracked function calls */
23 int funcs_used; /* Total number of functions used */
26 * Call count for each function. This is indexed by the word offset
27 * of the function from gd->relocaddr
29 uintptr_t *call_accum;
31 /* Function trace list */
32 struct trace_call *ftrace; /* The function call records */
33 ulong ftrace_size; /* Num. of ftrace records we have space for */
34 ulong ftrace_count; /* Num. of ftrace records written */
35 ulong ftrace_too_deep_count; /* Functions that were too deep */
42 static struct trace_hdr *hdr; /* Pointer to start of trace buffer */
44 static inline uintptr_t __attribute__((no_instrument_function))
45 func_ptr_to_num(void *func_ptr)
47 uintptr_t offset = (uintptr_t)func_ptr;
50 offset -= (uintptr_t)&_init;
52 if (gd->flags & GD_FLG_RELOC)
53 offset -= gd->relocaddr;
55 offset -= CONFIG_SYS_TEXT_BASE;
57 return offset / FUNC_SITE_SIZE;
60 #if defined(CONFIG_EFI_LOADER) && (defined(CONFIG_ARM) || defined(CONFIG_RISCV))
63 * trace_gd - the value of the gd register
65 static volatile gd_t *trace_gd;
68 * trace_save_gd() - save the value of the gd register
70 static void __attribute__((no_instrument_function)) trace_save_gd(void)
76 * trace_swap_gd() - swap between U-Boot and application gd register value
78 * An UEFI application may change the value of the register that gd lives in.
79 * But some of our functions like get_ticks() access this register. So we
80 * have to set the gd register to the U-Boot value when entering a trace
81 * point and set it back to the application value when exiting the trace point.
83 static void __attribute__((no_instrument_function)) trace_swap_gd(void)
85 volatile gd_t *temp_gd = trace_gd;
93 static void __attribute__((no_instrument_function)) trace_save_gd(void)
97 static void __attribute__((no_instrument_function)) trace_swap_gd(void)
103 static void __attribute__((no_instrument_function)) add_ftrace(void *func_ptr,
104 void *caller, ulong flags)
106 if (hdr->depth > hdr->depth_limit) {
107 hdr->ftrace_too_deep_count++;
110 if (hdr->ftrace_count < hdr->ftrace_size) {
111 struct trace_call *rec = &hdr->ftrace[hdr->ftrace_count];
113 rec->func = func_ptr_to_num(func_ptr);
114 rec->caller = func_ptr_to_num(caller);
115 rec->flags = flags | (timer_get_us() & FUNCF_TIMESTAMP_MASK);
120 static void __attribute__((no_instrument_function)) add_textbase(void)
122 if (hdr->ftrace_count < hdr->ftrace_size) {
123 struct trace_call *rec = &hdr->ftrace[hdr->ftrace_count];
125 rec->func = CONFIG_SYS_TEXT_BASE;
127 rec->flags = FUNCF_TEXTBASE;
133 * __cyg_profile_func_enter() - record function entry
135 * We add to our tally for this function and add to the list of called
138 * @func_ptr: pointer to function being entered
139 * @caller: pointer to function which called this function
141 void __attribute__((no_instrument_function)) __cyg_profile_func_enter(
142 void *func_ptr, void *caller)
148 add_ftrace(func_ptr, caller, FUNCF_ENTRY);
149 func = func_ptr_to_num(func_ptr);
150 if (func < hdr->func_count) {
151 hdr->call_accum[func]++;
154 hdr->untracked_count++;
157 if (hdr->depth > hdr->depth_limit)
158 hdr->max_depth = hdr->depth;
164 * __cyg_profile_func_exit() - record function exit
166 * @func_ptr: pointer to function being entered
167 * @caller: pointer to function which called this function
169 void __attribute__((no_instrument_function)) __cyg_profile_func_exit(
170 void *func_ptr, void *caller)
174 add_ftrace(func_ptr, caller, FUNCF_EXIT);
181 * trace_list_functions() - produce a list of called functions
183 * The information is written into the supplied buffer - a header followed
184 * by a list of function records.
186 * @buff: buffer to place list into
187 * @buff_size: size of buffer
188 * @needed: returns size of buffer needed, which may be
189 * greater than buff_size if we ran out of space.
190 * Return: 0 if ok, -ENOSPC if space was exhausted
192 int trace_list_functions(void *buff, size_t buff_size, size_t *needed)
194 struct trace_output_hdr *output_hdr = NULL;
195 void *end, *ptr = buff;
199 end = buff ? buff + buff_size : NULL;
201 /* Place some header information */
202 if (ptr + sizeof(struct trace_output_hdr) < end)
204 ptr += sizeof(struct trace_output_hdr);
206 /* Add information about each function */
207 for (func = upto = 0; func < hdr->func_count; func++) {
208 size_t calls = hdr->call_accum[func];
213 if (ptr + sizeof(struct trace_output_func) < end) {
214 struct trace_output_func *stats = ptr;
216 stats->offset = func * FUNC_SITE_SIZE;
217 stats->call_count = calls;
220 ptr += sizeof(struct trace_output_func);
223 /* Update the header */
225 output_hdr->rec_count = upto;
226 output_hdr->type = TRACE_CHUNK_FUNCS;
229 /* Work out how must of the buffer we used */
230 *needed = ptr - buff;
238 * trace_list_functions() - produce a list of function calls
240 * The information is written into the supplied buffer - a header followed
241 * by a list of function records.
243 * @buff: buffer to place list into
244 * @buff_size: size of buffer
245 * @needed: returns size of buffer needed, which may be
246 * greater than buff_size if we ran out of space.
247 * Return: 0 if ok, -ENOSPC if space was exhausted
249 int trace_list_calls(void *buff, size_t buff_size, size_t *needed)
251 struct trace_output_hdr *output_hdr = NULL;
252 void *end, *ptr = buff;
256 end = buff ? buff + buff_size : NULL;
258 /* Place some header information */
259 if (ptr + sizeof(struct trace_output_hdr) < end)
261 ptr += sizeof(struct trace_output_hdr);
263 /* Add information about each call */
264 count = hdr->ftrace_count;
265 if (count > hdr->ftrace_size)
266 count = hdr->ftrace_size;
267 for (rec = upto = 0; rec < count; rec++) {
268 if (ptr + sizeof(struct trace_call) < end) {
269 struct trace_call *call = &hdr->ftrace[rec];
270 struct trace_call *out = ptr;
272 out->func = call->func * FUNC_SITE_SIZE;
273 out->caller = call->caller * FUNC_SITE_SIZE;
274 out->flags = call->flags;
277 ptr += sizeof(struct trace_call);
280 /* Update the header */
282 output_hdr->rec_count = upto;
283 output_hdr->type = TRACE_CHUNK_CALLS;
286 /* Work out how must of the buffer we used */
287 *needed = ptr - buff;
295 * trace_print_stats() - print basic information about tracing
297 void trace_print_stats(void)
302 puts("Warning: make U-Boot with FTRACE to enable function instrumenting.\n");
303 puts("You will likely get zeroed data here\n");
306 printf("Trace is disabled\n");
309 print_grouped_ull(hdr->func_count, 10);
310 puts(" function sites\n");
311 print_grouped_ull(hdr->call_count, 10);
312 puts(" function calls\n");
313 print_grouped_ull(hdr->untracked_count, 10);
314 puts(" untracked function calls\n");
315 count = min(hdr->ftrace_count, hdr->ftrace_size);
316 print_grouped_ull(count, 10);
317 puts(" traced function calls");
318 if (hdr->ftrace_count > hdr->ftrace_size) {
319 printf(" (%lu dropped due to overflow)",
320 hdr->ftrace_count - hdr->ftrace_size);
323 printf("%15d maximum observed call depth\n", hdr->max_depth);
324 printf("%15d call depth limit\n", hdr->depth_limit);
325 print_grouped_ull(hdr->ftrace_too_deep_count, 10);
326 puts(" calls not traced due to depth\n");
329 void __attribute__((no_instrument_function)) trace_set_enabled(int enabled)
331 trace_enabled = enabled != 0;
335 * trace_init() - initialize the tracing system and enable it
337 * @buff: Pointer to trace buffer
338 * @buff_size: Size of trace buffer
341 int __attribute__((no_instrument_function)) trace_init(void *buff,
344 ulong func_count = gd->mon_len / FUNC_SITE_SIZE;
346 int was_disabled = !trace_enabled;
351 #ifdef CONFIG_TRACE_EARLY
356 * Copy over the early trace data if we have it. Disable
357 * tracing while we are doing this.
360 hdr = map_sysmem(CONFIG_TRACE_EARLY_ADDR,
361 CONFIG_TRACE_EARLY_SIZE);
362 end = (char *)&hdr->ftrace[min(hdr->ftrace_count,
364 used = end - (char *)hdr;
365 printf("trace: copying %08lx bytes of early data from %x to %08lx\n",
366 used, CONFIG_TRACE_EARLY_ADDR,
367 (ulong)map_to_sysmem(buff));
368 memcpy(buff, hdr, used);
370 puts("trace: already enabled\n");
374 hdr = (struct trace_hdr *)buff;
375 needed = sizeof(*hdr) + func_count * sizeof(uintptr_t);
376 if (needed > buff_size) {
377 printf("trace: buffer size %zd bytes: at least %zd needed\n",
383 memset(hdr, '\0', needed);
384 hdr->func_count = func_count;
385 hdr->call_accum = (uintptr_t *)(hdr + 1);
387 /* Use any remaining space for the timed function trace */
388 hdr->ftrace = (struct trace_call *)(buff + needed);
389 hdr->ftrace_size = (buff_size - needed) / sizeof(*hdr->ftrace);
392 puts("trace: enabled\n");
393 hdr->depth_limit = CONFIG_TRACE_CALL_DEPTH_LIMIT;
400 #ifdef CONFIG_TRACE_EARLY
402 * trace_early_init() - initialize the tracing system for early tracing
404 * Return: 0 if ok, -ENOSPC if not enough memory is available
406 int __attribute__((no_instrument_function)) trace_early_init(void)
408 ulong func_count = gd->mon_len / FUNC_SITE_SIZE;
409 size_t buff_size = CONFIG_TRACE_EARLY_SIZE;
412 /* We can ignore additional calls to this function */
416 hdr = map_sysmem(CONFIG_TRACE_EARLY_ADDR, CONFIG_TRACE_EARLY_SIZE);
417 needed = sizeof(*hdr) + func_count * sizeof(uintptr_t);
418 if (needed > buff_size) {
419 printf("trace: buffer size is %zd bytes, at least %zd needed\n",
424 memset(hdr, '\0', needed);
425 hdr->call_accum = (uintptr_t *)(hdr + 1);
426 hdr->func_count = func_count;
428 /* Use any remaining space for the timed function trace */
429 hdr->ftrace = (struct trace_call *)((char *)hdr + needed);
430 hdr->ftrace_size = (buff_size - needed) / sizeof(*hdr->ftrace);
432 hdr->depth_limit = CONFIG_TRACE_EARLY_CALL_DEPTH_LIMIT;
433 printf("trace: early enable at %08x\n", CONFIG_TRACE_EARLY_ADDR);