aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/arch.h
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-08-09 10:39:40 +0200
committerDavid Shah <davey1576@gmail.com>2018-08-09 10:39:53 +0200
commit834f7e4bfdbfaa8fbb3b51cef18c734176215c83 (patch)
tree59103f7c64dd9297203518ba45eadbdd7584910e /ecp5/arch.h
parent5ddde5c49ffaf6c2f827e9805caac0b7dd43f4a0 (diff)
downloadnextpnr-834f7e4bfdbfaa8fbb3b51cef18c734176215c83.tar.gz
nextpnr-834f7e4bfdbfaa8fbb3b51cef18c734176215c83.tar.bz2
nextpnr-834f7e4bfdbfaa8fbb3b51cef18c734176215c83.zip
ecp5: Implement getPipLocation and related API
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ecp5/arch.h')
-rw-r--r--ecp5/arch.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/ecp5/arch.h b/ecp5/arch.h
index 3e2f203b..36792625 100644
--- a/ecp5/arch.h
+++ b/ecp5/arch.h
@@ -421,7 +421,8 @@ struct Arch : BaseCtx
int getGridDimX() const { return chip_info->width; };
int getGridDimY() const { return chip_info->height; };
- int getTileDimZ(int, int) const { return 4; };
+ int getTileBelDimZ(int, int) const { return 4; };
+ int getTilePipDimZ(int, int) const { return 1; };
// -------------------------------------------------
@@ -774,6 +775,15 @@ struct Arch : BaseCtx
return chip_info->tiletype_names[locInfo(pip)->pip_data[pip.index].tile_type].get();
}
+ Loc getPipLocation(PipId pip) const
+ {
+ Loc loc;
+ loc.x = pip.location.x;
+ loc.y = pip.location.y;
+ loc.z = 0;
+ return loc;
+ }
+
int8_t getPipClass(PipId pip) const { return locInfo(pip)->pip_data[pip.index].pip_type; }
BelId getPackagePinBel(const std::string &pin) const;