1 |
4 |
robfinch |
// ============================================================================
|
2 |
|
|
// __
|
3 |
|
|
// \\__/ o\ (C) 2015-2022 Robert Finch, Waterloo
|
4 |
|
|
// \ __ / All rights reserved.
|
5 |
|
|
// \/_// robfinch@finitron.ca
|
6 |
|
|
// ||
|
7 |
|
|
//
|
8 |
|
|
// BSD 3-Clause License
|
9 |
|
|
// Redistribution and use in source and binary forms, with or without
|
10 |
|
|
// modification, are permitted provided that the following conditions are met:
|
11 |
|
|
//
|
12 |
|
|
// 1. Redistributions of source code must retain the above copyright notice, this
|
13 |
|
|
// list of conditions and the following disclaimer.
|
14 |
|
|
//
|
15 |
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice,
|
16 |
|
|
// this list of conditions and the following disclaimer in the documentation
|
17 |
|
|
// and/or other materials provided with the distribution.
|
18 |
|
|
//
|
19 |
|
|
// 3. Neither the name of the copyright holder nor the names of its
|
20 |
|
|
// contributors may be used to endorse or promote products derived from
|
21 |
|
|
// this software without specific prior written permission.
|
22 |
|
|
//
|
23 |
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
24 |
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
25 |
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
26 |
|
|
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
27 |
|
|
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
28 |
|
|
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
29 |
|
|
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
30 |
|
|
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
31 |
|
|
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
32 |
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
33 |
|
|
//
|
34 |
|
|
// ============================================================================
|
35 |
|
|
//
|
36 |
|
|
package mpmc9_pkg;
|
37 |
|
|
|
38 |
|
|
parameter RMW = 0;
|
39 |
|
|
parameter NAR = 2;
|
40 |
|
|
parameter AMSB = 28;
|
41 |
|
|
parameter TRUE = 1'b1;
|
42 |
|
|
parameter FALSE = 1'b0;
|
43 |
|
|
parameter CMD_READ = 3'b001;
|
44 |
|
|
parameter CMD_WRITE = 3'b000;
|
45 |
|
|
// State machine states
|
46 |
|
|
parameter IDLE = 4'd0;
|
47 |
|
|
parameter PRESET1 = 4'd1;
|
48 |
|
|
parameter PRESET2 = 4'd2;
|
49 |
|
|
parameter WRITE_DATA0 = 4'd3;
|
50 |
|
|
parameter WRITE_DATA1 = 4'd4;
|
51 |
|
|
parameter WRITE_DATA2 = 4'd5;
|
52 |
|
|
parameter WRITE_DATA3 = 4'd7;
|
53 |
|
|
parameter READ_DATA0 = 4'd8;
|
54 |
|
|
parameter READ_DATA1 = 4'd9;
|
55 |
|
|
parameter READ_DATA2 = 4'd10;
|
56 |
|
|
parameter WAIT_NACK = 4'd11;
|
57 |
|
|
parameter WRITE_TRAMP = 4'd12; // write trampoline
|
58 |
|
|
parameter WRITE_TRAMP1 = 4'd13;
|
59 |
|
|
parameter PRESET3 = 4'd14;
|
60 |
|
|
|
61 |
|
|
endpackage
|