mirror of
https://github.com/YosysHQ/yosys
synced 2025-10-14 19:50:22 +00:00
analogdevices: use single tech param
This commit is contained in:
parent
acb06021a8
commit
29140d5fd2
3 changed files with 39 additions and 52 deletions
|
@ -36,9 +36,11 @@ module INBUF(
|
||||||
parameter IFD_DELAY_VALUE = "AUTO";
|
parameter IFD_DELAY_VALUE = "AUTO";
|
||||||
parameter IOSTANDARD = "DEFAULT";
|
parameter IOSTANDARD = "DEFAULT";
|
||||||
assign O = I;
|
assign O = I;
|
||||||
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
(I => O) = 22;
|
(I => O) = 22;
|
||||||
endspecify
|
endspecify
|
||||||
|
`endif
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module OUTBUF(
|
module OUTBUF(
|
||||||
|
@ -50,18 +52,7 @@ module OUTBUF(
|
||||||
parameter DRIVE = 12;
|
parameter DRIVE = 12;
|
||||||
parameter SLEW = "SLOW";
|
parameter SLEW = "SLOW";
|
||||||
assign O = I;
|
assign O = I;
|
||||||
specify
|
`ifdef IS_T16FFC
|
||||||
(I => O) = 22;
|
|
||||||
endspecify
|
|
||||||
endmodule
|
|
||||||
|
|
||||||
module INV(
|
|
||||||
(* clkbuf_inv = "I" *)
|
|
||||||
output O,
|
|
||||||
input I
|
|
||||||
);
|
|
||||||
assign O = !I;
|
|
||||||
`ifdef t16ffc
|
|
||||||
specify
|
specify
|
||||||
(I => O) = 22;
|
(I => O) = 22;
|
||||||
endspecify
|
endspecify
|
||||||
|
@ -72,7 +63,7 @@ endmodule
|
||||||
module LUT1(output O, input I0);
|
module LUT1(output O, input I0);
|
||||||
parameter [1:0] INIT = 0;
|
parameter [1:0] INIT = 0;
|
||||||
assign O = I0 ? INIT[1] : INIT[0];
|
assign O = I0 ? INIT[1] : INIT[0];
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
(I0 => O) = 22;
|
(I0 => O) = 22;
|
||||||
endspecify
|
endspecify
|
||||||
|
@ -84,7 +75,7 @@ module LUT2(output O, input I0, I1);
|
||||||
parameter [3:0] INIT = 0;
|
parameter [3:0] INIT = 0;
|
||||||
wire [ 1: 0] s1 = I1 ? INIT[ 3: 2] : INIT[ 1: 0];
|
wire [ 1: 0] s1 = I1 ? INIT[ 3: 2] : INIT[ 1: 0];
|
||||||
assign O = I0 ? s1[1] : s1[0];
|
assign O = I0 ? s1[1] : s1[0];
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
(I0 => O) = 22;
|
(I0 => O) = 22;
|
||||||
(I1 => O) = 22;
|
(I1 => O) = 22;
|
||||||
|
@ -98,7 +89,7 @@ module LUT3(output O, input I0, I1, I2);
|
||||||
wire [ 3: 0] s2 = I2 ? INIT[ 7: 4] : INIT[ 3: 0];
|
wire [ 3: 0] s2 = I2 ? INIT[ 7: 4] : INIT[ 3: 0];
|
||||||
wire [ 1: 0] s1 = I1 ? s2[ 3: 2] : s2[ 1: 0];
|
wire [ 1: 0] s1 = I1 ? s2[ 3: 2] : s2[ 1: 0];
|
||||||
assign O = I0 ? s1[1] : s1[0];
|
assign O = I0 ? s1[1] : s1[0];
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
(I0 => O) = 22;
|
(I0 => O) = 22;
|
||||||
(I1 => O) = 22;
|
(I1 => O) = 22;
|
||||||
|
@ -114,7 +105,7 @@ module LUT4(output O, input I0, I1, I2, I3);
|
||||||
wire [ 3: 0] s2 = I2 ? s3[ 7: 4] : s3[ 3: 0];
|
wire [ 3: 0] s2 = I2 ? s3[ 7: 4] : s3[ 3: 0];
|
||||||
wire [ 1: 0] s1 = I1 ? s2[ 3: 2] : s2[ 1: 0];
|
wire [ 1: 0] s1 = I1 ? s2[ 3: 2] : s2[ 1: 0];
|
||||||
assign O = I0 ? s1[1] : s1[0];
|
assign O = I0 ? s1[1] : s1[0];
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
(I0 => O) = 22;
|
(I0 => O) = 22;
|
||||||
(I1 => O) = 22;
|
(I1 => O) = 22;
|
||||||
|
@ -132,7 +123,7 @@ module LUT5(output O, input I0, I1, I2, I3, I4);
|
||||||
wire [ 3: 0] s2 = I2 ? s3[ 7: 4] : s3[ 3: 0];
|
wire [ 3: 0] s2 = I2 ? s3[ 7: 4] : s3[ 3: 0];
|
||||||
wire [ 1: 0] s1 = I1 ? s2[ 3: 2] : s2[ 1: 0];
|
wire [ 1: 0] s1 = I1 ? s2[ 3: 2] : s2[ 1: 0];
|
||||||
assign O = I0 ? s1[1] : s1[0];
|
assign O = I0 ? s1[1] : s1[0];
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
(I0 => O) = 22;
|
(I0 => O) = 22;
|
||||||
(I1 => O) = 22;
|
(I1 => O) = 22;
|
||||||
|
@ -152,7 +143,7 @@ module LUT6(output O, input I0, I1, I2, I3, I4, I5);
|
||||||
wire [ 3: 0] s2 = I2 ? s3[ 7: 4] : s3[ 3: 0];
|
wire [ 3: 0] s2 = I2 ? s3[ 7: 4] : s3[ 3: 0];
|
||||||
wire [ 1: 0] s1 = I1 ? s2[ 3: 2] : s2[ 1: 0];
|
wire [ 1: 0] s1 = I1 ? s2[ 3: 2] : s2[ 1: 0];
|
||||||
assign O = I0 ? s1[1] : s1[0];
|
assign O = I0 ? s1[1] : s1[0];
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
(I0 => O) = 22;
|
(I0 => O) = 22;
|
||||||
(I1 => O) = 22;
|
(I1 => O) = 22;
|
||||||
|
@ -185,7 +176,7 @@ endmodule
|
||||||
(* abc9_lut=12 *)
|
(* abc9_lut=12 *)
|
||||||
module \$__ABC9_LUT7 (output O, input I0, I1, I2, I3, I4, I5, I6);
|
module \$__ABC9_LUT7 (output O, input I0, I1, I2, I3, I4, I5, I6);
|
||||||
`ifndef __ICARUS__
|
`ifndef __ICARUS__
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
(I0 => O) = 22 + 63 /* LUTMUX7.I1 */;
|
(I0 => O) = 22 + 63 /* LUTMUX7.I1 */;
|
||||||
(I1 => O) = 22 + 63 /* LUTMUX7.I1 */;
|
(I1 => O) = 22 + 63 /* LUTMUX7.I1 */;
|
||||||
|
@ -204,7 +195,7 @@ endmodule
|
||||||
(* abc9_lut=24 *)
|
(* abc9_lut=24 *)
|
||||||
module \$__ABC9_LUT8 (output O, input I0, I1, I2, I3, I4, I5, I6, I7);
|
module \$__ABC9_LUT8 (output O, input I0, I1, I2, I3, I4, I5, I6, I7);
|
||||||
`ifndef __ICARUS__
|
`ifndef __ICARUS__
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
(I0 => O) = 22 + 63 /* LUTMUX7.I1 */ + 48 /* LUTMUX8.I0 */;
|
(I0 => O) = 22 + 63 /* LUTMUX7.I1 */ + 48 /* LUTMUX8.I0 */;
|
||||||
(I1 => O) = 22 + 63 /* LUTMUX7.I1 */ + 48 /* LUTMUX8.I0 */;
|
(I1 => O) = 22 + 63 /* LUTMUX7.I1 */ + 48 /* LUTMUX8.I0 */;
|
||||||
|
@ -222,7 +213,7 @@ endmodule
|
||||||
(* abc9_box, lib_whitebox *)
|
(* abc9_box, lib_whitebox *)
|
||||||
module LUTMUX7(output O, input I0, I1, S);
|
module LUTMUX7(output O, input I0, I1, S);
|
||||||
assign O = S ? I1 : I0;
|
assign O = S ? I1 : I0;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
(I0 => O) = 62;
|
(I0 => O) = 62;
|
||||||
(I1 => O) = 63;
|
(I1 => O) = 63;
|
||||||
|
@ -234,7 +225,7 @@ endmodule
|
||||||
(* abc9_box, lib_whitebox *)
|
(* abc9_box, lib_whitebox *)
|
||||||
module LUTMUX8(output O, input I0, I1, S);
|
module LUTMUX8(output O, input I0, I1, S);
|
||||||
assign O = S ? I1 : I0;
|
assign O = S ? I1 : I0;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
(I0 => O) = 48;
|
(I0 => O) = 48;
|
||||||
(I1 => O) = 46;
|
(I1 => O) = 46;
|
||||||
|
@ -258,7 +249,7 @@ module CRY4(
|
||||||
assign CO[1] = S[1] ? CO[0] : DI[1];
|
assign CO[1] = S[1] ? CO[0] : DI[1];
|
||||||
assign CO[2] = S[2] ? CO[1] : DI[2];
|
assign CO[2] = S[2] ? CO[1] : DI[2];
|
||||||
assign CO[3] = S[3] ? CO[2] : DI[3];
|
assign CO[3] = S[3] ? CO[2] : DI[3];
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
(S[0] => O[0]) = 39;
|
(S[0] => O[0]) = 39;
|
||||||
(CI => O[0]) = 43;
|
(CI => O[0]) = 43;
|
||||||
|
@ -315,7 +306,7 @@ module CRY4INIT(
|
||||||
(* abc9_carry *)
|
(* abc9_carry *)
|
||||||
input CYINIT
|
input CYINIT
|
||||||
);
|
);
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
(CYINIT => CO) = 72;
|
(CYINIT => CO) = 72;
|
||||||
endspecify
|
endspecify
|
||||||
|
@ -338,7 +329,7 @@ module FFRE (
|
||||||
parameter [0:0] INIT = 1'b0;
|
parameter [0:0] INIT = 1'b0;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
always @(posedge C) if (R) Q <= 1'b0; else if (CE) Q <= D;
|
always @(posedge C) if (R) Q <= 1'b0; else if (CE) Q <= D;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
$setup(D , posedge C, 31);
|
$setup(D , posedge C, 31);
|
||||||
$setup(CE, posedge C, 122);
|
$setup(CE, posedge C, 122);
|
||||||
|
@ -361,7 +352,7 @@ module FFRE_N (
|
||||||
parameter [0:0] INIT = 1'b0;
|
parameter [0:0] INIT = 1'b0;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
always @(negedge C) if (R) Q <= 1'b0; else if (CE) Q <= D;
|
always @(negedge C) if (R) Q <= 1'b0; else if (CE) Q <= D;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
$setup(D , negedge C, 31);
|
$setup(D , negedge C, 31);
|
||||||
$setup(CE, negedge C, 122);
|
$setup(CE, negedge C, 122);
|
||||||
|
@ -383,7 +374,7 @@ module FFSE (
|
||||||
parameter [0:0] INIT = 1'b1;
|
parameter [0:0] INIT = 1'b1;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
always @(posedge C) if (S) Q <= 1'b1; else if (CE) Q <= D;
|
always @(posedge C) if (S) Q <= 1'b1; else if (CE) Q <= D;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
$setup(D , posedge C, 31);
|
$setup(D , posedge C, 31);
|
||||||
$setup(CE, posedge C, 122);
|
$setup(CE, posedge C, 122);
|
||||||
|
@ -405,7 +396,7 @@ module FFSE_N (
|
||||||
parameter [0:0] INIT = 1'b1;
|
parameter [0:0] INIT = 1'b1;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
always @(negedge C) if (S) Q <= 1'b1; else if (CE) Q <= D;
|
always @(negedge C) if (S) Q <= 1'b1; else if (CE) Q <= D;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
$setup(D , negedge C, 31);
|
$setup(D , negedge C, 31);
|
||||||
$setup(CE, negedge C, 122);
|
$setup(CE, negedge C, 122);
|
||||||
|
@ -427,7 +418,7 @@ module FFCE (
|
||||||
parameter [0:0] INIT = 1'b0;
|
parameter [0:0] INIT = 1'b0;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
always @(posedge C, posedge CLR) if ( CLR) Q <= 1'b0; else if (CE) Q <= D;
|
always @(posedge C, posedge CLR) if ( CLR) Q <= 1'b0; else if (CE) Q <= D;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
$setup(D , posedge C, 31);
|
$setup(D , posedge C, 31);
|
||||||
$setup(CE , posedge C, 122);
|
$setup(CE , posedge C, 122);
|
||||||
|
@ -447,7 +438,7 @@ module FFCE_N (
|
||||||
parameter [0:0] INIT = 1'b0;
|
parameter [0:0] INIT = 1'b0;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
always @(negedge C, posedge CLR) if (CLR) Q <= 1'b0; else if (CE) Q <= D;
|
always @(negedge C, posedge CLR) if (CLR) Q <= 1'b0; else if (CE) Q <= D;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
$setup(D , negedge C, 31);
|
$setup(D , negedge C, 31);
|
||||||
$setup(CE , negedge C, 122);
|
$setup(CE , negedge C, 122);
|
||||||
|
@ -467,7 +458,7 @@ module FFPE (
|
||||||
parameter [0:0] INIT = 1'b1;
|
parameter [0:0] INIT = 1'b1;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
always @(posedge C, posedge PRE) if ( PRE) Q <= 1'b1; else if (CE) Q <= D;
|
always @(posedge C, posedge PRE) if ( PRE) Q <= 1'b1; else if (CE) Q <= D;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
$setup(D , posedge C, 31);
|
$setup(D , posedge C, 31);
|
||||||
$setup(CE , posedge C, 122);
|
$setup(CE , posedge C, 122);
|
||||||
|
@ -487,7 +478,7 @@ module FFPE_N (
|
||||||
parameter [0:0] INIT = 1'b1;
|
parameter [0:0] INIT = 1'b1;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
always @(negedge C, posedge PRE) if (PRE) Q <= 1'b1; else if (CE) Q <= D;
|
always @(negedge C, posedge PRE) if (PRE) Q <= 1'b1; else if (CE) Q <= D;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
$setup(D , negedge C, 31);
|
$setup(D , negedge C, 31);
|
||||||
$setup(CE , negedge C, 122);
|
$setup(CE , negedge C, 122);
|
||||||
|
@ -514,7 +505,7 @@ module RAMS32X1 (
|
||||||
reg [31:0] mem = INIT;
|
reg [31:0] mem = INIT;
|
||||||
assign O = mem[a];
|
assign O = mem[a];
|
||||||
always @(posedge WCLK) if (WE) mem[a] <= D;
|
always @(posedge WCLK) if (WE) mem[a] <= D;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
$setup(A0, posedge WCLK, 0);
|
$setup(A0, posedge WCLK, 0);
|
||||||
$setup(A1, posedge WCLK, 0);
|
$setup(A1, posedge WCLK, 0);
|
||||||
|
@ -547,7 +538,7 @@ module RAMS64X1 (
|
||||||
reg [63:0] mem = INIT;
|
reg [63:0] mem = INIT;
|
||||||
assign O = mem[a];
|
assign O = mem[a];
|
||||||
always @(posedge WCLK) if (WE) mem[a] <= D;
|
always @(posedge WCLK) if (WE) mem[a] <= D;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
$setup(A0, posedge WCLK, 0);
|
$setup(A0, posedge WCLK, 0);
|
||||||
$setup(A1, posedge WCLK, 0);
|
$setup(A1, posedge WCLK, 0);
|
||||||
|
@ -587,7 +578,7 @@ module RAMD32X1 (
|
||||||
assign SPO = mem[a];
|
assign SPO = mem[a];
|
||||||
assign DPO = mem[dpra];
|
assign DPO = mem[dpra];
|
||||||
always @(posedge WCLK) if (WE) mem[a] <= D;
|
always @(posedge WCLK) if (WE) mem[a] <= D;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
$setup(A0, posedge WCLK, 0);
|
$setup(A0, posedge WCLK, 0);
|
||||||
$setup(A1, posedge WCLK, 0);
|
$setup(A1, posedge WCLK, 0);
|
||||||
|
@ -636,7 +627,7 @@ module RAMD64X1 (
|
||||||
assign SPO = mem[a];
|
assign SPO = mem[a];
|
||||||
assign DPO = mem[dpra];
|
assign DPO = mem[dpra];
|
||||||
always @(posedge WCLK) if (WE) mem[a] <= D;
|
always @(posedge WCLK) if (WE) mem[a] <= D;
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
$setup(A0, posedge WCLK, 0);
|
$setup(A0, posedge WCLK, 0);
|
||||||
$setup(A1, posedge WCLK, 0);
|
$setup(A1, posedge WCLK, 0);
|
||||||
|
@ -686,7 +677,7 @@ module SRG16E (
|
||||||
reg [15:0] r = INIT;
|
reg [15:0] r = INIT;
|
||||||
assign Q = r[{A3,A2,A1,A0}];
|
assign Q = r[{A3,A2,A1,A0}];
|
||||||
always @(posedge CLK) if (CE) r <= { r[14:0], D };
|
always @(posedge CLK) if (CE) r <= { r[14:0], D };
|
||||||
`ifdef t16ffc
|
`ifdef IS_T16FFC
|
||||||
specify
|
specify
|
||||||
$setup(D , posedge CLK, 173);
|
$setup(D , posedge CLK, 173);
|
||||||
if (CE) (posedge CLK => (Q : D)) = 1472;
|
if (CE) (posedge CLK => (Q : D)) = 1472;
|
||||||
|
|
|
@ -32,12 +32,8 @@ module \$lut (A, Y);
|
||||||
|
|
||||||
generate
|
generate
|
||||||
if (WIDTH == 1) begin
|
if (WIDTH == 1) begin
|
||||||
if (LUT == 2'b01) begin
|
LUT1 #(.INIT(LUT)) _TECHMAP_REPLACE_ (.O(Y),
|
||||||
INV _TECHMAP_REPLACE_ (.O(Y), .I(A[0]));
|
.I0(A[0]));
|
||||||
end else begin
|
|
||||||
LUT1 #(.INIT(LUT)) _TECHMAP_REPLACE_ (.O(Y),
|
|
||||||
.I0(A[0]));
|
|
||||||
end
|
|
||||||
end else
|
end else
|
||||||
if (WIDTH == 2) begin
|
if (WIDTH == 2) begin
|
||||||
LUT2 #(.INIT(LUT)) _TECHMAP_REPLACE_ (.O(Y),
|
LUT2 #(.INIT(LUT)) _TECHMAP_REPLACE_ (.O(Y),
|
||||||
|
|
|
@ -114,7 +114,7 @@ struct SynthAnalogDevicesPass : public ScriptPass
|
||||||
log("\n");
|
log("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string top_opt, edif_file, json_file, tech;
|
std::string top_opt, edif_file, json_file, tech, tech_param;
|
||||||
bool flatten, retime, noiopad, noclkbuf, nobram, nolutram, nosrl, nocarry, nowidelut, nodsp;
|
bool flatten, retime, noiopad, noclkbuf, nobram, nolutram, nosrl, nocarry, nowidelut, nodsp;
|
||||||
bool abc9, dff;
|
bool abc9, dff;
|
||||||
bool flatten_before_abc;
|
bool flatten_before_abc;
|
||||||
|
@ -126,6 +126,7 @@ struct SynthAnalogDevicesPass : public ScriptPass
|
||||||
top_opt = "-auto-top";
|
top_opt = "-auto-top";
|
||||||
edif_file.clear();
|
edif_file.clear();
|
||||||
tech = "t16ffc";
|
tech = "t16ffc";
|
||||||
|
tech_param = " -D IS_T16FFC";
|
||||||
flatten = true;
|
flatten = true;
|
||||||
retime = false;
|
retime = false;
|
||||||
noiopad = false;
|
noiopad = false;
|
||||||
|
@ -157,6 +158,10 @@ struct SynthAnalogDevicesPass : public ScriptPass
|
||||||
}
|
}
|
||||||
if (args[argidx] == "-tech" && argidx+1 < args.size()) {
|
if (args[argidx] == "-tech" && argidx+1 < args.size()) {
|
||||||
tech = args[++argidx];
|
tech = args[++argidx];
|
||||||
|
if (tech == "t16ffc")
|
||||||
|
tech_param = " -D IS_T16FFC";
|
||||||
|
else if (tech == "t40lp")
|
||||||
|
tech_param = " -D IS_T40LP";
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (args[argidx] == "-edif" && argidx+1 < args.size()) {
|
if (args[argidx] == "-edif" && argidx+1 < args.size()) {
|
||||||
|
@ -266,7 +271,7 @@ struct SynthAnalogDevicesPass : public ScriptPass
|
||||||
void script() override
|
void script() override
|
||||||
{
|
{
|
||||||
if (check_label("begin")) {
|
if (check_label("begin")) {
|
||||||
run(stringf("read_verilog -lib -specify -D %s +/analogdevices/cells_sim.v", tech));
|
run(stringf("read_verilog -lib -specify %s +/analogdevices/cells_sim.v", tech_param));
|
||||||
run("read_verilog -lib +/analogdevices/cells_xtra.v");
|
run("read_verilog -lib +/analogdevices/cells_xtra.v");
|
||||||
run(stringf("hierarchy -check %s", top_opt.c_str()));
|
run(stringf("hierarchy -check %s", top_opt.c_str()));
|
||||||
}
|
}
|
||||||
|
@ -355,13 +360,8 @@ struct SynthAnalogDevicesPass : public ScriptPass
|
||||||
lutrams_map = "+/analogdevices/lutrams_map.v";
|
lutrams_map = "+/analogdevices/lutrams_map.v";
|
||||||
params += " -lib +/analogdevices/brams.txt";
|
params += " -lib +/analogdevices/brams.txt";
|
||||||
brams_map = "+/analogdevices/brams_map.v";
|
brams_map = "+/analogdevices/brams_map.v";
|
||||||
if (tech == "t16ffc") {
|
params += tech_param;
|
||||||
params += " -D IS_T16FFC";
|
brams_map += tech_param;
|
||||||
brams_map += " -D IS_T16FFC";
|
|
||||||
} else if (tech == "t40lp") {
|
|
||||||
params += " -D IS_T40LP";
|
|
||||||
brams_map += " -D IS_T40LP";
|
|
||||||
}
|
|
||||||
if (nolutram)
|
if (nolutram)
|
||||||
params += " -no-auto-distributed";
|
params += " -no-auto-distributed";
|
||||||
if (nobram)
|
if (nobram)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue