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 8

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

powered by: WebSVN 2.1.0

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