📄 eth_txcounters.v
字号:
////////////////////////////////////////////////////////////////////////// //////// eth_txcounters.v //////// //////// This file is part of the Ethernet IP core project //////// http://www.opencores.org/projects/ethmac/ //////// //////// Author(s): //////// - Igor Mohor (igorM@opencores.org) //////// - Novan Hartadi (novan@vlsi.itb.ac.id) //////// - Mahmud Galela (mgalela@vlsi.itb.ac.id) //////// //////// All additional information is avaliable in the Readme.txt //////// file. //////// ////////////////////////////////////////////////////////////////////////////// //////// Copyright (C) 2001 Authors //////// //////// This source file may be used and distributed without //////// restriction provided that this copyright statement is not //////// removed from the file and that any derivative work contains //////// the original copyright notice and the associated disclaimer. //////// //////// This source file is free software; you can redistribute it //////// and/or modify it under the terms of the GNU Lesser General //////// Public License as published by the Free Software Foundation; //////// either version 2.1 of the License, or (at your option) any //////// later version. //////// //////// This source is distributed in the hope that it will be //////// useful, but WITHOUT ANY WARRANTY; without even the implied //////// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR //////// PURPOSE. See the GNU Lesser General Public License for more //////// details. //////// //////// You should have received a copy of the GNU Lesser General //////// Public License along with this source; if not, download it //////// from http://www.opencores.org/lgpl.shtml //////// ////////////////////////////////////////////////////////////////////////////// CVS Revision History//// $Log: eth_txcounters.v,v $// Revision 1.1 2005/10/05 01:34:00 jdhar// initial checkin with TSK3000 processor//// Revision 1.1 2005/07/31 05:51:11 jdhar// initial commit for TSK3000 files//// Revision 1.6 2005/02/21 11:25:27 igorm// Delayed CRC fixed.//// Revision 1.5 2002/04/22 14:54:14 mohor// FCS should not be included in NibbleMinFl.//// Revision 1.4 2002/01/23 10:28:16 mohor// Link in the header changed.//// Revision 1.3 2001/10/19 08:43:51 mohor// eth_timescale.v changed to timescale.v This is done because of the// simulation of the few cores in a one joined project.//// Revision 1.2 2001/09/11 14:17:00 mohor// Few little NCSIM warnings fixed.//// Revision 1.1 2001/08/06 14:44:29 mohor// A define FPGA added to select between Artisan RAM (for ASIC) and Block Ram (For Virtex).// Include files fixed to contain no path.// File names and module names changed ta have a eth_ prologue in the name.// File eth_timescale.v is used to define timescale// All pin names on the top module are changed to contain _I, _O or _OE at the end.// Bidirectional signal MDIO is changed to three signals (Mdc_O, Mdi_I, Mdo_O// and Mdo_OE. The bidirectional signal must be created on the top level. This// is done due to the ASIC tools.//// Revision 1.1 2001/07/30 21:23:42 mohor// Directory structure changed. Files checked and joind together.//// Revision 1.4 2001/06/27 21:27:45 mohor// Few typos fixed.//// Revision 1.2 2001/06/19 10:38:07 mohor// Minor changes in header.//// Revision 1.1 2001/06/19 10:27:57 mohor// TxEthMAC initial release.//////`include "timescale.v"module eth_txcounters (StatePreamble, StateIPG, StateData, StatePAD, StateFCS, StateJam, StateBackOff, StateDefer, StateIdle, StartDefer, StartIPG, StartFCS, StartJam, StartBackoff, TxStartFrm, MTxClk, Reset, MinFL, MaxFL, HugEn, ExDfrEn, PacketFinished_q, DlyCrcEn, StateSFD, ByteCnt, NibCnt, ExcessiveDefer, NibCntEq7, NibCntEq15, MaxFrame, NibbleMinFl, DlyCrcCnt );parameter Tp = 1;input MTxClk; // Tx clockinput Reset; // Resetinput StatePreamble; // Preamble stateinput StateIPG; // IPG stateinput [1:0] StateData; // Data stateinput StatePAD; // PAD stateinput StateFCS; // FCS stateinput StateJam; // Jam stateinput StateBackOff; // Backoff stateinput StateDefer; // Defer stateinput StateIdle; // Idle stateinput StateSFD; // SFD stateinput StartDefer; // Defer state will be activated in next clockinput StartIPG; // IPG state will be activated in next clockinput StartFCS; // FCS state will be activated in next clockinput StartJam; // Jam state will be activated in next clockinput StartBackoff; // Backoff state will be activated in next clockinput TxStartFrm; // Tx start frameinput [15:0] MinFL; // Minimum frame length (in bytes)input [15:0] MaxFL; // Miximum frame length (in bytes)input HugEn; // Pakets bigger then MaxFL enabledinput ExDfrEn; // Excessive deferral enabledinput PacketFinished_q; input DlyCrcEn; // Delayed CRC enabledoutput [15:0] ByteCnt; // Byte counteroutput [15:0] NibCnt; // Nibble counteroutput ExcessiveDefer; // Excessive Deferral occuringoutput NibCntEq7; // Nibble counter is equal to 7output NibCntEq15; // Nibble counter is equal to 15output MaxFrame; // Maximum frame occuredoutput NibbleMinFl; // Nibble counter is greater than the minimum frame lengthoutput [2:0] DlyCrcCnt; // Delayed CRC Countwire ExcessiveDeferCnt;wire ResetNibCnt;wire IncrementNibCnt;wire ResetByteCnt;wire IncrementByteCnt;wire ByteCntMax;reg [15:0] NibCnt;reg [15:0] ByteCnt;reg [2:0] DlyCrcCnt;assign IncrementNibCnt = StateIPG | StatePreamble | (|StateData) | StatePAD | StateFCS | StateJam | StateBackOff | StateDefer & ~ExcessiveDefer & TxStartFrm;assign ResetNibCnt = StateDefer & ExcessiveDefer & ~TxStartFrm | StatePreamble & NibCntEq15 | StateJam & NibCntEq7 | StateIdle | StartDefer | StartIPG | StartFCS | StartJam;// Nibble Counteralways @ (posedge MTxClk or posedge Reset)begin if(Reset) NibCnt <= #Tp 16'h0; else begin if(ResetNibCnt) NibCnt <= #Tp 16'h0; else if(IncrementNibCnt) NibCnt <= #Tp NibCnt + 1'b1; endendassign NibCntEq7 = &NibCnt[2:0];assign NibCntEq15 = &NibCnt[3:0];assign NibbleMinFl = NibCnt >= (((MinFL-3'h4)<<1) -1); // FCS should not be included in NibbleMinFlassign ExcessiveDeferCnt = NibCnt[13:0] == 16'h17b7;assign ExcessiveDefer = NibCnt[13:0] == 16'h17b7 & ~ExDfrEn; // 6071 nibblesassign IncrementByteCnt = StateData[1] & ~ByteCntMax | StateBackOff & (&NibCnt[6:0]) | (StatePAD | StateFCS) & NibCnt[0] & ~ByteCntMax;assign ResetByteCnt = StartBackoff | StateIdle & TxStartFrm | PacketFinished_q;// Transmit Byte Counteralways @ (posedge MTxClk or posedge Reset)begin if(Reset) ByteCnt[15:0] <= #Tp 16'h0; else begin if(ResetByteCnt) ByteCnt[15:0] <= #Tp 16'h0; else if(IncrementByteCnt) ByteCnt[15:0] <= #Tp ByteCnt[15:0] + 1'b1; endendassign MaxFrame = ByteCnt[15:0] == MaxFL[15:0] & ~HugEn;assign ByteCntMax = &ByteCnt[15:0];// Delayed CRC counteralways @ (posedge MTxClk or posedge Reset)begin if(Reset) DlyCrcCnt <= #Tp 3'h0; else begin if(StateData[1] & DlyCrcCnt == 3'h4 | StartJam | PacketFinished_q) DlyCrcCnt <= #Tp 3'h0; else if(DlyCrcEn & (StateSFD | StateData[1] & (|DlyCrcCnt[2:0]))) DlyCrcCnt <= #Tp DlyCrcCnt + 1'b1; endendendmodule
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -