Skip to content

OSVVM/Ethernet

Repository files navigation

Ethernet Library

The Ethernet library includes verification components for Ethernet Phy and MAC that support GMII/RGMII/MII/RMII.

Testbenches are Included

Testbenches are in the Git repository, so you can run a simulation and see a live example of how to use the models.

Ethernet xMii Project Structure

  • Ethernet
    • src (directory)
      • xMiiPhy.vhd - Phy VC that supports GMII/RGMII/MII/RMII
      • xMiiPhyRxTransmitter.vhd - Handles TX interface for Phy
      • xMiiPhyTxReceiver.vhd - Handles RX interface for Phy
      • xMiiMac.vhd - Mac VC that supports GMII/RGMII/MII/RMII
      • xMiiMacTransmitter.vhd - Handles TX interface for MAC
      • xMiiMacReceiver.vhd - Handles RX interface for MAC
      • xMiiTbPkg.vhd - Package with Types, Constants, and Subprograms supporting xMiiPhy and xMiiMac
      • xMiiComponentPkg.vhd - package with component declaration for xMiiPhy and xMiiMac
      • xMiiContext.vhd - Package references for xMiiPhy and xMiiMac
    • TestStandAlone (directory)
      • TbStandAlone.vhd - Test harness that connects Phy to MAC VC to do a standalone test.
      • TestCtrl_e.vhd - entity declaration for test sequencer
      • Tb_xMii1.vhd - test architecture

Release History

For the release history see, CHANGELOG.md

Learning OSVVM

You can find an overview of OSVVM at osvvm.github.io. Alternately you can find our pdf documentation at OSVVM Documentation Repository.

You can also learn OSVVM by taking the class, Advanced VHDL Verification and Testbenches - OSVVM™ BootCamp

Download OSVVM Libraries

OSVVM is available as either a git repository OsvvmLibraries or zip file from osvvm.org Downloads Page.

On GitHub, all OSVVM libraries are a submodule of the repository OsvvmLibraries. Download all OSVVM libraries using git clone with the “–recursive” flag:

  $ git clone --recursive https://github.com/osvvm/OsvvmLibraries

Run The Demos

A great way to get oriented with OSVVM is to run the demos. For directions on running the demos, see OSVVM Scripts.

Participating and Project Organization

The OSVVM project welcomes your participation with either issue reports or pull requests.

You can find the project Authors here and Contributors here.

DpRam/src

DpRam behavioral and verification components. Build these using DpRam/DpRam.pro script.

DpRam/testbench

The testbench provides testbenches to verify the DpRam src components.

More Information on OSVVM

OSVVM Forums and Blog: http://www.osvvm.org/
Gitter: https://gitter.im/OSVVM/Lobby
Documentation: osvvm.github.io
Documentation: PDF Documentation

Copyright and License

Copyright (C) 2006-2022 by SynthWorks Design Inc.
Copyright (C) 2022 by OSVVM Authors

This file is part of OSVVM.

Licensed under Apache License, Version 2.0 (the "License")
You may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.