-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathT1RocketTile.scala
572 lines (511 loc) · 21.7 KB
/
T1RocketTile.scala
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: 2024 Jiuyang Liu <liu@jiuyang.me>
package org.chipsalliance.t1.tile
import chisel3._
import chisel3.experimental.hierarchy.{instantiable, public, Instance, Instantiate}
import chisel3.experimental.{SerializableModule, SerializableModuleParameter}
import chisel3.probe.{define, Probe, ProbeValue}
import chisel3.properties.{AnyClassType, Class, ClassType, Property}
import chisel3.util.experimental.BitSet
import chisel3.util.log2Ceil
import org.chipsalliance.amba.axi4.bundle.{AXI4BundleParameter, AXI4ROIrrevocable, AXI4RWIrrevocable}
import org.chipsalliance.rocketv.{
BHTParameter,
FPU,
FPUParameter,
FPUProbe,
Frontend,
FrontendParameter,
HellaCache,
HellaCacheArbiter,
HellaCacheArbiterParameter,
HellaCacheParameter,
PTW,
PTWParameter,
Rocket,
RocketParameter,
RocketProbe
}
import org.chipsalliance.rvdecoderdb.Instruction
import org.chipsalliance.t1.rtl.vrf.RamType
import org.chipsalliance.t1.rtl.vrf.RamType.{p0rp1w, p0rw, p0rwp1rw}
import org.chipsalliance.t1.rtl.{T1, T1Parameter, T1Probe, VFUInstantiateParameter}
import chisel3.util.DecoupledIO
import org.chipsalliance.t1.rtl.T1Issue
import org.chipsalliance.rocketv.T1Retire
object T1RocketTileParameter {
implicit def bitSetP: upickle.default.ReadWriter[BitSet] = upickle.default
.readwriter[String]
.bimap[BitSet](
bs => bs.terms.map("b" + _.rawString).mkString("\n"),
str => if (str.isEmpty) BitSet.empty else BitSet.fromString(str)
)
implicit val vrfRamTypeP: upickle.default.ReadWriter[RamType] = upickle.default.ReadWriter.merge(
upickle.default.macroRW[p0rw.type],
upickle.default.macroRW[p0rp1w.type],
upickle.default.macroRW[p0rwp1rw.type]
)
implicit def rwP: upickle.default.ReadWriter[T1RocketTileParameter] = upickle.default.macroRW[T1RocketTileParameter]
}
case class T1RocketTileParameter(
instructionSets: Seq[String],
cacheBlockBytes: Int,
nPMPs: Int,
cacheable: BitSet,
sideEffects: BitSet,
dcacheNSets: Int,
dcacheNWays: Int,
dcacheRowBits: Int,
iCacheNSets: Int,
iCacheNWays: Int,
iCachePrefetch: Boolean,
dLen: Int,
laneScale: Int,
chainingSize: Int,
vrfBankSize: Int,
vrfRamType: RamType,
vfuInstantiateParameter: VFUInstantiateParameter)
extends SerializableModuleParameter {
require(instructionSets.count(Seq("zve32x", "zve32f").contains) == 1, "at least support one Zve32x or Zve32f")
val useAsyncReset: Boolean = false
val clockGate: Boolean = false
val paddrBits: Int = xLen
// TODO: add S in the future
val priv: String = "m"
val hartIdLen: Int = 1
val useBPWatch: Boolean = false
val mcontextWidth: Int = 0
val scontextWidth: Int = 0
val asidBits: Int = 0
val resetVectorBits: Int = paddrBits
val nBreakpoints: Int = 0
// TODO: set to 0
val dtlbNSets: Int = 1
val dtlbNWays: Int = 32
val itlbNSets: Int = 1
val itlbNWays: Int = 32
val itlbNSectors: Int = 4
val itlbNSuperpageEntries: Int = 4
val nPTECacheEntries: Int = 9
val nL2TLBWays: Int = 1
val nL2TLBEntries: Int = 0
// T1 doens't check exception.
val legal: BitSet = BitSet.fromRange(0, 1 << paddrBits)
val read: BitSet = BitSet.fromRange(0, 1 << paddrBits)
val write: BitSet = BitSet.fromRange(0, 1 << paddrBits)
val putPartial: BitSet = BitSet.fromRange(0, 1 << paddrBits)
val logic: BitSet = BitSet.fromRange(0, 1 << paddrBits)
val arithmetic: BitSet = BitSet.fromRange(0, 1 << paddrBits)
val exec: BitSet = BitSet.fromRange(0, 1 << paddrBits)
val btbEntries: Int = 28
val btbNMatchBits: Int = 14
val btbUpdatesOutOfOrder: Boolean = false
val nPages: Int = 6
val nRAS: Int = 6
val bhtParameter: Option[BHTParameter] = Some(
BHTParameter(nEntries = 512, counterLength = 1, historyLength = 8, historyBits = 3)
)
// TODO: remove it
val mulDivLatency: Int = 0
val divUnroll: Int = 1
val divEarlyOut: Boolean = false
val divEarlyOutGranularity: Int = 1
val mulUnroll: Int = 1
val mulEarlyOut: Boolean = false
val sfmaLatency: Int = 3
val dfmaLatency: Int = 4
val divSqrt: Boolean = true
// TODO: check decoder
val flushOnFenceI: Boolean = true
val fastLoadByte: Boolean = false
val fastLoadWord: Boolean = true
val maxUncachedInFlight: Int = 1
val separateUncachedResp: Boolean = false
// calculate
def usingUser: Boolean = priv.contains("u")
def usingSupervisor: Boolean = priv.contains("s")
def vLen: Int = instructionSets.collectFirst { case s"zvl${vlen}b" =>
vlen.toInt
}.get
// static for now
def hasBeu: Boolean = false
def usingNMI: Boolean = false
def usingHypervisor: Boolean = false
def usingDataScratchpad: Boolean = false
def nLocalInterrupts: Int = 0
def dcacheArbPorts: Int = 2
def tagECC: Option[String] = None
def dataECC: Option[String] = None
def pgLevelBits: Int = 10 - log2Ceil(xLen / 32)
def instructions: Seq[Instruction] =
org.chipsalliance.rvdecoderdb
.instructions(
org.chipsalliance.rvdecoderdb.extractResource(getClass.getClassLoader)
)
.filter(instruction =>
(
instructionSets ++
// Four mandatory instruction sets.
Seq("rv_i", "rv_zicsr", "rv_zifencei", "rv_system")
).contains(instruction.instructionSet.name)
)
.toSeq
.filter {
// special case for rv32 pseudo from rv64
case i if i.pseudoFrom.isDefined && Seq("slli", "srli", "srai").contains(i.name) => true
case i if i.pseudoFrom.isDefined => false
case _ => true
}
.sortBy(i => (i.instructionSet.name, i.name))
private def hasInstructionSet(setName: String): Boolean =
instructions.flatMap(_.instructionSets.map(_.name)).contains(setName)
def usingBTB: Boolean = btbEntries > 0
def xLen: Int =
(hasInstructionSet("rv32_i"), hasInstructionSet("rv64_i")) match {
case (true, true) => throw new Exception("cannot support both rv32 and rv64 together")
case (true, false) => 32
case (false, true) => 64
case (false, false) => throw new Exception("no basic instruction found.")
}
def fLen: Option[Int] =
(
hasInstructionSet("rv_f") || hasInstructionSet("rv64_f"),
hasInstructionSet("rv_d") || hasInstructionSet("rv64_d")
) match {
case (false, false) => None
case (true, false) => Some(32)
case (false, true) => Some(64)
case (true, true) => Some(64)
}
def usingVM = hasInstructionSet("sfence.vma")
def pgLevels: Int = xLen match {
case 32 => 2
case 64 => 3
}
def usingAtomics = hasInstructionSet("rv_a") || hasInstructionSet("rv64_a")
def usingCompressed = hasInstructionSet("rv_c")
def minFLen: Option[Int] =
if (hasInstructionSet("rv_zfh") || hasInstructionSet("rv64_zfh") || hasInstructionSet("rv_d_zfh"))
Some(16)
else
fLen
def rocketParameter: RocketParameter = RocketParameter(
useAsyncReset,
clockGate,
instructionSets.toSet,
vLen,
usingUser,
hartIdLen,
nPMPs,
asidBits,
nBreakpoints,
usingBTB,
useBPWatch,
mcontextWidth,
scontextWidth,
mulDivLatency,
divUnroll,
divEarlyOut,
divEarlyOutGranularity,
mulUnroll,
mulEarlyOut,
paddrBits,
cacheBlockBytes,
hasBeu,
fastLoadByte,
fastLoadWord,
dcacheNSets,
flushOnFenceI,
usingT1 = true
)
def hellaCacheParameter: HellaCacheParameter = HellaCacheParameter(
useAsyncReset: Boolean,
clockGate: Boolean,
xLen: Int,
fLen.getOrElse(0): Int,
usingVM: Boolean,
paddrBits: Int,
cacheBlockBytes: Int,
dcacheNWays: Int,
dcacheNSets: Int,
dcacheRowBits: Int,
dtlbNSets: Int,
dtlbNWays: Int,
tagECC: Option[String],
dataECC: Option[String],
maxUncachedInFlight: Int,
separateUncachedResp: Boolean,
legal: BitSet,
cacheable: BitSet,
read: BitSet,
write: BitSet,
putPartial: BitSet,
logic: BitSet,
arithmetic: BitSet,
exec: BitSet,
sideEffects: BitSet
)
def hellaCacheArbiterParameter: HellaCacheArbiterParameter = HellaCacheArbiterParameter(
useAsyncReset: Boolean,
xLen: Int,
fLen.getOrElse(0): Int,
paddrBits: Int,
cacheBlockBytes: Int,
dcacheNSets: Int,
usingVM: Boolean,
separateUncachedResp: Boolean
)
def ptwParameter: PTWParameter = PTWParameter(
useAsyncReset: Boolean,
clockGate: Boolean,
usingVM: Boolean,
usingHypervisor: Boolean,
xLen: Int,
fLen.getOrElse(0): Int,
paddrBits: Int,
asidBits: Int,
pgLevels: Int,
nPTECacheEntries: Int,
nL2TLBWays: Int,
nL2TLBEntries: Int,
nPMPs: Int
)
def frontendParameter: FrontendParameter = FrontendParameter(
useAsyncReset = useAsyncReset: Boolean,
clockGate = clockGate: Boolean,
xLen = xLen: Int,
usingAtomics = usingAtomics: Boolean,
usingDataScratchpad = usingDataScratchpad: Boolean,
usingVM = usingVM: Boolean,
usingCompressed = usingCompressed: Boolean,
usingBTB = usingBTB: Boolean,
itlbNSets = itlbNSets: Int,
itlbNWays = itlbNWays: Int,
itlbNSectors = itlbNSectors: Int,
itlbNSuperpageEntries = itlbNSuperpageEntries: Int,
blockBytes = cacheBlockBytes: Int,
iCacheNSets = iCacheNSets: Int,
iCacheNWays = iCacheNWays: Int,
iCachePrefetch = iCachePrefetch: Boolean,
btbEntries = btbEntries: Int,
btbNMatchBits = btbNMatchBits: Int,
btbUpdatesOutOfOrder = btbUpdatesOutOfOrder: Boolean,
nPages = nPages: Int,
nRAS = nRAS: Int,
nPMPs = nPMPs: Int,
paddrBits = paddrBits: Int,
pgLevels = pgLevels: Int,
asidBits = asidBits: Int,
bhtParameter = bhtParameter: Option[BHTParameter],
legal = legal: BitSet,
cacheable = cacheable: BitSet,
read = read: BitSet,
write = write: BitSet,
putPartial = putPartial: BitSet,
logic = logic: BitSet,
arithmetic = arithmetic: BitSet,
exec = exec: BitSet,
sideEffects = sideEffects: BitSet
)
def fpuParameter: Option[FPUParameter] = fLen.zip(minFLen).map { case (fLen, minFLen) =>
FPUParameter(
useAsyncReset: Boolean,
clockGate: Boolean,
xLen: Int,
fLen: Int,
minFLen: Int,
sfmaLatency: Int,
dfmaLatency: Int,
divSqrt: Boolean,
hartIdLen: Int
)
}
def t1Parameter: T1Parameter = T1Parameter(
dLen = dLen,
laneScale = laneScale,
chainingSize = chainingSize,
extensions = instructionSets.filter {
case i if i.startsWith("zve") => true
case i if i.startsWith("zvl") => true
case i if i == "zvbb" => true
case _ => false
},
vrfBankSize = vrfBankSize,
vrfRamType = vrfRamType,
vfuInstantiateParameter = vfuInstantiateParameter
)
def instructionFetchParameter: AXI4BundleParameter = frontendParameter.instructionFetchParameter
def itimParameter: Option[AXI4BundleParameter] = frontendParameter.itimParameter
def loadStoreParameter: AXI4BundleParameter = hellaCacheParameter.loadStoreParameter
def dtimParameter: Option[AXI4BundleParameter] = hellaCacheParameter.dtimParameter
def t1HighBandwidthParameter: AXI4BundleParameter = t1Parameter.axi4BundleParameter
def t1HightOutstandingParameter: AXI4BundleParameter = t1Parameter.axi4BundleParameter.copy(dataWidth = 32)
}
@instantiable
class T1RocketTileOM extends Class {
@public
val rocket = IO(Output(Property[AnyClassType]()))
@public
val rocketIn = IO(Input(Property[AnyClassType]()))
@public
val frontend = IO(Output(Property[AnyClassType]()))
@public
val frontendIn = IO(Input(Property[AnyClassType]()))
@public
val hellaCache = IO(Output(Property[AnyClassType]()))
@public
val hellaCacheIn = IO(Input(Property[AnyClassType]()))
@public
val t1 = IO(Output(Property[AnyClassType]()))
@public
val t1In = IO(Input(Property[AnyClassType]()))
rocket := rocketIn
frontend := frontendIn
hellaCache := hellaCacheIn
t1 := t1In
}
class T1RocketProbe(parameter: T1RocketTileParameter) extends Bundle {
val rocketProbe: RocketProbe = Output(new RocketProbe(parameter.rocketParameter))
val fpuProbe: Option[FPUProbe] = parameter.fpuParameter.map(param => Output(new FPUProbe(param)))
val t1Probe: T1Probe = Output(new T1Probe(parameter.t1Parameter))
val t1IssueDeq: DecoupledIO[T1Issue] = DecoupledIO(new T1Issue(parameter.xLen, parameter.vLen))
val t1Retire: T1Retire = Output(new T1Retire(parameter.xLen))
}
class T1RocketTileInterface(parameter: T1RocketTileParameter) extends Bundle {
val clock = Input(Clock())
val reset = Input(if (parameter.useAsyncReset) AsyncReset() else Bool())
// todo: Const
val hartid = Flipped(UInt(parameter.hartIdLen.W))
val resetVector = Input(Const(UInt(parameter.resetVectorBits.W)))
val debug: Bool = Input(Bool())
val mtip: Bool = Input(Bool())
val msip: Bool = Input(Bool())
val meip: Bool = Input(Bool())
val seip: Option[Bool] = Option.when(parameter.usingSupervisor)(Bool())
val lip: Vec[Bool] = Vec(parameter.nLocalInterrupts, Bool())
val nmi = Option.when(parameter.usingNMI)(Bool())
val nmiInterruptVector = Option.when(parameter.usingNMI)(UInt(parameter.resetVectorBits.W))
val nmiIxceptionVector = Option.when(parameter.usingNMI)(UInt(parameter.resetVectorBits.W))
// TODO: buserror should be handled by NMI
val buserror: Bool = Input(Bool())
val wfi: Bool = Output(Bool())
val halt: Bool = Output(Bool())
val instructionFetchAXI: AXI4ROIrrevocable =
org.chipsalliance.amba.axi4.bundle.AXI4ROIrrevocable(parameter.instructionFetchParameter)
val itimAXI: Option[AXI4RWIrrevocable] =
parameter.itimParameter.map(p => Flipped(org.chipsalliance.amba.axi4.bundle.AXI4RWIrrevocable(p)))
val loadStoreAXI: AXI4RWIrrevocable =
org.chipsalliance.amba.axi4.bundle.AXI4RWIrrevocable(parameter.loadStoreParameter)
val dtimAXI: Option[AXI4RWIrrevocable] =
parameter.dtimParameter.map(p => Flipped(org.chipsalliance.amba.axi4.bundle.AXI4RWIrrevocable(p)))
val highBandwidthAXI: AXI4RWIrrevocable =
org.chipsalliance.amba.axi4.bundle.AXI4RWIrrevocable(parameter.t1HighBandwidthParameter)
val highOutstandingAXI: AXI4RWIrrevocable =
org.chipsalliance.amba.axi4.bundle.AXI4RWIrrevocable(parameter.t1HightOutstandingParameter)
val om: Property[ClassType] = Output(Property[AnyClassType]())
// TODO: merge it.
val t1RocketProbe: T1RocketProbe = Output(Probe(new T1RocketProbe(parameter), layers.Verification))
}
class T1RocketTile(val parameter: T1RocketTileParameter)
extends FixedIORawModule(new T1RocketTileInterface(parameter))
with SerializableModule[T1RocketTileParameter]
with Public {
val rocket: Instance[Rocket] = Instantiate(new Rocket(parameter.rocketParameter))
val frontend: Instance[Frontend] = Instantiate(new Frontend(parameter.frontendParameter))
val hellaCache: Instance[HellaCache] = Instantiate(new HellaCache(parameter.hellaCacheParameter))
val hellaCacheArbiter: Instance[HellaCacheArbiter] = Instantiate(
new HellaCacheArbiter(parameter.hellaCacheArbiterParameter)
)
val ptw: Instance[PTW] = Instantiate(new PTW(parameter.ptwParameter))
val fpu: Option[Instance[FPU]] = parameter.fpuParameter.map(fpuParameter => Instantiate(new FPU(fpuParameter)))
val t1: Instance[T1] = Instantiate(new T1(parameter.t1Parameter))
val omInstance: Instance[T1RocketTileOM] = Instantiate(new T1RocketTileOM)
io.om := omInstance.getPropertyReference.asAnyClassType
omInstance.rocketIn := Property(rocket.io.om.asAnyClassType)
omInstance.frontendIn := Property(frontend.io.om.asAnyClassType)
omInstance.hellaCacheIn := Property(hellaCache.io.om.asAnyClassType)
omInstance.t1In := Property(t1.io.om.asAnyClassType)
rocket.io.clock := io.clock
rocket.io.reset := io.reset
rocket.io.hartid := io.hartid
rocket.io.interrupts.debug := io.debug
rocket.io.interrupts.mtip := io.mtip
rocket.io.interrupts.msip := io.msip
rocket.io.interrupts.meip := io.meip
rocket.io.interrupts.seip.foreach(_ := io.seip.get)
rocket.io.interrupts.lip := io.lip
rocket.io.interrupts.nmi.foreach { nmi =>
nmi.rnmi := io.nmi.get
nmi.rnmi_interrupt_vector := io.nmiInterruptVector.get
nmi.rnmi_exception_vector := io.nmiIxceptionVector.get
}
// @todo make it optional
rocket.io.buserror := io.buserror
io.wfi := rocket.io.wfi
io.loadStoreAXI <> hellaCache.io.loadStoreAXI
io.dtimAXI.zip(hellaCache.io.dtimAXI).foreach { case (io, hellaCache) => io <> hellaCache }
io.instructionFetchAXI <> frontend.io.instructionFetchAXI
io.itimAXI.zip(frontend.io.itimAXI).foreach { case (io, frontend) => io <> frontend }
// design for halt and beu, only use the halt function for now.
io.halt := Seq(frontend.io.nonDiplomatic.errors.uncorrectable, hellaCache.io.errors.uncorrectable)
.flatMap(_.map(_.valid))
.foldLeft(false.B)(_ || _)
// rocket core io
rocket.io.imem <> frontend.io.nonDiplomatic.cpu
hellaCacheArbiter.io.requestor(0) <> rocket.io.dmem
rocket.io.ptw <> ptw.io.dpath
rocket.io.fpu.zip(fpu.map(_.io.core)).foreach { case (core, fpu) => core <> fpu }
// match connect
t1.io.issue <> rocket.io.t1.get.issue
rocket.io.t1.get.retire <> t1.io.retire
// used by trace module
rocket.io.bpwatch := DontCare
// don't use for now, this is design for report the custom cease status.
// rocket.io.cease
// it will be used in the future w/ trace support.
rocket.io.traceStall := false.B
// frontend io
frontend.io.clock := io.clock
frontend.io.reset := io.reset
frontend.io.resetVector := io.resetVector
ptw.io.requestor(0) <> frontend.io.nonDiplomatic.ptw
// hellacache io
hellaCache.io.clock := io.clock
hellaCache.io.reset := io.reset
ptw.io.requestor(1) <> hellaCache.io.ptw
hellaCache.io.cpu <> hellaCacheArbiter.io.mem
// ptw io
ptw.io.clock := io.clock
ptw.io.reset := io.reset
if (hellaCacheArbiter.io.requestor.size > 1) {
hellaCacheArbiter.io.requestor(1) <> ptw.io.mem
} else {
ptw.io.mem <> DontCare
}
// hellacache arbiter io
hellaCacheArbiter.io.clock := io.clock
hellaCacheArbiter.io.reset := io.reset
fpu.foreach { fpu =>
fpu.io.clock := io.clock
fpu.io.reset := io.reset
// @todo: remove it from FPU.
fpu.io.cp_req <> DontCare
fpu.io.cp_resp <> DontCare
}
t1.io.clock := io.clock
t1.io.reset := io.reset
io.highBandwidthAXI <> t1.io.highBandwidthLoadStorePort
io.highOutstandingAXI <> t1.io.indexedLoadStorePort
// probe
layer.block(layers.Verification) {
val probeWire = Wire(new T1RocketProbe(parameter))
define(io.t1RocketProbe, ProbeValue(probeWire))
probeWire.rocketProbe := probe.read(rocket.io.rocketProbe)
probeWire.t1Probe := probe.read(t1.io.t1Probe)
probeWire.fpuProbe.foreach { fpuProbe =>
fpuProbe := probe.read(fpu.get.io.fpuProbe)
}
probeWire.t1IssueDeq := t1.io.issue
probeWire.t1Retire := t1.io.retire
}
}