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

Subversion Repositories ahb_master

[/] [ahb_master/] [trunk/] [src/] [base/] [axi2ahb_rd_fifo.v] - Blame information for rev 14

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 14 eyalhoc
<##//////////////////////////////////////////////////////////////////
2 8 eyalhoc
////                                                             ////
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 14 eyalhoc
//////////////////////////////////////////////////////////////////##>
29 2 eyalhoc
 
30
INCLUDE def_axi2ahb.txt
31 10 eyalhoc
OUTFILE PREFIX_rd_fifo.v
32 2 eyalhoc
 
33 10 eyalhoc
module  PREFIX_rd_fifo (PORTS);
34 2 eyalhoc
 
35
   parameter              FIFO_LINES = EXPR(2 * 16); //double buffer of max burst
36
   parameter              RESP_SLVERR = 2'b10;
37
 
38
   input                  clk;
39
   input                  reset;
40
 
41
   port                   RGROUP_AXI_R;
42
   input [DATA_BITS-1:0]  HRDATA;
43
   input                  HREADY;
44
   input [1:0]            HTRANS;
45
   input                  HRESP;
46
 
47
   input [ID_BITS-1:0]    cmd_id;
48
   input                  cmd_err;
49
   input                  rdata_phase;
50
   output                 rdata_ready;
51
   input                  data_last;
52
 
53
 
54
   wire                   data_push;
55
   wire                   data_pop;
56
   wire                   data_empty;
57
   wire                   data_full;
58
 
59
   reg                    RVALID;
60
 
61
   reg [LOG2(CMD_DEPTH):0] burst_cnt;
62
 
63
   wire                   axi_last;
64
   wire                   ahb_last;
65
   wire [1:0]             cmd_resp;
66
 
67
 
68
   assign                 cmd_resp = cmd_err | HRESP ? RESP_SLVERR : 2'b00;
69
 
70
   assign                 rdata_ready = burst_cnt < 'd2;
71
 
72
   assign                 data_push = rdata_phase & HREADY;
73
   assign                 data_pop = RVALID & RREADY;
74
 
75
   assign                 axi_last = RVALID & RREADY & RLAST;
76
   assign                 ahb_last = rdata_phase & data_last;
77
 
78
   always @(posedge clk or posedge reset)
79
     if (reset)
80
       burst_cnt <= #FFD 'd0;
81
     else if (axi_last | ahb_last)
82
       burst_cnt <= #FFD burst_cnt - axi_last + ahb_last;
83
 
84
   prgen_fifo #(DATA_BITS+ID_BITS+2+1, FIFO_LINES)
85
   data_fifo(
86
            .clk(clk),
87
            .reset(reset),
88
            .push(data_push),
89
            .pop(data_pop),
90
            .din({HRDATA,
91
                  cmd_id,
92
                  cmd_resp,
93
                  ahb_last
94
                  }
95
                 ),
96
            .dout({RDATA,
97
                   RID,
98
                   RRESP,
99
                   RLAST
100
                   }
101
                  ),
102
            .empty(data_empty),
103
            .full(data_full)
104
            );
105
 
106
 
107
   always @(posedge clk or posedge reset)
108
     if (reset)
109
       RVALID <= #FFD 1'b0;
110
     else if (axi_last)
111
       RVALID <= #FFD 1'b0;
112
     else if (burst_cnt > 'd0)
113
       RVALID <= #FFD 1'b1;
114
     else
115
       RVALID <= #FFD 1'b0;
116
 
117
 
118
endmodule
119
 
120
 

powered by: WebSVN 2.1.0

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