1
0

Add new junctions repo as submodule (contains externally facing buses and peripherals).

Bump all submodules.
This commit is contained in:
Henry Cook
2015-07-29 17:56:19 -07:00
parent ee531dc97e
commit 51c42083d0
14 changed files with 24 additions and 13 deletions

View File

@ -3,6 +3,7 @@
package rocketchip
import Chisel._
import junctions._
import uncore._
class MemDessert extends Module {
@ -18,9 +19,10 @@ object VLSIUtils {
mems: Seq[MemIO],
backup: MemSerializedIO,
en: Bool,
nMemChannels: Int) {
nMemChannels: Int,
htifWidth: Int) {
val arb = Module(new MemIOArbiter(nMemChannels))
val mem_serdes = Module(new MemSerdes)
val mem_serdes = Module(new MemSerdes(htifWidth))
mem_serdes.io.wide <> arb.io.outer
mem_serdes.io.narrow <> backup