1
0
Fork 0

spi: Make memory mapped interface depth a parameter

This commit is contained in:
Megan Wachs 2017-08-20 12:39:38 -07:00
parent a814cba04f
commit 70c25846b8
2 changed files with 3 additions and 1 deletions

View File

@ -43,7 +43,7 @@ trait HasPeripherySPIFlash extends HasPeripheryBus with HasInterruptBus {
qspi.rnode := pbus.toVariableWidthSlaves
qspi.fnode :=
TLFragmenter(1, pbus.blockBytes)(
TLBuffer(BufferParams(8), BufferParams.none)(
TLBuffer(BufferParams(params.fBufferDepth), BufferParams.none)(
pbus.toFixedWidthSlaves))
ibus.fromSync := qspi.intnode
qspi

View File

@ -11,6 +11,7 @@ import freechips.rocketchip.util.HeterogeneousBag
trait SPIFlashParamsBase extends SPIParamsBase {
val fAddress: BigInt
val fSize: BigInt
val fBufferDepth: Int
val insnAddrBytes: Int
val insnPadLenBits: Int
@ -22,6 +23,7 @@ trait SPIFlashParamsBase extends SPIParamsBase {
case class SPIFlashParams(
rAddress: BigInt,
fAddress: BigInt,
fBufferDepth: Int = 0,
rSize: BigInt = 0x1000,
fSize: BigInt = 0x20000000,
rxDepth: Int = 8,