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

Subversion Repositories robust_axi_fabric

[/] [robust_axi_fabric/] [trunk/] [src/] [base/] [ic_resp.v] - Diff between revs 7 and 23

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

Rev 7 Rev 23
<##//////////////////////////////////////////////////////////////////
<##//////////////////////////////////////////////////////////////////
////                                                             ////
////                                                             ////
////  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              ////
////                                                             ////
////                                                             ////
//////////////////////////////////////////////////////////////////##>
//////////////////////////////////////////////////////////////////##>
 
 
OUTFILE PREFIX_ic_resp.v
OUTFILE PREFIX_ic_resp.v
 
 
ITER MX
ITER MX
ITER SX
ITER SX
 
 
module PREFIX_ic_resp (PORTS);
module PREFIX_ic_resp (PORTS);
 
 
   parameter                              STRB_BITS  = DATA_BITS/8;
   parameter                              STRB_BITS  = DATA_BITS/8;
 
 
   input                                      clk;
   input                                      clk;
   input                                      reset;
   input                                      reset;
 
 
   port                                       MMX_AGROUP_IC_AXI_CMD;
   port                                       MMX_AGROUP_IC_AXI_CMD;
   port                                       MMX_GROUP_IC_AXI_R;
   port                                       MMX_GROUP_IC_AXI_R;
   revport                                    SSX_GROUP_IC_AXI_R;
   revport                                    SSX_GROUP_IC_AXI_R;
 
 
 
 
   parameter                              RBUS_WIDTH = GONCAT(GROUP_IC_AXI_R.OUT.WIDTH +);
   parameter                              RBUS_WIDTH = GONCAT(GROUP_IC_AXI_R.OUT.WIDTH +);
 
 
   wire                                       SSX_req;
   wire                                       SSX_req;
 
 
   wire [RBUS_WIDTH-1:0]           SSX_RBUS;
   wire [RBUS_WIDTH-1:0]           SSX_RBUS;
 
 
   wire [RBUS_WIDTH-1:0]           MMX_RBUS;
   wire [RBUS_WIDTH-1:0]           MMX_RBUS;
 
 
   wire                                       SSX_MMX;
   wire                                       SSX_MMX;
 
 
   wire [MSTR_BITS-1:0]    SSX_MSTR;
   wire [MSTR_BITS-1:0]    SSX_MSTR;
   wire                                       SSX_OK;
   wire                                       SSX_OK;
 
 
   wire [SLVS-1:0]                         MMX_slave;
   wire [SLVS-1:0]                         MMX_slave;
 
 
 
 
 
 
 
 
 
 
   CREATE ic_registry_resp.v def_ic.txt
   CREATE ic_registry_resp.v def_ic.txt
   PREFIX_ic_registry_resp
   PREFIX_ic_registry_resp
     PREFIX_ic_registry_resp (
     PREFIX_ic_registry_resp (
                              .clk(clk),
                              .clk(clk),
                              .reset(reset),
                              .reset(reset),
                              .MMX_ASLV(MMX_ASLV),
                              .MMX_ASLV(MMX_ASLV),
                              .MMX_AID(MMX_AID),
                              .MMX_AID(MMX_AID),
                              .MMX_AVALID(MMX_AVALID),
                              .MMX_AVALID(MMX_AVALID),
                              .MMX_AREADY(MMX_AREADY),
                              .MMX_AREADY(MMX_AREADY),
                              .SSX_ID(SSX_ID),
                              .SSX_ID(SSX_ID),
                              .SSX_VALID(SSX_VALID),
                              .SSX_VALID(SSX_VALID),
                              .SSX_READY(SSX_READY),
                              .SSX_READY(SSX_READY),
                              .SSX_LAST(SSX_LAST),
                              .SSX_LAST(SSX_LAST),
                              .SSX_MSTR(SSX_MSTR),
                              .SSX_MSTR(SSX_MSTR),
                              .SSX_OK(SSX_OK),
                              .SSX_OK(SSX_OK),
                              STOMP ,
                              STOMP ,
                              );
                              );
 
 
 
 
   CREATE ic_arbiter.v def_ic.txt DEFCMD(SWAP MSTR_SLV slv) DEFCMD(SWAP MSTRNUM SLVS) DEFCMD(SWAP SLVNUM MSTRS) DEFCMD(DEFINE DEF_PRIO)
   CREATE ic_arbiter.v def_ic.txt DEFCMD(SWAP MSTR_SLV slv) DEFCMD(SWAP MSTRNUM SLVS) DEFCMD(SWAP SLVNUM MSTRS) DEFCMD(DEFINE DEF_PRIO)
   PREFIX_ic_slv_arbiter
   PREFIX_ic_slv_arbiter
   PREFIX_ic_slv_arbiter(
   PREFIX_ic_slv_arbiter(
                         .clk(clk),
                         .clk(clk),
                         .reset(reset),
                         .reset(reset),
 
 
                         .MSX_slave(SSX_MSTR),
                         .MSX_slave(SSX_MSTR),
 
 
                         .SMX_master(MMX_slave),
                         .SMX_master(MMX_slave),
 
 
                         .M_last({CONCAT(SSX_LAST ,)}),
                         .M_last({CONCAT(SSX_LAST ,)}),
                         .M_req({CONCAT(SSX_req ,)}),
                         .M_req({CONCAT(SSX_req ,)}),
                         .M_grant({CONCAT(SSX_READY ,)})
                         .M_grant({CONCAT(SSX_READY ,)})
                         );
                         );
 
 
 
 
   assign                                        SSX_req = SSX_VALID & SSX_OK;
   assign                                        SSX_req = SSX_VALID & SSX_OK;
 
 
   assign                                        SSX_MMX = MMX_slave[SX];
   assign                                        SSX_MMX = MMX_slave[SX];
 
 
 
 
   assign                                        SSX_RBUS   = {GONCAT(SSX_GROUP_IC_AXI_R.OUT ,)};
   assign                                        SSX_RBUS   = {GONCAT(SSX_GROUP_IC_AXI_R.OUT ,)};
 
 
   assign                                        {GONCAT(MMX_GROUP_IC_AXI_R.OUT ,)} = MMX_RBUS;
   assign                                        {GONCAT(MMX_GROUP_IC_AXI_R.OUT ,)} = MMX_RBUS;
 
 
   LOOP MX
   LOOP MX
     assign                                      MMX_RBUS = CONCAT((SSX_RBUS & {RBUS_WIDTH{SSX_MMX}}) |);
     assign                                      MMX_RBUS = CONCAT((SSX_RBUS & {RBUS_WIDTH{SSX_MMX}}) |);
 
 
   ENDLOOP MX
   ENDLOOP MX
 
 
 
 
   LOOP SX
   LOOP SX
       assign                                    SSX_READY = CONCAT((SSX_MMX & MMX_READY) |);
       assign                                    SSX_READY = CONCAT((SSX_MMX & MMX_READY) |);
 
 
   ENDLOOP SX
   ENDLOOP SX
 
 
endmodule
endmodule
 
 
 
 
 
 
 
 

powered by: WebSVN 2.1.0

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