2018-06-27 18:00:13 +08:00
|
|
|
/*
|
|
|
|
* 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_COMMON_H
|
|
|
|
#define PLACE_COMMON_H
|
|
|
|
|
|
|
|
#include "nextpnr.h"
|
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
typedef int64_t wirelen_t;
|
|
|
|
|
2018-07-16 23:13:40 +08:00
|
|
|
enum class MetricType
|
|
|
|
{
|
|
|
|
COST,
|
|
|
|
WIRELENGTH
|
|
|
|
};
|
|
|
|
|
2018-07-15 01:52:56 +08:00
|
|
|
// Return the wirelength of a net
|
2018-07-16 23:13:40 +08:00
|
|
|
wirelen_t get_net_metric(const Context *ctx, const NetInfo *net, MetricType type, float &tns);
|
2018-06-27 18:00:13 +08:00
|
|
|
|
|
|
|
// Return the wirelength of all nets connected to a cell
|
2018-07-16 23:13:40 +08:00
|
|
|
wirelen_t get_cell_metric(const Context *ctx, const CellInfo *cell, MetricType type);
|
2018-06-27 18:00:13 +08:00
|
|
|
|
2018-06-29 23:04:22 +08:00
|
|
|
// Return the wirelength of all nets connected to a cell, when the cell is at a given bel
|
2018-07-16 23:13:40 +08:00
|
|
|
wirelen_t get_cell_metric_at_bel(const Context *ctx, CellInfo *cell, BelId bel, MetricType type);
|
2018-06-29 23:04:22 +08:00
|
|
|
|
2018-06-27 18:00:13 +08:00
|
|
|
// Place a single cell in the lowest wirelength Bel available, optionally requiring validity check
|
2018-07-15 01:52:56 +08:00
|
|
|
bool place_single_cell(Context *ctx, CellInfo *cell, bool require_legality);
|
2018-06-27 18:00:13 +08:00
|
|
|
|
2018-08-03 19:18:16 +08:00
|
|
|
// Modify a design s.t. all relative placement constraints are satisfied
|
|
|
|
bool legalise_relative_constraints(Context *ctx);
|
|
|
|
|
|
|
|
// Get the total distance from satisfied constraints for a cell
|
|
|
|
int get_constraints_distance(const Context *ctx, const CellInfo *cell);
|
2018-12-13 22:27:33 +08:00
|
|
|
|
|
|
|
// Check that a Bel is within the region for a cell
|
|
|
|
bool check_cell_bel_region(const CellInfo *cell, BelId bel);
|
|
|
|
|
2018-06-27 18:00:13 +08:00
|
|
|
NEXTPNR_NAMESPACE_END
|
|
|
|
|
|
|
|
#endif
|