OpenCores
URL https://opencores.org/ocsvn/axi_master/axi_master/trunk

Subversion Repositories axi_master

[/] [axi_master/] [trunk/] [src/] [base/] [def_axi_master_static.txt] - Blame information for rev 6

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 eyalhoc
<##//////////////////////////////////////////////////////////////////
2
////                                                             ////
3
////  Author: Eyal Hochberg                                      ////
4
////          eyal@provartec.com                                 ////
5
////                                                             ////
6
////  Downloaded from: http://www.opencores.org                  ////
7
/////////////////////////////////////////////////////////////////////
8
////                                                             ////
9
//// Copyright (C) 2010 Provartec LTD                            ////
10
//// www.provartec.com                                           ////
11
//// info@provartec.com                                          ////
12
////                                                             ////
13
//// This source file may be used and distributed without        ////
14
//// restriction provided that this copyright statement is not   ////
15
//// removed from the file and that any derivative work contains ////
16
//// the original copyright notice and the associated disclaimer.////
17
////                                                             ////
18
//// This source file is free software; you can redistribute it  ////
19
//// and/or modify it under the terms of the GNU Lesser General  ////
20
//// Public License as published by the Free Software Foundation.////
21
////                                                             ////
22
//// This source is distributed in the hope that it will be      ////
23
//// useful, but WITHOUT ANY WARRANTY; without even the implied  ////
24
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR     ////
25
//// PURPOSE.  See the GNU Lesser General Public License for more////
26
//// details. http://www.gnu.org/licenses/lgpl.html              ////
27
////                                                             ////
28
//////////////////////////////////////////////////////////////////##>
29 6 eyalhoc
 
30
VERIFY (DATA_BITS <= 64) else stub supports 32 or 64 bits data bus
31
VERIFY (SIZE_BITS <= 3) else stub supports 32 or 64 bits data bus
32
 
33
GROUP STUB_AXI_A is {
34
    ID       ID_BITS                output
35
    ADDR     ADDR_BITS              output
36
    LEN      LEN_BITS               output
37
    SIZE     SIZE_BITS              output
38
    BURST    2                      output
39
    CACHE    4                      output
40
    PROT     3                      output
41
    LOCK     2                      output
42
    VALID    1                      output
43
    READY    1                      input
44
}
45
 
46
GROUP STUB_AXI_W is {
47
    ID        ID_BITS                output
48
    DATA      DATA_BITS              output
49
    STRB      DATA_BITS/8            output
50
    LAST      1                      output
51
    VALID     1                      output
52
    READY     1                      input
53
}
54
 
55
GROUP STUB_AXI_B is {
56
    ID        ID_BITS                input
57
    RESP      2                      input
58
    VALID     1                      input
59
    READY     1                      output
60
}
61
 
62
GROUP STUB_AXI_R is {
63
    ID        ID_BITS                input
64
    DATA      DATA_BITS              input
65
    RESP      2                      input
66
    LAST      1                      input
67
    VALID     1                      input
68
    READY     1                      output
69
}
70
 
71
GROUP STUB_AXI joins {
72
    GROUP STUB_AXI_A prefix_AW
73
    GROUP STUB_AXI_W prefix_W
74
    GROUP STUB_AXI_B prefix_B
75
    GROUP STUB_AXI_A prefix_AR
76
    GROUP STUB_AXI_R prefix_R
77
}
78
 
79
GROUP AXI_MASTER_RAND is {
80
   use_addr_base   SON(DEFAULT 0)
81
   len_min     SON(DEFAULT 0)
82
   len_max     SON(DEFAULT 15)
83
   size_min    SON(DEFAULT 0)
84
   size_max    SON(DEFAULT 3)
85
   addr_min    SON(DEFAULT 0)
86
   addr_max    SON(DEFAULT {DATA_BITS{1'b1}})
87
}
88 2 eyalhoc
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.