aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-06-25 13:09:50 +0200
committerDavid Shah <davey1576@gmail.com>2018-06-25 13:09:50 +0200
commit28d8f8b2cb4c417816a67adb1b9c7e469fc22357 (patch)
tree5d5c181d98fd094c797118c4c7c0822a8179f880
parentbdd54a68471a68bb9e3f8125c1457cd039cc768b (diff)
downloadnextpnr-28d8f8b2cb4c417816a67adb1b9c7e469fc22357.tar.gz
nextpnr-28d8f8b2cb4c417816a67adb1b9c7e469fc22357.tar.bz2
nextpnr-28d8f8b2cb4c417816a67adb1b9c7e469fc22357.zip
ice40: Start work on the placement legaliser
Signed-off-by: David Shah <davey1576@gmail.com>
-rw-r--r--ice40/place_legaliser.cc78
-rw-r--r--ice40/place_legaliser.h31
2 files changed, 109 insertions, 0 deletions
diff --git a/ice40/place_legaliser.cc b/ice40/place_legaliser.cc
new file mode 100644
index 00000000..011c424c
--- /dev/null
+++ b/ice40/place_legaliser.cc
@@ -0,0 +1,78 @@
+/*
+ * nextpnr -- Next Generation Place and Route
+ *
+ * Copyright (C) 2018 David Shah <david@symbioticeda.com>
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ */
+
+#include "place_legaliser.h"
+#include <algorithm>
+#include <vector>
+#include "cells.h"
+#include "design_utils.h"
+#include "log.h"
+#include "util.h"
+
+NEXTPNR_NAMESPACE_BEGIN
+
+// Generic chain finder
+template <typename F1, typename F2, typename F3>
+std::vector<std::vector<CellInfo *>> find_chains(const Context *ctx, F1 cell_type_predicate, F2 get_previous,
+ F3 get_next, size_t min_length = 2)
+{
+ std::set<IdString> chained;
+ std::vector<std::vector<CellInfo *>> chains;
+ for (auto cell : ctx->cells) {
+ if (chained.find(cell.first) != chained.end())
+ continue;
+ CellInfo *ci = cell.second;
+ if (cell_type_predicate(ctx, ci)) {
+ CellInfo *start = ci;
+ CellInfo *prev_start = ci;
+ while (prev_start != nullptr) {
+ start = prev_start;
+ prev_start = get_previous(ctx, start);
+ }
+ std::vector<CellInfo *> chain;
+ CellInfo *end = start;
+ while (end != nullptr) {
+ chain.push_back(end);
+ end = get_next(ctx, end);
+ }
+ if (chain.size() >= min_length) {
+ chains.push_back(chain);
+ for (auto c : chain)
+ chained.insert(c->name);
+ }
+ }
+ }
+ return chains;
+};
+
+bool legalise_design(Context *ctx)
+{
+ std::vector<std::vector<CellInfo *>> carry_chains = find_chains(
+ ctx, is_lc,
+ [](const Context *ctx, const CellInfo *cell) {
+ return net_driven_by(ctx, cell->ports.at(ctx->id("CIN")).net, is_lc, ctx->id("COUT"));
+ },
+ [](const Context *ctx, const CellInfo *cell) {
+ return net_only_drives(ctx, cell->ports.at(ctx->id("COUT")).net, is_lc, ctx->id("CIN"), false);
+ });
+ // TODO
+ return true;
+}
+
+NEXTPNR_NAMESPACE_END
diff --git a/ice40/place_legaliser.h b/ice40/place_legaliser.h
new file mode 100644
index 00000000..5f4df6aa
--- /dev/null
+++ b/ice40/place_legaliser.h
@@ -0,0 +1,31 @@
+/*
+ * nextpnr -- Next Generation Place and Route
+ *
+ * Copyright (C) 2018 David Shah <david@symbioticeda.com>
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ */
+
+#ifndef PLACE_LEGALISER_H
+#define PLACE_LEGALISER_H
+
+#include "nextpnr.h"
+
+NEXTPNR_NAMESPACE_BEGIN
+
+bool legalise_design(Context *ctx);
+
+NEXTPNR_NAMESPACE_END
+
+#endif