1

ChiselUtil 类中有一个队列,手册中描述为:

// Generic hardware queue. Required
// parameter entries controls the
// depth of the queues. The width of
// the queue is determined from the
// inputs.
// Example usage:
//    val q = new Queue(UInt(), 16)
//    q.io.enq <> producer.io.out
//    consumer.io.in <> q.io.deq
class Queue[T <: Data]
    (type: T, entries: Int,
     pipe: Boolean = false,
     flow: Boolean = false
     flushable: Boolean = false)
    extends Module  

但是在scala代码中,接口参数不同: https ://github.com/ucb-bar/chisel/blob/master/src/main/scala/ChiselUtil.scala#L426

代码中没有“可刷新”布尔输入。我找不到“管道”和“流量”参数的含义。

有人知道如何使用队列来刷新它吗?

4

1 回答 1

2

flushable参数不存在。不知道他们是什么意思。但是,有一种方法可以通过点击 `_reset' 参数来清除队列,如下所示:

val my_queue = Module(new Queue(gen = new MyBundle,
                            entries = queue_sz,
                               pipe = false,
                               flow = true,
                             _reset = (kill_queue || reset.toBool)))

flow参数指定输入是否可以在同一周期内被消费(输入“立即”通过队列)。“有效”信号是耦合的。

pipe参数指定“就绪”信号是否组合耦合。这允许单项队列以全吞吐量运行(如管道)。

于 2015-09-21T20:36:51.250 回答