Mercurial > pygar
view core/src/DataCacheBlocking.bsv @ 76:8bd0e4d37ad2 pygar svn.77 tip
[svn r77] I don't know why my last change didn't go through grumble grumble....
author | rlm |
---|---|
date | Wed, 12 May 2010 08:58:23 -0400 |
parents | 91a1f76ddd62 |
children |
line wrap: on
line source
1 // The MIT License3 // Copyright (c) 2009 Massachusetts Institute of Technology5 // Permission is hereby granted, free of charge, to any person obtaining a copy6 // of this software and associated documentation files (the "Software"), to deal7 // in the Software without restriction, including without limitation the rights8 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell9 // copies of the Software, and to permit persons to whom the Software is10 // furnished to do so, subject to the following conditions:12 // The above copyright notice and this permission notice shall be included in13 // all copies or substantial portions of the Software.15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE18 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN21 // THE SOFTWARE.23 import Connectable::*;24 import GetPut::*;25 import ClientServer::*;26 import RegFile::*;27 import FIFO::*;28 import FIFOF::*;30 import BFIFO::*;31 import MemTypes::*;32 import ProcTypes::*;33 import Trace::*;35 interface DCacheStats;36 interface Get#(Stat) num_accesses;37 interface Get#(Stat) num_misses;38 interface Get#(Stat) num_writebacks;39 endinterface41 interface DCache#( type req_t, type resp_t );43 // Interface from processor to cache44 interface Server#(req_t,resp_t) proc_server;46 // Interface from cache to main memory47 interface Client#(MainMemReq,MainMemResp) mmem_client;49 // Interface for enabling/disabling statistics50 interface Put#(Bool) statsEn_put;52 // Interface for collecting statistics53 interface DCacheStats stats;55 endinterface58 //----------------------------------------------------------------------59 // Cache Types60 //----------------------------------------------------------------------62 typedef 10 CacheLineIndexSz;63 typedef 20 CacheLineTagSz;64 typedef 32 CacheLineSz;66 typedef Bit#(CacheLineIndexSz) CacheLineIndex;67 typedef Bit#(CacheLineTagSz) CacheLineTag;68 typedef Bit#(CacheLineSz) CacheLine;70 typedef enum71 {72 Init,73 Access,74 RefillReq,75 RefillResp76 }77 CacheStage78 deriving (Eq,Bits);80 //----------------------------------------------------------------------81 // Helper functions82 //----------------------------------------------------------------------84 function Bit#(AddrSz) getAddr( DataReq req );86 Bit#(AddrSz) addr = ?;87 case ( req ) matches88 tagged LoadReq .ld : addr = ld.addr;89 tagged StoreReq .st : addr = st.addr;90 endcase92 return addr;94 endfunction96 function CacheLineIndex getCacheLineIndex( DataReq req );97 Bit#(AddrSz) addr = getAddr(req);98 Bit#(CacheLineIndexSz) index = truncate( addr >> 2 );99 return index;100 endfunction102 function CacheLineTag getCacheLineTag( DataReq req );103 Bit#(AddrSz) addr = getAddr(req);104 Bit#(CacheLineTagSz) tag = truncate( addr >> fromInteger(valueOf(CacheLineIndexSz)) >> 2 );105 return tag;106 endfunction108 function Bit#(AddrSz) getCacheLineAddr( DataReq req );109 Bit#(AddrSz) addr = getAddr(req);110 return ((addr >> 2) << 2);111 endfunction113 //----------------------------------------------------------------------114 // Main module115 //----------------------------------------------------------------------117 (* doc = "synthesis attribute ram_style mkDataCache distributed;" *)118 (* synthesize *)119 module mkDataCache( DCache#(DataReq,DataResp) );121 //-----------------------------------------------------------122 // State124 Reg#(CacheStage) stage <- mkReg(Init);126 RegFile#(CacheLineIndex,Maybe#(CacheLineTag)) cacheTagRam <- mkRegFileFull();127 RegFile#(CacheLineIndex,CacheLine) cacheDataRam <- mkRegFileFull();129 FIFO#(DataReq) reqQ <- mkFIFO();130 FIFOF#(DataResp) respQ <- mkBFIFOF1();132 FIFO#(MainMemReq) mainMemReqQ <- mkBFIFO1();133 FIFO#(MainMemResp) mainMemRespQ <- mkFIFO();135 Reg#(CacheLineIndex) initCounter <- mkReg(1);137 // Statistics state139 Reg#(Bool) statsEn <- mkReg(False);141 Reg#(Stat) num_accesses <- mkReg(0);142 Reg#(Stat) num_misses <- mkReg(0);143 Reg#(Stat) num_writebacks <- mkReg(0);145 //-----------------------------------------------------------146 // Name some wires148 let req = reqQ.first();149 let reqIndex = getCacheLineIndex(req);150 let reqTag = getCacheLineTag(req);151 let reqCacheLineAddr = getCacheLineAddr(req);153 //-----------------------------------------------------------154 // Initialize156 rule init ( stage == Init );157 traceTiny("mkDataCacheBlocking", "stage","i");158 initCounter <= initCounter + 1;159 cacheTagRam.upd(initCounter,Invalid);160 if ( initCounter == 0 )161 stage <= Access;162 endrule164 //-----------------------------------------------------------165 // Access cache rule167 rule access ( (stage == Access) && respQ.notFull() );169 // Statistics171 if ( statsEn )172 num_accesses <= num_accesses + 1;175 // Get the corresponding tag from the rams177 Maybe#(CacheLineTag) cacheLineTag = cacheTagRam.sub(reqIndex);179 // Handle cache hits ...181 if ( isValid(cacheLineTag) && ( unJust(cacheLineTag) == reqTag ) )182 begin183 traceTiny("mkDataCacheBlocking", "hitMiss","h");184 reqQ.deq();186 case ( req ) matches188 tagged LoadReq .ld :189 respQ.enq( LoadResp { tag: ld.tag, data: cacheDataRam.sub(reqIndex) } );191 tagged StoreReq .st :192 begin193 respQ.enq( StoreResp { tag : st.tag } );194 cacheDataRam.upd(reqIndex,st.data);195 end197 endcase199 end201 // Handle cache misses ...203 else204 begin205 traceTiny("mkDataCacheBlocking", "hitMiss","m");206 if ( statsEn )207 num_misses <= num_misses + 1;209 // Currently we don't use dirty bits so we always writeback the data if it is valid211 if ( isValid(cacheLineTag) )212 begin214 if ( statsEn )215 num_writebacks <= num_writebacks + 1;217 MainMemReq wbReq218 = StoreReq { tag : 0,219 addr : { unJust(cacheLineTag), reqIndex, 2'b0 },220 data : cacheDataRam.sub(reqIndex) };222 mainMemReqQ.enq(wbReq);223 stage <= RefillReq;224 end226 // Otherwise we can issue the refill request now228 else229 begin230 mainMemReqQ.enq( LoadReq { tag: 0, addr: reqCacheLineAddr } );231 stage <= RefillResp;232 end234 end236 endrule238 //-----------------------------------------------------------239 // Refill request rule241 rule refillReq ( stage == RefillReq );242 traceTiny("mkDataCacheBlocking", "stage","r");243 mainMemReqQ.enq( LoadReq { tag: 0, addr: reqCacheLineAddr } );244 stage <= RefillResp;245 endrule247 //-----------------------------------------------------------248 // Refill response rule250 rule refillResp ( stage == RefillResp );251 traceTiny("mkDataCacheBlocking", "stage","R");252 traceTiny("mkDataCacheBlocking", "refill",mainMemRespQ.first());254 // Write the new data into the cache and update the tag256 mainMemRespQ.deq();257 case ( mainMemRespQ.first() ) matches259 tagged LoadResp .ld :260 begin261 cacheTagRam.upd(reqIndex,Valid(reqTag));262 cacheDataRam.upd(reqIndex,ld.data);263 end265 tagged StoreResp .st :266 noAction;268 endcase270 stage <= Access;271 endrule273 //-----------------------------------------------------------274 // Methods276 interface Client mmem_client;277 interface Get request = toGet(mainMemReqQ);278 interface Put response = toPut(mainMemRespQ);279 endinterface281 interface Server proc_server;282 interface Put request = tracePut("mkDataCacheBlocking", "reqTiny",toPut(reqQ));283 interface Get response = traceGet("mkDataCacheBlocking", "respTiny",toGet(respQ));284 endinterface286 interface Put statsEn_put = toPut(asReg(statsEn));288 interface DCacheStats stats;289 interface Get num_accesses = toGet(asReg(num_accesses));290 interface Get num_misses = toGet(asReg(num_misses));291 interface Get num_writebacks = toGet(asReg(num_writebacks));292 endinterface294 endmodule