forked from KastnerRG/riffa
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finishing reset logic and testing/implementing across a wide swath of…
… boards. Changes are mostly in the RX logic, where RST_IN was still used, though some new logic (reset_extender) was added to riffa.v. Updated projects for: VC709, VC707, ZC706 (partial), NetFPGA, ADM-7V3, ML605 (Still not working), AC701 (Untested) and KC705 (Untested)
- Loading branch information
Dustin Richmond
committed
Aug 12, 2015
1 parent
9d7543a
commit c420b76
Showing
58 changed files
with
667 additions
and
320 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
// ---------------------------------------------------------------------- | ||
// Copyright (c) 2015, The Regents of the University of California All | ||
// rights reserved. | ||
// | ||
// Redistribution and use in source and binary forms, with or without | ||
// modification, are permitted provided that the following conditions are | ||
// met: | ||
// | ||
// * Redistributions of source code must retain the above copyright | ||
// notice, this list of conditions and the following disclaimer. | ||
// | ||
// * Redistributions in binary form must reproduce the above | ||
// copyright notice, this list of conditions and the following | ||
// disclaimer in the documentation and/or other materials provided | ||
// with the distribution. | ||
// | ||
// * Neither the name of The Regents of the University of California | ||
// nor the names of its contributors may be used to endorse or | ||
// promote products derived from this software without specific | ||
// prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL REGENTS OF THE | ||
// UNIVERSITY OF CALIFORNIA BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | ||
// OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR | ||
// TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE | ||
// USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH | ||
// DAMAGE. | ||
// ---------------------------------------------------------------------- | ||
module reset_extender | ||
#(parameter C_RST_COUNT = 10) | ||
(input CLK, | ||
input RST_IN, | ||
output RST_OUT, | ||
output PENDING_RST); | ||
|
||
localparam C_CLOG2_RST_COUNT = clog2s(C_RST_COUNT); | ||
localparam C_CEIL2_RST_COUNT = 1 << C_CLOG2_RST_COUNT; | ||
localparam C_RST_SHIFTREG_DEPTH = 4; | ||
|
||
wire [C_CLOG2_RST_COUNT:0] wRstCount; | ||
wire [C_RST_SHIFTREG_DEPTH:0] wRstShiftReg; | ||
|
||
assign PENDING_RST = RST_IN | (wRstShiftReg != 0); | ||
assign RST_OUT = wRstShiftReg[C_RST_SHIFTREG_DEPTH]; | ||
|
||
counter | ||
#(// Parameters | ||
.C_MAX_VALUE (C_CEIL2_RST_COUNT), | ||
.C_SAT_VALUE (C_CEIL2_RST_COUNT), | ||
.C_RST_VALUE (C_CEIL2_RST_COUNT - C_RST_COUNT) | ||
/*AUTOINSTPARAM*/) | ||
rst_counter | ||
(// Outputs | ||
.VALUE (wRstCount), | ||
// Inputs | ||
.ENABLE (1'b1), | ||
.RST_IN (RST_IN), | ||
/*AUTOINST*/ | ||
// Inputs | ||
.CLK (CLK)); | ||
|
||
shiftreg | ||
#(// Parameters | ||
.C_DEPTH (C_RST_SHIFTREG_DEPTH), | ||
.C_WIDTH (1), | ||
.C_VALUE (0) | ||
/*AUTOINSTPARAM*/) | ||
rst_shiftreg | ||
(// Outputs | ||
.RD_DATA (wRstShiftReg), | ||
// Inputs | ||
.RST_IN (0), | ||
.WR_DATA (~wRstCount[C_CLOG2_RST_COUNT]), | ||
/*AUTOINST*/ | ||
// Inputs | ||
.CLK (CLK)); | ||
endmodule |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.