Mercurial > pygar
view modules/bluespec/Pygar/lab4/MemArb.bsv @ 31:f41eef1bebfc pygar svn.32
[svn r32] Attempting to run soft core and audio
author | punk |
---|---|
date | Sat, 01 May 2010 11:50:20 -0400 |
parents | 3958de09a7c1 |
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 FIFOF::*;27 import FIFO::*;28 import Trace::*;30 // Local includes31 `include "asim/provides/processor_library.bsh"33 interface MemArb;35 interface Server#(MainMemReq,MainMemResp) cache0_server;36 interface Server#(MainMemReq,MainMemResp) cache1_server;37 interface Client#(MainMemReq,MainMemResp) mmem_client;39 endinterface41 typedef enum { REQ0, REQ1 } ReqPtr deriving(Eq,Bits);43 module mkMemArb( MemArb );45 //-----------------------------------------------------------46 // State48 FIFOF#(MainMemReq) req0Q <- mkBFIFOF1();49 FIFO#(MainMemResp) resp0Q <- mkBFIFO1();51 FIFOF#(MainMemReq) req1Q <- mkBFIFOF1();52 FIFO#(MainMemResp) resp1Q <- mkBFIFO1();54 FIFO#(MainMemReq) mreqQ <- mkBFIFO1();55 FIFO#(MainMemResp) mrespQ <- mkBFIFO1();57 Reg#(ReqPtr) nextReq <- mkReg(REQ0);59 //-----------------------------------------------------------60 // Some wires62 let req0avail = req0Q.notEmpty();63 let req1avail = req1Q.notEmpty();65 //-----------------------------------------------------------66 // Rules68 rule chooseReq0 ( req0avail && (!req1avail || (nextReq == REQ0)) );69 traceTiny("mkMemArb", "memArb req0",req0Q.first());71 // Rewrite tag field if this is a load ...72 MainMemReq mreq73 = case ( req0Q.first() ) matches74 tagged LoadReq .ld : return LoadReq { tag:0, addr:ld.addr };75 tagged StoreReq .st : return req0Q.first();76 endcase;78 // Send out the request79 mreqQ.enq(mreq);80 nextReq <= REQ1;81 req0Q.deq();83 endrule85 rule chooseReq1 ( req1avail && (!req0avail || (nextReq == REQ1)) );86 traceTiny("mkMemArb", "memArb req1",req1Q.first);88 // Rewrite tag field if this is a load ...89 MainMemReq mreq90 = case ( req1Q.first() ) matches91 tagged LoadReq .ld : return LoadReq { tag:1, addr:ld.addr };92 tagged StoreReq .st : return req1Q.first();93 endcase;95 // Send out the request96 mreqQ.enq(mreq);97 nextReq <= REQ0;98 req1Q.deq();100 endrule102 rule returnResp;103 traceTiny("mkMemArb", "resp",mrespQ.first());105 // Use tag to figure out where to send response106 mrespQ.deq();107 let tag108 = case ( mrespQ.first() ) matches109 tagged LoadResp .ld : return ld.tag;110 tagged StoreResp .st : return st.tag;111 endcase;113 if ( tag == 0 )114 resp0Q.enq(mrespQ.first());115 else116 resp1Q.enq(mrespQ.first());118 endrule120 //-----------------------------------------------------------121 // Methods123 interface Server cache0_server;124 interface Put request = fifofToPut(req0Q);125 interface Get response = fifoToGet(resp0Q);126 endinterface128 interface Server cache1_server;129 interface Put request = fifofToPut(req1Q);130 interface Get response = fifoToGet(resp1Q);131 endinterface133 interface Client mmem_client;134 interface Get request = fifoToGet(mreqQ);135 interface Put response = fifoToPut(mrespQ);136 endinterface138 endmodule