forked from SpinalHDL/VexRiscv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # build.sbt # src/main/scala/vexriscv/Riscv.scala # src/main/scala/vexriscv/ip/DataCache.scala # src/main/scala/vexriscv/plugin/DBusSimplePlugin.scala # src/main/scala/vexriscv/plugin/MmuPlugin.scala # src/test/cpp/regression/makefile # src/test/scala/vexriscv/TestIndividualFeatures.scala
- Loading branch information
Showing
32 changed files
with
1,053 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
package vexriscv.demo | ||
|
||
import vexriscv.plugin._ | ||
import vexriscv.ip.{DataCacheConfig, InstructionCacheConfig} | ||
import vexriscv.{plugin, VexRiscv, VexRiscvConfig} | ||
import spinal.core._ | ||
|
||
object GenSecure extends App { | ||
def cpu() = new VexRiscv( | ||
config = VexRiscvConfig( | ||
plugins = List( | ||
new IBusCachedPlugin( | ||
resetVector = 0x80000000l, | ||
prediction = STATIC, | ||
config = InstructionCacheConfig( | ||
cacheSize = 4096, | ||
bytePerLine = 32, | ||
wayCount = 1, | ||
addressWidth = 32, | ||
cpuDataWidth = 32, | ||
memDataWidth = 32, | ||
catchIllegalAccess = true, | ||
catchAccessFault = true, | ||
asyncTagMemory = false, | ||
twoCycleRam = true, | ||
twoCycleCache = true | ||
) | ||
), | ||
new DBusCachedPlugin( | ||
config = new DataCacheConfig( | ||
cacheSize = 4096, | ||
bytePerLine = 32, | ||
wayCount = 1, | ||
addressWidth = 32, | ||
cpuDataWidth = 32, | ||
memDataWidth = 32, | ||
catchAccessError = true, | ||
catchIllegal = true, | ||
catchUnaligned = true | ||
) | ||
), | ||
new PmpPlugin( | ||
regions = 16, | ||
ioRange = _(31 downto 28) === 0xf | ||
), | ||
new DecoderSimplePlugin( | ||
catchIllegalInstruction = true | ||
), | ||
new RegFilePlugin( | ||
regFileReadyKind = plugin.SYNC, | ||
zeroBoot = false | ||
), | ||
new IntAluPlugin, | ||
new SrcPlugin( | ||
separatedAddSub = false, | ||
executeInsertion = true | ||
), | ||
new FullBarrelShifterPlugin, | ||
new HazardSimplePlugin( | ||
bypassExecute = true, | ||
bypassMemory = true, | ||
bypassWriteBack = true, | ||
bypassWriteBackBuffer = true, | ||
pessimisticUseSrc = false, | ||
pessimisticWriteRegFile = false, | ||
pessimisticAddressMatch = false | ||
), | ||
new MulDivIterativePlugin( | ||
genMul = true, | ||
genDiv = true, | ||
mulUnrollFactor = 1, | ||
divUnrollFactor = 1 | ||
), | ||
new CsrPlugin(CsrPluginConfig.secure(0x00000020l)), | ||
new DebugPlugin(ClockDomain.current.clone(reset = Bool().setName("debugReset"))), | ||
new BranchPlugin( | ||
earlyBranch = false, | ||
catchAddressMisaligned = true | ||
), | ||
new YamlPlugin("cpu0.yaml") | ||
) | ||
) | ||
) | ||
|
||
SpinalVerilog(cpu()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.