aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/clifford/async2synclatch' into ↵Eddie Hung2019-08-2867-586/+3616
|\ | | | | | | Sergey/tests_ice40
| * Add $dlatch support to async2syncClifford Wolf2019-08-281-1/+36
| | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| * Merge pull request #1325 from YosysHQ/eddie/sat_initClifford Wolf2019-08-282-2/+8
| |\ | | | | | | In sat: 'x' in init attr should be ignored
| | * Ignore all 1'bx in (* init *)Eddie Hung2019-08-271-3/+1
| | |
| | * Revert to using cleanEddie Hung2019-08-271-1/+1
| | |
| | * Wire with init on FF part, 1'bx on non-FF partEddie Hung2019-08-241-1/+3
| | |
| | * Blocking assignmentEddie Hung2019-08-231-1/+1
| | |
| | * In sat: 'x' in init attr should not override constantEddie Hung2019-08-223-1/+7
| | |
| * | xilinx: Add SRLC16E primitive.Marcin Kościelnicki2019-08-271-1/+21
| | | | | | | | | | | | Fixes #1331.
| * | Merge pull request #1292 from YosysHQ/mwk/xilinx_bufgmapEddie Hung2019-08-2716-223/+1075
| |\ \ | | | | | | | | Add clock buffer insertion pass, improve iopadmap.
| | * | improve clkbuf_inhibit propagation upwards through hierarchyMarcin Kościelnicki2019-08-272-6/+45
| | | |
| | * | Improve tests to check that clkbuf is connected to expectedEddie Hung2019-08-261-6/+21
| | | |
| | * | Merge branch 'master' into mwk/xilinx_bufgmapEddie Hung2019-08-268-60/+405
| | |\ \
| | * \ \ Merge branch 'master' into mwk/xilinx_bufgmapEddie Hung2019-08-231-1/+1
| | |\ \ \
| | * \ \ \ Merge branch 'master' into mwk/xilinx_bufgmapEddie Hung2019-08-233-18/+36
| | |\ \ \ \
| | * | | | | Check clkbuf_inhibit=1 is ignored for custom selectionEddie Hung2019-08-231-0/+1
| | | | | | |
| | * | | | | clkbufmap to only check clkbuf_inhibit if no selection givenEddie Hung2019-08-231-5/+18
| | | | | | |
| | * | | | | Add simple clkbufmap testsEddie Hung2019-08-231-0/+52
| | | | | | |
| | * | | | | tests/techmap/run-test.sh to cope with *.ysEddie Hung2019-08-232-7/+18
| | | | | | |
| | * | | | | Mention clkbuf_inhibit can be overriddenEddie Hung2019-08-231-7/+8
| | | | | | |
| | * | | | | Review comment from @cliffordwolfEddie Hung2019-08-231-1/+2
| | | | | | |
| | * | | | | Merge remote-tracking branch 'origin/master' into mwk/xilinx_bufgmapEddie Hung2019-08-23146-1486/+4373
| | |\ \ \ \ \
| | * \ \ \ \ \ Merge remote-tracking branch 'origin/master' into mwk/xilinx_bufgmapEddie Hung2019-08-1657-3403/+3432
| | |\ \ \ \ \ \
| | * | | | | | | README updatesMarcin Kościelnicki2019-08-131-0/+14
| | | | | | | | |
| | * | | | | | | move attributes to wiresMarcin Kościelnicki2019-08-138-311/+546
| | | | | | | | |
| | * | | | | | | minor review fixesMarcin Kościelnicki2019-08-132-3/+5
| | | | | | | | |
| | * | | | | | | review fixesMarcin Kościelnicki2019-08-134-47/+34
| | | | | | | | |
| | * | | | | | | Add clock buffer insertion pass, improve iopadmap.Marcin Kościelnicki2019-08-1310-93/+577
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A few new attributes are defined for use in cell libraries: - iopad_external_pin: marks PAD cell's external-facing pin. Pad insertion will be skipped for ports that are already connected to such a pin. - clkbuf_sink: marks an input pin as a clock pin, requesting clock buffer insertion. - clkbuf_driver: marks an output pin as a clock buffer output pin. Clock buffer insertion will be skipped for nets that are already driven by such a pin. All three are module attributes that should be set to a comma-separeted list of pin names. Clock buffer insertion itself works as follows: 1. All cell ports, starting from bottom up, can be marked as clock sinks (requesting clock buffer insertion) or as clock buffer outputs. 2. If a wire in a given module is driven by a cell port that is a clock buffer output, it is in turn also considered a clock buffer output. 3. If an input port in a non-top module is connected to a clock sink in a contained cell, it is also in turn considered a clock sink. 4. If a wire in a module is driven by a non-clock-buffer cell, and is also connected to a clock sink port in a contained cell, a clock buffer is inserted in this module. 5. For the top module, a clock buffer is also inserted on input ports connected to clock sinks, optionally with a special kind of input PAD (such as IBUFG for Xilinx). 6. Clock buffer insertion on a given wire is skipped if the clkbuf_inhibit attribute is set on it.
| * | | | | | | | Add "make bumpversion"Clifford Wolf2019-08-272-0/+4
| | |_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| * | | | | | | Remove dupe in CHANGELOG, missing end quoteEddie Hung2019-08-261-2/+1
| | | | | | | |
| * | | | | | | Merge tag 'yosys-0.9'Clifford Wolf2019-08-262-11/+107
| |\ \ \ \ \ \ \
| | * | | | | | | Yosys 0.9Clifford Wolf2019-08-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * | | | | | | Revert earliest to gcc-4.8, compile iverilog with default compilerEddie Hung2019-08-232-3/+3
| | | | | | | | |
| | * | | | | | | Revert "Bump to gcc-5 as `__warn_memset_zero_len' symbol not in 16.04!?!"Eddie Hung2019-08-231-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit c82b2fa31f8965be2680c87af6cd9ac5d26ead4d.
| | * | | | | | | Remove .0 from clang-8.0Eddie Hung2019-08-231-2/+2
| | | | | | | | |
| | * | | | | | | Bump to gcc-5 as `__warn_memset_zero_len' symbol not in 16.04!?!Eddie Hung2019-08-231-3/+5
| | | | | | | | |
| | * | | | | | | bionic -> xenial as its on whitelistEddie Hung2019-08-231-1/+1
| | | | | | | | |
| | * | | | | | | Bump gcc from 4.8 to 4.9 as undefined referenceEddie Hung2019-08-231-35/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... to `__warn_memset_zero_len'. Also remove gcc-6, bump gcc-7 to gcc-9, clang from 5.0 to 8.0
| | * | | | | | | Make macOS depenency clearMiodrag Milanovic2019-08-231-2/+5
| | | | | | | | |
| | * | | | | | | do not require boost if pyosys is not usedMiodrag Milanovic2019-08-221-0/+2
| | | | | | | | |
| | * | | | | | | require tcl-tk in BrewfileChris Shucksmith2019-08-221-0/+1
| | | | | | | | |
| | * | | | | | | Bump year in copyright noticeClifford Wolf2019-08-223-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * | | | | | | Visual Studio build fixMiodrag Milanovic2019-08-021-0/+1
| | | | | | | | |
| | * | | | | | | Fix linking issue for new mxe and pthreadMiodrag Milanovic2019-08-021-1/+2
| | | | | | | | |
| | * | | | | | | Fix yosys linking for mxeMiodrag Milanovic2019-08-021-1/+1
| | | | | | | | |
| | * | | | | | | New mxe hacks needed to support 2ca237eMiodrag Milanovic2019-08-021-0/+4
| | | | | | | | |
| | * | | | | | | Fix formatting for msys2 mingw build using GetSizeMiodrag Milanovic2019-08-028-17/+20
| | | | | | | | |
| | * | | | | | | Update CHANGELOGDavid Shah2019-07-261-10/+101
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| | * | | | | | | Merge pull request #1175 from whitequark/write_verilog-fix-case-attr-positionClifford Wolf2019-07-091-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | write_verilog: fix placement of case attributes
| | * | | | | | | Update CHANGELOGDavid Shah2019-07-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me>