-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from SymbiFlow/dave/io
IOLOGIC improvements
- Loading branch information
Showing
8 changed files
with
55 additions
and
4 deletions.
There are no files selected for viewing
Submodule database
updated
12 files
+96 −0 | ECP5/tiledata/MIB_CIB_LR/bits.db | |
+96 −0 | ECP5/tiledata/MIB_CIB_LR_A/bits.db | |
+16 −0 | ECP5/tiledata/PICL0/bits.db | |
+96 −0 | ECP5/tiledata/PICL0_DQS2/bits.db | |
+16 −0 | ECP5/tiledata/PICL2/bits.db | |
+96 −0 | ECP5/tiledata/PICL2_DQS1/bits.db | |
+16 −0 | ECP5/tiledata/PICR0/bits.db | |
+96 −0 | ECP5/tiledata/PICR0_DQS2/bits.db | |
+16 −0 | ECP5/tiledata/PICR2/bits.db | |
+96 −0 | ECP5/tiledata/PICR2_DQS1/bits.db | |
+8 −0 | ECP5/tiledata/PICT0/bits.db | |
+8 −0 | ECP5/tiledata/PICT1/bits.db |
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
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,9 @@ | ||
module oddr7(input D, input ALIGNWD, ECLK, RST, output [3:0] Q); | ||
wire SCLK; | ||
|
||
CLKDIVF #(.DIV("3.5")) cdiv_i (.CLKI(ECLK), .RST(RST), .ALIGNWD(1'b0), .CDIVX(SCLK)); | ||
|
||
IDDR71B oddr_i(.Q0(Q[0]), .Q1(Q[1]), .Q2(Q[2]), .Q3(Q[3]), | ||
.ECLK(ECLK), .SCLK(SCLK), .ALIGNWD(ALIGNWD), .RST(RST), | ||
.D(D)); | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module top(input clk, ce, lsr, d, output q); | ||
OFS1P3IX oreg_i (.D(d), .SCLK(clk), .SP(ce), .CD(lsr), | ||
.Q(q)); | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module top(input clk, ce, lsr, d, t, output p); | ||
wire tr, q; | ||
OFS1P3IX oreg_i (.D(d), .SCLK(clk), .SP(ce), .CD(lsr), .Q(q)); | ||
OFS1P3IX treg_i (.D(t), .SCLK(clk), .SP(ce), .CD(lsr), .Q(tr)); | ||
|
||
OBZ ob_i(.I(q), .T(tr), .O(p)); | ||
endmodule | ||
|