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

Subversion Repositories axi_master

[/] [axi_master/] [trunk/] [src/] [base/] [ic_decerr.v] - Blame information for rev 7

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 eyalhoc
<##//////////////////////////////////////////////////////////////////
2
////                                                             ////
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
//////////////////////////////////////////////////////////////////##>
29
 
30
OUTFILE PREFIX_ic_decerr.v
31
 
32
module PREFIX_ic_decerr(PORTS);
33
 
34
   input                          clk;
35
   input                          reset;
36
 
37
   input                          AWIDOK;
38
   input                          ARIDOK;
39
   port                           GROUP_IC_AXI;
40
 
41
 
42
   parameter                      RESP_SLVERR = 2'b10;
43
   parameter                      RESP_DECERR = 2'b11;
44
 
45
 
46
   reg                            AWREADY;
47
   reg [ID_BITS-1:0]               BID;
48
   reg [1:0]                       BRESP;
49
   reg                            BVALID;
50
   reg                            ARREADY;
51
   reg [ID_BITS-1:0]               RID;
52
   reg [1:0]                       RRESP;
53
   reg                            RVALID;
54 7 eyalhoc
   reg [4-1:0]                    rvalid_cnt;
55 2 eyalhoc
 
56
 
57 7 eyalhoc
IFDEF TRUE (USER_BITS>0)
58 2 eyalhoc
   assign                         BUSER = 'd0;
59
   assign                         RUSER = 'd0;
60 7 eyalhoc
ENDIF TRUE (USER_BITS>0)
61
 
62 2 eyalhoc
   assign                         RDATA = {DATA_BITS{1'b0}};
63
 
64
 
65
   //WRITE
66
   assign                         WREADY = 1'b1;
67
 
68
   always @(posedge clk or posedge reset)
69
     if (reset)
70
       begin
71
          AWREADY <= #FFD 1'b1;
72
          BID     <= #FFD {ID_BITS{1'b0}};
73
          BRESP   <= #FFD 2'b00;
74
       end
75
     else if (BVALID & BREADY)
76
       begin
77
          AWREADY <= #FFD 1'b1;
78
       end
79
     else if (AWVALID & AWREADY)
80
       begin
81
          AWREADY <= #FFD 1'b0;
82
          BID     <= #FFD AWID;
83
          BRESP   <= #FFD AWIDOK ? RESP_DECERR : RESP_SLVERR;
84
       end
85
 
86
   always @(posedge clk or posedge reset)
87
     if (reset)
88
       BVALID <= #FFD 1'b0;
89
     else if (WVALID & WREADY & WLAST)
90
       BVALID <= #FFD 1'b1;
91
     else if (BVALID & BREADY)
92
       BVALID <= #FFD 1'b0;
93
 
94
 
95
   //READ   
96
   always @(posedge clk or posedge reset)
97
     if (reset)
98
       begin
99
          ARREADY <= #FFD 1'b1;
100
          RID     <= #FFD {ID_BITS{1'b0}};
101
          RRESP   <= #FFD 2'b00;
102
       end
103
     else if (RVALID & RREADY & RLAST)
104
       begin
105
          ARREADY <= #FFD 1'b1;
106
       end
107
     else if (ARVALID & ARREADY)
108
       begin
109
          ARREADY <= #FFD 1'b0;
110
          RID     <= #FFD ARID;
111
          RRESP   <= #FFD ARIDOK ? RESP_DECERR : RESP_SLVERR;
112
       end
113
 
114
 
115
   always @(posedge clk or posedge reset)
116
     if (reset)
117
       rvalid_cnt <= #FFD {4{1'b0}};
118
     else if (RVALID & RREADY & RLAST)
119
       rvalid_cnt <= #FFD {4{1'b0}};
120
     else if (RVALID & RREADY)
121
       rvalid_cnt <= #FFD rvalid_cnt - 1'b1;
122
     else if (ARVALID & ARREADY)
123
       rvalid_cnt <= #FFD ARLEN;
124
 
125
 
126
   always @(posedge clk or posedge reset)
127
     if (reset)
128
       RVALID <= #FFD 1'b0;
129
     else if (RVALID & RREADY & RLAST)
130
       RVALID <= #FFD 1'b0;
131
     else if (ARVALID & ARREADY)
132
       RVALID <= #FFD 1'b1;
133
 
134
   assign RLAST = (rvalid_cnt == 'd0) & RVALID;
135
 
136
 
137
 
138
 
139
 
140
 
141
endmodule
142
 
143
 

powered by: WebSVN 2.1.0

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