aboutsummaryrefslogtreecommitdiffstats
path: root/icetime/icetime.cc
Commit message (Collapse)AuthorAgeFilesLines
* clarify empty design message. See Isse #204gojimmypi2019-03-101-1/+1
|
* Merge pull request #184 from nathanrossi/nrossi/portable-chipdbClifford Wolf2018-10-301-24/+9
|\ | | | | icetime: Add support for searching for chipdb relative to binary
| * icetime: Add support for searching for chipdb relative to binaryNathan Rossi2018-09-031-24/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Like yosys and arachne-pnr, allow for searching for the desired chipdb file relative to the executing binaries directory. This allows for portable builds of icetime without needing to specify the exact path to the needed chipdb file with the -C arg. In order to support this icetime must be able to get the "proc_self_dirname" path just like yosys and arachne-pnr. As such copy the equivalent code to get this path information. To avoid cluttering the icetime.cc file with this code, place it in a separate iceutil.cc file. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* | Fix compile warning in icetime.ccJon Burgess2018-10-281-1/+1
|/ | | | | | icetime.cc: In function ‘std::__cxx11::string ecnetname_to_vlog(std::__cxx11::string)’: icetime.cc:1323:32: warning: catching polymorphic type ‘class std::invalid_argument’ by value [-Wcatch-value=] } catch(std::invalid_argument e) { // Not numeric and stoi throws exception
* icetime: Remove non-existent paths from ce/sr to ltoutDavid Shah2018-07-191-0/+5
| | | | Signed-off-by: David Shah <davey1576@gmail.com>
* icetime: Output where the chipdb should be found.Tim 'mithro' Ansell2018-06-141-1/+3
| | | | Makes it easier to know where it can't be.
* Fix icetime for .asc files that do not contain all tilesClifford Wolf2018-06-131-11/+28
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* icetime: Lowercase the device type information.Tim 'mithro' Ansell2018-06-111-3/+8
| | | | Makes `-d HX1K` work as well as `-d hx1k`.
* Mount NODEFS if using emscripten and nodejsRobert Ou2018-03-311-0/+16
| | | | | Mounts root directory on `/hostfs` and the current working directory on `/hostcwd`
* Fix handling of a port name like CLKHF_FABRIC in icetimeDavid Shah2018-02-281-4/+10
| | | | Signed-off-by: David Shah <davey1576@gmail.com>
* Properly ignore unsupported cell typesDavid Shah2018-02-191-4/+8
|
* Fix compiler warning (comparison between signed and unsigned int) in icetimeClifford Wolf2018-02-091-1/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Misc UltraPlus fixesDavid Shah2018-01-301-29/+35
|
* Updated 5k timing data, icetime regression fixDavid Shah2018-01-291-4/+7
|
* DSP related fixesDavid Shah2018-01-281-1/+2
|
* Working DSP timing analysisDavid Shah2018-01-261-1/+26
|
* Work on timing analysis of DSPsDavid Shah2018-01-261-8/+196
|
* Parse extra cells in icetimeDavid Shah2018-01-231-1/+50
|
* More DSP timing fuzzing, start adding new tiles to icetimeDavid Shah2018-01-221-2/+14
|
* Initial 5k support in icetime (no support for new cells yet)David Shah2017-11-241-4/+23
|
* icetime: never silently truncate asc file linesCliff L. Biffle2017-05-091-2/+10
| | | | | | | | | | | | | | | | | | icetime was reading the asc configuration file using a 128-byte line buffer -- which is usually fine, but can cause it to truncate the names of nets given in .sym lines if those names are very, very long. The way fgets was being used meant this went undetected. Long net names like this can arise in deeply hierarchical designs, particularly if there's a code generator involved. This change: 1. Increases the buffer size to 64kiB. 2. Adds a truncation check that causes icetime to fail. A more robust solution would manage the line buffer on the heap, since the symbol gets copied into a std::string anyway, but this is a workaround for now.
* Add LP384 support to icetimeClifford Wolf2017-03-131-1/+8
|
* Add "icetime -N"Clifford Wolf2017-02-261-2/+13
|
* Removed icetime estimate warningClifford Wolf2016-11-011-3/+4
|
* Added a new config variable CHIPDB_SUBDIR. It determines the subdir nameSalvador E. Tropea2016-10-131-2/+2
| | | | | | used in $(PREFIX)/share/ to install the chip database. This provides a mechanism to choose a directory different than icebox (default). I.e. fpga-icestorm/chipdb for Debian.
* Added "icetime -C <chipdb-file>"Clifford Wolf2016-10-021-4/+12
|
* icetime: support PREFIX expansion for win32Jesús Arroyo Torrens2016-08-231-2/+18
|
* Only define _GNU_SOURCE for vasprintf() when not _WIN32Clifford Wolf2016-07-261-0/+3
|
* Explicitly ask for vasprintf where appropriate.Yury Gribov2016-07-261-0/+2
|
* Bugfix in icetime .pcf parserClifford Wolf2016-06-141-2/+5
|
* Better icetime error message for empty designsClifford Wolf2016-06-141-0/+4
|
* Bugfix for when e.g. PLL LOCK drives longest pathClifford Wolf2016-05-161-9/+13
|
* Some icetime json format fixesClifford Wolf2016-05-161-10/+20
|
* icetime: only include "net" in json output if different from hwnetClifford Wolf2016-05-161-6/+9
|
* icetime: json now contains net and hwnetClifford Wolf2016-05-161-13/+21
|
* Added icetime json output format (icetime -j)Clifford Wolf2016-05-151-43/+86
|
* Added "icetime -c"Clifford Wolf2016-05-031-4/+26
|
* Fixed make_lc40 with y=0 bug #32Clifford Wolf2016-02-291-1/+4
|
* fix a few spelling errorsRuben Undheim2016-02-271-1/+1
|
* Cleanups for PREFIX patchClifford Wolf2016-02-101-10/+3
|
* [Icetime] PREFIX expansion for locating the chipdb files in the user home ↵obijuan2016-02-101-1/+11
| | | | directory
* Timing models for LP and HX devicesClifford Wolf2016-02-011-7/+42
|
* icetime progressClifford Wolf2016-01-261-5/+19
|
* icetime progressClifford Wolf2016-01-251-6/+12
|
* Fixed gcc 4.7.2 compiler warning in icetimeClifford Wolf2016-01-241-1/+1
|
* Improved icetime PREFIX handlingClifford Wolf2016-01-231-4/+1
|
* icetime: fixed chipdb path issue for Arch LinuxSebastian Bøe2016-01-231-1/+4
| | | | | | | | | | | Icetime was hardcoding the path to chipdb as /usr/local/share causing icetime to not find the chip db on Arch Linux where the prefix is just /usr/share. With this commit the PREFIX is passed as a preprocessor define and used in icetime.cc to create the correct path. I don't know what the canonical way of dealing with this is, but this was the least intrusive way I could think of to get this fixed.
* added icetime -o/-r optionsClifford Wolf2016-01-181-42/+57
|
* Added icetime to examplesClifford Wolf2016-01-171-0/+4
|
* Bugfix in "icetime -i"Clifford Wolf2016-01-161-19/+5
|