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

Subversion Repositories ahb_master

[/] [ahb_master/] [trunk/] [src/] [base/] [def_axi2ahb_static.txt] - Blame information for rev 13

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 8 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 2 eyalhoc
 
30 9 eyalhoc
SWAP.GLOBAL MODEL_NAME AXI2AHB bridge
31 7 eyalhoc
 
32 13 eyalhoc
VERIFY (DATA_BITS in 32, 64)  ##Supports 32 or 64 bits data bus
33
VERIFY (SIZE_BITS in 2, 3) ##stub supports 32 or 64 bits data bus
34 2 eyalhoc
 
35
GROUP AXI_A is {
36
    ID       ID_BITS                input
37
    ADDR     ADDR_BITS              input
38
    LEN      4                      input
39 13 eyalhoc
    SIZE     SIZE_BITS              input
40 2 eyalhoc
    VALID    1                      input
41
    READY    1                      output
42
}
43
 
44
GROUP AXI_W is {
45
    ID        ID_BITS                input
46
    DATA      DATA_BITS              input
47
    STRB      DATA_BITS/8            input
48
    LAST      1                      input
49
    VALID     1                      input
50
    READY     1                      output
51
}
52
 
53
GROUP AXI_B is {
54
    ID        ID_BITS                output
55
    RESP      2                      output
56
    VALID     1                      output
57
    READY     1                      input
58
}
59
 
60
GROUP AXI_R is {
61
    ID        ID_BITS                output
62
    DATA      DATA_BITS              output
63
    RESP      2                      output
64
    LAST      1                      output
65
    VALID     1                      output
66
    READY     1                      input
67
}
68
 
69
GROUP AXI joins {
70
    GROUP AXI_A prefix_AW
71
    GROUP AXI_W prefix_W
72
    GROUP AXI_B prefix_B
73
    GROUP AXI_A prefix_AR
74
    GROUP AXI_R prefix_R
75
}
76
 
77
 
78
GROUP AHB is {
79
  HADDR   ADDR_BITS   input
80
  HBURST  3           input
81
  HSIZE   2           input
82
  HTRANS  2           input
83
  HWRITE  1           input
84
  HWDATA  DATA_BITS   input
85
  HRDATA  DATA_BITS   output
86
  HREADY  1           output
87
  HRESP   1           output
88
}

powered by: WebSVN 2.1.0

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