aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/archdefs.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-09-25 18:21:56 +0200
committerGitHub <noreply@github.com>2018-09-25 18:21:56 +0200
commit07cf349ee46a8c8a3163d2f8a146beab02e6b487 (patch)
treea43f9f922d2af2ecb5ab59c1981acf5b2ab47405 /ice40/archdefs.h
parent1eb7411fb0b814c524b83dc3c16715a814db8f5d (diff)
parentdea87e46c4f316a950425504cadda56aaeeab280 (diff)
downloadnextpnr-07cf349ee46a8c8a3163d2f8a146beab02e6b487.tar.gz
nextpnr-07cf349ee46a8c8a3163d2f8a146beab02e6b487.tar.bz2
nextpnr-07cf349ee46a8c8a3163d2f8a146beab02e6b487.zip
Merge pull request #79 from YosysHQ/ice40lvds
ice40: Adding LVDS input support
Diffstat (limited to 'ice40/archdefs.h')
-rw-r--r--ice40/archdefs.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/ice40/archdefs.h b/ice40/archdefs.h
index 360617fd..c04033e7 100644
--- a/ice40/archdefs.h
+++ b/ice40/archdefs.h
@@ -134,7 +134,6 @@ struct NetInfo;
struct ArchCellInfo
{
- IdString belType;
union
{
struct
@@ -145,6 +144,11 @@ struct ArchCellInfo
int inputCount;
const NetInfo *clk, *cen, *sr;
} lcInfo;
+ struct
+ {
+ bool lvds;
+ // TODO: clk packing checks...
+ } ioInfo;
};
};