我有一个通常不需要的可选功能。但是为了支持这个特性,一些 I/O 端口应该被添加到原始模块 I/O 端口。
我是这样做的:
import Chisel._
class TestModule extends Module {
class IOBundle extends Bundle {
val i = Bool(INPUT)
val o = Bool(OUTPUT)
}
class IOBundle_EXT extends IOBundle {
val o_ext = Bool(OUTPUT)
}
val io = if(true) new IOBundle_EXT else new IOBundle;
io.o := io.i
io.o_ext := io.i
}
运行 sbt "run TestModule --backend c --compile --test --genHarness"后,编译器提示:
[error] xxxx/test/condi_port.scala:17: value o_ext is not a member of TestModule.this.IOBundle
[error] io.o_ext := io.i
[error] ^
[error] one error found
[error] (compile:compile) Compilation failed
所以 if 语句不起作用。 val io 仍然分配给IOBundle,而不是扩展的IOBoundle_EXT,这对我来说没有意义。
最佳答案
Chisel 现在支持 IO 包中的选项。
作为一个例子,我在这里探索了选项 (https://github.com/ucb-bar/riscv-boom/commit/da6edcb4b7bec341e31a55567ee04c8a1431d659),但这里有一个总结:
class MyBundle extends Bundle
{
val my_ext = if (SOME_SWITCH) Some(ExtBundle) else None
}
...
io.my_ext match
{
case Some(b: ExtBundle) =>
my_ext.a := Bool(false)
...
case _ => require (!SOME_SWITCH)
}
它非常冗长,但即使在进行批量连接和将包隐藏在包中等时,我也能够让它工作。
关于chisel - Chisel 模块中的条件端口,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29697137/