CAN FD IP Core written in VHDL. Designed to be compliant with ISO1198-1:2015. Supports ISO and NON-ISO versions of CAN FD protocol.
CTU CAN FD is published under MIT license shown in:
CTU CAN FD linux driver 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.
CTU CAN FD RTL is written in VHDL with no vendor specific libraries/components required. CTU CAN FD is fully synchronous design. CTU CAN FD is written with frequent usage of clock enables to allow inferred clock gating on ASIC.
Architecture of CTU CAN FD is described in:
Functional description of CTU CAN FD is in datasheet:
To simulate CTU CAN FD following dependencies are needed:
GHDL, VHDL simulator with custom changes:
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
For simulation environment, there is a docker image available at:
Simulation docker.
CTU CAN FD verification is done in GHDL + VUnit + GTKWave combination. Verification is done on RTL (no gate level sims so far...).
There are following types of tests:
- Unit tests - Verify functionality of some modules stand-alone. Testbench for each module.
- Feature tests - Verify features of CTU CAN FD. Common testbench for many test-cases
- Sanity test - Real bus simulation (with delays, transceiver, noise). One testbench, different configurations.
- Reference test - Verify reception from reference CAN controller. One testbench, different file sets.
Test architecture is further described in:
TODO.
Each test/testbench has common header which is used to collect what has been verified (call it VRM if you want...):
There is PSL functional coverage and PSL assertions available in:
For now GCov is used to collect code coverage in GHDL and its results are shown in:
All tests are automated into two runs:
- Fast - no randomization (seed=0), must pass before merge request is merged.
- Nightly - randomized, runs every night. Should be debugged before release.
Results of latest test run + logs are available under:
At the moment, CTU CAN FD compliance towards ISO1198-1:2015 has not been proven. It is intended for future to build testbench with test sequences described in ISO16845-1:2016.
CTU CAN FD has been synthesized into Xilinx and Intel FPGAs. BRAMs were inferred for
TX and RX buffers. CTU CAN FD reached about 100 MHz of maximal frequency. Synthesis
results are shown in:
TODO.
CTU CAN FD has SocketCAN Linux driver which is described in:
There are three driver 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 the newer IP core version version is run daily at CTU FEE. It pulls latest CTU CAN FD sources 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 emulation has been integrated into QEMU mainline. QEMU CAN documentation docs/can.txt describes CTU CAN FD emulation setup.
CTU CAN FD RTL is postprocessed via script which removes PSL assertions and some signals intended only for verification purposes. This is done to save simulation time in systems where CTU CAN FD is integrated (there are hundreds of PSL cover points and PSL assertions). RTL release package from latest sources is available in:
TODO