aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* command.cc: Use correct constant for default routerRangel Ivanov2020-04-041-1/+1
| | | | | | Otherwise --help reports that the default router is heap Signed-off-by: Rangel Ivanov <rangelivanov88@gmail.com>
* ice40: Derive oscillator frequency constraintsDavid Shah2020-03-291-0/+40
| | | | Signed-off-by: David Shah <dave@ds0.me>
* Merge pull request #415 from smunaut/fix_iob_oe_regDavid Shah2020-03-291-1/+1
|\ | | | | ice40: Fix output register timing analysis for registered output enable
| * ice40: Fix output register timing analysis for registered output enableSylvain Munaut2020-03-291-1/+1
|/ | | | | | | Wrong bits were being tested. [5:4] is what's controlling the output enable path. Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
* Merge pull request #410 from YosysHQ/ecp5-12kDavid Shah2020-03-254-7/+21
|\ | | | | ecp5: Proper support for '12k' device
| * ecp5: Proper support for '12k' deviceDavid Shah2020-03-134-7/+21
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
* | router2: Prevent overflowDavid Shah2020-03-221-2/+3
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
* | ice40: Always copy DFF attrs to LCDavid Shah2020-03-191-0/+5
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
* | Merge branch 'master' of ssh.github.com:YosysHQ/nextpnrDavid Shah2020-03-175-9/+58
|\ \
| * | Replace assertion failure with errorDavid Shah2020-03-131-5/+15
| |/ | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * Merge pull request #400 from YosysHQ/dave/tri-fixesDavid Shah2020-03-102-2/+34
| |\ | | | | | | Improve handling of unused inout port bits
| | * Improve handling of unused inout port bitsDavid Shah2020-02-252-2/+34
| | | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * | ecp5: Fix differential inputsDavid Shah2020-03-081-1/+6
| | | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * | Merge pull request #406 from gojimmypi/patch-1David Shah2020-03-061-1/+3
| |\ \ | | | | | | | | Update README with TRELLIS_INSTALL_PREFIX example
| | * | update README TRELLIS_INSTALL_PREFIX examplegojimmypi2020-03-041-1/+2
| | | | | | | | | | | | | | | | | | | | `TRELLIS_INSTALL_PREFIX` will tell `next-pnr` to look in both `share` and `lib` directories. See https://github.com/YosysHQ/nextpnr/pull/406#discussion_r387945570
| | * | Update README TRELLIS_INSTALL_PREFIX example gojimmypi2020-03-041-1/+1
| | | | | | | | | | | | per https://github.com/YosysHQ/nextpnr/pull/406#discussion_r387937313 it is not an install directory
| | * | Update README with TRELLIS_INSTALL_PREFIX examplegojimmypi2020-03-041-1/+2
| | | | | | | | | | | | see https://github.com/YosysHQ/nextpnr/pull/404 and https://github.com/SymbiFlow/prjtrellis/pull/123
* | | | timing: Improve robustness to dangling/undriven logicDavid Shah2020-03-171-0/+10
|/ / / | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
* / / Improve handling of unflattened netlistsDavid Shah2020-03-061-0/+2
|/ / | | | | | | Signed-off-by: David Shah <dave@ds0.me>
* | Merge pull request #405 from smunaut/fix_key_errorDavid Shah2020-03-041-5/+11
|\ \ | | | | | | pycontainers: Properly handle KeyErrors
| * | pycontainers: Properly handle KeyErrorsSylvain Munaut2020-03-041-5/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We raise a C++ exception to abort the rest of the execution of the function. At the same time we standardize on using a throw runtime error as the method to avoid warning when not returning values. (some places used this throw and some other used std::terminate) Fixes #403 Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
* | | Merge pull request #404 from smunaut/fix_prefix_defaultDavid Shah2020-03-042-3/+3
|\ \ \ | |/ / |/| | build: Default the ECP5 and iCE40 roots to the install prefix
| * | build: Default the ECP5 and iCE40 roots to the install prefixSylvain Munaut2020-03-032-3/+3
|/ / | | | | | | | | | | | | | | | | If the user specifies a custom install prefix, chances are icestrom/trellis are also in that prefix rather than the hardcoded /usr/local Fixes #351 Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
* | cleanupMiodrag Milanovic2020-02-281-1/+1
| |
* | Add support for pasting multiline code to pythonMiodrag Milanovic2020-02-282-6/+25
| |
* | Merge pull request #402 from zyp/fix_sortMiodrag Milanović2020-02-281-8/+3
|\ \ | | | | | | gui: Fix sorting order in TreeModel.
| * | gui: Fix sorting order in TreeModel.Vegard Storheil Eriksen2020-02-281-8/+3
|/ /
* | gui: Fix undefined behavior in TreeModel.Vegard Storheil Eriksen2020-02-281-1/+1
| | | | | | | | | | | | std::sort() requires the comparison function to return false for even comparison. Returning true results in undefined behavior and a potential segfault.
* | Add SVG option to guiMiodrag Milanovic2020-02-274-0/+30
|/
* Merge pull request #398 from YosysHQ/svgDavid Shah2020-02-157-0/+168
|\ | | | | svg: Basic SVG graphics rendering
| * svg: Basic SVG graphics renderingDavid Shah2020-02-157-0/+168
|/ | | | Signed-off-by: David Shah <dave@ds0.me>
* Merge pull request #393 from YosysHQ/dave/xilinx-place-backportDavid Shah2020-02-134-127/+348
|\ | | | | Backporting some placer changes from nextpnr-xilinx
| * placer1: Add routeability optimisation (off by default)David Shah2020-02-122-3/+89
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * HeAP: backport out-of-range fixDavid Shah2020-02-121-2/+2
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * HeAP: Add X and Y scaling factors for asymmetric archesDavid Shah2020-02-122-16/+29
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * HeAP: Make beta configurableDavid Shah2020-02-122-9/+10
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * HeAP: Improve handling of heterogeneous slice archesDavid Shah2020-02-122-94/+205
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * HeAP: Make solver tolerance arch-configurableDavid Shah2020-02-122-3/+5
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * placer1: Allow scaling HPWL differently in each directionDavid Shah2020-02-122-6/+14
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
* | Merge pull request #394 from laanwj/2020_02_cmakeMiodrag Milanović2020-02-121-1/+1
|\ \ | |/ |/| Correct BUILD_TESTS description in CMakeLists.txt
| * Correct BUILD_TESTS description in CMakeLists.txtWladimir J. van der Laan2020-02-121-1/+1
|/
* Merge pull request #392 from se-bi/fix/ecp5/cmake-pathsDavid Shah2020-02-044-10/+10
|\ | | | | Fix paths to prjtrellies project
| * CI: not using a custom install prefix for prjtrellisJared Boone2020-02-042-2/+2
| |
| * Rename cmake path variable TRELLIS_ROOT to TRELLIS_INSTALL_PREFIXSebastian Birke2020-02-042-7/+7
| |
| * CMake: Changing the definition of TRELLIS_ROOT to point to root of lib, ↵Jared Boone2020-02-041-5/+5
| | | | | | | | | | | | | | | | | | share containing trellis libs and data two other commit message of squashed commits: CMake: Search for user lib inside trellis instead of libtrellis CMake: Fix missing path component for share contents
| * CI: Update prjtrellis referenceSebastian Birke2020-02-041-1/+1
|/
* Merge pull request #391 from YosysHQ/router2-upstreamDavid Shah2020-02-0414-14/+1424
|\ | | | | Upstreaming router2
| * generic: Implement getRouteBoundingBoxDavid Shah2020-02-032-0/+26
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * router2: Improve flow and log outputDavid Shah2020-02-034-8/+15
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * router2: Add a simple timing heuristicDavid Shah2020-02-031-0/+27
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>