Note that using any of these solutions may change the behavior of your application.
This is the preferred solution. With this option enabled, winIDEA will write cached values to mapped memory space. This is only possible when the CPU is stopped.
You'll be able to see the correct values in the Watch Window.
Use this option if you cannot change the code but need to do some investigations or testing. It disables the data caching per core:
1. Disable ENDINIT protection via an initialization file. SFRs are ENDINIT protected via SCU_WEDCPU<core number>CON0.
2. Perform Debug Download.
3. Use SFR from the CPU group called CPU<core number>_DCON0.
This solution describes an use case if Data cache is enabled and active. It is not meant to enable it from scratch by setting a bit in SFR.
The debug interface on TriCore supports only real memory reads via Cerberus, which means that the debugger can only read the real memory, not what is inside the cache. To read the content of cache, the CPU provides a dedicated instruction - CACHEA.W.
On some architectures (i.e. ARM Cortex, NXP/ST Power Architecture) it is possible to insert and execute an instruction. This is called instruction stuffing. However, TriCore debug interface does not support instruction stuffing, therefore CACHEA.W instruction can be executed by CPU only.