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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
|
// SPDX-License-Identifier: Apache-2.0
package chiselTests
import chisel3._
import chisel3.util.Counter
import chisel3.testers.{BasicTester, TesterDriver}
import chisel3.stage.ChiselStage
/** Multi-clock test of a Reg using a different clock via withClock */
class ClockDividerTest extends BasicTester {
val cDiv = RegInit(true.B) // start with falling edge to simplify clock relationship assert
cDiv := !cDiv
val clock2 = cDiv.asClock
val reg1 = RegInit(0.U(8.W))
reg1 := reg1 + 1.U
val reg2 = withClock(clock2) { RegInit(0.U(8.W)) }
reg2 := reg2 + 1.U
when(reg1 < 10.U) {
assert(reg2 === reg1 / 2.U) // 1:2 clock relationship
}
when(reg1 === 10.U) {
stop()
}
}
class MultiClockSubModuleTest extends BasicTester {
class SubModule extends Module {
val io = IO(new Bundle {
val out = Output(UInt())
})
val (cycle, _) = Counter(true.B, 10)
io.out := cycle
}
val (cycle, done) = Counter(true.B, 10)
val cDiv = RegInit(true.B) // start with falling edge to simplify clock relationship assert
cDiv := !cDiv
val otherClock = cDiv.asClock
val otherReset = cycle < 3.U
val inst = withClockAndReset(otherClock, otherReset) { Module(new SubModule) }
when(done) {
// The counter in inst should come out of reset later and increment at half speed
assert(inst.io.out === 3.U)
stop()
}
}
/** Test withReset changing the reset of a Reg */
class WithResetTest extends BasicTester {
val reset2 = WireDefault(false.B)
val reg = withReset(reset2 || reset.asBool) { RegInit(0.U(8.W)) }
reg := reg + 1.U
val (cycle, done) = Counter(true.B, 10)
when(cycle < 7.U) {
assert(reg === cycle)
}.elsewhen(cycle === 7.U) {
reset2 := true.B
}.elsewhen(cycle === 8.U) {
assert(reg === 0.U)
}
when(done) { stop() }
}
/** Test Mem ports with different clocks */
class MultiClockMemTest extends BasicTester {
val cDiv = RegInit(true.B)
cDiv := !cDiv
val clock2 = cDiv.asClock
val mem = Mem(8, UInt(32.W))
val (cycle, done) = Counter(true.B, 20)
// Write port 1 walks through writing 123
val waddr = RegInit(0.U(3.W))
waddr := waddr + 1.U
when(cycle < 8.U) {
mem(waddr) := 123.U
}
val raddr = waddr - 1.U
val rdata = mem(raddr)
// Check each write from write port 1
when(cycle > 0.U && cycle < 9.U) {
assert(rdata === 123.U)
}
// Write port 2 walks through writing 456 on 2nd time through
withClock(clock2) {
when(cycle >= 8.U && cycle < 16.U) {
mem(waddr) := 456.U // write 456 to different address
}
}
// Check that every even address gets 456
when(cycle > 8.U && cycle < 17.U) {
when(raddr % 2.U === 0.U) {
assert(rdata === 456.U)
}.otherwise {
assert(rdata === 123.U)
}
}
when(done) { stop() }
}
class MultiClockSpec extends ChiselFlatSpec with Utils {
"withClock" should "scope the clock of registers" in {
assertTesterPasses(new ClockDividerTest)
}
it should "scope ports of memories" in {
assertTesterPasses(new MultiClockMemTest, annotations = TesterDriver.verilatorOnly)
}
it should "return like a normal Scala block" in {
ChiselStage.elaborate(new BasicTester {
assert(withClock(this.clock) { 5 } == 5)
})
}
"Differing clocks at memory and port instantiation" should "warn" in {
class modMemDifferingClock extends Module {
val myClock = IO(Input(Clock()))
val mem = withClock(myClock) { Mem(4, UInt(8.W)) }
val port0 = mem(0.U)
}
val (logMemDifferingClock, _) = grabLog(ChiselStage.elaborate(new modMemDifferingClock))
logMemDifferingClock should include("memory is different")
class modSyncReadMemDifferingClock extends Module {
val myClock = IO(Input(Clock()))
val mem = withClock(myClock) { SyncReadMem(4, UInt(8.W)) }
val port0 = mem(0.U)
}
val (logSyncReadMemDifferingClock, _) = grabLog(ChiselStage.elaborate(new modSyncReadMemDifferingClock))
logSyncReadMemDifferingClock should include("memory is different")
}
"Differing clocks at memory and write accessor instantiation" should "warn" in {
class modMemWriteDifferingClock extends Module {
val myClock = IO(Input(Clock()))
val mem = withClock(myClock) { Mem(4, UInt(8.W)) }
mem(1.U) := 1.U
}
val (logMemWriteDifferingClock, _) = grabLog(ChiselStage.elaborate(new modMemWriteDifferingClock))
logMemWriteDifferingClock should include("memory is different")
class modSyncReadMemWriteDifferingClock extends Module {
val myClock = IO(Input(Clock()))
val mem = withClock(myClock) { SyncReadMem(4, UInt(8.W)) }
mem.write(1.U, 1.U)
}
val (logSyncReadMemWriteDifferingClock, _) = grabLog(ChiselStage.elaborate(new modSyncReadMemWriteDifferingClock))
logSyncReadMemWriteDifferingClock should include("memory is different")
}
"Differing clocks at memory and read accessor instantiation" should "warn" in {
class modMemReadDifferingClock extends Module {
val myClock = IO(Input(Clock()))
val mem = withClock(myClock) { Mem(4, UInt(8.W)) }
val readVal = mem.read(0.U)
}
val (logMemReadDifferingClock, _) = grabLog(ChiselStage.elaborate(new modMemReadDifferingClock))
logMemReadDifferingClock should include("memory is different")
class modSyncReadMemReadDifferingClock extends Module {
val myClock = IO(Input(Clock()))
val mem = withClock(myClock) { SyncReadMem(4, UInt(8.W)) }
val readVal = mem.read(0.U)
}
val (logSyncReadMemReadDifferingClock, _) = grabLog(ChiselStage.elaborate(new modSyncReadMemReadDifferingClock))
logSyncReadMemReadDifferingClock should include("memory is different")
}
"Passing clock parameter to memory port instantiation" should "not warn" in {
class modMemPortClock extends Module {
val myClock = IO(Input(Clock()))
val mem = Mem(4, UInt(8.W))
val port0 = mem(0.U, myClock)
}
val (logMemPortClock, _) = grabLog(ChiselStage.elaborate(new modMemPortClock))
(logMemPortClock should not).include("memory is different")
class modSyncReadMemPortClock extends Module {
val myClock = IO(Input(Clock()))
val mem = SyncReadMem(4, UInt(8.W))
val port0 = mem(0.U, myClock)
}
val (logSyncReadMemPortClock, _) = grabLog(ChiselStage.elaborate(new modSyncReadMemPortClock))
(logSyncReadMemPortClock should not).include("memory is different")
}
"Passing clock parameter to memory write accessor" should "not warn" in {
class modMemWriteClock extends Module {
val myClock = IO(Input(Clock()))
val mem = Mem(4, UInt(8.W))
mem.write(0.U, 0.U, myClock)
}
val (logMemWriteClock, _) = grabLog(ChiselStage.elaborate(new modMemWriteClock))
(logMemWriteClock should not).include("memory is different")
class modSyncReadMemWriteClock extends Module {
val myClock = IO(Input(Clock()))
val mem = SyncReadMem(4, UInt(8.W))
mem.write(0.U, 0.U, myClock)
}
val (logSyncReadMemWriteClock, _) = grabLog(ChiselStage.elaborate(new modSyncReadMemWriteClock))
(logSyncReadMemWriteClock should not).include("memory is different")
}
"Passing clock parameter to memory read accessor" should "not warn" in {
class modMemReadClock extends Module {
val myClock = IO(Input(Clock()))
val mem = Mem(4, UInt(8.W))
val readVal = mem.read(0.U, myClock)
}
val (logMemReadClock, _) = grabLog(ChiselStage.elaborate(new modMemReadClock))
(logMemReadClock should not).include("memory is different")
class modSyncReadMemReadClock extends Module {
val myClock = IO(Input(Clock()))
val mem = SyncReadMem(4, UInt(8.W))
val readVal = mem.read(0.U, myClock)
}
val (logSyncReadMemReadClock, _) = grabLog(ChiselStage.elaborate(new modSyncReadMemReadClock))
(logSyncReadMemReadClock should not).include("memory is different")
}
"withReset" should "scope the reset of registers" in {
assertTesterPasses(new WithResetTest)
}
it should "scope the clock and reset of Modules" in {
assertTesterPasses(new MultiClockSubModuleTest)
}
it should "return like a normal Scala block" in {
ChiselStage.elaborate(new BasicTester {
assert(withReset(this.reset) { 5 } == 5)
})
}
it should "support literal Bools" in {
assertTesterPasses(new BasicTester {
val reg = withReset(true.B) {
RegInit(6.U)
}
reg := reg - 1.U
// The reg is always in reset so will never decrement
chisel3.assert(reg === 6.U)
val (_, done) = Counter(true.B, 4)
when(done) { stop() }
})
}
"withClockAndReset" should "return like a normal Scala block" in {
ChiselStage.elaborate(new BasicTester {
assert(withClockAndReset(this.clock, this.reset) { 5 } == 5)
})
}
it should "scope the clocks and resets of asserts" in {
// Check that assert can fire
assertTesterFails(new BasicTester {
withClockAndReset(clock, reset) {
chisel3.assert(0.U === 1.U)
}
val (_, done) = Counter(true.B, 2)
when(done) { stop() }
})
// Check that reset will block
assertTesterPasses(new BasicTester {
withClockAndReset(clock, true.B) {
chisel3.assert(0.U === 1.U)
}
val (_, done) = Counter(true.B, 2)
when(done) { stop() }
})
// Check that no rising edge will block
assertTesterPasses(new BasicTester {
withClockAndReset(false.B.asClock, reset) {
chisel3.assert(0.U === 1.U)
}
val (_, done) = Counter(true.B, 2)
when(done) { stop() }
})
}
}
|