1
0

UncoreConfiguration now contains coherence policy

This commit is contained in:
Andrew Waterman 2012-10-18 16:57:28 -07:00
parent ffda0e41a9
commit 2aecb0024f
2 changed files with 10 additions and 12 deletions

View File

@ -64,19 +64,13 @@ trait MemoryOpConstants {
val M_XA_MAXU = Bits("b1111", 4);
}
trait HTIFConstants {
val HTIF_WIDTH = 16
}
trait MemoryInterfaceConstants extends
HTIFConstants with
UncoreConstants with
TileLinkSizeConstants
{
val MEM_TAG_BITS = max(TILE_XACT_ID_BITS, GLOBAL_XACT_ID_BITS)
val MEM_DATA_BITS = 128
val REFILL_CYCLES = CACHE_DATA_SIZE_IN_BYTES*8/MEM_DATA_BITS
val MEM_BACKUP_WIDTH = HTIF_WIDTH
}
trait AddressConstants {

View File

@ -17,7 +17,8 @@ class TrackerDependency extends Bundle {
val global_xact_id = Bits(width = GLOBAL_XACT_ID_BITS)
}
class XactTracker(id: Int, co: CoherencePolicy)(implicit conf: UncoreConfiguration) extends Component {
class XactTracker(id: Int)(implicit conf: UncoreConfiguration) extends Component {
val co = conf.co
val io = new Bundle {
val alloc_req = (new FIFOIO) { new TrackerAllocReq }.flip
val p_data = (new PipeIO) { new TrackerProbeData }.flip
@ -216,17 +217,19 @@ class XactTracker(id: Int, co: CoherencePolicy)(implicit conf: UncoreConfigurati
}
}
case class UncoreConfiguration(ntiles: Int, tile_id_bits: Int)
case class UncoreConfiguration(ntiles: Int, tile_id_bits: Int, co: CoherencePolicy)
abstract class CoherenceHub(co: CoherencePolicy)(implicit conf: UncoreConfiguration) extends Component {
abstract class CoherenceHub(implicit conf: UncoreConfiguration) extends Component {
val io = new Bundle {
val tiles = Vec(conf.ntiles) { new ioTileLink }.flip
val mem = new ioMem
}
}
class CoherenceHubNull(co: ThreeStateIncoherence)(implicit conf: UncoreConfiguration) extends CoherenceHub(co)(conf)
class CoherenceHubNull(implicit conf: UncoreConfiguration) extends CoherenceHub
{
val co = conf.co.asInstanceOf[ThreeStateIncoherence]
val x_init = io.tiles(0).xact_init
val is_write = x_init.bits.x_type === co.xactInitWriteback
x_init.ready := io.mem.req_cmd.ready && !(is_write && io.mem.resp.valid) //stall write req/resp to handle previous read resp
@ -252,9 +255,10 @@ class CoherenceHubNull(co: ThreeStateIncoherence)(implicit conf: UncoreConfigura
}
class CoherenceHubBroadcast(co: CoherencePolicy)(implicit conf: UncoreConfiguration) extends CoherenceHub(co)(conf)
class CoherenceHubBroadcast(implicit conf: UncoreConfiguration) extends CoherenceHub
{
val trackerList = (0 until NGLOBAL_XACTS).map(new XactTracker(_, co))
val co = conf.co
val trackerList = (0 until NGLOBAL_XACTS).map(new XactTracker(_))
val busy_arr = Vec(NGLOBAL_XACTS){ Bool() }
val addr_arr = Vec(NGLOBAL_XACTS){ Bits(width=PADDR_BITS-OFFSET_BITS) }