punk@33
|
1 // The MIT License
|
punk@33
|
2
|
punk@33
|
3 // Copyright (c) 2009 Massachusetts Institute of Technology
|
punk@33
|
4
|
punk@33
|
5 // Permission is hereby granted, free of charge, to any person obtaining a copy
|
punk@33
|
6 // of this software and associated documentation files (the "Software"), to deal
|
punk@33
|
7 // in the Software without restriction, including without limitation the rights
|
punk@33
|
8 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
punk@33
|
9 // copies of the Software, and to permit persons to whom the Software is
|
punk@33
|
10 // furnished to do so, subject to the following conditions:
|
punk@33
|
11
|
punk@33
|
12 // The above copyright notice and this permission notice shall be included in
|
punk@33
|
13 // all copies or substantial portions of the Software.
|
punk@33
|
14
|
punk@33
|
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
punk@33
|
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
punk@33
|
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
punk@33
|
18 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
punk@33
|
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
punk@33
|
20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
punk@33
|
21 // THE SOFTWARE.
|
punk@33
|
22
|
punk@33
|
23 import Connectable::*;
|
punk@33
|
24 import GetPut::*;
|
punk@33
|
25 import ClientServer::*;
|
punk@33
|
26 import Processor::*;
|
punk@33
|
27 import MemArb::*;
|
punk@33
|
28 import MemTypes::*;
|
punk@33
|
29
|
punk@33
|
30 //AWB includes
|
punk@33
|
31 `include "asim/provides/low_level_platform_interface.bsh"
|
punk@33
|
32 `include "asim/provides/soft_connections.bsh"
|
punk@33
|
33 `include "asim/provides/common_services.bsh"
|
punk@33
|
34
|
punk@33
|
35 // Local includes
|
punk@33
|
36 `include "asim/provides/processor_library.bsh"
|
punk@33
|
37 `include "asim/provides/processor.bsh"
|
punk@33
|
38 `include "asim/provides/audio_pipe_types.bsh"
|
punk@33
|
39
|
punk@33
|
40 interface Core;
|
punk@33
|
41
|
punk@33
|
42 // Interface from core to main memory
|
punk@33
|
43 interface Client#(MainMemReq,MainMemResp) mmem_client;
|
punk@33
|
44
|
punk@33
|
45 interface Get#(AudioProcessorUnit) sampleOutput;
|
punk@33
|
46
|
punk@33
|
47 endinterface
|
punk@33
|
48
|
punk@33
|
49 module [CONNECTED_MODULE] mkCore( Core );
|
punk@33
|
50
|
punk@33
|
51 // Instantiate the modules
|
punk@33
|
52
|
punk@33
|
53 Proc proc <- mkProc();
|
punk@33
|
54 ICache#(InstReq,InstResp) icache <- mkInstCache();
|
punk@33
|
55 DCache#(DataReq,DataResp) dcache <- mkDataCache();
|
punk@33
|
56 MemArb marb <- mkMemArb();
|
punk@33
|
57
|
punk@33
|
58 // Internal connections
|
punk@33
|
59
|
punk@33
|
60 interface sampleOutput = proc.sampleOutput;
|
punk@33
|
61
|
punk@33
|
62 endmodule
|