Changes to support vectored RVFI_DII bridge directly, which enables us to successfully run memory tests with traps.
This commit is contained in:
175
src_bsc_lib_RTL/SyncRegister.v
Normal file
175
src_bsc_lib_RTL/SyncRegister.v
Normal file
@@ -0,0 +1,175 @@
|
||||
|
||||
// Copyright (c) 2000-2013 Bluespec, Inc.
|
||||
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights
|
||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
// copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
// THE SOFTWARE.
|
||||
//
|
||||
// $Revision$
|
||||
// $Date$
|
||||
|
||||
`ifdef BSV_ASSIGNMENT_DELAY
|
||||
`else
|
||||
`define BSV_ASSIGNMENT_DELAY
|
||||
`endif
|
||||
|
||||
`ifdef BSV_POSITIVE_RESET
|
||||
`define BSV_RESET_VALUE 1'b1
|
||||
`define BSV_RESET_EDGE posedge
|
||||
`else
|
||||
`define BSV_RESET_VALUE 1'b0
|
||||
`define BSV_RESET_EDGE negedge
|
||||
`endif
|
||||
|
||||
|
||||
// A register synchronization module across clock domains.
|
||||
// Uses a Handshake Pulse protocol to trigger the load on
|
||||
// destination side registers
|
||||
// Transfer takes 3 dCLK for destination side to see data,
|
||||
// sRDY recovers takes 3 dCLK + 3 sCLK
|
||||
module SyncRegister(
|
||||
sCLK,
|
||||
sRST,
|
||||
dCLK,
|
||||
sEN,
|
||||
sRDY,
|
||||
sD_IN,
|
||||
dD_OUT
|
||||
);
|
||||
parameter width = 1 ;
|
||||
parameter init = { width {1'b0 }} ;
|
||||
|
||||
// Source clock domain ports
|
||||
input sCLK ;
|
||||
input sRST ;
|
||||
input sEN ;
|
||||
input [width -1 : 0] sD_IN ;
|
||||
output sRDY ;
|
||||
|
||||
// Destination clock domain ports
|
||||
input dCLK ;
|
||||
output [width -1 : 0] dD_OUT ;
|
||||
|
||||
wire dPulse ;
|
||||
reg [width -1 : 0] sDataSyncIn ;
|
||||
reg [width -1 : 0] dD_OUT ;
|
||||
|
||||
// instantiate a Handshake Sync
|
||||
SyncHandshake #(.init(0),.delayreturn(1))
|
||||
sync( .sCLK(sCLK), .sRST(sRST),
|
||||
.dCLK(dCLK),
|
||||
.sEN(sEN), .sRDY(sRDY),
|
||||
.dPulse(dPulse) ) ;
|
||||
|
||||
always @(posedge sCLK or `BSV_RESET_EDGE sRST)
|
||||
begin
|
||||
if (sRST == `BSV_RESET_VALUE)
|
||||
begin
|
||||
sDataSyncIn <= `BSV_ASSIGNMENT_DELAY init ;
|
||||
end // if (sRST == `BSV_RESET_VALUE)
|
||||
else
|
||||
begin
|
||||
if ( sEN )
|
||||
begin
|
||||
sDataSyncIn <= `BSV_ASSIGNMENT_DELAY sD_IN ;
|
||||
end // if ( sEN )
|
||||
end // else: !if(sRST == `BSV_RESET_VALUE)
|
||||
end // always @ (posedge sCLK or `BSV_RESET_EDGE sRST)
|
||||
|
||||
|
||||
// Transfer the data to destination domain when dPulsed is asserted.
|
||||
// Setup and hold time are assured since at least 2 dClks occured since
|
||||
// sDataSyncIn have been written.
|
||||
always @(posedge dCLK or `BSV_RESET_EDGE sRST)
|
||||
begin
|
||||
if (sRST == `BSV_RESET_VALUE)
|
||||
begin
|
||||
dD_OUT <= `BSV_ASSIGNMENT_DELAY init ;
|
||||
end // if (sRST == `BSV_RESET_VALUE)
|
||||
else
|
||||
begin
|
||||
if ( dPulse )
|
||||
begin
|
||||
dD_OUT <= `BSV_ASSIGNMENT_DELAY sDataSyncIn ;// clock domain crossing
|
||||
end // if ( dPulse )
|
||||
end // else: !if(sRST == `BSV_RESET_VALUE)
|
||||
end // always @ (posedge dCLK or `BSV_RESET_EDGE sRST)
|
||||
|
||||
|
||||
`ifdef BSV_NO_INITIAL_BLOCKS
|
||||
`else // not BSV_NO_INITIAL_BLOCKS
|
||||
// synopsys translate_off
|
||||
initial
|
||||
begin
|
||||
sDataSyncIn = {((width + 1)/2){2'b10}} ;
|
||||
dD_OUT = {((width + 1)/2){2'b10}} ;
|
||||
end // initial begin
|
||||
// synopsys translate_on
|
||||
`endif // BSV_NO_INITIAL_BLOCKS
|
||||
|
||||
|
||||
endmodule // RegisterSync
|
||||
|
||||
|
||||
|
||||
`ifdef testBluespec
|
||||
module testSyncRegister() ;
|
||||
parameter dsize = 8;
|
||||
|
||||
wire sCLK, sRST, dCLK ;
|
||||
wire sEN ;
|
||||
wire sRDY ;
|
||||
|
||||
reg [dsize -1:0] sCNT ;
|
||||
wire [dsize -1:0] sDIN, dDOUT ;
|
||||
|
||||
ClockGen#(20,9,10) sc( sCLK );
|
||||
ClockGen#(11,12,26) dc( dCLK );
|
||||
|
||||
initial
|
||||
begin
|
||||
sCNT = 0;
|
||||
|
||||
$dumpfile("SyncRegister.dump");
|
||||
$dumpvars(5) ;
|
||||
$dumpon ;
|
||||
#100000 $finish ;
|
||||
end
|
||||
|
||||
SyncRegister #(dsize)
|
||||
dut( sCLK, sRST, dCLK,
|
||||
sEN, sRDY, sDIN,
|
||||
dDOUT ) ;
|
||||
|
||||
|
||||
assign sDIN = sCNT ;
|
||||
assign sEN = sRDY ;
|
||||
|
||||
always @(posedge sCLK)
|
||||
begin
|
||||
if (sRDY )
|
||||
begin
|
||||
sCNT <= `BSV_ASSIGNMENT_DELAY sCNT + 1;
|
||||
end
|
||||
end // always @ (posedge sCLK)
|
||||
|
||||
|
||||
|
||||
endmodule // testSyncFIFO
|
||||
`endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user