1 |
3 |
jamey.hick |
|
2 |
83 |
jamey.hick |
// The MIT License
|
3 |
|
|
|
4 |
|
|
// Copyright (c) 2006-2007 Massachusetts Institute of Technology
|
5 |
|
|
|
6 |
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
7 |
|
|
// of this software and associated documentation files (the "Software"), to deal
|
8 |
|
|
// in the Software without restriction, including without limitation the rights
|
9 |
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10 |
|
|
// copies of the Software, and to permit persons to whom the Software is
|
11 |
|
|
// furnished to do so, subject to the following conditions:
|
12 |
|
|
|
13 |
|
|
// The above copyright notice and this permission notice shall be included in
|
14 |
|
|
// all copies or substantial portions of the Software.
|
15 |
|
|
|
16 |
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17 |
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19 |
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20 |
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21 |
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
22 |
|
|
// THE SOFTWARE.
|
23 |
|
|
|
24 |
|
|
|
25 |
3 |
jamey.hick |
package IMemClientBackend;
|
26 |
|
|
|
27 |
|
|
|
28 |
|
|
import MemControllerTypes::*;
|
29 |
|
|
import IMemClient::*;
|
30 |
|
|
import FIFOF::*;
|
31 |
|
|
|
32 |
|
|
interface IMemClientBackend#(type addr_type, type data_type);
|
33 |
|
|
interface IMemClient#(addr_type, data_type) client_interface;
|
34 |
|
|
interface FIFOF#(MemReq#(addr_type, data_type)) request_fifo; // Probably should change this...
|
35 |
|
|
method PRIORITY_LEVEL get_priority();
|
36 |
|
|
method Action enqueue_response(data_type data_in);
|
37 |
|
|
endinterface
|
38 |
|
|
|
39 |
|
|
endpackage
|