.. index:: single: Third-Party Libraries .. _THIRD: Third Party Libraries ##################### The PoC-Library is shiped with different third party libraries, which are located in the ``/lib/`` folder. This document lists all these libraries, their websites and licenses. .. # =========================================================================================================================================================== .. index:: pair: Third-Party Libraries; Cocotb .. _THIRD:Cocotb: Cocotb ****** `Cocotb `_ is a coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python. +--------------------+-----------------------------------------------------------------------------------------------------------+ | **Folder:** | ``\lib\cocotb\`` | +--------------------+-----------------------------------------------------------------------------------------------------------+ | **Copyright:** | Copyright © 2013, `Potential Ventures Ltd. `_, SolarFlare Communications Inc. | +--------------------+-----------------------------------------------------------------------------------------------------------+ | **License:** | :doc:`Revised BSD License (local copy) ` | +--------------------+-----------------------------------------------------------------------------------------------------------+ | **Documentation:** | `http://cocotb.readthedocs.org/ `_ | +--------------------+-----------------------------------------------------------------------------------------------------------+ | **Source:** | `https://github.com/potentialventures/cocotb `_ | +--------------------+-----------------------------------------------------------------------------------------------------------+ .. # =========================================================================================================================================================== .. index:: pair: Third-Party Libraries; OSVVM .. _THIRD:OSVVM: OSVVM ***** **Open Source VHDL Verification Methodology (OS-VVM)** is an intelligent testbench methodology that allows mixing of “Intelligent Coverage” (coverage driven randomization) with directed, algorithmic, file based, and constrained random test approaches. The methodology can be adopted in part or in whole as needed. With OSVVM you can add advanced verification methodologies to your current testbench without having to learn a new language or throw out your existing testbench or testbench models. +----------------+---------------------------------------------------------------------------------------+ | **Folder:** | ``\lib\osvvm\`` | +----------------+---------------------------------------------------------------------------------------+ | **Copyright:** | Copyright © 2012-2016 by `SynthWorks Design Inc. `_ | +----------------+---------------------------------------------------------------------------------------+ | **License:** | :doc:`Artistic License 2.0 (local copy) ` | +----------------+---------------------------------------------------------------------------------------+ | **Website:** | `http://osvvm.org/ `_ | +----------------+---------------------------------------------------------------------------------------+ | **Source:** | `https://github.com/JimLewis/OSVVM `_ | +----------------+---------------------------------------------------------------------------------------+ .. # =========================================================================================================================================================== .. index:: pair: Third-Party Libraries; UVVM .. _THIRD:UVVM: UVVM **** The Open Source **UVVM (Universal VHDL Verification Methodology) - VVC (VHDL Verification Component) Framework** for making structured VHDL testbenches for verification of FPGA. UVVM consists currently of: Utility Library, VVC Framework and Verification IPs (VIP) for various protocols. **For what do I need this VVC Framework?** |br| The VVC Framework is a VHDL Verification Component system that allows multiple interfaces on a DUT to be stimulated/handled simultaneously in a very structured manner, and controlled by a very simple to understand software like a test sequencer. VVC Framework is unique as an open source VHDL approach to building a structured testbench architecture using Verification components and a simple protocol to access these. As an example a simple command like ``uart_expect(UART_VVCT, my_data)``, or ``axilite_write(AXILITE_VVCT, my_addr, my_data, my_message)`` will automatically tell the respective VVC (for UART or AXI-Lite) to execute the ``uart_receive()`` or ``axilite_write()`` BFM respectively. +----------------+---------------------------------------------------------------------------------------+ | **Folder:** | ``\lib\uvvm\`` | +----------------+---------------------------------------------------------------------------------------+ | **Copyright:** | Copyright © 2016 by `Bitvis AS `_ | +----------------+---------------------------------------------------------------------------------------+ | **License:** | :doc:`The MIT License (local copy) ` | +----------------+---------------------------------------------------------------------------------------+ | **Website:** | `http://bitvis.no/ `_ | +----------------+---------------------------------------------------------------------------------------+ | **Source:** | `https://github.com/UVVM/UVVM_All `_ | +----------------+---------------------------------------------------------------------------------------+ .. # =========================================================================================================================================================== .. index:: pair: Third-Party Libraries; VUnit .. _THIRD:VUnit: VUnit ***** `VUnit `_ is an open source unit testing framework for VHDL released under the terms of :doc:`Mozilla Public License, v. 2.0 `. It features the functionality needed to realize continuous and automated testing of your VHDL code. VUnit doesn't replace but rather complements traditional testing methodologies by supporting a "test early and often" approach through automation. +----------------+---------------------------------------------------------------------------------------------------------------+ | **Folder:** | ``\lib\vunit\`` | +----------------+---------------------------------------------------------------------------------------------------------------+ | **Copyright:** | Copyright © 2014-2016, Lars Asplund `lars.anders.asplund@gmail.com `_ | +----------------+---------------------------------------------------------------------------------------------------------------+ | **License:** | :doc:`Mozilla Public License, Version 2.0 (local copy) ` | +----------------+---------------------------------------------------------------------------------------------------------------+ | **Website:** | `https://vunit.github.io/ `_ | +----------------+---------------------------------------------------------------------------------------------------------------+ | **Source:** | `https://github.com/VUnit/vunit `_ | +----------------+---------------------------------------------------------------------------------------------------------------+ Updating Linked Git Submodules ****************************** The third party libraries are embedded as Git submodules. So if the PoC-Library was not cloned with option ``--recursive`` it's required to run the sub-module initialization manually: On Linux ======== .. code-block:: Bash cd PoCRoot git submodule init git submodule update We recommend to rename the default remote repository name from 'origin' to 'github'. .. code-block:: Bash cd PoCRoot\lib\ .. todo:: write Bash code for Linux On OS X ======== Please see the Linux instructions. On Windows ========== .. code-block:: PowerShell cd PoCRoot git submodule init git submodule update We recommend to rename the default remote repository name from 'origin' to 'github'. .. code-block:: PowerShell cd PoCRoot\lib\ foreach($dir in (dir -Directory)) { cd $dir git remote rename origin github cd .. }