yosys/techlibs/greenpak4/cells_sim.v

147 lines
3.0 KiB
Coq
Raw Normal View History

2016-03-23 02:46:10 -05:00
module GP_DFF(input D, CLK, output reg Q);
2016-03-23 02:12:54 -05:00
parameter [0:0] INIT = 1'bx;
initial Q = INIT;
2016-03-23 02:46:10 -05:00
always @(posedge CLK) begin
Q <= D;
end
endmodule
module GP_DFFS(input D, CLK, nSET, output reg Q);
parameter [0:0] INIT = 1'bx;
initial Q = INIT;
always @(posedge CLK, negedge nSET) begin
if (!nSET)
2015-09-16 02:28:37 -05:00
Q <= 1'b1;
else
Q <= D;
end
endmodule
2016-03-23 02:46:10 -05:00
module GP_DFFR(input D, CLK, nRST, output reg Q);
parameter [0:0] INIT = 1'bx;
initial Q = INIT;
always @(posedge CLK, negedge nRST) begin
if (!nRST)
Q <= 1'b0;
else
Q <= D;
end
endmodule
module GP_DFFSR(input D, CLK, nSR, output reg Q);
parameter [0:0] INIT = 1'bx;
parameter [0:0] SRMODE = 1'bx;
initial Q = INIT;
always @(posedge CLK, negedge nSR) begin
if (!nSR)
Q <= SRMODE;
else
Q <= D;
end
endmodule
2016-04-01 23:18:29 -05:00
module GP_INV(input IN, output OUT);
assign OUT = ~IN;
endmodule
module GP_2LUT(input IN0, IN1, output OUT);
2015-09-16 02:28:37 -05:00
parameter [3:0] INIT = 0;
assign OUT = INIT[{IN1, IN0}];
endmodule
module GP_3LUT(input IN0, IN1, IN2, output OUT);
2015-09-16 02:28:37 -05:00
parameter [7:0] INIT = 0;
assign OUT = INIT[{IN2, IN1, IN0}];
endmodule
module GP_4LUT(input IN0, IN1, IN2, IN3, output OUT);
2015-09-16 02:28:37 -05:00
parameter [15:0] INIT = 0;
assign OUT = INIT[{IN3, IN2, IN1, IN0}];
endmodule
2016-03-23 02:46:10 -05:00
module GP_VDD(output OUT);
2016-03-23 02:46:10 -05:00
assign OUT = 1;
endmodule
module GP_VSS(output OUT);
2016-03-23 02:46:10 -05:00
assign OUT = 0;
endmodule
2016-03-26 15:42:53 -05:00
module GP_LFOSC(input PWRDN, output reg CLKOUT);
2016-03-26 15:42:53 -05:00
parameter PWRDN_EN = 0;
parameter AUTO_PWRDN = 0;
parameter OUT_DIV = 1;
2016-03-26 15:42:53 -05:00
initial CLKOUT = 0;
always begin
if(PWRDN)
clkout = 0;
else begin
//half period of 1730 Hz
#289017;
clkout = ~clkout;
end
end
endmodule
2016-03-27 01:29:02 -05:00
module GP_COUNT8(input CLK, input wire RST, output reg OUT);
parameter RESET_MODE = "RISING";
parameter COUNT_TO = 8'h1;
parameter CLKIN_DIVIDE = 1;
//more complex hard IP blocks are not supported for simulation yet
reg[7:0] count = COUNT_TO;
//Combinatorially output whenever we wrap low
always @(*) begin
OUT <= (count == 8'h0);
end
//POR or SYSRST reset value is COUNT_TO. Datasheet is unclear but conversations w/ Silego confirm.
//Runtime reset value is clearly 0 except in count/FSM cells where it's configurable but we leave at 0 for now.
//Datasheet seems to indicate that reset is asynchronous, but for now we model as sync due to Yosys issues...
always @(posedge CLK) begin
count <= count - 1'd1;
if(count == 0)
count <= COUNT_MAX;
/*
if((RESET_MODE == "RISING") && RST)
count <= 0;
if((RESET_MODE == "FALLING") && !RST)
count <= 0;
if((RESET_MODE == "BOTH") && RST)
count <= 0;
*/
end
2016-03-27 01:29:02 -05:00
endmodule
module GP_COUNT14(input CLK, input wire RST, output reg OUT);
parameter RESET_MODE = "RISING";
parameter COUNT_TO = 14'h1;
parameter CLKIN_DIVIDE = 1;
//more complex hard IP blocks are not supported for simulation yet
endmodule
2016-03-29 00:49:46 -05:00
//keep constraint needed to prevent optimization since we have no outputs
(* keep *)
2016-03-29 00:49:46 -05:00
module GP_SYSRESET(input RST);
parameter RESET_MODE = "RISING";
//cannot simulate whole system reset
endmodule