-
Notifications
You must be signed in to change notification settings - Fork 496
Expand file tree
/
Copy pathGenWithMstatush.scala
More file actions
74 lines (71 loc) · 2.12 KB
/
GenWithMstatush.scala
File metadata and controls
74 lines (71 loc) · 2.12 KB
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
package vexriscv.demo
import vexriscv.plugin._
import vexriscv.{plugin, VexRiscv, VexRiscvConfig}
import spinal.core._
/**
* GenWithMstatush
*
* Demonstrates how to include the MstatushPlugin in a VexRiscv configuration.
*
* This configuration is based on GenSmallest but includes the MstatushPlugin
* to implement the mstatush CSR (0x310), which represents the upper 32 bits
* of the 64-bit mstatus register. In this RV32 implementation, mstatush is
* hardwired to zero.
*
* To generate the Verilog:
* {{{
* sbt "runMain vexriscv.demo.GenWithMstatush"
* }}}
*/
object GenWithMstatush extends App{
def cpu() = new VexRiscv(
config = VexRiscvConfig(
plugins = List(
new IBusSimplePlugin(
resetVector = 0x80000000l,
cmdForkOnSecondStage = false,
cmdForkPersistence = false,
prediction = NONE,
catchAccessFault = false,
compressedGen = false
),
new DBusSimplePlugin(
catchAddressMisaligned = false,
catchAccessFault = false
),
new CsrPlugin(CsrPluginConfig.smallest),
// MstatushPlugin adds mstatush CSR support
// Set readOnly = false to allow writes (which have no effect)
new MstatushPlugin(readOnly = true),
new DecoderSimplePlugin(
catchIllegalInstruction = false
),
new RegFilePlugin(
regFileReadyKind = plugin.SYNC,
zeroBoot = false
),
new IntAluPlugin,
new SrcPlugin(
separatedAddSub = false,
executeInsertion = false
),
new LightShifterPlugin,
new HazardSimplePlugin(
bypassExecute = false,
bypassMemory = false,
bypassWriteBack = false,
bypassWriteBackBuffer = false,
pessimisticUseSrc = false,
pessimisticWriteRegFile = false,
pessimisticAddressMatch = false
),
new BranchPlugin(
earlyBranch = false,
catchAddressMisaligned = false
),
new YamlPlugin("cpu0.yaml")
)
)
)
SpinalVerilog(cpu())
}