![]() |
NEORV32 Software Framework Documentation
The NEORV32 RISC-V Processor
|
Execution trace buffer (TRACER) HW driver source file. More...
#include <neorv32.h>
Functions | |
int | neorv32_tracer_available (void) |
void | neorv32_tracer_enable (int hsel, uint32_t stop_addr) |
void | neorv32_tracer_disable (void) |
int | neorv32_tracer_get_buffer_depth (void) |
int | neorv32_tracer_run (void) |
void | neorv32_tracer_irq_ack (void) |
int | neorv32_tracer_data_avail (void) |
uint32_t | neorv32_tracer_data_get_src (void) |
uint32_t | neorv32_tracer_data_get_dst (void) |
Execution trace buffer (TRACER) HW driver source file.
int neorv32_tracer_available | ( | void | ) |
Check if TRACER module was synthesized.
int neorv32_tracer_data_avail | ( | void | ) |
Check if trace data is available.
uint32_t neorv32_tracer_data_get_dst | ( | void | ) |
Get trace data: delta-destination.
uint32_t neorv32_tracer_data_get_src | ( | void | ) |
Get trace data: delta-source.
void neorv32_tracer_disable | ( | void | ) |
Reset and disable tracer.
void neorv32_tracer_enable | ( | int | hsel, |
uint32_t | stop_addr ) |
Reset, enable and configure trace module.
[in] | hsel | Hart ID of the CPU that is traced (0/1). |
[in] | stop_addr | Stop tracing at this address. Use -1 to disable auto-stopping. |
int neorv32_tracer_get_buffer_depth | ( | void | ) |
Get trace buffer depth.
void neorv32_tracer_irq_ack | ( | void | ) |
Acknowledge/clear pending tracer interrupt.
int neorv32_tracer_run | ( | void | ) |
Check if tracer is running.