1
0

tilelink2: broadcast coherence manager

This commit is contained in:
Wesley W. Terpstra
2016-11-02 21:37:30 -07:00
parent d067e87a7d
commit 86ba94781b
2 changed files with 303 additions and 0 deletions

View File

@ -88,6 +88,12 @@ object TLAtomics
def isLogical(x: UInt) = x <= SWAP
}
object TLHints
{
val PREFETCH_READ = UInt(0)
val PREFETCH_WRITE = UInt(1)
}
sealed trait TLChannel extends TLBundleBase {
val channelName: String
}