1 |
6 |
julius |
//////////////////////////////////////////////////////////////////////
|
2 |
|
|
//// ////
|
3 |
|
|
//// eth_rxethmac.v ////
|
4 |
|
|
//// ////
|
5 |
|
|
//// This file is part of the Ethernet IP core project ////
|
6 |
409 |
julius |
//// http://www.opencores.org/project,ethmac ////
|
7 |
6 |
julius |
//// ////
|
8 |
|
|
//// Author(s): ////
|
9 |
|
|
//// - Igor Mohor (igorM@opencores.org) ////
|
10 |
|
|
//// - Novan Hartadi (novan@vlsi.itb.ac.id) ////
|
11 |
|
|
//// - Mahmud Galela (mgalela@vlsi.itb.ac.id) ////
|
12 |
|
|
//// ////
|
13 |
|
|
//// All additional information is avaliable in the Readme.txt ////
|
14 |
|
|
//// file. ////
|
15 |
|
|
//// ////
|
16 |
|
|
//////////////////////////////////////////////////////////////////////
|
17 |
|
|
//// ////
|
18 |
|
|
//// Copyright (C) 2001 Authors ////
|
19 |
|
|
//// ////
|
20 |
|
|
//// This source file may be used and distributed without ////
|
21 |
|
|
//// restriction provided that this copyright statement is not ////
|
22 |
|
|
//// removed from the file and that any derivative work contains ////
|
23 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
24 |
|
|
//// ////
|
25 |
|
|
//// This source file is free software; you can redistribute it ////
|
26 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
27 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
28 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
29 |
|
|
//// later version. ////
|
30 |
|
|
//// ////
|
31 |
|
|
//// This source is distributed in the hope that it will be ////
|
32 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
33 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
34 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
35 |
|
|
//// details. ////
|
36 |
|
|
//// ////
|
37 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
38 |
|
|
//// Public License along with this source; if not, download it ////
|
39 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
40 |
|
|
//// ////
|
41 |
|
|
//////////////////////////////////////////////////////////////////////
|
42 |
|
|
//
|
43 |
|
|
// CVS Revision History
|
44 |
|
|
//
|
45 |
403 |
julius |
// $Log: not supported by cvs2svn $
|
46 |
6 |
julius |
// Revision 1.12 2004/04/26 15:26:23 igorm
|
47 |
|
|
// - Bug connected to the TX_BD_NUM_Wr signal fixed (bug came in with the
|
48 |
|
|
// previous update of the core.
|
49 |
|
|
// - TxBDAddress is set to 0 after the TX is enabled in the MODER register.
|
50 |
|
|
// - RxBDAddress is set to r_TxBDNum<<1 after the RX is enabled in the MODER
|
51 |
|
|
// register. (thanks to Mathias and Torbjorn)
|
52 |
|
|
// - Multicast reception was fixed. Thanks to Ulrich Gries
|
53 |
|
|
//
|
54 |
|
|
// Revision 1.11 2004/03/17 09:32:15 igorm
|
55 |
|
|
// Multicast detection fixed. Only the LSB of the first byte is checked.
|
56 |
|
|
//
|
57 |
|
|
// Revision 1.10 2002/11/22 01:57:06 mohor
|
58 |
|
|
// Rx Flow control fixed. CF flag added to the RX buffer descriptor. RxAbort
|
59 |
|
|
// synchronized.
|
60 |
|
|
//
|
61 |
|
|
// Revision 1.9 2002/11/19 17:35:35 mohor
|
62 |
|
|
// AddressMiss status is connecting to the Rx BD. AddressMiss is identifying
|
63 |
|
|
// that a frame was received because of the promiscous mode.
|
64 |
|
|
//
|
65 |
|
|
// Revision 1.8 2002/02/16 07:15:27 mohor
|
66 |
|
|
// Testbench fixed, code simplified, unused signals removed.
|
67 |
|
|
//
|
68 |
|
|
// Revision 1.7 2002/02/15 13:44:28 mohor
|
69 |
|
|
// RxAbort is an output. No need to have is declared as wire.
|
70 |
|
|
//
|
71 |
|
|
// Revision 1.6 2002/02/15 11:17:48 mohor
|
72 |
|
|
// File format changed.
|
73 |
|
|
//
|
74 |
|
|
// Revision 1.5 2002/02/14 20:48:43 billditt
|
75 |
|
|
// Addition of new module eth_addrcheck.v
|
76 |
|
|
//
|
77 |
|
|
// Revision 1.4 2002/01/23 10:28:16 mohor
|
78 |
|
|
// Link in the header changed.
|
79 |
|
|
//
|
80 |
|
|
// Revision 1.3 2001/10/19 08:43:51 mohor
|
81 |
|
|
// eth_timescale.v changed to timescale.v This is done because of the
|
82 |
|
|
// simulation of the few cores in a one joined project.
|
83 |
|
|
//
|
84 |
|
|
// Revision 1.2 2001/09/11 14:17:00 mohor
|
85 |
|
|
// Few little NCSIM warnings fixed.
|
86 |
|
|
//
|
87 |
|
|
// Revision 1.1 2001/08/06 14:44:29 mohor
|
88 |
|
|
// A define FPGA added to select between Artisan RAM (for ASIC) and Block Ram (For Virtex).
|
89 |
|
|
// Include files fixed to contain no path.
|
90 |
|
|
// File names and module names changed ta have a eth_ prologue in the name.
|
91 |
|
|
// File eth_timescale.v is used to define timescale
|
92 |
|
|
// All pin names on the top module are changed to contain _I, _O or _OE at the end.
|
93 |
|
|
// Bidirectional signal MDIO is changed to three signals (Mdc_O, Mdi_I, Mdo_O
|
94 |
|
|
// and Mdo_OE. The bidirectional signal must be created on the top level. This
|
95 |
|
|
// is done due to the ASIC tools.
|
96 |
|
|
//
|
97 |
|
|
// Revision 1.1 2001/07/30 21:23:42 mohor
|
98 |
|
|
// Directory structure changed. Files checked and joind together.
|
99 |
|
|
//
|
100 |
|
|
// Revision 1.1 2001/06/27 21:26:19 mohor
|
101 |
|
|
// Initial release of the RxEthMAC module.
|
102 |
|
|
//
|
103 |
|
|
//
|
104 |
|
|
//
|
105 |
|
|
//
|
106 |
|
|
//
|
107 |
|
|
|
108 |
|
|
`include "timescale.v"
|
109 |
|
|
|
110 |
|
|
|
111 |
|
|
module eth_rxethmac (MRxClk, MRxDV, MRxD, Reset, Transmitting, MaxFL, r_IFG, HugEn, DlyCrcEn,
|
112 |
|
|
RxData, RxValid, RxStartFrm, RxEndFrm, ByteCnt, ByteCntEq0, ByteCntGreat2,
|
113 |
|
|
ByteCntMaxFrame, CrcError, StateIdle, StatePreamble, StateSFD, StateData,
|
114 |
|
|
MAC, r_Pro, r_Bro,r_HASH0, r_HASH1, RxAbort, AddressMiss, PassAll, ControlFrmAddressOK
|
115 |
|
|
);
|
116 |
|
|
|
117 |
|
|
parameter Tp = 1;
|
118 |
|
|
|
119 |
|
|
|
120 |
|
|
|
121 |
|
|
input MRxClk;
|
122 |
|
|
input MRxDV;
|
123 |
|
|
input [3:0] MRxD;
|
124 |
|
|
input Transmitting;
|
125 |
|
|
input HugEn;
|
126 |
|
|
input DlyCrcEn;
|
127 |
|
|
input [15:0] MaxFL;
|
128 |
|
|
input r_IFG;
|
129 |
|
|
input Reset;
|
130 |
|
|
input [47:0] MAC; // Station Address
|
131 |
|
|
input r_Bro; // broadcast disable
|
132 |
|
|
input r_Pro; // promiscuous enable
|
133 |
|
|
input [31:0] r_HASH0; // lower 4 bytes Hash Table
|
134 |
|
|
input [31:0] r_HASH1; // upper 4 bytes Hash Table
|
135 |
|
|
input PassAll;
|
136 |
|
|
input ControlFrmAddressOK;
|
137 |
|
|
|
138 |
|
|
output [7:0] RxData;
|
139 |
|
|
output RxValid;
|
140 |
|
|
output RxStartFrm;
|
141 |
|
|
output RxEndFrm;
|
142 |
|
|
output [15:0] ByteCnt;
|
143 |
|
|
output ByteCntEq0;
|
144 |
|
|
output ByteCntGreat2;
|
145 |
|
|
output ByteCntMaxFrame;
|
146 |
|
|
output CrcError;
|
147 |
|
|
output StateIdle;
|
148 |
|
|
output StatePreamble;
|
149 |
|
|
output StateSFD;
|
150 |
|
|
output [1:0] StateData;
|
151 |
|
|
output RxAbort;
|
152 |
|
|
output AddressMiss;
|
153 |
|
|
|
154 |
|
|
reg [7:0] RxData;
|
155 |
|
|
reg RxValid;
|
156 |
|
|
reg RxStartFrm;
|
157 |
|
|
reg RxEndFrm;
|
158 |
|
|
reg Broadcast;
|
159 |
|
|
reg Multicast;
|
160 |
|
|
reg [5:0] CrcHash;
|
161 |
|
|
reg CrcHashGood;
|
162 |
|
|
reg DelayData;
|
163 |
|
|
reg [7:0] LatchedByte;
|
164 |
|
|
reg [7:0] RxData_d;
|
165 |
|
|
reg RxValid_d;
|
166 |
|
|
reg RxStartFrm_d;
|
167 |
|
|
reg RxEndFrm_d;
|
168 |
|
|
|
169 |
|
|
wire MRxDEqD;
|
170 |
|
|
wire MRxDEq5;
|
171 |
|
|
wire StateDrop;
|
172 |
|
|
wire ByteCntEq1;
|
173 |
|
|
wire ByteCntEq2;
|
174 |
|
|
wire ByteCntEq3;
|
175 |
|
|
wire ByteCntEq4;
|
176 |
|
|
wire ByteCntEq5;
|
177 |
|
|
wire ByteCntEq6;
|
178 |
|
|
wire ByteCntEq7;
|
179 |
|
|
wire ByteCntSmall7;
|
180 |
|
|
wire [31:0] Crc;
|
181 |
|
|
wire Enable_Crc;
|
182 |
|
|
wire Initialize_Crc;
|
183 |
|
|
wire [3:0] Data_Crc;
|
184 |
|
|
wire GenerateRxValid;
|
185 |
|
|
wire GenerateRxStartFrm;
|
186 |
|
|
wire GenerateRxEndFrm;
|
187 |
|
|
wire DribbleRxEndFrm;
|
188 |
|
|
wire [3:0] DlyCrcCnt;
|
189 |
|
|
wire IFGCounterEq24;
|
190 |
|
|
|
191 |
|
|
assign MRxDEqD = MRxD == 4'hd;
|
192 |
|
|
assign MRxDEq5 = MRxD == 4'h5;
|
193 |
|
|
|
194 |
|
|
|
195 |
|
|
// Rx State Machine module
|
196 |
|
|
eth_rxstatem rxstatem1 (.MRxClk(MRxClk), .Reset(Reset), .MRxDV(MRxDV), .ByteCntEq0(ByteCntEq0),
|
197 |
|
|
.ByteCntGreat2(ByteCntGreat2), .Transmitting(Transmitting), .MRxDEq5(MRxDEq5),
|
198 |
|
|
.MRxDEqD(MRxDEqD), .IFGCounterEq24(IFGCounterEq24), .ByteCntMaxFrame(ByteCntMaxFrame),
|
199 |
|
|
.StateData(StateData), .StateIdle(StateIdle), .StatePreamble(StatePreamble),
|
200 |
|
|
.StateSFD(StateSFD), .StateDrop(StateDrop)
|
201 |
|
|
);
|
202 |
|
|
|
203 |
|
|
|
204 |
|
|
// Rx Counters module
|
205 |
|
|
eth_rxcounters rxcounters1 (.MRxClk(MRxClk), .Reset(Reset), .MRxDV(MRxDV), .StateIdle(StateIdle),
|
206 |
|
|
.StateSFD(StateSFD), .StateData(StateData), .StateDrop(StateDrop),
|
207 |
|
|
.StatePreamble(StatePreamble), .MRxDEqD(MRxDEqD), .DlyCrcEn(DlyCrcEn),
|
208 |
|
|
.DlyCrcCnt(DlyCrcCnt), .Transmitting(Transmitting), .MaxFL(MaxFL), .r_IFG(r_IFG),
|
209 |
|
|
.HugEn(HugEn), .IFGCounterEq24(IFGCounterEq24), .ByteCntEq0(ByteCntEq0),
|
210 |
|
|
.ByteCntEq1(ByteCntEq1), .ByteCntEq2(ByteCntEq2), .ByteCntEq3(ByteCntEq3),
|
211 |
|
|
.ByteCntEq4(ByteCntEq4), .ByteCntEq5(ByteCntEq5), .ByteCntEq6(ByteCntEq6),
|
212 |
|
|
.ByteCntEq7(ByteCntEq7), .ByteCntGreat2(ByteCntGreat2),
|
213 |
|
|
.ByteCntSmall7(ByteCntSmall7), .ByteCntMaxFrame(ByteCntMaxFrame),
|
214 |
|
|
.ByteCntOut(ByteCnt)
|
215 |
|
|
);
|
216 |
|
|
|
217 |
|
|
// Rx Address Check
|
218 |
|
|
|
219 |
|
|
eth_rxaddrcheck rxaddrcheck1
|
220 |
|
|
(.MRxClk(MRxClk), .Reset( Reset), .RxData(RxData),
|
221 |
|
|
.Broadcast (Broadcast), .r_Bro (r_Bro), .r_Pro(r_Pro),
|
222 |
|
|
.ByteCntEq6(ByteCntEq6), .ByteCntEq7(ByteCntEq7), .ByteCntEq2(ByteCntEq2),
|
223 |
|
|
.ByteCntEq3(ByteCntEq3), .ByteCntEq4(ByteCntEq4), .ByteCntEq5(ByteCntEq5),
|
224 |
|
|
.HASH0(r_HASH0), .HASH1(r_HASH1),
|
225 |
|
|
.CrcHash(CrcHash), .CrcHashGood(CrcHashGood), .StateData(StateData),
|
226 |
|
|
.Multicast(Multicast), .MAC(MAC), .RxAbort(RxAbort),
|
227 |
|
|
.RxEndFrm(RxEndFrm), .AddressMiss(AddressMiss), .PassAll(PassAll),
|
228 |
|
|
.ControlFrmAddressOK(ControlFrmAddressOK)
|
229 |
|
|
);
|
230 |
|
|
|
231 |
|
|
|
232 |
|
|
assign Enable_Crc = MRxDV & (|StateData & ~ByteCntMaxFrame);
|
233 |
|
|
assign Initialize_Crc = StateSFD | DlyCrcEn & (|DlyCrcCnt[3:0]) & DlyCrcCnt[3:0] < 4'h9;
|
234 |
|
|
|
235 |
|
|
assign Data_Crc[0] = MRxD[3];
|
236 |
|
|
assign Data_Crc[1] = MRxD[2];
|
237 |
|
|
assign Data_Crc[2] = MRxD[1];
|
238 |
|
|
assign Data_Crc[3] = MRxD[0];
|
239 |
|
|
|
240 |
|
|
|
241 |
|
|
// Connecting module Crc
|
242 |
|
|
eth_crc crcrx (.Clk(MRxClk), .Reset(Reset), .Data(Data_Crc), .Enable(Enable_Crc), .Initialize(Initialize_Crc),
|
243 |
|
|
.Crc(Crc), .CrcError(CrcError)
|
244 |
|
|
);
|
245 |
|
|
|
246 |
|
|
|
247 |
|
|
|
248 |
|
|
// Latching CRC for use in the hash table
|
249 |
|
|
|
250 |
|
|
always @ (posedge MRxClk)
|
251 |
|
|
begin
|
252 |
403 |
julius |
CrcHashGood <= StateData[0] & ByteCntEq6;
|
253 |
6 |
julius |
end
|
254 |
|
|
|
255 |
|
|
always @ (posedge MRxClk)
|
256 |
|
|
begin
|
257 |
|
|
if(Reset | StateIdle)
|
258 |
403 |
julius |
CrcHash[5:0] <= 6'h0;
|
259 |
6 |
julius |
else
|
260 |
|
|
if(StateData[0] & ByteCntEq6)
|
261 |
403 |
julius |
CrcHash[5:0] <= Crc[31:26];
|
262 |
6 |
julius |
end
|
263 |
|
|
|
264 |
|
|
|
265 |
|
|
// Output byte stream
|
266 |
|
|
always @ (posedge MRxClk or posedge Reset)
|
267 |
|
|
begin
|
268 |
|
|
if(Reset)
|
269 |
|
|
begin
|
270 |
403 |
julius |
RxData_d[7:0] <= 8'h0;
|
271 |
|
|
DelayData <= 1'b0;
|
272 |
|
|
LatchedByte[7:0] <= 8'h0;
|
273 |
|
|
RxData[7:0] <= 8'h0;
|
274 |
6 |
julius |
end
|
275 |
|
|
else
|
276 |
|
|
begin
|
277 |
403 |
julius |
LatchedByte[7:0] <= {MRxD[3:0], LatchedByte[7:4]}; // Latched byte
|
278 |
|
|
DelayData <= StateData[0];
|
279 |
6 |
julius |
|
280 |
|
|
if(GenerateRxValid)
|
281 |
403 |
julius |
RxData_d[7:0] <= LatchedByte[7:0] & {8{|StateData}}; // Data goes through only in data state
|
282 |
6 |
julius |
else
|
283 |
|
|
if(~DelayData)
|
284 |
403 |
julius |
RxData_d[7:0] <= 8'h0; // Delaying data to be valid for two cycles. Zero when not active.
|
285 |
6 |
julius |
|
286 |
403 |
julius |
RxData[7:0] <= RxData_d[7:0]; // Output data byte
|
287 |
6 |
julius |
end
|
288 |
|
|
end
|
289 |
|
|
|
290 |
|
|
|
291 |
|
|
|
292 |
|
|
always @ (posedge MRxClk or posedge Reset)
|
293 |
|
|
begin
|
294 |
|
|
if(Reset)
|
295 |
403 |
julius |
Broadcast <= 1'b0;
|
296 |
6 |
julius |
else
|
297 |
|
|
begin
|
298 |
|
|
if(StateData[0] & ~(&LatchedByte[7:0]) & ByteCntSmall7)
|
299 |
403 |
julius |
Broadcast <= 1'b0;
|
300 |
6 |
julius |
else
|
301 |
|
|
if(StateData[0] & (&LatchedByte[7:0]) & ByteCntEq1)
|
302 |
403 |
julius |
Broadcast <= 1'b1;
|
303 |
6 |
julius |
else
|
304 |
|
|
if(RxAbort | RxEndFrm)
|
305 |
403 |
julius |
Broadcast <= 1'b0;
|
306 |
6 |
julius |
end
|
307 |
|
|
end
|
308 |
|
|
|
309 |
|
|
|
310 |
|
|
always @ (posedge MRxClk or posedge Reset)
|
311 |
|
|
begin
|
312 |
|
|
if(Reset)
|
313 |
403 |
julius |
Multicast <= 1'b0;
|
314 |
6 |
julius |
else
|
315 |
|
|
begin
|
316 |
|
|
if(StateData[0] & ByteCntEq1 & LatchedByte[0])
|
317 |
403 |
julius |
Multicast <= 1'b1;
|
318 |
6 |
julius |
else if(RxAbort | RxEndFrm)
|
319 |
403 |
julius |
Multicast <= 1'b0;
|
320 |
6 |
julius |
end
|
321 |
|
|
end
|
322 |
|
|
|
323 |
|
|
|
324 |
|
|
assign GenerateRxValid = StateData[0] & (~ByteCntEq0 | DlyCrcCnt >= 4'h3);
|
325 |
|
|
|
326 |
|
|
always @ (posedge MRxClk or posedge Reset)
|
327 |
|
|
begin
|
328 |
|
|
if(Reset)
|
329 |
|
|
begin
|
330 |
403 |
julius |
RxValid_d <= 1'b0;
|
331 |
|
|
RxValid <= 1'b0;
|
332 |
6 |
julius |
end
|
333 |
|
|
else
|
334 |
|
|
begin
|
335 |
403 |
julius |
RxValid_d <= GenerateRxValid;
|
336 |
|
|
RxValid <= RxValid_d;
|
337 |
6 |
julius |
end
|
338 |
|
|
end
|
339 |
|
|
|
340 |
|
|
|
341 |
|
|
assign GenerateRxStartFrm = StateData[0] & (ByteCntEq1 & ~DlyCrcEn | DlyCrcCnt == 4'h3 & DlyCrcEn);
|
342 |
|
|
|
343 |
|
|
always @ (posedge MRxClk or posedge Reset)
|
344 |
|
|
begin
|
345 |
|
|
if(Reset)
|
346 |
|
|
begin
|
347 |
403 |
julius |
RxStartFrm_d <= 1'b0;
|
348 |
|
|
RxStartFrm <= 1'b0;
|
349 |
6 |
julius |
end
|
350 |
|
|
else
|
351 |
|
|
begin
|
352 |
403 |
julius |
RxStartFrm_d <= GenerateRxStartFrm;
|
353 |
|
|
RxStartFrm <= RxStartFrm_d;
|
354 |
6 |
julius |
end
|
355 |
|
|
end
|
356 |
|
|
|
357 |
|
|
|
358 |
|
|
assign GenerateRxEndFrm = StateData[0] & (~MRxDV & ByteCntGreat2 | ByteCntMaxFrame);
|
359 |
|
|
assign DribbleRxEndFrm = StateData[1] & ~MRxDV & ByteCntGreat2;
|
360 |
|
|
|
361 |
|
|
|
362 |
|
|
always @ (posedge MRxClk or posedge Reset)
|
363 |
|
|
begin
|
364 |
|
|
if(Reset)
|
365 |
|
|
begin
|
366 |
403 |
julius |
RxEndFrm_d <= 1'b0;
|
367 |
|
|
RxEndFrm <= 1'b0;
|
368 |
6 |
julius |
end
|
369 |
|
|
else
|
370 |
|
|
begin
|
371 |
403 |
julius |
RxEndFrm_d <= GenerateRxEndFrm;
|
372 |
|
|
RxEndFrm <= RxEndFrm_d | DribbleRxEndFrm;
|
373 |
6 |
julius |
end
|
374 |
|
|
end
|
375 |
|
|
|
376 |
|
|
|
377 |
|
|
endmodule
|