NOTICE: The Processors Wiki will End-of-Life on January 15, 2021. It is recommended to download any files or other content you may need that are hosted on processors.wiki.ti.com. The site is now set to read only.
Advanced Event Triggering
Contents
- 1 Advanced Event Triggering (AET)
- 2 Learn More
- 3 FAQ
- 3.1 Q: How do I use this?
- 3.2 Q: Can I use this without CCS?
- 3.3 Q: Is there a similar capability in the Simulator?
- 3.4 Q: Where can I get more information?
- 3.5 Q: Can I use a SW instruction to trigger the AET?
- 3.6 Q: What does the "MARK0 - MARK3" mean?
- 3.7 Q: What does the "AEGEVT0 - AEGEVT6"?
- 3.8 Q: Where can I learn about Software Breakpoints?
- 3.9 Q: Does this work on the 55x?
- 3.10 Q: Are there hardware breakpoints / hardware watchpoints for C2000?
- 4 Related
Advanced Event Triggering (AET)[edit]
What is it?[edit]
- Advanced emulation capabilities can be broken into two main features: Advanced Event Trigger (AET) and Trace.
- More details on Breakpoints
What can we do with it?[edit]
AET capability can be used to debug complex problems as well as understand performance characteristics of user applications. AET provides the following capabilities:
- Hardware Program Breakpoint: specifies addresses or address ranges that can generate events such as halting the processor or triggering the trace capture.
- Data Watchpoints: specifies data variable addresses, address ranges, or data values that can generate events such as halting the processor or triggering the trace capture.
- Counters: count the occurrence of an event or cycles for performance monitoring.
- State Sequencing: allows combinations of hardware program breakpoints and data watchpoints to precisely generate events for complex sequences.
- Trace is a debug technology that provides a detailed, historical account of application code execution, timing, and data accesses. Trace collects, compresses, and exports debug information for analysis. Trace works in real-time and does not impact the execution of the system. See: XDS560 Trace
What devices have what capability?[edit]
Most devices can be described by their core or mega-module. For the C64x+ family, there are two types of mega-modules, they are the C64x+ Mid-GEM and the C64x+ Full GEM.
Only Full-GEM devices have AET/Trace capabilities. The Mid-GEM devices do not.
Some examples (this is not a complete list) of devices which have a Full-GEM megamodule are C641x, C671x, C645x, TNETV3020, TCI6488, DM64x, C674x.
Some examples of devices which have Mid-GEM megamodules are C642x, DM643x, DM644x, OMAP35xx, DM37xx, and DM646x.
C66x devices have AET.
Learn More[edit]
- AET Logic for the C6000 family
- Debugging With Trace
FAQ[edit]
Q: How do I use this?[edit]
- A: See: Unified Breakpoint Manager
Q: Can I use this without CCS?[edit]
- A: See: Aetlib
Q: Is there a similar capability in the Simulator?[edit]
- A: See: Data Breakpoint/Watchpoint
Q: Where can I get more information?[edit]
Q: Can I use a SW instruction to trigger the AET?[edit]
- A: Yes, please see the section about the MARK instructions (MARK0 - MARK3).
Q: What does the "MARK0 - MARK3" mean?[edit]
- A: Mark0 - Mark3 are actually instructions that can trigger Advanced_Event_Triggering (AET). There is an intrinsic for the newer compilers (_mark(0)) that you can use in C code. These instructions allow you to trigger AET by executing a specific instruction. The actual execution of the instruction is equivalent to a nop. These instructions are only available on 64x+ devices, and there are 4 of them.
Q: What does the "AEGEVT0 - AEGEVT6"?[edit]
- A: AEGEVT 0-7 is a set of events that can be connected to signals from the interrupt controller, which consist of the System events, along with interrupt events. When you use one of these as an input to an AET job, you also want to configure a "Set AEGEVT/Externa(8)" job from the Unified Breakpoint Manager . For example, say you want to use AET to trigger whenever there is a RapidIO interrupt. RapidIO Interrupt is considered an external event, so in order to get it to come into AET, you have to go through the interrupt controller. You need to configure configure a "Set AEGEVT/External(8)" Unified Breakpoint Manager job to connect this event to one of the AEGEVT slots. For this example, connect it to AEGEVT2, then configure the AET job to trigger on AEGEVT2, which is connected to the RapidIO interrupt.
Q: Where can I learn about Software Breakpoints?[edit]
Q: Does this work on the 55x?[edit]
- A: Yes, similar hardware exists on the 55x allowing for data watchpoints and hardware breakpoints. See Checking for Stack Overflow using Unified Breakpoint Manager for an example.
Q: Are there hardware breakpoints / hardware watchpoints for C2000?[edit]
- A: Yes, please see Watchpoints for C28x in CCS 4
Related[edit]
- AETLib
- CToolsLib
- CTools
- Watchpoints for C28x in CCS 4
- General description of Breakpoint
- More details on Data Breakpoint/Watchpoint
- XDS560 Trace
- ETB
- AET Logic for the C6000 family
- Debugging With Trace