Home
last modified time | relevance | path

Searched refs:chipArgs (Results 1 – 11 of 11) sorted by relevance

/dports/devel/nextpnr/nextpnr-48cd407/ice40/
H A Dmain.cc134 ArchArgs chipArgs; in createContext() local
135 chipArgs.type = ArchArgs::NONE; in createContext()
138 chipArgs.package = "qn32"; in createContext()
143 chipArgs.package = "tq144"; in createContext()
148 chipArgs.package = "tq144"; in createContext()
153 chipArgs.package = "ct256"; in createContext()
173 chipArgs.package = "sg48"; in createContext()
178 chipArgs.package = "sg48"; in createContext()
183 chipArgs.package = "sg48"; in createContext()
188 chipArgs.package = "sg48"; in createContext()
[all …]
/dports/devel/nextpnr/nextpnr-48cd407/ecp5/
H A Dmain.cc137 ArchArgs chipArgs; in createContext() local
138 chipArgs.type = ArchArgs::NONE; in createContext()
140 chipArgs.type = ArchArgs::LFE5U_12F; in createContext()
142 chipArgs.type = ArchArgs::LFE5U_25F; in createContext()
144 chipArgs.type = ArchArgs::LFE5U_45F; in createContext()
146 chipArgs.type = ArchArgs::LFE5U_85F; in createContext()
178 if (chipArgs.type == ArchArgs::LFE5UM5G_25F || chipArgs.type == ArchArgs::LFE5UM5G_45F || in createContext()
234 if (chipArgs.type == ArchArgs::NONE) in createContext()
237 if (chipArgs.package.empty()) { in createContext()
238 chipArgs.package = "CABGA381"; in createContext()
[all …]
/dports/devel/nextpnr/nextpnr-48cd407/tests/ice40/
H A Dhx1k.cc32 chipArgs.type = ArchArgs::HX1K; in SetUp()
33 chipArgs.package = "tq144"; in SetUp()
34 ctx = new Context(chipArgs); in SetUp()
39 ArchArgs chipArgs; member in HX1KTest
H A Dlp8k.cc32 chipArgs.type = ArchArgs::LP8K; in SetUp()
33 chipArgs.package = "ct256"; in SetUp()
34 ctx = new Context(chipArgs); in SetUp()
39 ArchArgs chipArgs; member in LP8KTest
H A Dhx8k.cc32 chipArgs.type = ArchArgs::HX8K; in SetUp()
33 chipArgs.package = "ct256"; in SetUp()
34 ctx = new Context(chipArgs); in SetUp()
39 ArchArgs chipArgs; member in HX8KTest
H A Dlp1k.cc32 chipArgs.type = ArchArgs::LP1K; in SetUp()
33 chipArgs.package = "tq144"; in SetUp()
34 ctx = new Context(chipArgs); in SetUp()
39 ArchArgs chipArgs; member in LP1KTest
H A Dlp384.cc32 chipArgs.type = ArchArgs::LP384; in SetUp()
33 chipArgs.package = "qn32"; in SetUp()
34 ctx = new Context(chipArgs); in SetUp()
39 ArchArgs chipArgs; member in LP384Test
H A Dup5k.cc32 chipArgs.type = ArchArgs::UP5K; in SetUp()
33 chipArgs.package = "sg48"; in SetUp()
34 ctx = new Context(chipArgs); in SetUp()
39 ArchArgs chipArgs; member in UP5KTest
/dports/devel/nextpnr/nextpnr-48cd407/gui/ecp5/
H A Dmainwindow.cc104 ArchArgs chipArgs; in new_proj() local
105 chipArgs.type = (ArchArgs::ArchArgsTypes)arch.value(item); in new_proj()
108 for (auto package : Arch::getSupportedPackages(chipArgs.type)) in new_proj()
116 chipArgs.package = package.toStdString().c_str(); in new_proj()
117 ctx = std::unique_ptr<Context>(new Context(chipArgs)); in new_proj()
/dports/devel/nextpnr/nextpnr-48cd407/gui/ice40/
H A Dmainwindow.cc108 ArchArgs chipArgs; in new_proj() local
109 chipArgs.type = (ArchArgs::ArchArgsTypes)arch.value(item); in new_proj()
112 for (auto package : Arch::getSupportedPackages(chipArgs.type)) in new_proj()
120 chipArgs.package = package.toStdString().c_str(); in new_proj()
121 ctx = std::unique_ptr<Context>(new Context(chipArgs)); in new_proj()
/dports/devel/nextpnr/nextpnr-48cd407/generic/
H A Dmain.cc57 ArchArgs chipArgs; in createContext() local
63 auto ctx = std::unique_ptr<Context>(new Context(chipArgs)); in createContext()