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

Subversion Repositories pci

[/] [pci/] [tags/] [rel_3/] [rtl/] [verilog/] [delayed_sync.v] - Blame information for rev 154

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 mihad
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  File name "delayed_sync.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 57 mihad
// Revision 1.4  2002/03/05 11:53:47  mihad
46
// Added some testcases, removed un-needed fifo signals
47
//
48 33 mihad
// Revision 1.3  2002/02/01 15:25:12  mihad
49
// Repaired a few bugs, updated specification, added test bench files and design document
50
//
51 21 mihad
// Revision 1.2  2001/10/05 08:14:28  mihad
52
// Updated all files with inclusion of timescale file for simulation purposes.
53
//
54 6 mihad
// Revision 1.1.1.1  2001/10/02 15:33:46  mihad
55
// New project directory structure
56 2 mihad
//
57 6 mihad
//
58 2 mihad
 
59
// module provides synchronization mechanism between requesting and completing side of the bridge
60 21 mihad
`include "pci_constants.v"
61 2 mihad
`include "bus_commands.v"
62 21 mihad
 
63
// synopsys translate_off
64 6 mihad
`include "timescale.v"
65 21 mihad
// synopsys translate_on
66
 
67 2 mihad
module DELAYED_SYNC
68
(
69
    reset_in,
70
    req_clk_in,
71
    comp_clk_in,
72
    req_in,
73
    comp_in,
74
    done_in,
75
    in_progress_in,
76
    comp_req_pending_out,
77
    req_req_pending_out,
78
    req_comp_pending_out,
79
    comp_comp_pending_out,
80
    addr_in,
81 21 mihad
    be_in,
82 2 mihad
    addr_out,
83 21 mihad
    be_out,
84 2 mihad
    we_in,
85
    we_out,
86
    bc_in,
87
    bc_out,
88
    status_in,
89
    status_out,
90
    comp_flush_out,
91
    burst_in,
92
    burst_out,
93
    retry_expired_in
94
);
95
 
96
// system inputs
97
input reset_in,         // reset input
98
      req_clk_in,       // requesting clock input
99
      comp_clk_in ;     // completing clock input
100
 
101
// request, completion, done and in progress indication inputs
102
input req_in,           // request qualifier - when 1 it indicates that valid request data is provided on inputs
103
      comp_in,          // completion qualifier - when 1, completing side indicates that request has completed
104
      done_in,          // done input - when 1 indicates that requesting side of the bridge has completed a transaction on requesting bus
105
      in_progress_in ;  // in progress indicator - indicates that current completion is in progress on requesting side of the bridge
106
 
107
// pending indication outputs
108
output  comp_req_pending_out,   // completion side request output - resynchronized from requesting clock to completing clock
109
        req_req_pending_out,    // request pending output for requesting side
110
        req_comp_pending_out,   // completion pending output for requesting side of the bridge - it indicates when completion is ready for completing on requesting bus
111
        comp_comp_pending_out ; // completion pending output for completing side of the bridge
112
 
113
// additional signals and wires for clock domain passage of signals
114 21 mihad
reg     comp_req_pending,
115
        req_req_pending,
116
        req_comp_pending,
117
        req_comp_pending_sample,
118 2 mihad
        comp_comp_pending,
119
        req_done_reg,
120
        comp_done_reg_main,
121
        comp_done_reg_clr,
122
        req_rty_exp_reg,
123
        req_rty_exp_clr,
124
        comp_rty_exp_reg,
125
        comp_rty_exp_clr ;
126
 
127 21 mihad
wire    sync_comp_req_pending,
128 2 mihad
        sync_req_comp_pending,
129
        sync_comp_done,
130
        sync_req_rty_exp,
131 21 mihad
        sync_comp_rty_exp_clr ;
132 2 mihad
 
133
// inputs from requesting side - only this side can set address, bus command, byte enables, write enable and burst - outputs are common for both sides
134
// all signals that identify requests are stored in this module
135
 
136
input [31:0]    addr_in ;   // address bus input
137
input [3:0]     be_in ;     // byte enable input
138
input           we_in ;     // write enable input - read/write request indication 1 = write request / 0 = read request
139
input [3:0]     bc_in ;     // bus command input
140
input           burst_in ;  // burst indicator    - qualifies operation as burst/single transfer 1 = burst / 0 = single transfer
141
 
142
// common request outputs used both by completing and requesting sides
143
// this outputs are not resynchronized, since flags determine the request status
144
output [31:0]   addr_out ;
145
output [3:0]    be_out ;
146
output          we_out ;
147
output [3:0]    bc_out ;
148
output          burst_out ;
149
 
150
// completion side signals encoded termination status - 0 = normal completion / 1 = error terminated completion
151 21 mihad
input          status_in ;
152 2 mihad
output         status_out ;
153
 
154
// input signals that delayed transaction has been retried for max number of times
155
// on this signal request is ditched, otherwise it would cause a deadlock
156 21 mihad
// requestor can issue another request and procedure will be repeated
157 2 mihad
input   retry_expired_in ;
158
 
159
// completion flush output - if in 2^^16 clock cycles transaction is not repeated by requesting agent - flush completion data
160
output  comp_flush_out ;
161
 
162
// output registers for common signals
163
reg [31:0]   addr_out ;
164
reg [3:0]    be_out ;
165
reg          we_out ;
166
reg [3:0]    bc_out ;
167
reg          burst_out ;
168
 
169
// delayed transaction information is stored only when request is issued and request nor completion are pending
170
wire new_request = req_in && ~req_comp_pending_out && ~req_req_pending_out ;
171
always@(posedge req_clk_in or posedge reset_in)
172
begin
173
    if (reset_in)
174
    begin
175
        addr_out  <= #`FF_DELAY 32'h0000_0000 ;
176
        be_out    <= #`FF_DELAY 4'h0 ;
177
        we_out    <= #`FF_DELAY 1'b0 ;
178
        bc_out    <= #`FF_DELAY `BC_RESERVED0 ;
179
        burst_out <= #`FF_DELAY 1'b0 ;
180
    end
181
    else
182
        if (new_request)
183
        begin
184
            addr_out  <= #`FF_DELAY addr_in ;
185
            be_out    <= #`FF_DELAY be_in ;
186
            we_out    <= #`FF_DELAY we_in ;
187
            bc_out    <= #`FF_DELAY bc_in ;
188
            burst_out <= #`FF_DELAY burst_in ;
189
        end
190
end
191
 
192
// completion pending cycle counter
193
reg [16:0] comp_cycle_count ;
194
 
195
/*=================================================================================================================================
196
Passing of requests between clock domains:
197
request originates on requesting side. It's then synchronized with two flip-flops to cross to completing clock domain
198
=================================================================================================================================*/
199
// main request flip-flop triggered on requesting side's clock
200
// request is cleared whenever completion or retry expired is signalled from opposite side of the bridge
201
wire req_req_clear = req_comp_pending || (req_rty_exp_reg && ~req_rty_exp_clr) ;
202
always@(posedge req_clk_in or posedge reset_in)
203
begin
204
    if ( reset_in )
205
        req_req_pending <= #`FF_DELAY 1'b0 ;
206 21 mihad
    else
207 2 mihad
    if ( req_req_clear )
208
        req_req_pending <= #`FF_DELAY 1'b0 ;
209 21 mihad
    else
210 2 mihad
    if ( req_in )
211
        req_req_pending <= #`FF_DELAY 1'b1 ;
212
end
213
 
214
// interemediate stage request synchronization flip - flop - this one is prone to metastability
215
// and should have setup and hold times disabled during simulation
216
synchronizer_flop req_sync
217
(
218 21 mihad
    .data_in        (req_req_pending),
219
    .clk_out        (comp_clk_in),
220
    .sync_data_out  (sync_comp_req_pending),
221 2 mihad
    .async_reset    (reset_in)
222
) ;
223
 
224
// wire for clearing completion side request flag - whenever completion or retry expired are signalled
225
wire comp_req_pending_clear = comp_req_pending && ( comp_in || retry_expired_in) ;
226
 
227
// wire for enabling request flip - flop - it is enabled when completion is not active and done is not active
228
wire comp_req_pending_ena   = ~comp_comp_pending && ~comp_done_reg_main && ~comp_rty_exp_reg ;
229
 
230
// completion side request flip flop - gets a value from intermediate stage sync flip flop
231
always@(posedge comp_clk_in or posedge reset_in)
232
begin
233
    if ( reset_in )
234
        comp_req_pending <= #`FF_DELAY 1'b0 ;
235
    else
236
    if ( comp_req_pending_clear )
237
        comp_req_pending <= #`FF_DELAY 1'b0 ;
238
    else
239
    if ( comp_req_pending_ena )
240
        comp_req_pending <= #`FF_DELAY sync_comp_req_pending ;
241
end
242
 
243
// completion side request output assignment - when request ff is set and completion ff is not set
244
assign comp_req_pending_out = comp_req_pending ;
245
 
246
// requesting side request pending output
247
assign req_req_pending_out  = req_req_pending ;
248
/*=================================================================================================================================
249
Passing of completions between clock domains:
250
completion originates on completing side. It's then synchronized with two flip-flops to cross to requesting clock domain
251
=================================================================================================================================*/
252
// main completion Flip - Flop - triggered by completing side's clock
253
// completion side completion pending flag is cleared when done flag propagates through clock domains
254
wire comp_comp_clear = comp_done_reg_main && ~comp_done_reg_clr ;
255
always@(posedge comp_clk_in or posedge reset_in)
256
begin
257
    if ( reset_in )
258
        comp_comp_pending <= #`FF_DELAY 1'b0 ;
259
    else
260
    if ( comp_comp_clear )
261
        comp_comp_pending <= #`FF_DELAY 1'b0 ;
262
    else
263
    if ( comp_in && comp_req_pending )
264
        comp_comp_pending <= #`FF_DELAY 1'b1 ;
265
end
266
 
267
assign comp_comp_pending_out = comp_comp_pending ;
268
 
269
// interemediate stage completion synchronization flip - flop - this one is prone to metastability
270
synchronizer_flop comp_sync
271
(
272 21 mihad
    .data_in        (comp_comp_pending),
273
    .clk_out        (req_clk_in),
274
    .sync_data_out  (sync_req_comp_pending),
275 2 mihad
    .async_reset    (reset_in)
276
) ;
277
 
278
// request side completion pending flip flop is cleared whenever done is signalled or completion counter expires - 2^^16 clock cycles
279
wire req_comp_pending_clear = done_in || comp_cycle_count[16];
280
 
281
// request side completion pending flip flop is disabled while done flag is set
282
wire req_comp_pending_ena   = ~req_done_reg ;
283
 
284
// request side completion flip flop - gets a value from intermediate stage sync flip flop
285
always@(posedge req_clk_in or posedge reset_in)
286
begin
287
    if ( reset_in )
288
        req_comp_pending <= #`FF_DELAY 1'b0 ;
289
    else
290
    if ( req_comp_pending_clear )
291
        req_comp_pending <= #`FF_DELAY 1'b0 ;
292
    else
293
    if ( req_comp_pending_ena )
294
        req_comp_pending <= #`FF_DELAY sync_req_comp_pending ;
295
end
296
 
297
// sampling FF - used for sampling incoming completion flag from completing side
298
always@(posedge req_clk_in or posedge reset_in)
299
begin
300
    if ( reset_in )
301
        req_comp_pending_sample <= #`FF_DELAY 1'b0 ;
302
    else
303
        req_comp_pending_sample <= #`FF_DELAY sync_req_comp_pending ;
304
end
305
 
306
// requesting side completion pending output assignment
307
assign req_comp_pending_out = req_comp_pending && ~req_req_pending ;
308
 
309
/*==================================================================================================================================
310
Passing of delayed transaction done signal between clock domains.
311
Done is signalled by requesting side of the bridge and is passed to completing side of the bridge
312
==================================================================================================================================*/
313
// main done flip-flop triggered on requesting side's clock
314
// when completing side removes completion flag, done flag is also removed, so requests can proceede
315
wire req_done_clear = ~req_comp_pending_sample ;
316
always@(posedge req_clk_in or posedge reset_in)
317
begin
318
    if ( reset_in )
319
        req_done_reg <= #`FF_DELAY 1'b0 ;
320
    else
321
    if ( req_done_clear )
322
        req_done_reg <= #`FF_DELAY 1'b0 ;
323
    else
324
    if ( done_in || comp_cycle_count[16] )
325
        req_done_reg <= #`FF_DELAY 1'b1 ;
326
end
327
 
328
synchronizer_flop done_sync
329
(
330 21 mihad
    .data_in        (req_done_reg),
331
    .clk_out        (comp_clk_in),
332
    .sync_data_out  (sync_comp_done),
333 2 mihad
    .async_reset    (reset_in)
334
) ;
335
 
336
always@(posedge comp_clk_in or posedge reset_in)
337
begin
338
    if ( reset_in )
339
        comp_done_reg_main <= #`FF_DELAY 1'b0 ;
340
    else
341
        comp_done_reg_main <= #`FF_DELAY sync_comp_done ;
342
end
343
 
344
always@(posedge comp_clk_in or posedge reset_in)
345
begin
346
    if ( reset_in )
347
        comp_done_reg_clr <= #`FF_DELAY 1'b0 ;
348
    else
349
        comp_done_reg_clr <= #`FF_DELAY comp_done_reg_main ;
350
end
351
 
352
/*=================================================================================================================================
353
Passing of retry expired signal between clock domains
354
Retry expiration originates on completing side. It's then synchronized with two flip-flops to cross to requesting clock domain
355
=================================================================================================================================*/
356
// main retry expired Flip - Flop - triggered by completing side's clock
357
wire comp_rty_exp_clear = comp_rty_exp_clr && comp_rty_exp_reg ;
358
 
359
// retry expired is a special case of transaction removal - retry expired propagates from completing
360
// clock domain to requesting clock domain to remove all pending requests and than propagates back
361
// to completing side to qualify valid new requests
362
 
363
always@(posedge comp_clk_in or posedge reset_in)
364
begin
365
    if ( reset_in )
366
        comp_rty_exp_reg <= #`FF_DELAY 1'b0 ;
367
    else
368
    if ( comp_rty_exp_clear )
369
        comp_rty_exp_reg <= #`FF_DELAY 1'b0 ;
370
    else
371
    if ( retry_expired_in && comp_req_pending)
372
        comp_rty_exp_reg <= #`FF_DELAY 1'b1 ;
373
end
374
 
375
// interemediate stage retry expired synchronization flip - flop - this one is prone to metastability
376
synchronizer_flop rty_exp_sync
377
(
378 21 mihad
    .data_in        (comp_rty_exp_reg),
379
    .clk_out        (req_clk_in),
380
    .sync_data_out  (sync_req_rty_exp),
381 2 mihad
    .async_reset    (reset_in)
382
) ;
383
 
384
// request retry expired flip flop - gets a value from intermediate stage sync flip flop
385
always@(posedge req_clk_in or posedge reset_in)
386
begin
387
    if ( reset_in )
388
        req_rty_exp_reg <= #`FF_DELAY 1'b0 ;
389
    else
390
        req_rty_exp_reg <= #`FF_DELAY sync_req_rty_exp ;
391
end
392
 
393
always@(posedge req_clk_in or posedge reset_in)
394
begin
395
    if ( reset_in )
396
        req_rty_exp_clr <= #`FF_DELAY 1'b0 ;
397
    else
398
        req_rty_exp_clr <= #`FF_DELAY req_rty_exp_reg ;
399
end
400
 
401
synchronizer_flop rty_exp_back_prop_sync
402
(
403 33 mihad
    .data_in        (req_rty_exp_reg && req_rty_exp_clr),
404 21 mihad
    .clk_out        (comp_clk_in),
405
    .sync_data_out  (sync_comp_rty_exp_clr),
406 2 mihad
    .async_reset    (reset_in)
407
) ;
408
 
409
always@(posedge comp_clk_in or posedge reset_in)
410
begin
411
    if ( reset_in )
412
        comp_rty_exp_clr <= #`FF_DELAY 1'b0 ;
413
    else
414
        comp_rty_exp_clr <= #`FF_DELAY sync_comp_rty_exp_clr ;
415
end
416
 
417
// completion status flip flop - if 0 when completion is signalled it's finished OK otherwise it means error
418
reg status_out ;
419 21 mihad
always@(posedge comp_clk_in or posedge reset_in)
420 2 mihad
begin
421
    if (reset_in)
422
        status_out <= #`FF_DELAY 1'b0 ;
423
    else
424
    if (comp_in && comp_req_pending)
425
        status_out <= #`FF_DELAY status_in ;
426
end
427
 
428
// clocks counter - it counts how many clock cycles completion is present without beeing repeated
429
// if it counts to 2^^16 cycles the completion must be ditched
430
 
431
// wire for clearing this counter
432 57 mihad
wire clear_count = in_progress_in || ~req_comp_pending_out || comp_cycle_count[16] ;
433 2 mihad
always@(posedge req_clk_in or posedge reset_in)
434
begin
435
    if (reset_in)
436
        comp_cycle_count <= #`FF_DELAY 17'h0_0000 ;
437
    else
438
    if (clear_count)
439
        comp_cycle_count <= #`FF_DELAY 17'h0_0000 ;
440
    else
441
        comp_cycle_count <= #`FF_DELAY comp_cycle_count + 1'b1 ;
442
end
443
 
444
// completion flush output - used for flushing fifos when counter expires
445
// if counter doesn't expire, fifo flush is up to WISHBONE slave or PCI target state machines
446
reg comp_flush_out ;
447
always@(posedge req_clk_in or posedge reset_in)
448
begin
449
    if (reset_in)
450
        comp_flush_out <= #`FF_DELAY 1'b0 ;
451
    else
452
        comp_flush_out <= #`FF_DELAY comp_cycle_count[16] ;
453
end
454
 
455
endmodule //delayed_sync

powered by: WebSVN 2.1.0

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