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

Subversion Repositories apb_mstr

[/] [apb_mstr/] [trunk/] [src/] [base/] [def_axi_master_static.txt] - Diff between revs 11 and 12

Only display areas with differences | Details | Blame | View Log

Rev 11 Rev 12
<##//////////////////////////////////////////////////////////////////
<##//////////////////////////////////////////////////////////////////
////                                                             ////
////                                                             ////
////  Author: Eyal Hochberg                                      ////
////  Author: Eyal Hochberg                                      ////
////          eyal@provartec.com                                 ////
////          eyal@provartec.com                                 ////
////                                                             ////
////                                                             ////
////  Downloaded from: http://www.opencores.org                  ////
////  Downloaded from: http://www.opencores.org                  ////
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
////                                                             ////
////                                                             ////
//// Copyright (C) 2010 Provartec LTD                            ////
//// Copyright (C) 2010 Provartec LTD                            ////
//// www.provartec.com                                           ////
//// www.provartec.com                                           ////
//// info@provartec.com                                          ////
//// info@provartec.com                                          ////
////                                                             ////
////                                                             ////
//// This source file may be used and distributed without        ////
//// This source file may be used and distributed without        ////
//// restriction provided that this copyright statement is not   ////
//// restriction provided that this copyright statement is not   ////
//// removed from the file and that any derivative work contains ////
//// removed from the file and that any derivative work contains ////
//// the original copyright notice and the associated disclaimer.////
//// the original copyright notice and the associated disclaimer.////
////                                                             ////
////                                                             ////
//// This source file is free software; you can redistribute it  ////
//// This source file is free software; you can redistribute it  ////
//// and/or modify it under the terms of the GNU Lesser General  ////
//// and/or modify it under the terms of the GNU Lesser General  ////
//// Public License as published by the Free Software Foundation.////
//// Public License as published by the Free Software Foundation.////
////                                                             ////
////                                                             ////
//// This source is distributed in the hope that it will be      ////
//// This source is distributed in the hope that it will be      ////
//// useful, but WITHOUT ANY WARRANTY; without even the implied  ////
//// useful, but WITHOUT ANY WARRANTY; without even the implied  ////
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR     ////
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR     ////
//// PURPOSE.  See the GNU Lesser General Public License for more////
//// PURPOSE.  See the GNU Lesser General Public License for more////
//// details. http://www.gnu.org/licenses/lgpl.html              ////
//// details. http://www.gnu.org/licenses/lgpl.html              ////
////                                                             ////
////                                                             ////
//////////////////////////////////////////////////////////////////##>
//////////////////////////////////////////////////////////////////##>
 
 
SWAP.GLOBAL MODEL_NAME AXI master stub
SWAP.GLOBAL MODEL_NAME AXI master stub
VERIFY (DATA_BITS in 32, 64) ##stub supports 32 or 64 bits data bus
VERIFY (DATA_BITS in 32, 64) ##stub supports 32 or 64 bits data bus
VERIFY (SIZE_BITS in 2, 3) ##stub supports 32 or 64 bits data bus
VERIFY (SIZE_BITS in 2, 3) ##stub supports 32 or 64 bits data bus
GROUP STUB_AXI_A is {
GROUP STUB_AXI_A is {
    ID       ID_BITS                output
    ID       ID_BITS                output
    ADDR     ADDR_BITS              output
    ADDR     ADDR_BITS              output
    LEN      LEN_BITS               output
    LEN      LEN_BITS               output
    SIZE     SIZE_BITS              output
    SIZE     SIZE_BITS              output
    BURST    2                      output
    BURST    2                      output
    CACHE    4                      output
    CACHE    4                      output
    PROT     3                      output
    PROT     3                      output
    LOCK     2                      output
    LOCK     2                      output
    VALID    1                      output
    VALID    1                      output
    READY    1                      input
    READY    1                      input
}
}
GROUP STUB_AXI_W is {
GROUP STUB_AXI_W is {
    ID        ID_BITS                output
    ID        ID_BITS                output
    DATA      DATA_BITS              output
    DATA      DATA_BITS              output
    STRB      DATA_BITS/8            output
    STRB      DATA_BITS/8            output
    LAST      1                      output
    LAST      1                      output
    VALID     1                      output
    VALID     1                      output
    READY     1                      input
    READY     1                      input
}
}
GROUP STUB_AXI_B is {
GROUP STUB_AXI_B is {
    ID        ID_BITS                input
    ID        ID_BITS                input
    RESP      2                      input
    RESP      2                      input
    VALID     1                      input
    VALID     1                      input
    READY     1                      output
    READY     1                      output
}
}
GROUP STUB_AXI_R is {
GROUP STUB_AXI_R is {
    ID        ID_BITS                input
    ID        ID_BITS                input
    DATA      DATA_BITS              input
    DATA      DATA_BITS              input
    RESP      2                      input
    RESP      2                      input
    LAST      1                      input
    LAST      1                      input
    VALID     1                      input
    VALID     1                      input
    READY     1                      output
    READY     1                      output
}
}
GROUP STUB_AXI joins {
GROUP STUB_AXI joins {
    GROUP STUB_AXI_A prefix_AW
    GROUP STUB_AXI_A prefix_AW
    GROUP STUB_AXI_W prefix_W
    GROUP STUB_AXI_W prefix_W
    GROUP STUB_AXI_B prefix_B
    GROUP STUB_AXI_B prefix_B
    GROUP STUB_AXI_A prefix_AR
    GROUP STUB_AXI_A prefix_AR
    GROUP STUB_AXI_R prefix_R
    GROUP STUB_AXI_R prefix_R
}
}
GROUP AXI_MASTER_RAND is {
GROUP AXI_MASTER_RAND is {
   ahb_bursts   SON(DEFAULT 0)
   ahb_bursts   SON(DEFAULT 0)
   use_addr_base   SON(DEFAULT 0)
   use_addr_base   SON(DEFAULT 0)
   len_min     SON(DEFAULT 0)
   len_min     SON(DEFAULT 0)
   len_max     SON(DEFAULT 15)
   len_max     SON(DEFAULT 15)
   size_min    SON(DEFAULT 0)
   size_min    SON(DEFAULT 0)
   size_max    SON(DEFAULT 3)
   size_max    SON(DEFAULT 3)
   addr_min    SON(DEFAULT 0)
   addr_min    SON(DEFAULT 0)
   addr_max    SON(DEFAULT {DATA_BITS{1'b1}})
   addr_max    SON(DEFAULT {DATA_BITS{1'b1}})
}
}
SWAP ID_NUM GROUP_AXI_ID.NUM
SWAP ID_NUM GROUP_AXI_ID.NUM
 
 

powered by: WebSVN 2.1.0

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