diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-04-19 10:37:04 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-04-19 10:37:04 +0200 |
commit | bf64974d43600b2e8ad63a1762489a152c002a41 (patch) | |
tree | 3a3eee4e6643d86e8ca2c071416f36e18742c2b1 | |
parent | f1fa757d0e7de4fce01dd4c2b2ec8f1aed0fb1a6 (diff) | |
parent | 8c9ac5db7bd97fce3bfe5040a238d4f08d726473 (diff) | |
download | yosys-bf64974d43600b2e8ad63a1762489a152c002a41.tar.gz yosys-bf64974d43600b2e8ad63a1762489a152c002a41.tar.bz2 yosys-bf64974d43600b2e8ad63a1762489a152c002a41.zip |
Merge pull request #149 from azonenberg/master
GP_RCOSC and GP_SHREG cells plus some cleanup
-rw-r--r-- | techlibs/greenpak4/cells_sim.v | 252 |
1 files changed, 156 insertions, 96 deletions
diff --git a/techlibs/greenpak4/cells_sim.v b/techlibs/greenpak4/cells_sim.v index 1234ce1b2..554e2e13f 100644 --- a/techlibs/greenpak4/cells_sim.v +++ b/techlibs/greenpak4/cells_sim.v @@ -1,3 +1,76 @@ +module GP_2LUT(input IN0, IN1, output OUT); + parameter [3:0] INIT = 0; + assign OUT = INIT[{IN1, IN0}]; +endmodule + +module GP_3LUT(input IN0, IN1, IN2, output OUT); + parameter [7:0] INIT = 0; + assign OUT = INIT[{IN2, IN1, IN0}]; +endmodule + +module GP_4LUT(input IN0, IN1, IN2, IN3, output OUT); + parameter [15:0] INIT = 0; + assign OUT = INIT[{IN3, IN2, IN1, IN0}]; +endmodule + +module GP_BANDGAP(output reg OK, output reg VOUT); + parameter AUTO_PWRDN = 1; + parameter CHOPPER_EN = 1; + parameter OUT_DELAY = 100; + + //cannot simulate mixed signal IP + +endmodule + +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 + +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 + module GP_DFF(input D, CLK, output reg Q); parameter [0:0] INIT = 1'bx; initial Q = INIT; @@ -6,23 +79,23 @@ module GP_DFF(input D, CLK, output reg Q); end endmodule -module GP_DFFS(input D, CLK, nSET, output reg Q); +module GP_DFFR(input D, CLK, nRST, output reg Q); parameter [0:0] INIT = 1'bx; initial Q = INIT; - always @(posedge CLK, negedge nSET) begin - if (!nSET) - Q <= 1'b1; + always @(posedge CLK, negedge nRST) begin + if (!nRST) + Q <= 1'b0; else Q <= D; end endmodule -module GP_DFFR(input D, CLK, nRST, output reg Q); +module GP_DFFS(input D, CLK, nSET, output reg Q); parameter [0:0] INIT = 1'bx; initial Q = INIT; - always @(posedge CLK, negedge nRST) begin - if (!nRST) - Q <= 1'b0; + always @(posedge CLK, negedge nSET) begin + if (!nSET) + Q <= 1'b1; else Q <= D; end @@ -44,29 +117,6 @@ module GP_INV(input IN, output OUT); assign OUT = ~IN; endmodule -module GP_2LUT(input IN0, IN1, output OUT); - parameter [3:0] INIT = 0; - assign OUT = INIT[{IN1, IN0}]; -endmodule - -module GP_3LUT(input IN0, IN1, IN2, output OUT); - parameter [7:0] INIT = 0; - assign OUT = INIT[{IN2, IN1, IN0}]; -endmodule - -module GP_4LUT(input IN0, IN1, IN2, IN3, output OUT); - parameter [15:0] INIT = 0; - assign OUT = INIT[{IN3, IN2, IN1, IN0}]; -endmodule - -module GP_VDD(output OUT); - assign OUT = 1; -endmodule - -module GP_VSS(output OUT); - assign OUT = 0; -endmodule - module GP_LFOSC(input PWRDN, output reg CLKOUT); parameter PWRDN_EN = 0; @@ -90,12 +140,34 @@ module GP_LFOSC(input PWRDN, output reg CLKOUT); endmodule -module GP_RINGOSC(input PWRDN, output reg CLKOUT_PREDIV, output reg CLKOUT_FABRIC); +module GP_POR(output reg RST_DONE); + parameter POR_TIME = 500; + + initial begin + RST_DONE = 0; + + if(POR_TIME == 4) + #4000; + else if(POR_TIME == 500) + #500000; + else begin + $display("ERROR: bad POR_TIME for GP_POR cell"); + $finish; + end + + RST_DONE = 1; + + end + +endmodule + +module GP_RCOSC(input PWRDN, output reg CLKOUT_PREDIV, output reg CLKOUT_FABRIC); parameter PWRDN_EN = 0; parameter AUTO_PWRDN = 0; parameter PRE_DIV = 1; parameter FABRIC_DIV = 1; + parameter OSC_FREQ = "25k"; initial CLKOUT_PREDIV = 0; initial CLKOUT_FABRIC = 0; @@ -109,8 +181,17 @@ module GP_RINGOSC(input PWRDN, output reg CLKOUT_PREDIV, output reg CLKOUT_FABRI CLKOUT_FABRIC = 0; end else begin - //half period of 27 MHz - #18.518; + + if(OSC_FREQ == "25k") begin + //half period of 25 kHz + #20000; + end + + else begin + //half period of 2 MHz + #250; + end + CLKOUT_PREDIV = ~CLKOUT_PREDIV; CLKOUT_FABRIC = ~CLKOUT_FABRIC; end @@ -118,52 +199,54 @@ module GP_RINGOSC(input PWRDN, output reg CLKOUT_PREDIV, output reg CLKOUT_FABRI endmodule -module GP_COUNT8(input CLK, input wire RST, output reg OUT); - - parameter RESET_MODE = "RISING"; +module GP_RINGOSC(input PWRDN, output reg CLKOUT_PREDIV, output reg CLKOUT_FABRIC); - parameter COUNT_TO = 8'h1; - parameter CLKIN_DIVIDE = 1; + parameter PWRDN_EN = 0; + parameter AUTO_PWRDN = 0; + parameter PRE_DIV = 1; + parameter FABRIC_DIV = 1; - //more complex hard IP blocks are not supported for simulation yet + initial CLKOUT_PREDIV = 0; + initial CLKOUT_FABRIC = 0; - reg[7:0] count = COUNT_TO; + //output dividers not implemented for simulation + //auto powerdown not implemented for simulation - //Combinatorially output whenever we wrap low - always @(*) begin - OUT <= (count == 8'h0); + always begin + if(PWRDN) begin + CLKOUT_PREDIV = 0; + CLKOUT_FABRIC = 0; + end + else begin + //half period of 27 MHz + #18.518; + CLKOUT_PREDIV = ~CLKOUT_PREDIV; + CLKOUT_FABRIC = ~CLKOUT_FABRIC; + end 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 - endmodule -module GP_COUNT14(input CLK, input wire RST, output reg OUT); +module GP_SHREG(input nRST, input CLK, input IN, output OUTA, output OUTB); - parameter RESET_MODE = "RISING"; + parameter OUTA_DELAY = 1; + parameter OUTA_INVERT = 0; + parameter OUTB_DELAY = 1; - parameter COUNT_TO = 14'h1; - parameter CLKIN_DIVIDE = 1; + reg[15:0] shreg = 0; - //more complex hard IP blocks are not supported for simulation yet + always @(posedge clk, negedge RSTN) begin + + if(!nRST) + shreg = 0; + + else + shreg <= {shreg[14:0], IN}; + + end + + assign OUTA = (OUTA_INVERT) ? ~shreg[OUTA_DELAY - 1] : shreg[OUTA_DELAY - 1]; + assign OUTB = shreg[OUTB_DELAY - 1]; endmodule @@ -176,33 +259,10 @@ module GP_SYSRESET(input RST); endmodule -module GP_BANDGAP(output reg OK, output reg VOUT); - parameter AUTO_PWRDN = 1; - parameter CHOPPER_EN = 1; - parameter OUT_DELAY = 100; - - //cannot simulate mixed signal IP - +module GP_VDD(output OUT); + assign OUT = 1; endmodule - -module GP_POR(output reg RST_DONE); - parameter POR_TIME = 500; - - initial begin - RST_DONE = 0; - - if(POR_TIME == 4) - #4000; - else if(POR_TIME == 500) - #500000; - else begin - $display("ERROR: bad POR_TIME for GP_POR cell"); - $finish; - end - - RST_DONE = 1; - - end - +module GP_VSS(output OUT); + assign OUT = 0; endmodule |