aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/pack.cc
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-11-03 10:57:21 +0000
committerGitHub <noreply@github.com>2018-11-03 10:57:21 +0000
commit158212417f5d8739231a64b60a880e25b418556c (patch)
tree176a14bbdb6cedc38576f9f274fccf8aa6986a1a /ecp5/pack.cc
parent0a52133865f2e935add8dddb62e206f1ca3986a7 (diff)
parent04f9b87101cc10356ccee8d189e3201258782daa (diff)
downloadnextpnr-158212417f5d8739231a64b60a880e25b418556c.tar.gz
nextpnr-158212417f5d8739231a64b60a880e25b418556c.tar.bz2
nextpnr-158212417f5d8739231a64b60a880e25b418556c.zip
Merge pull request #101 from daveshah1/ecp5_pll
WIP: ecp5: Add PLL support and improve global promotion/routint
Diffstat (limited to 'ecp5/pack.cc')
-rw-r--r--ecp5/pack.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/ecp5/pack.cc b/ecp5/pack.cc
index cb111fc6..73e15609 100644
--- a/ecp5/pack.cc
+++ b/ecp5/pack.cc
@@ -24,6 +24,7 @@
#include "cells.h"
#include "chain_utils.h"
#include "design_utils.h"
+#include "globals.h"
#include "log.h"
#include "util.h"
NEXTPNR_NAMESPACE_BEGIN
@@ -1047,6 +1048,7 @@ class Ecp5Packer
pack_lut_pairs();
pack_remaining_luts();
pack_remaining_ffs();
+ promote_ecp5_globals(ctx);
ctx->check();
}