2016-05-07 23:14:18 -05:00
|
|
|
`timescale 1ns/1ps
|
2016-05-07 23:13:47 -05:00
|
|
|
|
2017-08-05 18:33:24 -05:00
|
|
|
`include "cells_sim_ams.v"
|
|
|
|
`include "cells_sim_digital.v"
|
2016-04-24 00:33:36 -05:00
|
|
|
|
2017-08-05 18:33:24 -05:00
|
|
|
//Cells still in this file have INCOMPLETE simulation models, need to finish them
|
2016-12-16 01:14:20 -06:00
|
|
|
|
2017-01-01 02:56:20 -06:00
|
|
|
module GP_COUNT8(input CLK, input wire RST, output reg OUT, output reg[7:0] POUT);
|
2016-04-14 01:13:39 -05:00
|
|
|
|
2016-12-14 00:14:45 -06:00
|
|
|
parameter RESET_MODE = "RISING";
|
|
|
|
|
2016-04-14 01:13:39 -05:00
|
|
|
parameter COUNT_TO = 8'h1;
|
|
|
|
parameter CLKIN_DIVIDE = 1;
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-14 01:13:39 -05:00
|
|
|
//more complex hard IP blocks are not supported for simulation yet
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-14 01:13:39 -05:00
|
|
|
reg[7:0] count = COUNT_TO;
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-14 01:13:39 -05:00
|
|
|
//Combinatorially output whenever we wrap low
|
|
|
|
always @(*) begin
|
|
|
|
OUT <= (count == 8'h0);
|
2017-01-01 02:56:20 -06:00
|
|
|
OUT <= count;
|
2016-04-14 01:13:39 -05:00
|
|
|
end
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-14 01:13:39 -05:00
|
|
|
//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
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-14 01:13:39 -05:00
|
|
|
count <= count - 1'd1;
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-14 01:13:39 -05:00
|
|
|
if(count == 0)
|
2016-05-07 23:14:00 -05:00
|
|
|
count <= COUNT_TO;
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-14 01:13:39 -05:00
|
|
|
/*
|
|
|
|
if((RESET_MODE == "RISING") && RST)
|
|
|
|
count <= 0;
|
|
|
|
if((RESET_MODE == "FALLING") && !RST)
|
|
|
|
count <= 0;
|
|
|
|
if((RESET_MODE == "BOTH") && RST)
|
|
|
|
count <= 0;
|
2016-12-14 00:14:45 -06:00
|
|
|
*/
|
2016-04-14 01:13:39 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
module GP_COUNT14(input CLK, input wire RST, output reg OUT);
|
|
|
|
|
2016-12-14 00:14:45 -06:00
|
|
|
parameter RESET_MODE = "RISING";
|
|
|
|
|
2016-04-14 01:13:39 -05:00
|
|
|
parameter COUNT_TO = 14'h1;
|
|
|
|
parameter CLKIN_DIVIDE = 1;
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-14 01:13:39 -05:00
|
|
|
//more complex hard IP blocks are not supported for simulation yet
|
|
|
|
|
|
|
|
endmodule
|
|
|
|
|
2016-07-10 09:41:34 -05:00
|
|
|
module GP_COUNT8_ADV(input CLK, input RST, output reg OUT,
|
2017-01-01 02:56:20 -06:00
|
|
|
input UP, input KEEP, output reg[7:0] POUT);
|
2016-07-10 09:41:34 -05:00
|
|
|
|
|
|
|
parameter RESET_MODE = "RISING";
|
|
|
|
parameter RESET_VALUE = "ZERO";
|
|
|
|
|
|
|
|
parameter COUNT_TO = 8'h1;
|
|
|
|
parameter CLKIN_DIVIDE = 1;
|
|
|
|
|
|
|
|
//more complex hard IP blocks are not supported for simulation yet
|
|
|
|
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
module GP_COUNT14_ADV(input CLK, input RST, output reg OUT,
|
2017-01-01 02:56:20 -06:00
|
|
|
input UP, input KEEP, output reg[7:0] POUT);
|
2016-07-10 09:41:34 -05:00
|
|
|
|
|
|
|
parameter RESET_MODE = "RISING";
|
|
|
|
parameter RESET_VALUE = "ZERO";
|
|
|
|
|
|
|
|
parameter COUNT_TO = 14'h1;
|
|
|
|
parameter CLKIN_DIVIDE = 1;
|
|
|
|
|
|
|
|
//more complex hard IP blocks are not supported for simulation yet
|
|
|
|
|
|
|
|
endmodule
|
|
|
|
|
2016-12-16 22:01:22 -06:00
|
|
|
module GP_DCMP(input[7:0] INP, input[7:0] INN, input CLK, input PWRDN, output reg GREATER, output reg EQUAL);
|
|
|
|
parameter PWRDN_SYNC = 1'b0;
|
|
|
|
parameter CLK_EDGE = "RISING";
|
|
|
|
parameter GREATER_OR_EQUAL = 1'b0;
|
|
|
|
|
|
|
|
//TODO implement power-down mode
|
|
|
|
|
|
|
|
initial GREATER = 0;
|
|
|
|
initial EQUAL = 0;
|
|
|
|
|
|
|
|
wire clk_minv = (CLK_EDGE == "RISING") ? CLK : ~CLK;
|
|
|
|
always @(posedge clk_minv) begin
|
|
|
|
if(GREATER_OR_EQUAL)
|
|
|
|
GREATER <= (INP >= INN);
|
|
|
|
else
|
|
|
|
GREATER <= (INP > INN);
|
|
|
|
|
|
|
|
EQUAL <= (INP == INN);
|
|
|
|
end
|
|
|
|
|
2016-12-15 01:19:35 -06:00
|
|
|
endmodule
|
|
|
|
|
2016-10-18 21:33:26 -05:00
|
|
|
module GP_EDGEDET(input IN, output reg OUT);
|
|
|
|
|
|
|
|
parameter EDGE_DIRECTION = "RISING";
|
|
|
|
parameter DELAY_STEPS = 1;
|
|
|
|
parameter GLITCH_FILTER = 0;
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-10-18 21:33:26 -05:00
|
|
|
//not implemented for simulation
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-10-18 21:33:26 -05:00
|
|
|
endmodule
|
|
|
|
|
2016-08-14 00:27:58 -05:00
|
|
|
module GP_RCOSC(input PWRDN, output reg CLKOUT_HARDIP, output reg CLKOUT_FABRIC);
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-09 03:17:13 -05:00
|
|
|
parameter PWRDN_EN = 0;
|
|
|
|
parameter AUTO_PWRDN = 0;
|
2016-08-14 00:27:58 -05:00
|
|
|
parameter HARDIP_DIV = 1;
|
2016-04-09 03:17:13 -05:00
|
|
|
parameter FABRIC_DIV = 1;
|
2016-04-09 03:18:02 -05:00
|
|
|
parameter OSC_FREQ = "25k";
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-08-14 00:27:58 -05:00
|
|
|
initial CLKOUT_HARDIP = 0;
|
2016-04-09 03:17:13 -05:00
|
|
|
initial CLKOUT_FABRIC = 0;
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-09 03:17:13 -05:00
|
|
|
//output dividers not implemented for simulation
|
|
|
|
//auto powerdown not implemented for simulation
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-09 03:17:13 -05:00
|
|
|
always begin
|
|
|
|
if(PWRDN) begin
|
2016-08-14 00:27:58 -05:00
|
|
|
CLKOUT_HARDIP = 0;
|
2016-04-09 03:17:13 -05:00
|
|
|
CLKOUT_FABRIC = 0;
|
|
|
|
end
|
|
|
|
else begin
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-09 03:17:13 -05:00
|
|
|
if(OSC_FREQ == "25k") begin
|
|
|
|
//half period of 25 kHz
|
|
|
|
#20000;
|
|
|
|
end
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-09 03:17:13 -05:00
|
|
|
else begin
|
|
|
|
//half period of 2 MHz
|
|
|
|
#250;
|
|
|
|
end
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-08-14 00:27:58 -05:00
|
|
|
CLKOUT_HARDIP = ~CLKOUT_HARDIP;
|
2016-04-09 03:17:13 -05:00
|
|
|
CLKOUT_FABRIC = ~CLKOUT_FABRIC;
|
|
|
|
end
|
|
|
|
end
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-09 03:17:13 -05:00
|
|
|
endmodule
|
|
|
|
|
2016-08-14 00:27:58 -05:00
|
|
|
module GP_RINGOSC(input PWRDN, output reg CLKOUT_HARDIP, output reg CLKOUT_FABRIC);
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-14 01:13:39 -05:00
|
|
|
parameter PWRDN_EN = 0;
|
|
|
|
parameter AUTO_PWRDN = 0;
|
2016-08-14 00:27:58 -05:00
|
|
|
parameter HARDIP_DIV = 1;
|
2016-04-14 01:13:39 -05:00
|
|
|
parameter FABRIC_DIV = 1;
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-08-14 00:27:58 -05:00
|
|
|
initial CLKOUT_HARDIP = 0;
|
2016-04-14 01:13:39 -05:00
|
|
|
initial CLKOUT_FABRIC = 0;
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-14 01:13:39 -05:00
|
|
|
//output dividers not implemented for simulation
|
|
|
|
//auto powerdown not implemented for simulation
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-04-14 01:13:39 -05:00
|
|
|
always begin
|
|
|
|
if(PWRDN) begin
|
2016-08-14 00:27:58 -05:00
|
|
|
CLKOUT_HARDIP = 0;
|
2016-04-14 01:13:39 -05:00
|
|
|
CLKOUT_FABRIC = 0;
|
|
|
|
end
|
|
|
|
else begin
|
|
|
|
//half period of 27 MHz
|
|
|
|
#18.518;
|
2016-08-14 00:27:58 -05:00
|
|
|
CLKOUT_HARDIP = ~CLKOUT_HARDIP;
|
2016-04-14 01:13:39 -05:00
|
|
|
CLKOUT_FABRIC = ~CLKOUT_FABRIC;
|
|
|
|
end
|
2016-03-30 03:07:20 -05:00
|
|
|
end
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-03-27 01:29:02 -05:00
|
|
|
endmodule
|
2016-03-29 00:49:46 -05:00
|
|
|
|
2016-12-19 19:58:02 -06:00
|
|
|
module GP_SPI(
|
|
|
|
input SCK,
|
2016-12-19 22:34:56 -06:00
|
|
|
inout SDAT,
|
2016-12-19 19:58:02 -06:00
|
|
|
input CSN,
|
2016-12-19 20:30:38 -06:00
|
|
|
input[7:0] TXD_HIGH,
|
|
|
|
input[7:0] TXD_LOW,
|
|
|
|
output reg[7:0] RXD_HIGH,
|
2016-12-20 21:35:29 -06:00
|
|
|
output reg[7:0] RXD_LOW,
|
|
|
|
output reg INT);
|
2016-12-19 19:58:02 -06:00
|
|
|
|
|
|
|
initial DOUT_HIGH = 0;
|
|
|
|
initial DOUT_LOW = 0;
|
2016-12-20 21:35:29 -06:00
|
|
|
initial INT = 0;
|
2016-12-19 19:58:02 -06:00
|
|
|
|
|
|
|
parameter DATA_WIDTH = 8; //byte or word width
|
|
|
|
parameter SPI_CPHA = 0; //SPI clock phase
|
|
|
|
parameter SPI_CPOL = 0; //SPI clock polarity
|
|
|
|
parameter DIRECTION = "INPUT"; //SPI data direction (either input to chip or output to host)
|
|
|
|
//parallel output to fabric not yet implemented
|
|
|
|
|
|
|
|
//TODO: write sim model
|
|
|
|
//TODO: SPI SDIO control... can we use ADC output while SPI is input??
|
|
|
|
//TODO: clock sync
|
|
|
|
|
|
|
|
endmodule
|
|
|
|
|
2016-03-29 01:16:43 -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);
|
2016-10-17 00:53:43 -05:00
|
|
|
parameter RESET_MODE = "EDGE";
|
|
|
|
parameter EDGE_SPEED = 4;
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-03-29 00:49:46 -05:00
|
|
|
//cannot simulate whole system reset
|
2016-12-14 00:14:45 -06:00
|
|
|
|
2016-03-29 00:49:46 -05:00
|
|
|
endmodule
|