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

Subversion Repositories robust_axi2ahb

[/] [robust_axi2ahb/] [trunk/] [src/] [base/] [axi2ahb_rd_fifo.v] - Diff between revs 5 and 10

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

Rev 5 Rev 10
/////////////////////////////////////////////////////////////////////
<##//////////////////////////////////////////////////////////////////
////                                                             ////
////                                                             ////
////  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              ////
////                                                             ////
////                                                             ////
/////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////##>
 
 
INCLUDE def_axi2ahb.txt
INCLUDE def_axi2ahb.txt
OUTFILE PREFIX_rd_fifo.v
OUTFILE PREFIX_rd_fifo.v
 
 
module  PREFIX_rd_fifo (PORTS);
module  PREFIX_rd_fifo (PORTS);
 
 
   parameter              FIFO_LINES = EXPR(2 * 16); //double buffer of max burst
   parameter              FIFO_LINES = EXPR(2 * 16); //double buffer of max burst
   parameter              RESP_SLVERR = 2'b10;
   parameter              RESP_SLVERR = 2'b10;
 
 
   input                  clk;
   input                  clk;
   input                  reset;
   input                  reset;
 
 
   port                   RGROUP_AXI_R;
   port                   RGROUP_AXI_R;
   input [DATA_BITS-1:0]  HRDATA;
   input [DATA_BITS-1:0]  HRDATA;
   input                  HREADY;
   input                  HREADY;
   input [1:0]            HTRANS;
   input [1:0]            HTRANS;
   input                  HRESP;
   input                  HRESP;
 
 
   input [ID_BITS-1:0]    cmd_id;
   input [ID_BITS-1:0]    cmd_id;
   input                  cmd_err;
   input                  cmd_err;
   input                  rdata_phase;
   input                  rdata_phase;
   output                 rdata_ready;
   output                 rdata_ready;
   input                  data_last;
   input                  data_last;
 
 
 
 
   wire                   data_push;
   wire                   data_push;
   wire                   data_pop;
   wire                   data_pop;
   wire                   data_empty;
   wire                   data_empty;
   wire                   data_full;
   wire                   data_full;
 
 
   reg                    RVALID;
   reg                    RVALID;
 
 
   reg [LOG2(CMD_DEPTH):0] burst_cnt;
   reg [LOG2(CMD_DEPTH):0] burst_cnt;
 
 
   wire                   axi_last;
   wire                   axi_last;
   wire                   ahb_last;
   wire                   ahb_last;
   wire [1:0]             cmd_resp;
   wire [1:0]             cmd_resp;
 
 
 
 
   assign                 cmd_resp = cmd_err | HRESP ? RESP_SLVERR : 2'b00;
   assign                 cmd_resp = cmd_err | HRESP ? RESP_SLVERR : 2'b00;
 
 
   assign                 rdata_ready = burst_cnt < 'd2;
   assign                 rdata_ready = burst_cnt < 'd2;
 
 
   assign                 data_push = rdata_phase & HREADY;
   assign                 data_push = rdata_phase & HREADY;
   assign                 data_pop = RVALID & RREADY;
   assign                 data_pop = RVALID & RREADY;
 
 
   assign                 axi_last = RVALID & RREADY & RLAST;
   assign                 axi_last = RVALID & RREADY & RLAST;
   assign                 ahb_last = rdata_phase & data_last;
   assign                 ahb_last = rdata_phase & data_last;
 
 
   always @(posedge clk or posedge reset)
   always @(posedge clk or posedge reset)
     if (reset)
     if (reset)
       burst_cnt <= #FFD 'd0;
       burst_cnt <= #FFD 'd0;
     else if (axi_last | ahb_last)
     else if (axi_last | ahb_last)
       burst_cnt <= #FFD burst_cnt - axi_last + ahb_last;
       burst_cnt <= #FFD burst_cnt - axi_last + ahb_last;
 
 
   prgen_fifo #(DATA_BITS+ID_BITS+2+1, FIFO_LINES)
   prgen_fifo #(DATA_BITS+ID_BITS+2+1, FIFO_LINES)
   data_fifo(
   data_fifo(
            .clk(clk),
            .clk(clk),
            .reset(reset),
            .reset(reset),
            .push(data_push),
            .push(data_push),
            .pop(data_pop),
            .pop(data_pop),
            .din({HRDATA,
            .din({HRDATA,
                  cmd_id,
                  cmd_id,
                  cmd_resp,
                  cmd_resp,
                  ahb_last
                  ahb_last
                  }
                  }
                 ),
                 ),
            .dout({RDATA,
            .dout({RDATA,
                   RID,
                   RID,
                   RRESP,
                   RRESP,
                   RLAST
                   RLAST
                   }
                   }
                  ),
                  ),
            .empty(data_empty),
            .empty(data_empty),
            .full(data_full)
            .full(data_full)
            );
            );
 
 
 
 
   always @(posedge clk or posedge reset)
   always @(posedge clk or posedge reset)
     if (reset)
     if (reset)
       RVALID <= #FFD 1'b0;
       RVALID <= #FFD 1'b0;
     else if (axi_last)
     else if (axi_last)
       RVALID <= #FFD 1'b0;
       RVALID <= #FFD 1'b0;
     else if (burst_cnt > 'd0)
     else if (burst_cnt > 'd0)
       RVALID <= #FFD 1'b1;
       RVALID <= #FFD 1'b1;
     else
     else
       RVALID <= #FFD 1'b0;
       RVALID <= #FFD 1'b0;
 
 
 
 
endmodule
endmodule
 
 
 
 
 
 

powered by: WebSVN 2.1.0

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