aboutsummaryrefslogtreecommitdiffstats
path: root/common
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | timing: Debugging implementation of new timing APIDavid Shah2018-08-081-4/+9
| | | | | | | | | | | | | | | | Signed-off-by: David Shah <davey1576@gmail.com>
| | * | timing: Update to new use API (currently broken)David Shah2018-08-081-11/+21
| | | | | | | | | | | | | | | | Signed-off-by: David Shah <davey1576@gmail.com>
| | * | Arch API: New specification for timing port classesDavid Shah2018-08-081-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: David Shah <davey1576@gmail.com>
| | * | common: Add TimingPortClassDavid Shah2018-08-081-1/+14
| | | | | | | | | | | | | | | | Signed-off-by: David Shah <davey1576@gmail.com>
| | * | Cleanup nestingEddie Hung2018-08-061-59/+59
| | | |
| | * | Do less work if update flag is falseEddie Hung2018-08-061-6/+6
| | | |
| | * | clangformatEddie Hung2018-08-061-29/+36
| | | |
| | * | Also add PLL outputs as timing startpointsEddie Hung2018-08-061-15/+3
| | | |
| | * | Remove old timing codeEddie Hung2018-08-061-88/+0
| | | |
| | * | Compute critical path reportEddie Hung2018-08-061-2/+49
| | | |
| | * | Add commentsEddie Hung2018-08-061-11/+43
| | | |
| | * | Merge branch 'master' into assign_budget_speedupEddie Hung2018-08-061-2/+5
| | |\ \
| | * | | Use new Arch::isIOCell() function in TimingEddie Hung2018-08-061-1/+1
| | | | |
| | * | | Consider clocked cells with COUT, consider constant netsEddie Hung2018-08-061-20/+38
| | | | |
| | * | | Merge branch 'fix_budget_overrides' into assign_budget_speedupEddie Hung2018-08-061-25/+22
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: common/timing.cc
| | * \ \ \ Merge branch 'assign_budget_evenly' into assign_budget_speedupEddie Hung2018-08-062-8/+11
| | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: common/timing.cc
| | * | | | | WIP for new assign_budget() using topographical orderingEddie Hung2018-08-051-6/+165
| | | | | | |
| * | | | | | Add ctx->settingsClifford Wolf2018-08-081-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| * | | | | | Moved option to commonMiodrag Milanovic2018-08-081-0/+1
| | | | | | |
| * | | | | | clangformatMiodrag Milanovic2018-08-082-9/+8
| | | | | | |
| * | | | | | sync with masterMiodrag Milanovic2018-08-081-0/+1
| | | | | | |
| * | | | | | Merge remote-tracking branch 'origin/master' into common_mainMiodrag Milanovic2018-08-088-86/+121
| |\ \ \ \ \ \ | | | |_|_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # ecp5/main.cc # ice40/main.cc
| * | | | | | Added project loaderMiodrag Milanovic2018-08-064-1/+145
| | | | | | |
| * | | | | | Disable menu options on json loadMiodrag Milanovic2018-08-051-0/+1
| | | | | | |
| * | | | | | Added command parser and common implementationMiodrag Milanovic2018-08-052-0/+314
| | | | | | |
* | | | | | | Get rid of PortPin and BelType (ice40, generic, docs)Clifford Wolf2018-08-085-19/+19
| |/ / / / / |/| | | | | | | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* | | | | | place_common: Fix illegal cells left after relative constraint legalisationDavid Shah2018-08-071-0/+12
| |_|_|_|/ |/| | | | | | | | | | | | | | Signed-off-by: David Shah <davey1576@gmail.com>
* | | | | Merge pull request #39 from eddiehung/slack_histogramDavid Shah2018-08-061-2/+4
|\ \ \ \ \ | | | | | | | | | | | | Improve slack histogram clarity
| * | | | | Enhance slack histogram with '+' to indicate less-than-granularityEddie Hung2018-08-061-2/+4
| | |/ / / | |/| | |
* | | | | Add name to copyright headerEddie Hung2018-08-061-0/+1
| |_|_|/ |/| | |
* | | | Fix use of getBudgetOverride in Timing::follow_net()Eddie Hung2018-08-061-12/+16
| |_|/ |/| |
* | | clangformatEddie Hung2018-08-061-4/+5
| | |
* | | Add net_delays bool to Timing class to control net delay considerationEddie Hung2018-08-061-5/+6
| | |
* | | Unless slack_redist is enabled, ignore net delays so that budget gets evenly ↵Eddie Hung2018-08-051-1/+1
| | | | | | | | | | | | divided between all nets on path
* | | Restore initial assign_budget() call after pack(), restrict call after ↵Eddie Hung2018-08-051-1/+2
|/ / | | | | | | initial_placement to slack_redist
* | Merge pull request #37 from YosysHQ/ngapiClifford Wolf2018-08-056-64/+76
|\ \ | | | | | | API change: Use CellInfo* and NetInfo* as cell/net handles
| * | API change: Use CellInfo* and NetInfo* as cell/net handles (Python bindings)David Shah2018-08-051-0/+8
| | | | | | | | | | | | Signed-off-by: David Shah <davey1576@gmail.com>
| * | API change: Use CellInfo* and NetInfo* as cell/net handles (common, ice40)Clifford Wolf2018-08-055-64/+68
| |/ | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* / timing: Fix slack histogram segfault with no pathsDavid Shah2018-08-051-1/+1
|/ | | | Signed-off-by: David Shah <davey1576@gmail.com>
* Merge pull request #36 from YosysHQ/lutpermDavid Shah2018-08-053-9/+35
|\ | | | | Add LUT input permutations, improvements in ice40 timing model, improvements in router
| * Quick fix for router bug in unrouting a conflicting pipClifford Wolf2018-08-041-1/+3
| | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| * Refactor ice40 timing fuzzer used to create delay estimatesClifford Wolf2018-08-042-3/+4
| | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| * Add router1 cfg.useEstimate, improve getActualRouteDelayClifford Wolf2018-08-043-8/+31
| | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* | Slack histogram to use ps granularity via int(Arch::getDelayNS() * 1000)Eddie Hung2018-08-041-3/+5
| |
* | Revert "Be cognisant that delay_t could be a non-integer type (if so, ↵Eddie Hung2018-08-041-4/+4
| | | | | | | | | | | | truncate to integer)" This reverts commit b07f0eebc894dce9220ab57808ff2e7103827fea.
* | Be cognisant that delay_t could be a non-integer type (if so, truncate to ↵Eddie Hung2018-08-041-4/+4
| | | | | | | | integer)
* | Merge branch 'master' into slack_histogramEddie Hung2018-08-032-4/+4
|\| | | | | | | | | Conflicts: common/timing.cc
| * Merge branch 'master' into slack_redist_freqEddie Hung2018-08-035-17/+385
| |\
| * | Auto frequency only if --freq 0 is setEddie Hung2018-08-032-7/+7
| | |
* | | Merge branch 'master' into slack_histogramEddie Hung2018-08-035-17/+385
|\ \ \ | | |/ | |/| | | | | | | Conflicts: common/placer1.cc