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

Subversion Repositories axi_slave

[/] [axi_slave/] [trunk/] [src/] [base/] [axi_slave_rd_buff.v] - Diff between revs 2 and 13

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

Rev 2 Rev 13
/////////////////////////////////////////////////////////////////////
<##//////////////////////////////////////////////////////////////////
////                                                             ////
////                                                             ////
////  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_rd_buff.v
OUTFILE PREFIX_rd_buff.v
 
 
INCLUDE def_axi_slave.txt
INCLUDE def_axi_slave.txt
 
 
module PREFIX_rd_buff(PORTS);
module PREFIX_rd_buff(PORTS);
 
 
   input                      clk;
   input                      clk;
   input                      reset;
   input                      reset;
 
 
   output                     RD;
   output                     RD;
   input [DATA_BITS-1:0]      DOUT;
   input [DATA_BITS-1:0]      DOUT;
 
 
   input [LEN_BITS-1:0]       rcmd_len;
   input [LEN_BITS-1:0]       rcmd_len;
   input [LEN_BITS-1:0]       rcmd_len2;
   input [LEN_BITS-1:0]       rcmd_len2;
   input [1:0]                 rcmd_resp;
   input [1:0]                 rcmd_resp;
   input                      rcmd_timeout;
   input                      rcmd_timeout;
   input                      rcmd_ready;
   input                      rcmd_ready;
 
 
   output                     RVALID;
   output                     RVALID;
   input                      RREADY;
   input                      RREADY;
   output                     RLAST;
   output                     RLAST;
   output [DATA_BITS-1:0]     RDATA;
   output [DATA_BITS-1:0]     RDATA;
   output [1:0]        RRESP;
   output [1:0]        RRESP;
   output                     RD_last;
   output                     RD_last;
 
 
   input                      RBUSY;
   input                      RBUSY;
 
 
 
 
 
 
   reg [LEN_BITS:0]            valid_counter;
   reg [LEN_BITS:0]            valid_counter;
   reg [LEN_BITS-1:0]          rd_counter;
   reg [LEN_BITS-1:0]          rd_counter;
   wire                       cmd_pending;
   wire                       cmd_pending;
   reg                        RVALID;
   reg                        RVALID;
   reg [1:0]                   RRESP;
   reg [1:0]                   RRESP;
   wire                       last_rd;
   wire                       last_rd;
 
 
 
 
   assign                     cmd_pending = RVALID & (~RREADY);
   assign                     cmd_pending = RVALID & (~RREADY);
 
 
   assign                     RDATA   = DOUT;
   assign                     RDATA   = DOUT;
 
 
 
 
   assign                     RD      = rcmd_ready & (~cmd_pending) & (~RBUSY) & (~rcmd_timeout);
   assign                     RD      = rcmd_ready & (~cmd_pending) & (~RBUSY) & (~rcmd_timeout);
 
 
   assign                     RD_last = RD & (rd_counter == rcmd_len);
   assign                     RD_last = RD & (rd_counter == rcmd_len);
 
 
   assign                     RLAST   = RVALID & (valid_counter == rcmd_len2 + 1'b1);
   assign                     RLAST   = RVALID & (valid_counter == rcmd_len2 + 1'b1);
 
 
 
 
 
 
   always @(posedge clk or posedge reset)
   always @(posedge clk or posedge reset)
     if (reset)
     if (reset)
       RRESP <= #FFD 2'b00;
       RRESP <= #FFD 2'b00;
     else if (RD)
     else if (RD)
       RRESP <= #FFD rcmd_resp;
       RRESP <= #FFD rcmd_resp;
 
 
   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 (RD)
     else if (RD)
       RVALID <= #FFD 1'b1;
       RVALID <= #FFD 1'b1;
     else if (RVALID & RREADY)
     else if (RVALID & RREADY)
       RVALID <= #FFD 1'b0;
       RVALID <= #FFD 1'b0;
 
 
 
 
   always @(posedge clk or posedge reset)
   always @(posedge clk or posedge reset)
     if (reset)
     if (reset)
       valid_counter <= #FFD {LEN_BITS+1{1'b0}};
       valid_counter <= #FFD {LEN_BITS+1{1'b0}};
     else if (RVALID & RREADY & RLAST & RD)
     else if (RVALID & RREADY & RLAST & RD)
       valid_counter <= #FFD 'd1;
       valid_counter <= #FFD 'd1;
     else if (RVALID & RREADY & RLAST)
     else if (RVALID & RREADY & RLAST)
       valid_counter <= #FFD {LEN_BITS+1{1'b0}};
       valid_counter <= #FFD {LEN_BITS+1{1'b0}};
     else if (RD)
     else if (RD)
       valid_counter <= #FFD valid_counter + 1'b1;
       valid_counter <= #FFD valid_counter + 1'b1;
 
 
   always @(posedge clk or posedge reset)
   always @(posedge clk or posedge reset)
     if (reset)
     if (reset)
       rd_counter <= #FFD {LEN_BITS{1'b0}};
       rd_counter <= #FFD {LEN_BITS{1'b0}};
     else if (RD_last)
     else if (RD_last)
       rd_counter <= #FFD {LEN_BITS{1'b0}};
       rd_counter <= #FFD {LEN_BITS{1'b0}};
     else if (RD)
     else if (RD)
       rd_counter <= #FFD rd_counter + 1'b1;
       rd_counter <= #FFD rd_counter + 1'b1;
 
 
 
 
endmodule
endmodule
 
 
 
 
 
 

powered by: WebSVN 2.1.0

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