mirror of https://github.com/YosysHQ/yosys.git
ecp5: Add blackboxes for ancillary DCU cells
Signed-off-by: David Shah <dave@ds0.me>
This commit is contained in:
parent
1f51332808
commit
960c8794fa
|
@ -483,3 +483,21 @@ module DCUA(
|
|||
parameter D_TX_VCO_CK_DIV = "0b000";
|
||||
parameter D_XGE_MODE = "0b0";
|
||||
endmodule
|
||||
|
||||
(* blackbox *)
|
||||
module EXTREFB (
|
||||
input REFCLKP, REFCLKN,
|
||||
output REFCLKO
|
||||
);
|
||||
parameter REFCK_PWDNB = "0b0";
|
||||
parameter REFCK_RTERM = "0b0";
|
||||
parameter REFCK_DCBIAS_EN = "0b0";
|
||||
endmodule
|
||||
|
||||
(* blackbox *)
|
||||
module PCSCLKDIV (
|
||||
input CLKI, RST, SEL2, SEL1, SEL0,
|
||||
output CDIV1, CDIVX
|
||||
);
|
||||
parameter GSR = "DISABLED";
|
||||
endmodule
|
||||
|
|
Loading…
Reference in New Issue