verilog-ethernet VS cocotbext-axi

Compare verilog-ethernet vs cocotbext-axi and see what are their differences.

verilog-ethernet

Verilog Ethernet components for FPGA implementation (by alexforencich)

cocotbext-axi

AXI interface modules for Cocotb (by alexforencich)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
verilog-ethernet cocotbext-axi
32 4
1,916 182
- -
8.8 4.6
about 2 months ago 6 months ago
Verilog Python
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

verilog-ethernet

Posts with mentions or reviews of verilog-ethernet. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-21.
  • Quartus Tcl Build Script
    1 project | /r/FPGA | 25 May 2023
    Tcl, not sure, but I have done it with makefiles. See https://github.com/alexforencich/verilog-ethernet/tree/master/example/C10LP/fpga.
  • Using Si5324 as a clock generator on virtex-7 board
    2 projects | /r/FPGA | 21 May 2023
    For that part I think you need to use the software from silicon labs (might be skyworks now) to generate the stuff you need to write to the registers. Then, you can use something like https://github.com/alexforencich/verilog-i2c/blob/master/rtl/i2c_init.v. See https://github.com/alexforencich/verilog-ethernet/tree/master/example/HTG9200/fpga_10g for an example that targets the Si5341 specifically.
  • DE2-115 Ethernet Network Setup
    2 projects | /r/FPGA | 25 Mar 2023
    For a personal project I'm trying to send data via Ethernet from my laptop into the FPGA, where it has some filtering and other processing done to it, then back into my laptop. I've been trying to get this repo to work, but there's a problem: my ancient macbook can't run Quartus, so I need to use campus PCs to build the project and program the board, but I don't have permissions to successfully run the makefiles that build the project.
  • ROS 2 Humble in AMD KR260 with Yocto
    2 projects | /r/ECE | 28 Feb 2023
    No there's none. Not in this post at least, but it certain is being used. If you're interested in that, follow my progress at https://github.com/alexforencich/verilog-ethernet/issues/146 (or stay tuned/reach out to Acceleration Robotics for early previews and support) for a 10G NIC on the KR260.
  • Choice of LFSR When implementing the ARP Cache in a UDP Stack
    1 project | /r/FPGA | 20 Feb 2023
    So, im trying to understand the UDP implementation in verilog-ethernet. In particular I am looking into the ARP Cache and have a query.
  • Preference for Combinational or Sequential design?
    1 project | /r/FPGA | 17 Jan 2023
    I've been studying u/alexforencich's ethernet library since I'm working on a similar project. I've been noting his interesting design style. When I think about a solution for a problem, I immediately naturally thing about a sequential design whereas he has tons of combination logic in his designs.
  • Are there any free/open source Lattice ECP5 Ethernet MAC IP Cores?
    3 projects | /r/FPGA | 28 Nov 2022
  • Verilog Question- Setting a register concurrently twice in always block
    1 project | /r/FPGA | 8 Nov 2022
    I was studying Alex Forencich's FCS verilog and noticed the following always block:
  • LiteX SGMII support
    1 project | /r/FPGA | 1 Nov 2022
    This repo support the VCU108 for a Verilog ethernet connection: https://github.com/alexforencich/verilog-ethernet
  • Stream data into FPGA from PC
    1 project | /r/FPGA | 24 Sep 2022

cocotbext-axi

Posts with mentions or reviews of cocotbext-axi. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-04.
  • Having trouble with cocotb AXI simulation, cocotb.scheduler error
    1 project | /r/cocotb | 26 Aug 2023
    0.00ns INFO ..b.dma_wrapper.m_axi_s2mm AXI slave model (write) 0.00ns INFO ..b.dma_wrapper.m_axi_s2mm cocotbext-axi version 0.1.24 0.00ns INFO ..b.dma_wrapper.m_axi_s2mm Copyright (c) 2021 Alex Forencich 0.00ns INFO ..b.dma_wrapper.m_axi_s2mm https://github.com/alexforencich/cocotbext-axi 0.00ns DEBUG gpi m_axi_s2mm_awvalid has 1 elements 0.00ns DEBUG gpi m_axi_s2mm_awprot has 3 elements 0.00ns INFO ..b.dma_wrapper.m_axi_s2mm Reset de-asserted 0.00ns DEBUG gpi m_axi_s2mm_wvalid has 1 elements 0.00ns INFO ..b.dma_wrapper.m_axi_s2mm Reset de-asserted 0.00ns DEBUG gpi m_axi_s2mm_bvalid has 1 elements 0.00ns DEBUG gpi m_axi_s2mm_bready has 1 elements 0.00ns DEBUG gpi m_axi_s2mm_bresp has 2 elements 0.00ns INFO ..b.dma_wrapper.m_axi_s2mm Reset de-asserted 0.00ns DEBUG gpi m_axi_s2mm_awaddr has 32 elements
  • [CocoTB for beginners]: FPGA/ASIC Testbenches in Python + Automated Testing in GitHub​
    4 projects | /r/FPGA | 4 Apr 2022
    I was hoping to decouple the designs from any particular vendor as much as I could so I would interface with the core (dut) with a Cocotb AXI Lite master to get/set registers. Then if I were using something like an AXI Stream to send/receive audio or video data there was a Cocotb python driver to process the data in the test bench. As an example, in part 5 the graphics core generated a 16x4 color bar image over AXI video stream that was captured by a Cocotb AXI Stream sink and then 'displayed' as hex values in one of the test.
  • Simulating AXI Accessing to DDR
    1 project | /r/FPGA | 23 Mar 2022
    This is where you can use a BFM (bus functional model). Basically, you can connect your design to a simulation model of the RAM. I wrote some cocotb extensions for doing stuff like this in cocotb, you can give that a try, assuming your code works with a simulator that's compatible with cocotb: https://github.com/alexforencich/cocotbext-axi
  • Cocotb
    3 projects | /r/FPGA | 7 Nov 2021
    The cocotb bus repo has many of the useful drivers and monitors. https://github.com/cocotb/cocotb-bus/tree/master/src/cocotb_bus. There is also https://github.com/alexforencich/cocotbext-axi for some relevant AXI examples that you can also just use.

What are some alternatives?

When comparing verilog-ethernet and cocotbext-axi you can also consider the following projects:

corundum - Open source FPGA-based NIC and platform for in-network compute

cocotb - cocotb, a coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python

litex - Build your hardware, easily!

cocotb-bus - Pre-packaged testbenching tools and reusable bus interfaces for cocotb

SpinalHDL - Scala based HDL

rohd - The Rapid Open Hardware Development (ROHD) framework is a framework for describing and verifying hardware in the Dart programming language.

embox - Modular and configurable OS for embedded applications

pyxsi - Python/C/RTL cosimulation with Xilinx's xsim simulator

satcat5 - SatCat5 is a mixed-media Ethernet switch that lets a variety of devices communicate on the same network.

verilog-wishbone - Verilog wishbone components

liteeth - Small footprint and configurable Ethernet core