Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | techlibs/greenpak4/cells_map.v: Harmonize whitespace within lut module | Larry Doolittle | 2019-02-26 | 1 | -22/+22 |
| | |||||
* | Fix typographical and grammatical errors and inconsistencies. | whitequark | 2019-01-02 | 1 | -1/+1 |
| | | | | | | | | | | | | The initial list of hits was generated with the codespell command below, and each hit was evaluated and fixed manually while taking context into consideration. DIRS="kernel/ frontends/ backends/ passes/ techlibs/" DIRS="${DIRS} libs/ezsat/ libs/subcircuit" codespell $DIRS -S *.o -L upto,iff,thru,synopsys,uint More hits were found by looking through comments and strings manually. | ||||
* | Consistent use of 'override' for virtual methods in derived classes. | Henner Zeller | 2018-07-20 | 2 | -6/+6 |
| | | | | | | | | | o Not all derived methods were marked 'override', but it is a great feature of C++11 that we should make use of. o While at it: touched header files got a -*- c++ -*- for emacs to provide support for that language. o use YS_OVERRIDE for all override keywords (though we should probably use the plain keyword going forward now that C++11 is established) | ||||
* | Added RESET_TO_MAX parameter to $__COUNT_ cell. Cannot yet be extracted. | Andrew Zonenberg | 2017-09-14 | 2 | -2/+4 |
| | |||||
* | Initial support for extraction of counters with clock enable | Andrew Zonenberg | 2017-09-14 | 1 | -21/+65 |
| | |||||
* | Fixed typo in error message | Andrew Zonenberg | 2017-09-01 | 1 | -1/+1 |
| | |||||
* | Added blackbox $__COUNT_ cell model | Andrew Zonenberg | 2017-09-01 | 2 | -0/+18 |
| | |||||
* | Refactoring: moved modules still in cells_sim to cells_sim_wip | Andrew Zonenberg | 2017-09-01 | 3 | -136/+138 |
| | |||||
* | Merge branch 'master' of https://github.com/cliffordwolf/yosys into ↵ | Andrew Zonenberg | 2017-08-30 | 1 | -34/+34 |
|\ | | | | | | | counter-extraction | ||||
| * | Reformatted GP_COUNTx_ADV resets to avoid Yosys thinking that they're ↵ | Andrew Zonenberg | 2017-08-28 | 1 | -34/+34 |
| | | | | | | | | multi-edge-sensitive and getting confused. | ||||
* | | extract_counter: Minor changes requested to comply with upstream policy, ↵ | Andrew Zonenberg | 2017-08-30 | 2 | -4/+4 |
| | | | | | | | | fixed a few typos | ||||
* | | Finished refactoring counter extraction to be nice and generic. Implemented ↵ | Andrew Zonenberg | 2017-08-28 | 2 | -1/+69 |
| | | | | | | | | techmapping from $__COUNT_ to GP_COUNTx cells. | ||||
* | | Refactoring: Renamed greenpak4_counters pass to extract_counter, moved it to ↵ | Andrew Zonenberg | 2017-08-28 | 3 | -515/+1 |
|/ | | | | techmap/ since it's going to become a generic pass | ||||
* | Fixed bug causing GP_SPI model to not synthesize | Andrew Zonenberg | 2017-08-27 | 1 | -2/+2 |
| | |||||
* | Fixed more issues with GreenPAK counter sim models | Andrew Zonenberg | 2017-08-15 | 1 | -19/+23 |
| | |||||
* | Updated PGEN model to have level triggered reset (matches actual hardware ↵ | Andrew Zonenberg | 2017-08-15 | 1 | -4/+4 |
| | | | | behavior | ||||
* | Fixed bug in GP_COUNTx model | Andrew Zonenberg | 2017-08-15 | 1 | -7/+12 |
| | |||||
* | Fixed bug where GP_COUNTx_ADV would wrap even when KEEP was high | Andrew Zonenberg | 2017-08-15 | 1 | -47/+47 |
| | |||||
* | Fixed typo in GP_COUNT8 sim model | Andrew Zonenberg | 2017-08-14 | 1 | -1/+1 |
| | |||||
* | Fixed typo in error message | Andrew Zonenberg | 2017-08-14 | 1 | -1/+1 |
| | |||||
* | Changed LEVEL resets for GP_COUNTx to be properly synthesizeable | Andrew Zonenberg | 2017-08-14 | 1 | -48/+60 |
| | |||||
* | Changed LEVEL resets to be edge triggered anyway | Andrew Zonenberg | 2017-08-14 | 1 | -4/+4 |
| | |||||
* | Added level-triggered reset support to GP_COUNTx simulation models | Andrew Zonenberg | 2017-08-14 | 1 | -2/+68 |
| | |||||
* | Fixed undeclared "count" in GP_COUNT8_ADV | Andrew Zonenberg | 2017-08-14 | 1 | -0/+2 |
| | |||||
* | Fixed undeclared "count" in GP_COUNT14_ADV | Andrew Zonenberg | 2017-08-14 | 1 | -0/+2 |
| | |||||
* | Fixed typo in last commit | Andrew Zonenberg | 2017-08-14 | 1 | -3/+3 |
| | |||||
* | Finished initial GP_COUNT8/14/8_ADV/14_ADV sim models. Don't support clock ↵ | Andrew Zonenberg | 2017-08-14 | 2 | -37/+293 |
| | | | | divide, but do everything else. | ||||
* | Fixed typo in COUNT8 model | Andrew Zonenberg | 2017-08-14 | 1 | -2/+2 |
| | |||||
* | Moved GP_POR out of digital cells b/c it has delays | Andrew Zonenberg | 2017-08-14 | 2 | -21/+21 |
| | |||||
* | Improved cells_sim_digital model for GP_COUNT8 | Andrew Zonenberg | 2017-08-14 | 2 | -40/+75 |
| | |||||
* | Refactored GreenPAK4 cells_sim into cells_sim_ams and cells_sim_digital | Andrew Zonenberg | 2017-08-14 | 4 | -428/+451 |
| | |||||
* | greenpak4_counters: Changed generation of primitive names so that the ↵ | Andrew Zonenberg | 2017-06-24 | 1 | -3/+21 |
| | | | | absorbed register's name is included | ||||
* | greenpak4_counters: Added support for parallel output from GP_COUNTx cells | Andrew Zonenberg | 2017-05-22 | 1 | -17/+70 |
| | |||||
* | Squelch trailing whitespace | Larry Doolittle | 2017-04-12 | 1 | -39/+39 |
| | |||||
* | Merge https://github.com/cliffordwolf/yosys | Andrew Zonenberg | 2017-02-14 | 1 | -2/+0 |
|\ | |||||
| * | Fix double-call of log_pop() in synth_greenpak4 | Clifford Wolf | 2017-02-14 | 1 | -2/+0 |
| | | |||||
* | | greenpak4: Added POUT to GP_COUNTx cells | Andrew Zonenberg | 2017-01-01 | 1 | -3/+4 |
|/ | |||||
* | greenpak4: Added INT pin to GP_SPI | Andrew Zonenberg | 2016-12-21 | 1 | -1/+3 |
| | |||||
* | greenpak4: removed unused MISO pin from GP_SPI | Andrew Zonenberg | 2016-12-21 | 1 | -1/+0 |
| | |||||
* | greenpak4: Removed SPI_BUFFER parameter | Andrew Zonenberg | 2016-12-20 | 1 | -1/+0 |
| | |||||
* | greenpak4: replaced MOSI/MISO with single one-way SDAT pin | Andrew Zonenberg | 2016-12-20 | 1 | -2/+1 |
| | |||||
* | greenpak4: Changed port names on GP_SPI for clarity | Andrew Zonenberg | 2016-12-20 | 1 | -4/+4 |
| | |||||
* | greenpak4: Initial implementation of GP_SPI cell | Andrew Zonenberg | 2016-12-20 | 1 | -0/+27 |
| | |||||
* | greenpak4: Updated GP_DCMP cell model | Andrew Zonenberg | 2016-12-17 | 1 | -2/+20 |
| | |||||
* | greenpak: Fixes to GP_DCMP* blocks. Added GP_CLKBUF. | Andrew Zonenberg | 2016-12-16 | 1 | -5/+10 |
| | |||||
* | greenpak4: Initial version of GP_DCMP skeleton (not yet usable). Changed ↵ | Andrew Zonenberg | 2016-12-15 | 1 | -5/+24 |
| | | | | interface to GP_DCMPMUX | ||||
* | greenpak4: More fixups of GP_DCMPx cells | Andrew Zonenberg | 2016-12-15 | 1 | -9/+3 |
| | |||||
* | greenpak4: And another typo :( | Andrew Zonenberg | 2016-12-15 | 1 | -1/+1 |
| | |||||
* | greenpak4: Fixed another typo | Andrew Zonenberg | 2016-12-15 | 1 | -1/+1 |
| | |||||
* | greenpak4: Fixed typo | Andrew Zonenberg | 2016-12-15 | 1 | -1/+1 |
| |