CTU CAN FD is soft IP-Core written in VHDL which supports ISO and NON-ISO versions of CAN FD protocol.
CTU CAN FD is not a prototype. RTL is compliant with ISO 1198-1:2015. CTU CAN FD is tested by ISO 16845-1 2016 sequence in regression run on every merged request.
RTL is implemented in VHDL-93, synthesizable with most FPGA and ASIC flows. TB is implemented with VHDL 2008.
CTU CAN FD RTL and TB are published under following license :
Commercial usage of RTL and TB requires authors consent.
Linux driver for CTU CAN FD is published under GPLv2 license.
The CAN protocol is developed by Robert Bosch GmbH and protected by patents. Anybody who wants to implement this IP core on silicon or FPGA for commercial purposes has to obtain CAN protocol license from Bosch.
RTL design of CTU CAN FD is independent from vendor specific libraries or macros. It is fully-synchronous design (single clock domain).
FPGA / ASIC target can be selected by top level generic. ASIC target implements clock gating for memories to achieve low dynamic power consumption. Additionally, clock enables are used frequently to allow inferred clock gating on ASIC. Last but not least, RTL is DFT insertion ready and contains additional support for manufacturing testability.
Architecture of CTU CAN FD is described in:
Functional description of CTU CAN FD is described in:
CTU CAN FD has its own test-bench and VIP (verification IP) with ISO 16845-1 2016 compliance sequence. In addition to ISO 11898-1 compliance, all other features of CTU CAN FD are verified.
There are 3 types of tests available in CTU CAN FD test-bench:
- Feature tests (open-source, VHDL)
- Reference tests (open-source, VHDL)
- Compliance tests (open-source, C++ library linked to simulation, ISO16845 Compliance library).
TB has extensive PSL functional coverage, see regression coverage in:
Description of test-bench and CTU CAN FD VIP is in:
CTU CAN FD is simulated as RTL and as post-synthesis gate-level netlist with Xilinx UNISIM library (unit delay simulation).
See the instructions below in "How to run CTU CAN FD testbench" subsection.
All tests are automated into several regression runs:
-
Fast ASIC - DUT configuration for ASIC, short run
-
Fast FPGA - DUT configuration for FPGA, short run
-
Compliance short - Runs majority of ISO 11845-1 compliance test sequence
-
Nightly - DUT configuration for ASIC with different DUT parametrizations
-
Compliance typ - Runs all ISO 11845-1 tests with "typical" bit-rate on CAN bus.
-
Compliance max - Runs all ISO 11845-1 tests with "maximal" bit-rate on CAN bus.
-
Compliance min - Runs all ISO 11845-1 tests with "minimal" bit-rate on CAN bus.
-
Gate level simple - Runs most of feature tests on gate level netlist as DUT
-
Gate level compliance - Runs most of ISO 11845-1 tests on gate level netlist as DUT.
Short summary of results from last regression (including all test types) can be downloaded from: Regression summary
CTU CAN FD has been synthesized into Xilinx and Intel FPGAs on several FPGA families (Zynq, Cyclone IV/V, Spartan). BRAMs are inferred for TX and RX buffers memories. Maximal reachable frequency is around 100 MHz on Cyclone V/IV and Xilinx Zynq devices.
Daily CI pipeline executes example synthesis on Xilinx Zynq device with 3 different device configurations:
2 TXT Buffers, 32 word RX Buffer, no frame filters Results: Area Timing
4 TXT Buffers, 128 word RX Buffer, only one bit filter Results: Area Timing
8 TXT Buffers, 1024 word RX Buffer, all frame filters Results: Area Timing
Note that design is constrained to 100 MHz with no timing violations, combinatorial loops or latches inferred (FPGA config without clock gate is used). These results together with gate level simulations (see "Test-bench" above), provide good indicator of high-quality RTL design.
- Compile files from
src/slf_rtl.yml
YAML file intoctu_can_fd_rtl
VHDL library in the order files are present insrc/slf_rtl.yml
. - Integrate
can_top_level
entity in your design. See for details of CTU CAN FD interface.
There are two options to run CTU CAN FD regression:
- With VUnit + GHDL
- With Synopsys VCS
Each regression run corresponds to a target from sim/ts_sim_config.yml
file. There are
following targets available:
- tb_rtl_test_fast_asic
- tb_rtl_test_fast_fpga
- tb_rtl_test_nightly
- tb_rtl_test_compliance_short
- tb_rtl_test_compliance_full_typ
- tb_rtl_test_compliance_full_min
- tb_rtl_test_compliance_full_max
In CTU CAN FD repository root:
./run-docker-test
- This will pull and launch docker image with GHDL, Vunit, CMake and C Compiler.cd main_tb/iso-16845-compliance-tests
./build.sh
- This builds compliance tests librarycd ../..
./run.py <TARGET_NAME>
To run all tests from<TARGET_NAME>
target.
If you run ./run.py <TARGET_NAME> --list
you will get list of all available tests
for given target.
To run with VCS, you will need Tropic Square HW simulation flow, to get it do following:
git clone https://github.com/tropicsquare/ts-hw-scripts
export PATH=`pwd`/ts-hw-scripts/scripts:$PATH
- Make sure you have all Python dependencies required to run
ts-hw-scripts
. See README ofts-hw-scripts
.
Then, you need cmake
(version 3.5 or higher) and a C compiler with C++17 support
(e.g. GCC 7.2.0 or higher).
Then in CTU CAN FD repository build compliance tests:
export TS_REPO_ROOT=`pwd`
- Sets an important environment variable for simulation flow.cd test/main_tb/iso-16845-compliance-tests
./build.sh
- This builds compliance tests libraryexport LD_LIBRARY_PATH=`pwd`/build/Debug/src/cosimulation
- Makes compliance library visible for VCSexport CTU_TB_TOP_TARGET="tb_ctu_can_fd_rtl_simple"
- Pass top target to simulation flowcd $TS_REPO_ROOT
ts_sim_run.py --recompile --clear <TARGET_NAME> /*
If you run ``ts_sim_run.py --recompile --clear <TARGET_NAME> --list-tests``` you will get list of available tests for given target.
CTU CAN FD testbench is a stand-alone testbench with ctu_can_fd_tb_top
as top level
simulated entity. All testing/verification functionality is however implemented in
CTU CAN FD VIP (ctu_can_fd_vip
entity). It is possible to integrate CTU CAN FD
VIP also to your custom testbench if you connect the VIP to DUT via VHDL hierarchical
references (this is similar to binding System Verilog interfaces in UVM TB).
VIP can be integrated into other test-bench with help of document.
To compile the VIP / TB in such scenario, you first need to compile RTL (testbench depends on RTL). Then:
- Compile files from
test/slf_tb_dependencies_simple.yml
- Compile files from
test/slf_tb_common.yml
- Integrate
ctu_can_fd_vip
into your TB, and connect its interface to CTU CAN FD in design.
If you like the design, and would like to use-it, let us know. We are looking for co-operation, especially on ISO certification which is a big step that CTU CAN FD would like to take. Please, respect the license, and dont use the RTL and TB in your commercial device without a license contract.
To simulate CTU CAN FD, following tools are used:
GHDL, VHDL simulator: GHDL.
GTKWave, Waveform viewer: GTKWave
Vunit, VHDL unit test framework, with modifications allowing to start GTKWave interactively when simulation run starts: Vunit.
Python 3 and following modules: pyvcd attrs jinja2 parsy pyyaml click yattag json2html
There is a docker image which contains all dependencies needed available at: Simulation docker.
CTU CAN FD has SocketCAN Linux driver which is described in:
Driver consists from 3 parts:
- Network
- Platform
- PCI
Driver has been tested on three boards:
Operation up to 5 Mbits was tested (depending on physical layer transceiver type).
Linux driver was debugged and tested manually against Kvaser devices, CANoe and other CAN FD controllers. Regular communication and handling of Error states were debugged manually. Automated test for latest IP core version version is run daily at CTU FEE. It pulls latest CTU CAN FD RTL and integrates them into respective Xilinx Zynq FPGA project, compiles latest SocketCAN driver and runs CAN/CAN FD communication (500 Kbit/s Nominal bit rate, 4 Mbit Data bit rate) with randomly generated frames between CTU CAN FDs and FD tolerant SJA1000. Results can be found at:..
However, there are no written tests for the driver itself (apart from compiling it without error and passing Linux kernels checkpatch which is required for pipeline to pass). In future QEMU + VPCIE + GHDL cosimulation is planned.
The CTU CAN FD IP core functional model is part of QEMU mainline. QEMU CAN documentation docs/system/devices/can.rst includes section about CTU CAN FD emulation setup.
There are several options for further development:
- Linux driver testing (QEMU + VPCIE)
- Splitting design into two clock domains
- Support of TTCAN protocol
- Support of CAN XL protocol
- Other features