blob: 6e1d267dbd7c4c56b9772944334b428252f296bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// See LICENSE for license details.
package chiselTests
import chisel3._
import chisel3.testers.BasicTester
import chisel3.util._
/**
* This test used to fail when assignment statements were
* contained in DeqIO and EnqIO constructors.
* The symptom is creation of a firrtl file
* with missing declarations, the problem is exposed by
* the creation of the val outs in VectorPacketIO
*
* NOTE: The problem does not exist now because the initialization
* code has been removed from DeqIO and EnqIO
*
* IMPORTANT: The canonical way to initialize a decoupled inteface is still being debated.
*/
class Packet extends Bundle {
val header = UInt.width(1)
}
/**
* The problem occurs with just the ins or the outs
* lines also.
* The problem does not occur if the Vec is taken out
*/
class VectorPacketIO(n: Int) extends Bundle {
val ins = Vec(n, DeqIO(new Packet()))
val outs = Vec(n, EnqIO(new Packet()))
}
/**
* a module uses the vector based IO bundle
* the value of n does not affect the error
*/
class BrokenVectorPacketModule extends Module {
val n = 4
val io = IO(new VectorPacketIO(n))
/* the following method of initializing the circuit may change in the future */
io.ins.foreach(_.noenq())
io.outs.foreach(_.nodeq())
}
class VectorPacketIOUnitTester extends BasicTester {
val device_under_test = Module(new BrokenVectorPacketModule)
// This counter just makes the test end quicker
val c = Counter(1)
when(c.inc()) {
stop()
}
}
class VectorPacketIOUnitTesterSpec extends ChiselFlatSpec {
"a circuit using an io containing a vector of EnqIO wrapped packets" should
"compile and run" in {
assertTesterPasses {
new VectorPacketIOUnitTester
}
}
}
|