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

Subversion Repositories pci

[/] [pci/] [tags/] [rel_6/] [rtl/] [verilog/] [pci_wbr_fifo_control.v] - Blame information for rev 154

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 77 mihad
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  File name "wbr_fifo_control.v"                              ////
4
////                                                              ////
5
////  This file is part of the "PCI bridge" project               ////
6
////  http://www.opencores.org/cores/pci/                         ////
7
////                                                              ////
8
////  Author(s):                                                  ////
9
////      - Miha Dolenc (mihad@opencores.org)                     ////
10
////                                                              ////
11
////  All additional information is avaliable in the README       ////
12
////  file.                                                       ////
13
////                                                              ////
14
////                                                              ////
15
//////////////////////////////////////////////////////////////////////
16
////                                                              ////
17
//// Copyright (C) 2001 Miha Dolenc, mihad@opencores.org          ////
18
////                                                              ////
19
//// This source file may be used and distributed without         ////
20
//// restriction provided that this copyright statement is not    ////
21
//// removed from the file and that any derivative work contains  ////
22
//// the original copyright notice and the associated disclaimer. ////
23
////                                                              ////
24
//// This source file is free software; you can redistribute it   ////
25
//// and/or modify it under the terms of the GNU Lesser General   ////
26
//// Public License as published by the Free Software Foundation; ////
27
//// either version 2.1 of the License, or (at your option) any   ////
28
//// later version.                                               ////
29
////                                                              ////
30
//// This source is distributed in the hope that it will be       ////
31
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
32
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
33
//// PURPOSE.  See the GNU Lesser General Public License for more ////
34
//// details.                                                     ////
35
////                                                              ////
36
//// You should have received a copy of the GNU Lesser General    ////
37
//// Public License along with this source; if not, download it   ////
38
//// from http://www.opencores.org/lgpl.shtml                     ////
39
////                                                              ////
40
//////////////////////////////////////////////////////////////////////
41
//
42
// CVS Revision History
43
//
44
// $Log: not supported by cvs2svn $
45 111 simons
// Revision 1.3  2003/07/29 08:20:11  mihad
46
// Found and simulated the problem in the synchronization logic.
47
// Repaired the synchronization logic in the FIFOs.
48
//
49 104 mihad
// Revision 1.2  2003/03/26 13:16:18  mihad
50
// Added the reset value parameter to the synchronizer flop module.
51
// Added resets to all synchronizer flop instances.
52
// Repaired initial sync value in fifos.
53
//
54 88 mihad
// Revision 1.1  2003/01/27 16:49:31  mihad
55
// Changed module and file names. Updated scripts accordingly. FIFO synchronizations changed.
56
//
57 77 mihad
// Revision 1.6  2002/11/27 20:36:12  mihad
58
// Changed the code a bit to make it more readable.
59
// Functionality not changed in any way.
60
// More robust synchronization in fifos is still pending.
61
//
62
// Revision 1.5  2002/09/30 16:03:04  mihad
63
// Added meta flop module for easier meta stable FF identification during synthesis
64
//
65
// Revision 1.4  2002/09/25 15:53:52  mihad
66
// Removed all logic from asynchronous reset network
67
//
68
// Revision 1.3  2002/02/01 15:25:13  mihad
69
// Repaired a few bugs, updated specification, added test bench files and design document
70
//
71
// Revision 1.2  2001/10/05 08:14:30  mihad
72
// Updated all files with inclusion of timescale file for simulation purposes.
73
//
74
// Revision 1.1.1.1  2001/10/02 15:33:47  mihad
75
// New project directory structure
76
//
77
//
78
 
79
/* FIFO_CONTROL module provides read/write address and status generation for
80
   FIFOs implemented with standard dual port SRAM cells in ASIC or FPGA designs */
81
`include "pci_constants.v"
82
// synopsys translate_off
83
`include "timescale.v"
84
// synopsys translate_on
85
 
86
module pci_wbr_fifo_control
87
(
88
    rclock_in,
89
    wclock_in,
90
    renable_in,
91
    wenable_in,
92
    reset_in,
93
    flush_in,
94
    empty_out,
95
    waddr_out,
96
    raddr_out,
97
    rallow_out,
98
    wallow_out
99
) ;
100
 
101
parameter ADDR_LENGTH = 7 ;
102
 
103
// independent clock inputs - rclock_in = read clock, wclock_in = write clock
104
input  rclock_in, wclock_in;
105
 
106
// enable inputs - read address changes on rising edge of rclock_in when reads are allowed
107
//                 write address changes on rising edge of wclock_in when writes are allowed
108
input  renable_in, wenable_in;
109
 
110
// reset input
111
input  reset_in;
112
 
113
// flush input
114
input flush_in ;
115
 
116
// empty status output
117
output empty_out;
118
 
119
// read and write addresses outputs
120
output [(ADDR_LENGTH - 1):0] waddr_out, raddr_out;
121
 
122
// read and write allow outputs
123
output rallow_out, wallow_out ;
124
 
125
// read address register
126
reg [(ADDR_LENGTH - 1):0] raddr ;
127
 
128
// write address register
129
reg [(ADDR_LENGTH - 1):0] waddr;
130
assign waddr_out = waddr ;
131
 
132
// grey code register
133
reg [(ADDR_LENGTH - 1):0] wgrey_addr ;
134
 
135
// next write gray address calculation - bitwise xor between address and shifted address
136
wire [(ADDR_LENGTH - 2):0] calc_wgrey_next  = waddr[(ADDR_LENGTH - 1):1] ^ waddr[(ADDR_LENGTH - 2):0] ;
137
 
138
// grey code register
139
reg [(ADDR_LENGTH - 1):0] rgrey_addr ;
140
 
141
// next read gray address calculation - bitwise xor between address and shifted address
142
wire [(ADDR_LENGTH - 2):0] calc_rgrey_next  = raddr[(ADDR_LENGTH - 1):1] ^ raddr[(ADDR_LENGTH - 2):0] ;
143
 
144
// FF for registered empty flag
145
wire empty ;
146
 
147
// write allow wire
148
wire wallow = wenable_in ;
149
 
150
// write allow output assignment
151
assign wallow_out = wallow ;
152
 
153
// read allow wire
154
wire rallow ;
155
 
156
// clear generation for FFs and registers
157
wire clear = reset_in /*|| flush_in*/ ; // flush changed to synchronous operation
158
 
159
assign empty_out = empty ;
160
 
161
//rallow generation
162
assign rallow = renable_in && !empty ; // reads allowed if read enable is high and FIFO is not empty
163
 
164
// rallow output assignment
165
assign rallow_out = renable_in ;
166
 
167
// at any clock edge that rallow is high, this register provides next read address, so wait cycles are not necessary
168
// when FIFO is empty, this register provides actual read address, so first location can be read
169
reg [(ADDR_LENGTH - 1):0] raddr_plus_one ;
170
 
171
// address output mux - when FIFO is empty, current actual address is driven out, when it is non - empty next address is driven out
172
// done for zero wait state burst
173
assign raddr_out = rallow ? raddr_plus_one : raddr ;
174
 
175
always@(posedge rclock_in or posedge clear)
176
begin
177
    if (clear)
178
    begin
179
        raddr_plus_one <= #`FF_DELAY 2 ;
180
        raddr          <= #`FF_DELAY 1 ;
181
    end
182
    else if (flush_in)
183
    begin
184
        raddr_plus_one <= #`FF_DELAY waddr + 1'b1 ;
185
        raddr          <= #`FF_DELAY waddr ;
186
    end
187
    else if (rallow)
188
    begin
189
        raddr_plus_one <= #`FF_DELAY raddr_plus_one + 1'b1 ;
190
        raddr          <= #`FF_DELAY raddr_plus_one ;
191
    end
192
end
193
 
194
/*-----------------------------------------------------------------------------------------------
195
Read address control consists of Read address counter and Grey Address register
196
--------------------------------------------------------------------------------------------------*/
197
// grey coded address
198
always@(posedge rclock_in or posedge clear)
199
begin
200
    if (clear)
201
    begin
202
        rgrey_addr <= #`FF_DELAY 0 ;
203
    end
204
    else if (flush_in)
205
    begin
206
        rgrey_addr <= #`FF_DELAY wgrey_addr ;   // when flushed, copy value from write side
207
    end
208
    else if (rallow)
209
    begin
210
        rgrey_addr <= #`FF_DELAY {raddr[ADDR_LENGTH - 1], calc_rgrey_next} ;
211
    end
212
end
213
 
214
/*--------------------------------------------------------------------------------------------
215
Write address control consists of write address counter and Grey Code Register
216
----------------------------------------------------------------------------------------------*/
217
// grey coded address for status generation in write clock domain
218
always@(posedge wclock_in or posedge clear)
219
begin
220
    if (clear)
221
    begin
222 104 mihad
        wgrey_addr <= #1 0 ;
223 77 mihad
    end
224
    else
225
    if (wallow)
226
    begin
227 104 mihad
        wgrey_addr <= #1 {waddr[(ADDR_LENGTH - 1)], calc_wgrey_next} ;
228 77 mihad
    end
229
end
230
 
231
// write address counter - nothing special except initial value
232
always@(posedge wclock_in or posedge clear)
233
begin
234
    if (clear)
235
        // initial value is 1
236
        waddr <= #`FF_DELAY 1 ;
237
    else
238
    if (wallow)
239
        waddr <= #`FF_DELAY waddr + 1'b1 ;
240
end
241
 
242
 
243
/*------------------------------------------------------------------------------------------------------------------------------
244
Empty control:
245
Gray coded write address pointer is synchronized to read clock domain and compared to Gray coded read address pointer.
246
If they are equal, fifo is empty.
247
--------------------------------------------------------------------------------------------------------------------------------*/
248
wire [(ADDR_LENGTH - 1):0] rclk_sync_wgrey_addr ;
249
reg  [(ADDR_LENGTH - 1):0] rclk_wgrey_addr ;
250 111 simons
pci_synchronizer_flop #(ADDR_LENGTH, 0) i_synchronizer_reg_wgrey_addr
251 77 mihad
(
252
    .data_in        (wgrey_addr),
253
    .clk_out        (rclock_in),
254
    .sync_data_out  (rclk_sync_wgrey_addr),
255 88 mihad
    .async_reset    (clear)
256 77 mihad
) ;
257
 
258 88 mihad
always@(posedge rclock_in or posedge clear)
259 77 mihad
begin
260 88 mihad
    if (clear)
261
        rclk_wgrey_addr <= #`FF_DELAY 0 ;
262
    else
263
        rclk_wgrey_addr <= #`FF_DELAY rclk_sync_wgrey_addr ;
264 77 mihad
end
265
 
266
assign empty = (rgrey_addr == rclk_wgrey_addr) ;
267
endmodule

powered by: WebSVN 2.1.0

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