-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GenFullWithTcmIntegrated example
- Loading branch information
Showing
2 changed files
with
98 additions
and
1 deletion.
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
97 changes: 97 additions & 0 deletions
97
src/main/scala/vexriscv/demo/GenFullWithTcmIntegrated.scala
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,97 @@ | ||
package vexriscv.demo | ||
|
||
import spinal.core._ | ||
import spinal.lib.bus.misc.SizeMapping | ||
import vexriscv.ip.{DataCacheConfig, InstructionCacheConfig} | ||
import vexriscv.plugin._ | ||
import vexriscv.{VexRiscv, VexRiscvConfig, plugin} | ||
|
||
/** | ||
* this example integrate the tightly coupled memory directly inside VexRiscv | ||
* by using the IBusDBusCachedTightlyCoupledRam plugin | ||
*/ | ||
object GenFullWithTcmIntegrated extends App{ | ||
def config = VexRiscvConfig( | ||
plugins = List( | ||
new IBusDBusCachedTightlyCoupledRam( | ||
mapping = SizeMapping(0x20000000, 0x1000) | ||
), | ||
new IBusCachedPlugin( | ||
prediction = DYNAMIC, | ||
config = InstructionCacheConfig( | ||
cacheSize = 4096, | ||
bytePerLine =32, | ||
wayCount = 1, | ||
addressWidth = 32, | ||
cpuDataWidth = 32, | ||
memDataWidth = 32, | ||
catchIllegalAccess = true, | ||
catchAccessFault = true, | ||
asyncTagMemory = false, | ||
twoCycleRam = true, | ||
twoCycleCache = true | ||
), | ||
memoryTranslatorPortConfig = MmuPortConfig( | ||
portTlbSize = 4 | ||
) | ||
), | ||
new DBusCachedPlugin( | ||
config = new DataCacheConfig( | ||
cacheSize = 4096, | ||
bytePerLine = 32, | ||
wayCount = 1, | ||
addressWidth = 32, | ||
cpuDataWidth = 32, | ||
memDataWidth = 32, | ||
catchAccessError = true, | ||
catchIllegal = true, | ||
catchUnaligned = true | ||
), | ||
memoryTranslatorPortConfig = MmuPortConfig( | ||
portTlbSize = 6 | ||
) | ||
), | ||
new MmuPlugin( | ||
virtualRange = _(31 downto 28) === 0xC, | ||
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 MulPlugin, | ||
new DivPlugin, | ||
new CsrPlugin(CsrPluginConfig.small(0x80000020l)), | ||
new DebugPlugin(ClockDomain.current.clone(reset = Bool().setName("debugReset"))), | ||
new BranchPlugin( | ||
earlyBranch = false, | ||
catchAddressMisaligned = true | ||
), | ||
new YamlPlugin("cpu0.yaml") | ||
) | ||
) | ||
|
||
def cpu() = new VexRiscv( | ||
config | ||
) | ||
|
||
SpinalVerilog(cpu()) | ||
} |