OpenCores
URL https://opencores.org/ocsvn/ethmac/ethmac/trunk

Subversion Repositories ethmac

[/] [ethmac/] [tags/] [rel_7/] [rtl/] [verilog/] [eth_fifo.v] - Blame information for rev 100

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 40 mohor
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  eth_fifo.v                                                  ////
4
////                                                              ////
5
////  This file is part of the Ethernet IP core project           ////
6
////  http://www.opencores.org/projects/ethmac/                   ////
7
////                                                              ////
8
////  Author(s):                                                  ////
9
////      - Igor Mohor (igorM@opencores.org)                      ////
10
////                                                              ////
11
////  All additional information is avaliable in the Readme.txt   ////
12
////  file.                                                       ////
13
////                                                              ////
14
//////////////////////////////////////////////////////////////////////
15
////                                                              ////
16
//// Copyright (C) 2001 Authors                                   ////
17
////                                                              ////
18
//// This source file may be used and distributed without         ////
19
//// restriction provided that this copyright statement is not    ////
20
//// removed from the file and that any derivative work contains  ////
21
//// the original copyright notice and the associated disclaimer. ////
22
////                                                              ////
23
//// This source file is free software; you can redistribute it   ////
24
//// and/or modify it under the terms of the GNU Lesser General   ////
25
//// Public License as published by the Free Software Foundation; ////
26
//// either version 2.1 of the License, or (at your option) any   ////
27
//// later version.                                               ////
28
////                                                              ////
29
//// This source is distributed in the hope that it will be       ////
30
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
31
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
32
//// PURPOSE.  See the GNU Lesser General Public License for more ////
33
//// details.                                                     ////
34
////                                                              ////
35
//// You should have received a copy of the GNU Lesser General    ////
36
//// Public License along with this source; if not, download it   ////
37
//// from http://www.opencores.org/lgpl.shtml                     ////
38
////                                                              ////
39
//////////////////////////////////////////////////////////////////////
40
//
41
// CVS Revision History
42
//
43
// $Log: not supported by cvs2svn $
44 100 mohor
// Revision 1.2  2002/03/25 13:33:04  mohor
45
// When clear and read/write are active at the same time, cnt and pointers are
46
// set to 1.
47
//
48 94 mohor
// Revision 1.1  2002/02/05 16:44:39  mohor
49
// Both rx and tx part are finished. Tested with wb_clk_i between 10 and 200
50
// MHz. Statuses, overrun, control frame transmission and reception still  need
51
// to be fixed.
52 40 mohor
//
53 94 mohor
//
54 40 mohor
 
55 100 mohor
`include "eth_defines.v"
56 40 mohor
`include "timescale.v"
57
 
58 100 mohor
module eth_fifo (data_in, data_out, clk, reset, write, read, clear, almost_full, full, almost_empty, empty, cnt);
59 40 mohor
 
60
parameter DATA_WIDTH    = 32;
61
parameter DEPTH         = 8;
62
parameter CNT_WIDTH     = 4;
63
 
64
parameter Tp            = 1;
65
 
66
input                     clk;
67
input                     reset;
68
input                     write;
69
input                     read;
70
input                     clear;
71
input   [DATA_WIDTH-1:0]  data_in;
72
 
73
output  [DATA_WIDTH-1:0]  data_out;
74
output                    almost_full;
75
output                    full;
76
output                    almost_empty;
77
output                    empty;
78 100 mohor
output  [CNT_WIDTH-1:0]   cnt;
79 40 mohor
 
80 100 mohor
`ifdef ETH_FIFO_XILINX
81
`else
82
  reg     [DATA_WIDTH-1:0]  fifo  [0:DEPTH-1];
83
`endif
84
 
85 40 mohor
reg     [CNT_WIDTH-1:0]   cnt;
86
reg     [CNT_WIDTH-2:0]   read_pointer;
87
reg     [CNT_WIDTH-2:0]   write_pointer;
88
 
89
 
90
always @ (posedge clk or posedge reset)
91
begin
92
  if(reset)
93
    cnt <=#Tp 0;
94
  else
95
  if(clear)
96 94 mohor
    cnt <=#Tp { {(CNT_WIDTH-1){1'b0}}, read^write};
97 40 mohor
  else
98
  if(read ^ write)
99
    if(read)
100
      cnt <=#Tp cnt - 1'b1;
101
    else
102
      cnt <=#Tp cnt + 1'b1;
103
end
104
 
105
always @ (posedge clk or posedge reset)
106
begin
107
  if(reset)
108
    read_pointer <=#Tp 0;
109
  else
110
  if(clear)
111 94 mohor
    read_pointer <=#Tp { {(CNT_WIDTH-2){1'b0}}, read};
112 40 mohor
  else
113
  if(read & ~empty)
114
    read_pointer <=#Tp read_pointer + 1'b1;
115
end
116
 
117
always @ (posedge clk or posedge reset)
118
begin
119
  if(reset)
120
    write_pointer <=#Tp 0;
121
  else
122
  if(clear)
123 94 mohor
    write_pointer <=#Tp { {(CNT_WIDTH-2){1'b0}}, write};
124 40 mohor
  else
125
  if(write & ~full)
126
    write_pointer <=#Tp write_pointer + 1'b1;
127
end
128
 
129
assign empty = ~(|cnt);
130
assign almost_empty = cnt == 1;
131
assign full  = cnt == DEPTH;
132
assign almost_full  = &cnt[CNT_WIDTH-2:0];
133
 
134
 
135
 
136 100 mohor
`ifdef ETH_FIFO_XILINX
137
  xilinx_dist_ram_16x32 fifo
138
  ( .data_out(data_out),
139
    .we(write & ~full),
140
    .data_in(data_in),
141
    .read_address( clear ? {CNT_WIDTH-1{1'b0}} : read_pointer),
142
    .write_address(clear ? {CNT_WIDTH-1{1'b0}} : write_pointer),
143
    .wclk(clk)
144
  );
145
`else
146
  always @ (posedge clk)
147
  begin
148
    if(write & clear)
149
      fifo[0] <=#Tp data_in;
150
    else
151
   if(write & ~full)
152
      fifo[write_pointer] <=#Tp data_in;
153
  end
154
 
155
  assign data_out = clear ? fifo[0] : fifo[read_pointer];
156
`endif
157 40 mohor
 
158 100 mohor
 
159 40 mohor
endmodule

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.