mirror of https://github.com/YosysHQ/yosys.git
commented remainder of primitives
This commit is contained in:
parent
8023f921e3
commit
fa14c600ff
|
@ -1,27 +1,12 @@
|
||||||
(* blackbox *)
|
//(* blackbox *)
|
||||||
module NX_BD(I, O);
|
//module NX_LUT(I1, I2, I3, I4, O);
|
||||||
input I;
|
// input I1;
|
||||||
output O;
|
// input I2;
|
||||||
parameter mode = "global_lowskew";
|
// input I3;
|
||||||
endmodule
|
// input I4;
|
||||||
|
// output O;
|
||||||
(* blackbox *)
|
// parameter lut_table = 16'b0000000000000000;
|
||||||
module NX_BFF(I, O);
|
//endmodule
|
||||||
input I;
|
|
||||||
output O;
|
|
||||||
endmodule
|
|
||||||
|
|
||||||
(* blackbox *)
|
|
||||||
module NX_BFR(I, O);
|
|
||||||
input I;
|
|
||||||
output O;
|
|
||||||
parameter data_inv = 1'b0;
|
|
||||||
parameter iobname = "";
|
|
||||||
parameter location = "";
|
|
||||||
parameter mode = 0;
|
|
||||||
parameter path = 0;
|
|
||||||
parameter ring = 0;
|
|
||||||
endmodule
|
|
||||||
|
|
||||||
//(* blackbox *)
|
//(* blackbox *)
|
||||||
//module NX_CY(A1, A2, A3, A4, B1, B2, B3, B4, CI, CO, S1, S2, S3, S4);
|
//module NX_CY(A1, A2, A3, A4, B1, B2, B3, B4, CI, CO, S1, S2, S3, S4);
|
||||||
|
@ -42,37 +27,12 @@ endmodule
|
||||||
// parameter add_carry = 0;
|
// parameter add_carry = 0;
|
||||||
//endmodule
|
//endmodule
|
||||||
|
|
||||||
|
// Bypass mode of NX_GCK_U
|
||||||
(* blackbox *)
|
(* blackbox *)
|
||||||
module NX_DES(FCK, SCK, R, IO, DCK, DRL, DIG, FZ, FLD, FLG, O, DS, DRA, DRI, DRO, DID);
|
module NX_BD(I, O);
|
||||||
input DCK;
|
input I;
|
||||||
output [5:0] DID;
|
output O;
|
||||||
input DIG;
|
parameter mode = "global_lowskew";
|
||||||
input [5:0] DRA;
|
|
||||||
input [5:0] DRI;
|
|
||||||
input DRL;
|
|
||||||
output [5:0] DRO;
|
|
||||||
input [1:0] DS;
|
|
||||||
input FCK;
|
|
||||||
output FLD;
|
|
||||||
output FLG;
|
|
||||||
input FZ;
|
|
||||||
input IO;
|
|
||||||
output [4:0] O;
|
|
||||||
input R;
|
|
||||||
input SCK;
|
|
||||||
parameter data_size = 5;
|
|
||||||
parameter differential = "";
|
|
||||||
parameter dpath_dynamic = 1'b0;
|
|
||||||
parameter drive = "";
|
|
||||||
parameter inputDelayLine = "";
|
|
||||||
parameter inputSignalSlope = "";
|
|
||||||
parameter location = "";
|
|
||||||
parameter locked = 1'b0;
|
|
||||||
parameter standard = "";
|
|
||||||
parameter termination = "";
|
|
||||||
parameter terminationReference = "";
|
|
||||||
parameter turbo = "";
|
|
||||||
parameter weakTermination = "";
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
//(* blackbox *)
|
//(* blackbox *)
|
||||||
|
@ -90,6 +50,14 @@ endmodule
|
||||||
// parameter dff_type = 1'b0;
|
// parameter dff_type = 1'b0;
|
||||||
//endmodule
|
//endmodule
|
||||||
|
|
||||||
|
// Special mode of NX_DFF
|
||||||
|
(* blackbox *)
|
||||||
|
module NX_BFF(I, O);
|
||||||
|
input I;
|
||||||
|
output O;
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
|
||||||
(* blackbox *)
|
(* blackbox *)
|
||||||
module NX_DFR(I, CK, L, R, O);
|
module NX_DFR(I, CK, L, R, O);
|
||||||
input CK;
|
input CK;
|
||||||
|
@ -110,12 +78,17 @@ module NX_DFR(I, CK, L, R, O);
|
||||||
parameter ring = 0;
|
parameter ring = 0;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
// Special mode of NX_DFR
|
||||||
(* blackbox *)
|
(* blackbox *)
|
||||||
module NX_ECC(CKD, CHK, COR, ERR);
|
module NX_BFR(I, O);
|
||||||
input CHK;
|
input I;
|
||||||
input CKD;
|
output O;
|
||||||
output COR;
|
parameter data_inv = 1'b0;
|
||||||
output ERR;
|
parameter iobname = "";
|
||||||
|
parameter location = "";
|
||||||
|
parameter mode = 0;
|
||||||
|
parameter path = 0;
|
||||||
|
parameter ring = 0;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* blackbox *)
|
(* blackbox *)
|
||||||
|
@ -203,26 +176,6 @@ module NX_IOB_O(I, C, T, IO);
|
||||||
parameter weakTermination = "";
|
parameter weakTermination = "";
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* blackbox *)
|
|
||||||
module NX_IOM_BIN2GRP(GS, DS, GVON, GVIN, GVDN, PA, LA);
|
|
||||||
input [1:0] DS;
|
|
||||||
input GS;
|
|
||||||
output [2:0] GVDN;
|
|
||||||
output [2:0] GVIN;
|
|
||||||
output [2:0] GVON;
|
|
||||||
input [5:0] LA;
|
|
||||||
output [3:0] PA;
|
|
||||||
endmodule
|
|
||||||
|
|
||||||
//(* blackbox *)
|
|
||||||
//module NX_LUT(I1, I2, I3, I4, O);
|
|
||||||
// input I1;
|
|
||||||
// input I2;
|
|
||||||
// input I3;
|
|
||||||
// input I4;
|
|
||||||
// output O;
|
|
||||||
// parameter lut_table = 16'b0000000000000000;
|
|
||||||
//endmodule
|
|
||||||
|
|
||||||
(* blackbox *)
|
(* blackbox *)
|
||||||
module NX_RAM(ACK, ACKC, ACKD, ACKR, BCK, BCKC, BCKD, BCKR, AI1, AI2, AI3, AI4, AI5, AI6, AI7, AI8, AI9, AI10, AI11, AI12, AI13
|
module NX_RAM(ACK, ACKC, ACKD, ACKR, BCK, BCKC, BCKD, BCKR, AI1, AI2, AI3, AI4, AI5, AI6, AI7, AI8, AI9, AI10, AI11, AI12, AI13
|
||||||
|
@ -396,6 +349,28 @@ module NX_RAM(ACK, ACKC, ACKD, ACKR, BCK, BCKC, BCKD, BCKR, AI1, AI2, AI3, AI4,
|
||||||
parameter std_mode = "";
|
parameter std_mode = "";
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
// NX_RAM related
|
||||||
|
(* blackbox *)
|
||||||
|
module NX_ECC(CKD, CHK, COR, ERR);
|
||||||
|
input CHK;
|
||||||
|
input CKD;
|
||||||
|
output COR;
|
||||||
|
output ERR;
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
//TODO
|
||||||
|
(* blackbox *)
|
||||||
|
module NX_IOM_BIN2GRP(GS, DS, GVON, GVIN, GVDN, PA, LA);
|
||||||
|
input [1:0] DS;
|
||||||
|
input GS;
|
||||||
|
output [2:0] GVDN;
|
||||||
|
output [2:0] GVIN;
|
||||||
|
output [2:0] GVON;
|
||||||
|
input [5:0] LA;
|
||||||
|
output [3:0] PA;
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
//TODO
|
||||||
(* blackbox *)
|
(* blackbox *)
|
||||||
module NX_SER(FCK, SCK, R, IO, DCK, DRL, I, DS, DRA, DRI, DRO, DID);
|
module NX_SER(FCK, SCK, R, IO, DCK, DRL, I, DS, DRA, DRI, DRO, DID);
|
||||||
input DCK;
|
input DCK;
|
||||||
|
@ -422,6 +397,41 @@ module NX_SER(FCK, SCK, R, IO, DCK, DRL, I, DS, DRA, DRI, DRO, DID);
|
||||||
parameter standard = "";
|
parameter standard = "";
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
//TODO
|
||||||
|
(* blackbox *)
|
||||||
|
module NX_DES(FCK, SCK, R, IO, DCK, DRL, DIG, FZ, FLD, FLG, O, DS, DRA, DRI, DRO, DID);
|
||||||
|
input DCK;
|
||||||
|
output [5:0] DID;
|
||||||
|
input DIG;
|
||||||
|
input [5:0] DRA;
|
||||||
|
input [5:0] DRI;
|
||||||
|
input DRL;
|
||||||
|
output [5:0] DRO;
|
||||||
|
input [1:0] DS;
|
||||||
|
input FCK;
|
||||||
|
output FLD;
|
||||||
|
output FLG;
|
||||||
|
input FZ;
|
||||||
|
input IO;
|
||||||
|
output [4:0] O;
|
||||||
|
input R;
|
||||||
|
input SCK;
|
||||||
|
parameter data_size = 5;
|
||||||
|
parameter differential = "";
|
||||||
|
parameter dpath_dynamic = 1'b0;
|
||||||
|
parameter drive = "";
|
||||||
|
parameter inputDelayLine = "";
|
||||||
|
parameter inputSignalSlope = "";
|
||||||
|
parameter location = "";
|
||||||
|
parameter locked = 1'b0;
|
||||||
|
parameter standard = "";
|
||||||
|
parameter termination = "";
|
||||||
|
parameter terminationReference = "";
|
||||||
|
parameter turbo = "";
|
||||||
|
parameter weakTermination = "";
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
//TODO
|
||||||
(* blackbox *)
|
(* blackbox *)
|
||||||
module NX_SERDES(FCK, SCK, RTX, RRX, CI, CCK, CL, CR, IO, DCK, DRL, DIG, FZ, FLD, FLG, I, O, DS, DRA, DRI, DRO
|
module NX_SERDES(FCK, SCK, RTX, RRX, CI, CCK, CL, CR, IO, DCK, DRL, DIG, FZ, FLD, FLG, I, O, DS, DRA, DRI, DRO
|
||||||
, DID);
|
, DID);
|
||||||
|
|
Loading…
Reference in New Issue