2023-04-21 01:49:36 +08:00
|
|
|
/*
|
|
|
|
* nextpnr -- Next Generation Place and Route
|
|
|
|
*
|
|
|
|
* Copyright (C) 2023 gatecat <gatecat@ds0.me>
|
|
|
|
*
|
|
|
|
* 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 HIMBAECHEL_ARCHDEFS_H
|
|
|
|
#define HIMBAECHEL_ARCHDEFS_H
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
#include "base_clusterinfo.h"
|
|
|
|
#include "hashlib.h"
|
|
|
|
#include "idstring.h"
|
|
|
|
#include "nextpnr_namespaces.h"
|
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
typedef int32_t delay_t;
|
|
|
|
|
|
|
|
struct BelId
|
|
|
|
{
|
|
|
|
int32_t tile = -1;
|
|
|
|
// PIP index in tile
|
|
|
|
int32_t index = -1;
|
|
|
|
|
|
|
|
BelId() = default;
|
|
|
|
BelId(int32_t tile, int32_t index) : tile(tile), index(index){};
|
|
|
|
|
|
|
|
bool operator==(const BelId &other) const { return tile == other.tile && index == other.index; }
|
|
|
|
bool operator!=(const BelId &other) const { return tile != other.tile || index != other.index; }
|
|
|
|
bool operator<(const BelId &other) const
|
|
|
|
{
|
|
|
|
return tile < other.tile || (tile == other.tile && index < other.index);
|
|
|
|
}
|
|
|
|
unsigned int hash() const { return mkhash(tile, index); }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct WireId
|
|
|
|
{
|
|
|
|
int32_t tile = -1;
|
|
|
|
int32_t index = -1;
|
|
|
|
|
|
|
|
WireId() = default;
|
|
|
|
WireId(int32_t tile, int32_t index) : tile(tile), index(index){};
|
|
|
|
|
|
|
|
bool operator==(const WireId &other) const { return tile == other.tile && index == other.index; }
|
|
|
|
bool operator!=(const WireId &other) const { return tile != other.tile || index != other.index; }
|
|
|
|
bool operator<(const WireId &other) const
|
|
|
|
{
|
|
|
|
return tile < other.tile || (tile == other.tile && index < other.index);
|
|
|
|
}
|
|
|
|
unsigned int hash() const { return mkhash(tile, index); }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PipId
|
|
|
|
{
|
|
|
|
int32_t tile = -1;
|
|
|
|
// PIP index in tile
|
|
|
|
int32_t index = -1;
|
|
|
|
|
|
|
|
PipId() = default;
|
|
|
|
PipId(int32_t tile, int32_t index) : tile(tile), index(index){};
|
|
|
|
|
|
|
|
bool operator==(const PipId &other) const { return tile == other.tile && index == other.index; }
|
|
|
|
bool operator!=(const PipId &other) const { return tile != other.tile || index != other.index; }
|
|
|
|
bool operator<(const PipId &other) const
|
|
|
|
{
|
|
|
|
return tile < other.tile || (tile == other.tile && index < other.index);
|
|
|
|
}
|
|
|
|
unsigned int hash() const { return mkhash(tile, index); }
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef IdString DecalId;
|
|
|
|
typedef IdString GroupId;
|
|
|
|
typedef IdString BelBucketId;
|
|
|
|
typedef IdString ClusterId;
|
|
|
|
|
|
|
|
struct ArchNetInfo
|
|
|
|
{
|
|
|
|
int flat_index;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ArchCellInfo : BaseClusterInfo
|
|
|
|
{
|
|
|
|
int flat_index;
|
2023-08-25 18:04:39 +08:00
|
|
|
int timing_index = -1;
|
2023-04-21 01:49:36 +08:00
|
|
|
dict<IdString, std::vector<IdString>> cell_bel_pins;
|
|
|
|
};
|
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_END
|
|
|
|
|
|
|
|
#endif
|