mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-26 13:06:12 +00:00
Refactored GreenPAK4 cells_sim into cells_sim_ams and cells_sim_digital
This commit is contained in:
parent
007f29b9c2
commit
fe3a932cfa
4 changed files with 451 additions and 428 deletions
89
techlibs/greenpak4/cells_sim_ams.v
Normal file
89
techlibs/greenpak4/cells_sim_ams.v
Normal file
|
@ -0,0 +1,89 @@
|
|||
`timescale 1ns/1ps
|
||||
|
||||
/*
|
||||
This file contains analog / mixed signal cells, or other things that are not possible to fully model
|
||||
in behavioral Verilog.
|
||||
|
||||
It also contains some stuff like oscillators that use non-synthesizeable constructs such as delays.
|
||||
TODO: do we want a third file for those cells?
|
||||
*/
|
||||
|
||||
module GP_ABUF(input wire IN, output wire OUT);
|
||||
|
||||
assign OUT = IN;
|
||||
|
||||
//must be 1, 5, 20, 50
|
||||
//values >1 only available with Vdd > 2.7V
|
||||
parameter BANDWIDTH_KHZ = 1;
|
||||
|
||||
endmodule
|
||||
|
||||
module GP_ACMP(input wire PWREN, input wire VIN, input wire VREF, output reg OUT);
|
||||
|
||||
parameter BANDWIDTH = "HIGH";
|
||||
parameter VIN_ATTEN = 1;
|
||||
parameter VIN_ISRC_EN = 0;
|
||||
parameter HYSTERESIS = 0;
|
||||
|
||||
initial OUT = 0;
|
||||
|
||||
endmodule
|
||||
|
||||
module GP_BANDGAP(output reg OK);
|
||||
parameter AUTO_PWRDN = 1;
|
||||
parameter CHOPPER_EN = 1;
|
||||
parameter OUT_DELAY = 100;
|
||||
|
||||
endmodule
|
||||
|
||||
module GP_DAC(input[7:0] DIN, input wire VREF, output reg VOUT);
|
||||
|
||||
initial VOUT = 0;
|
||||
|
||||
//analog hard IP is not supported for simulation
|
||||
|
||||
endmodule
|
||||
|
||||
module GP_LFOSC(input PWRDN, output reg CLKOUT);
|
||||
|
||||
parameter PWRDN_EN = 0;
|
||||
parameter AUTO_PWRDN = 0;
|
||||
parameter OUT_DIV = 1;
|
||||
|
||||
initial CLKOUT = 0;
|
||||
|
||||
//auto powerdown not implemented for simulation
|
||||
//output dividers not implemented for simulation
|
||||
|
||||
always begin
|
||||
if(PWRDN)
|
||||
CLKOUT = 0;
|
||||
else begin
|
||||
//half period of 1730 Hz
|
||||
#289017;
|
||||
CLKOUT = ~CLKOUT;
|
||||
end
|
||||
end
|
||||
|
||||
endmodule
|
||||
|
||||
module GP_PGA(input wire VIN_P, input wire VIN_N, input wire VIN_SEL, output reg VOUT);
|
||||
|
||||
parameter GAIN = 1;
|
||||
parameter INPUT_MODE = "SINGLE";
|
||||
|
||||
initial VOUT = 0;
|
||||
|
||||
//cannot simulate mixed signal IP
|
||||
|
||||
endmodule
|
||||
|
||||
module GP_PWRDET(output reg VDD_LOW);
|
||||
initial VDD_LOW = 0;
|
||||
endmodule
|
||||
|
||||
module GP_VREF(input VIN, output reg VOUT);
|
||||
parameter VIN_DIV = 1;
|
||||
parameter VREF = 0;
|
||||
//cannot simulate mixed signal IP
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue