mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-03 10:15:19 +00:00
Added advanced Vivado debug scripts.
This commit is contained in:
parent
b6ae6fea27
commit
88d5edaf13
37
fpga/generator/dcache-miss-evict-dirty-deadlock.tsm
Normal file
37
fpga/generator/dcache-miss-evict-dirty-deadlock.tsm
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
##################################################
|
||||||
|
#
|
||||||
|
# For info on creating trigger state machines:
|
||||||
|
# 1) In the main Vivado menu bar, select
|
||||||
|
# Window > Language Templates
|
||||||
|
# 2) In the Templates window, select
|
||||||
|
# Debug > Trigger State Machine
|
||||||
|
# 3) Refer to the entry 'Info' for an overview
|
||||||
|
# of the trigger state machine language.
|
||||||
|
#
|
||||||
|
# More information can be found in this document:
|
||||||
|
#
|
||||||
|
# Vivado Design Suite User Guide: Programming
|
||||||
|
# and Debugging (UG908)
|
||||||
|
#
|
||||||
|
##################################################
|
||||||
|
state state_reset:
|
||||||
|
if(wallypipelinedsoc/hart/lsu/dcache.dcache/cachefsm/CurrState == 32'h00000003) then
|
||||||
|
reset_counter $counter0;
|
||||||
|
goto state_begin_count;
|
||||||
|
#goto state_trigger;
|
||||||
|
else
|
||||||
|
goto state_reset;
|
||||||
|
endif
|
||||||
|
|
||||||
|
state state_begin_count:
|
||||||
|
if($counter0 == 16'h0164) then
|
||||||
|
goto state_trigger;
|
||||||
|
elseif(wallypipelinedsoc/hart/lsu/dcache.dcache/cachefsm/CurrState == 32'h00000003) then
|
||||||
|
increment_counter $counter0;
|
||||||
|
goto state_begin_count;
|
||||||
|
else
|
||||||
|
goto state_reset;
|
||||||
|
endif
|
||||||
|
|
||||||
|
state state_trigger:
|
||||||
|
trigger;
|
36
fpga/generator/trigger.tsm
Normal file
36
fpga/generator/trigger.tsm
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
##################################################
|
||||||
|
#
|
||||||
|
# For info on creating trigger state machines:
|
||||||
|
# 1) In the main Vivado menu bar, select
|
||||||
|
# Window > Language Templates
|
||||||
|
# 2) In the Templates window, select
|
||||||
|
# Debug > Trigger State Machine
|
||||||
|
# 3) Refer to the entry 'Info' for an overview
|
||||||
|
# of the trigger state machine language.
|
||||||
|
#
|
||||||
|
# More information can be found in this document:
|
||||||
|
#
|
||||||
|
# Vivado Design Suite User Guide: Programming
|
||||||
|
# and Debugging (UG908)
|
||||||
|
#
|
||||||
|
##################################################
|
||||||
|
state state_reset:
|
||||||
|
if(wallypipelinedsoc/hart/lsu/dcache/dcachefsm/CurrState == 32'h00000015) then
|
||||||
|
reset_counter $counter0;
|
||||||
|
goto state_begin_count;
|
||||||
|
else
|
||||||
|
goto state_reset;
|
||||||
|
endif
|
||||||
|
|
||||||
|
state state_begin_count:
|
||||||
|
if($counter0 == 16'h0064) then
|
||||||
|
goto state_trigger;
|
||||||
|
elseif(wallypipelinedsoc/hart/lsu/dcache/dcachefsm/CurrState == 32'h00000015) then
|
||||||
|
increment_counter $counter0;
|
||||||
|
goto state_begin_count;
|
||||||
|
else
|
||||||
|
goto state_reset;
|
||||||
|
endif
|
||||||
|
|
||||||
|
state state_trigger:
|
||||||
|
trigger;
|
Loading…
Reference in New Issue
Block a user