-
Notifications
You must be signed in to change notification settings - Fork 895
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 #3900 from YosysHQ/micko/synth_lattice
Create unified synth_lattice
- Loading branch information
Showing
45 changed files
with
6,694 additions
and
985 deletions.
There are no files selected for viewing
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,27 @@ | ||
|
||
OBJS += techlibs/lattice/synth_lattice.o | ||
OBJS += techlibs/lattice/lattice_gsr.o | ||
|
||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/cells_ff.vh)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/cells_io.vh)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/cells_map.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/common_sim.vh)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/ccu2d_sim.vh)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/ccu2c_sim.vh)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/cells_sim_ecp5.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/cells_sim_xo2.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/cells_sim_xo3.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/cells_sim_xo3d.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/cells_bb_ecp5.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/cells_bb_xo2.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/cells_bb_xo3.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/lutrams_map.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/lutrams.txt)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/brams_map_16kd.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/brams_16kd.txt)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/brams_map_8kc.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/brams_8kc.txt)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/arith_map_ccu2c.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/arith_map_ccu2d.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/latches_map.v)) | ||
$(eval $(call add_share_file,share/lattice,techlibs/lattice/dsp_map_18x18.v)) |
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,90 @@ | ||
/* | ||
* yosys -- Yosys Open SYnthesis Suite | ||
* | ||
* Copyright (C) 2012 Claire Xenia Wolf <[email protected]> | ||
* Copyright (C) 2018 gatecat <[email protected]> | ||
* | ||
* Permission to use, copy, modify, and/or distribute this software for any | ||
* purpose with or without fee is hereby granted, provided that the above | ||
* copyright notice and this permission notice appear in all copies. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
* | ||
*/ | ||
|
||
(* techmap_celltype = "$alu" *) | ||
module _80_ccu2c_alu (A, B, CI, BI, X, Y, CO); | ||
parameter A_SIGNED = 0; | ||
parameter B_SIGNED = 0; | ||
parameter A_WIDTH = 1; | ||
parameter B_WIDTH = 1; | ||
parameter Y_WIDTH = 1; | ||
|
||
(* force_downto *) | ||
input [A_WIDTH-1:0] A; | ||
(* force_downto *) | ||
input [B_WIDTH-1:0] B; | ||
(* force_downto *) | ||
output [Y_WIDTH-1:0] X, Y; | ||
|
||
input CI, BI; | ||
(* force_downto *) | ||
output [Y_WIDTH-1:0] CO; | ||
|
||
wire _TECHMAP_FAIL_ = Y_WIDTH <= 4; | ||
|
||
(* force_downto *) | ||
wire [Y_WIDTH-1:0] A_buf, B_buf; | ||
\$pos #(.A_SIGNED(A_SIGNED), .A_WIDTH(A_WIDTH), .Y_WIDTH(Y_WIDTH)) A_conv (.A(A), .Y(A_buf)); | ||
\$pos #(.A_SIGNED(B_SIGNED), .A_WIDTH(B_WIDTH), .Y_WIDTH(Y_WIDTH)) B_conv (.A(B), .Y(B_buf)); | ||
|
||
function integer round_up2; | ||
input integer N; | ||
begin | ||
round_up2 = ((N + 1) / 2) * 2; | ||
end | ||
endfunction | ||
|
||
localparam Y_WIDTH2 = round_up2(Y_WIDTH); | ||
|
||
(* force_downto *) | ||
wire [Y_WIDTH2-1:0] AA = A_buf; | ||
(* force_downto *) | ||
wire [Y_WIDTH2-1:0] BB = BI ? ~B_buf : B_buf; | ||
(* force_downto *) | ||
wire [Y_WIDTH2-1:0] BX = B_buf; | ||
(* force_downto *) | ||
wire [Y_WIDTH2-1:0] C = {CO, CI}; | ||
(* force_downto *) | ||
wire [Y_WIDTH2-1:0] FCO, Y1; | ||
|
||
genvar i; | ||
generate for (i = 0; i < Y_WIDTH2; i = i + 2) begin:slice | ||
CCU2C #( | ||
.INIT0(16'b1001011010101010), | ||
.INIT1(16'b1001011010101010), | ||
.INJECT1_0("NO"), | ||
.INJECT1_1("NO") | ||
) ccu2c_i ( | ||
.CIN(C[i]), | ||
.A0(AA[i]), .B0(BX[i]), .C0(BI), .D0(1'b1), | ||
.A1(AA[i+1]), .B1(BX[i+1]), .C1(BI), .D1(1'b1), | ||
.S0(Y[i]), .S1(Y1[i]), | ||
.COUT(FCO[i]) | ||
); | ||
|
||
assign CO[i] = (AA[i] && BB[i]) || (C[i] && (AA[i] || BB[i])); | ||
if (i+1 < Y_WIDTH) begin | ||
assign CO[i+1] = FCO[i]; | ||
assign Y[i+1] = Y1[i]; | ||
end | ||
end endgenerate | ||
|
||
assign X = AA ^ BB; | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
ram block $__DP16KD_ { | ||
abits 14; | ||
widths 1 2 4 9 18 per_port; | ||
byte 9; | ||
cost 128; | ||
init no_undef; | ||
port srsw "A" "B" { | ||
clock anyedge; | ||
clken; | ||
wrbe_separate; | ||
portoption "WRITEMODE" "NORMAL" { | ||
rdwr no_change; | ||
} | ||
portoption "WRITEMODE" "WRITETHROUGH" { | ||
rdwr new; | ||
} | ||
portoption "WRITEMODE" "READBEFOREWRITE" { | ||
rdwr old; | ||
} | ||
option "RESETMODE" "SYNC" { | ||
rdsrst zero ungated block_wr; | ||
} | ||
option "RESETMODE" "ASYNC" { | ||
rdarst zero; | ||
} | ||
rdinit zero; | ||
} | ||
} | ||
|
||
ram block $__PDPW16KD_ { | ||
abits 14; | ||
widths 1 2 4 9 18 36 per_port; | ||
byte 9; | ||
cost 128; | ||
init no_undef; | ||
port sr "R" { | ||
clock anyedge; | ||
clken; | ||
option "RESETMODE" "SYNC" { | ||
rdsrst zero ungated; | ||
} | ||
option "RESETMODE" "ASYNC" { | ||
rdarst zero; | ||
} | ||
rdinit zero; | ||
} | ||
port sw "W" { | ||
width 36; | ||
clock anyedge; | ||
clken; | ||
} | ||
} |
File renamed without changes.
Oops, something went wrong.