Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | simlib: Silence iverilog warning for `$lut` | Jannis Harder | 2022-11-30 | 1 | -1/+1 |
| | | | | | | iverilog complains about implicitly truncating LUT when connecting it to the `$bmux` A input. This explicitly truncates it to avoid that warning without changing the behaviour otherwise. | ||||
* | simlib: Fix wide $bmux and avoid iverilog warnings | Jannis Harder | 2022-11-30 | 1 | -2/+2 |
| | |||||
* | satgen, simlib: Consistent x-propagation for `$pmux` cells | Jannis Harder | 2022-11-30 | 1 | -4/+11 |
| | | | | | This updates satgen and simlib to use a `$pmux` model where the output is fully X when the S input is not all zero or one-hot with no x bits. | ||||
* | fabulous: Allow adding extra custom prims and map rules | gatecat | 2022-11-17 | 1 | -0/+32 |
| | | | | Signed-off-by: gatecat <gatecat@ds0.me> | ||||
* | fabulous: improvements to the pass | gatecat | 2022-11-17 | 6 | -139/+199 |
| | | | | Signed-off-by: gatecat <gatecat@ds0.me> | ||||
* | fabulous: Unify and update primitives | gatecat | 2022-11-17 | 3 | -852/+356 |
| | | | | Signed-off-by: gatecat <gatecat@ds0.me> | ||||
* | Introduce RegFile mappings | TaoBi22 | 2022-11-17 | 4 | -2/+95 |
| | |||||
* | Replace synth call with components, reintroduce flags and correct vpr flag ↵ | TaoBi22 | 2022-11-17 | 1 | -4/+76 |
| | | | | implementation | ||||
* | Reorder operations to load in primitive library before hierarchy pass | TaoBi22 | 2022-11-17 | 1 | -5/+6 |
| | |||||
* | Add plib flag to specify custom primitive library path | TaoBi22 | 2022-11-17 | 1 | -2/+14 |
| | |||||
* | Remove flattening from FABulous pass | TaoBi22 | 2022-11-17 | 1 | -11/+2 |
| | |||||
* | Remove ALL currently unused flags (some to be reintroduced later and passed ↵ | TaoBi22 | 2022-11-17 | 1 | -82/+3 |
| | | | | through to synth) | ||||
* | Add synth_fabulous ScriptPass | TaoBi22 | 2022-11-17 | 8 | -0/+1282 |
| | |||||
* | simlib: Simplify recently changed $mux model | Jannis Harder | 2022-10-28 | 1 | -4/+2 |
| | | | | | | The use of a procedural continuous assignment introduced in #3526 was unintended and is completely unnecessary for the actual change of that PR. | ||||
* | Merge pull request #3526 from jix/mux-simlib-eval | Jannis Harder | 2022-10-24 | 1 | -4/+1 |
|\ | | | | | Consistent $mux undef handling | ||||
| * | Consistent $mux undef handling | Jannis Harder | 2022-10-24 | 1 | -4/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Change simlib's $mux cell to use the ternary operator as $_MUX_ already does * Stop opt_expr -keepdc from changing S=x to S=0 * Change const eval of $mux and $pmux to match the updated simlib (fixes sim) * The sat behavior of $mux already matches the updated simlib The verilog frontend uses $mux for the ternary operators and this changes all interpreations of the $mux cell (that I found) to match the verilog simulation behavior for the ternary operator. For 'if' and 'case' expressions the frontend may also use $mux but uses $eqx if the verilog simulation behavior is requested with the '-ifx' option. For $pmux there is a remaining mismatch between the sat behavior and the simlib behavior. Resolving this requires more discussion, as the $pmux cell does not directly correspond to a specific verilog construct. | ||||
* | | Add smtmap.v describing the smt2 backend's behavior for undef bits | Jannis Harder | 2022-10-20 | 2 | -0/+29 |
|/ | | | | | | | | | Some builtin cells have an undefined (x) output even when all inputs are defined. This is not natively supported by the formal backends which will produce a fully defined value instead. This can lead to issues when combining different backends in a formal flow. To work around these, this adds a file containing verilog implementation of cells matching the fully defined behavior implemented by the smt2 backend. | ||||
* | Test fixes for latest iverilog | Miodrag Milanovic | 2022-09-21 | 2 | -3/+2 |
| | |||||
* | sf2: add NOTES about using yosys for smartfusion2 and igloo2 | Tristan Gingold | 2022-08-31 | 1 | -0/+84 |
| | |||||
* | sf2: add a test for $alu gate | Tristan Gingold | 2022-08-31 | 1 | -0/+22 |
| | |||||
* | sf2: suport $alu gate and ARI1 implementation | Tristan Gingold | 2022-08-31 | 2 | -2/+65 |
| | |||||
* | synth_sf2: purge on last clean | Tristan Gingold | 2022-08-31 | 1 | -2/+2 |
| | | | | LiberoSoc don't like unused nets. | ||||
* | sf2/cells_sim.v: add XTLOSC, SYSRESET cells | Tristan Gingold | 2022-08-31 | 1 | -1/+110 |
| | |||||
* | sf2/cells_sim.v: add IOSTD parameter to I/O cells | Tristan Gingold | 2022-08-31 | 1 | -0/+11 |
| | | | | | This parameter is set by LiberoSoc IPs, so it is needed to avoid errors when using those IPs. | ||||
* | synth_sf2: add -discard-ffinit option to discard ff initial value | Tristan Gingold | 2022-08-31 | 1 | -1/+11 |
| | | | | | | sf2 ff have no initial values, but some IP cores use initial values. In order to use those cores on sf2, it is required to discard the initial value (to be carefully used). | ||||
* | Fitting help messages to 80 character width | KrystalDelusion | 2022-08-24 | 6 | -20/+25 |
| | | | | | | | | | Uses the regex below to search (using vscode): ^\t\tlog\("(.{10,}(?<!\\n)|.{81,}\\n)"\); Finds any log messages double indented (which help messages are) and checks if *either* there are is no newline character at the end, *or* the number of characters before the newline is more than 80. | ||||
* | Add the $anyinit cell and the formalff pass | Jannis Harder | 2022-08-16 | 1 | -0/+17 |
| | | | | | | | These can be used to protect undefined flip-flop initialization values from optimizations that are not sound for formal verification and can help mapping all solver-provided values in witness traces for flows that use different backends simultaneously. | ||||
* | Order ports with default assignments first | Sean Anderson | 2022-08-09 | 1 | -10/+38 |
| | | | | | | | | | | | | | | Although the current style is allowed by the standard, Icarus verilog doesn't parse default assignments using an implicit net type: techlibs/ice40/cells_sim.v:305: syntax error techlibs/ice40/cells_sim.v:1: Errors in port declarations. Fix this by making sure that ports with default assignments first on their line. Fixes: 46d3f03d2 ("Add default assignments to other SB_* simulation models") Signed-off-by: Sean Anderson <seanga2@gmail.com> | ||||
* | nexus: Fix BRAM mapping. | Marcelina Kościelnicka | 2022-08-09 | 1 | -18/+56 |
| | |||||
* | Merge pull request #3397 from pepijndevos/patch-2 | Miodrag Milanović | 2022-07-06 | 1 | -1/+0 |
|\ | | | | | Apicula now supports lutram | ||||
| * | Apicula now supports lutram | Pepijn de Vos | 2022-07-03 | 1 | -1/+0 |
| | | |||||
* | | Fix static initialization, fixes mingw build | Miodrag Milanovic | 2022-07-04 | 1 | -20/+21 |
|/ | |||||
* | gatemate: Add LUT tree library script | gatecat | 2022-06-27 | 6 | -6/+591 |
| | | | | | Co-authored-by: Claire Xenia Wolf <claire@clairexen.net> Signed-off-by: gatecat <gatecat@ds0.me> | ||||
* | gatemate: Add preliminary sim models for LUT tree structures | gatecat | 2022-06-27 | 1 | -0/+44 |
| | | | | Signed-off-by: gatecat <gatecat@ds0.me> | ||||
* | Add -no-rw-check option to memory_dff + memory + synth_{ice40,ecp5,gowin}. | Marcelina Kościelnicka | 2022-06-02 | 4 | -7/+64 |
| | |||||
* | gatemate: Fix minor issues with `memory_libmap` (#3343) | Patrick Urban | 2022-05-27 | 2 | -28/+39 |
| | |||||
* | gatemate: Use `memory_libmap` pass. | Marcelina Kościelnicka | 2022-05-18 | 3 | -781/+927 |
| | |||||
* | machxo2: Use `memory_libmap` pass. | Marcelina Kościelnicka | 2022-05-18 | 7 | -1/+578 |
| | |||||
* | efinix: Use `memory_libmap` pass. | Marcelina Kościelnicka | 2022-05-18 | 3 | -90/+163 |
| | |||||
* | anlogic: Use `memory_libmap` pass. | Marcelina Kościelnicka | 2022-05-18 | 9 | -303/+585 |
| | |||||
* | ice40: Use `memory_libmap` pass. | Marcelina Kościelnicka | 2022-05-18 | 8 | -458/+293 |
| | |||||
* | xilinx: Use `memory_libmap` pass. | Marcelina Kościelnicka | 2022-05-18 | 37 | -2269/+4525 |
| | |||||
* | gowin: Use `memory_libmap` pass. | Marcelina Kościelnicka | 2022-05-18 | 9 | -266/+576 |
| | |||||
* | nexus: Use `memory_libmap` pass. | Marcelina Kościelnicka | 2022-05-18 | 10 | -517/+677 |
| | |||||
* | ecp5: Use `memory_libmap` pass. | Marcelina Kościelnicka | 2022-05-18 | 9 | -466/+584 |
| | |||||
* | Add missing parameters for ecp5 | Rick Luiken | 2022-04-25 | 2 | -1/+2 |
| | |||||
* | gowin: Add oscillator primitives | Tim Pambor | 2022-03-28 | 1 | -0/+34 |
| | |||||
* | xilinx: Add RAMB4* blackboxes | Marcelina Kościelnicka | 2022-03-21 | 2 | -1/+695 |
| | |||||
* | gowin: add support for Double Data Rate primitives | YRabbit | 2022-03-14 | 1 | -0/+25 |
| | | | | Signed-off-by: YRabbit <rabbit@yrabbit.cyou> | ||||
* | intel_alm: M10K write-enable is negative-true | Lofty | 2022-03-09 | 6 | -7/+28 |
| |