-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding support for Xcelium - Xcelium Makefile, README_XCELIUM #9
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
SD Card Controller on Xcelium - | ||
|
||
Directory Structure: | ||
. RTL files and Testbench sources: | ||
. rtl/verilog IP core Verilog sources | ||
. bench/verilog Verilog TB files | ||
. The TOP level test is bench/verilog/sd_controller_top_tb.sv which utilizes the sdModel.v. The corresponding RTL file is rtl/verilog/sdc_controller.v | ||
. sim/rtl_sim/log Log dir created during simulation | ||
. sim/rtl_sim/run/xcelium_run simulation run directory for Xcelium | ||
. sim/rtl_sim/bin contains Xcelium_Makefile | ||
|
||
Changes to get the files to run and pass on Xcelium : | ||
|
||
. In bench/verilog/wb_master_behavioral.v, replace 'return' (match exact case and word) with 'return_type'. As per LRM, 'return' is a SV keyword and cannot be used as a variable name. | ||
[Note : A request to make this change to Github Repo for SD Card open source code has been submitted. Check latest file from Github for changes.] | ||
|
||
. In bench/verilog/sd_controller_top_tb.sv, | ||
. add `include of all the *.v files (under bench/verilog/) -> sdModel.v, wb_master_behavioral.v, wb_slave_behavioral.v, wb_bus_mon.v, wb_master32.v | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why is that needed ? |
||
. change the path as -> `define LOG_DIR "../../log", parameter ramdisk="../../bin/ramdisk2.hex", parameter sd_model_log_file="../../log/sd_model.log", parameter wb_memory_file="../../bin/wb_memory.txt" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would preffer to reorganise the directory structure to not to have to change any code for different simulators. |
||
|
||
Simulation: To start simulation and run all the tests with Xcelium, | ||
|
||
#> cd sim/rtl_sim/run/xcelium_run | ||
|
||
#> make | ||
This compiles and runs all the tests and creates separate snapshot directories(*_tb_dir) as well as logs for every test. The logs can be found under *_tb_compile.log and *_tb_run.log | ||
|
||
Every TB is self-checking with assertions. If the run log displays - | ||
# testbench name starts.. | ||
# testbench name finish.. | ||
without any assertion in between errors, the test passes. | ||
|
||
#> make *_tb | ||
compiles and executes given testbench. Refers to any individual testbench as listed by print_testbenches target. Example for testbench_name : sd_controller_top_tb | ||
|
||
#> make *_tb_gui | ||
same as *_tb but opens Indago GUI for interactive debug for the given testbench | ||
|
||
#> make clean | ||
Removes all log files and snapshots (*_tb_dir) | ||
|
||
#> make print_testbenches | ||
Lists all testbenches. | ||
|
||
|
||
Additional Info : | ||
|
||
EXAMPLE: To run sd_controller_top_tb as a standalone test using xrun commands - | ||
|
||
#> cd sim/rtl_sim/ | ||
|
||
#> mkdir log | ||
|
||
#> cd run/xcelium_run | ||
|
||
#> xrun -clean -elaborate -sv ../../../../rtl/verilog/*.v ../../../../bench/verilog/sd_controller_top_tb.sv -incdir ../../../../rtl/verilog/ -incdir ../../../../bench/verilog -xmlibdirname sd_controller_top_tb_dir | ||
This compiles the TOP test and all RTL files and creates a snapshot using -xmlibdirname in the location specified. Creating a specific snapshot for every TB prevents overriding of the same xcelium.d for the tests. | ||
|
||
#> xrun -R -xmlibdirname sd_controller_top_tb_dir | ||
This runs the specified test. Log information is stored in xrun.log | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
###################################################################### | ||
#### #### | ||
#### WISHBONE SD Card Controller IP Core #### | ||
#### #### | ||
#### Xcelium Makefile #### | ||
#### #### | ||
###################################################################### | ||
|
||
|
||
RUN_DIR = $(shell pwd) | ||
BIN_DIR = $(shell pwd)/../../bin | ||
LOG_DIR = $(shell pwd)/../../log | ||
|
||
WORK_DIR = ../../../../rtl/verilog | ||
TEST_DIR = ../../../../bench/verilog | ||
WORK_SOURCES = $(wildcard $(WORK_DIR)/*.v) | ||
TEST_SOURCES = $(wildcard $(TEST_DIR)/*.sv) $(wildcard $(TEST_DIR)/*.v) | ||
|
||
|
||
all: simulate | ||
|
||
|
||
TESTBENCH_SOURCES = $(shell ls $(TEST_DIR)/*_tb.sv) | ||
TESTBENCHES = $(shell echo $(TESTBENCH_SOURCES) | sed 's:$(TEST_DIR)/::g' | sed 's:\.sv::g') | ||
|
||
|
||
$(LOG_DIR): | ||
mkdir $@ | ||
|
||
|
||
%_tb: $(LOG_DIR) | ||
@echo " " | ||
@echo "Running $@... " | ||
@echo " " | ||
xrun -sv -clean -elaborate $(WORK_SOURCES) $(TEST_DIR)/[email protected] -incdir $(WORK_DIR) -incdir $(TEST_DIR) -xmlibdirname $@_dir > $@_compile.log | ||
@echo " " | ||
xrun -R -xmlibdirname $@_dir > $@_run.log | ||
@echo " " | ||
@echo "Compile log at $@_compile.log" | ||
@echo "Simulation log at $@_run.log" | ||
@echo " " | ||
|
||
%_tb_gui: $(LOG_DIR) | ||
@echo " " | ||
@echo "Running $@... " | ||
@echo " " | ||
xrun -sv -clean -elaborate $(WORK_SOURCES) $(TEST_DIR)/$(@:_gui=).sv -incdir $(WORK_DIR) -incdir $(TEST_DIR) -xmlibdirname $@_dir -lwdgen -access +rwc | ||
@echo " " | ||
xrun -R -xmlibdirname $@_dir -gui -indago | ||
|
||
|
||
simulate: $(TESTBENCHES) | ||
|
||
|
||
print_work_sources: | ||
echo $(WORK_SOURCES) | ||
|
||
print_test_sources: | ||
echo $(TEST_SOURCES) | ||
|
||
print_testbenches: | ||
echo $(TESTBENCHES) | ||
|
||
clean: | ||
echo "Removing ..." | ||
rm -rfv *.log | ||
rm -rfv *_dir | ||
rm -rfv $(LOG_DIR) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include ../../bin/Xcelium_Makefile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
merged