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

Subversion Repositories robust_axi2apb

[/] [robust_axi2apb/] [trunk/] [src/] [base/] [axi2apb_wr.v] - Blame information for rev 13

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 13 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 4 eyalhoc
 
30 2 eyalhoc
INCLUDE def_axi2apb.txt
31 8 eyalhoc
OUTFILE PREFIX_wr.v
32 2 eyalhoc
 
33 8 eyalhoc
module  PREFIX_wr (PORTS);
34 2 eyalhoc
 
35
   input                          clk;
36
   input                          reset;
37
 
38
   input                  GROUP_APB3;
39
 
40
   input                  cmd_err;
41
   input [ID_BITS-1:0]    cmd_id;
42
   output                 finish_wr;
43
 
44
   port                   WGROUP_APB_AXI_W;
45
   port                   BGROUP_APB_AXI_B;
46
 
47
 
48
   parameter              RESP_OK     = 2'b00;
49
   parameter              RESP_SLVERR = 2'b10;
50
   parameter              RESP_DECERR = 2'b11;
51
 
52
   reg                    BGROUP_APB_AXI_B.OUT;
53
 
54
 
55
   assign                 finish_wr = BVALID & BREADY;
56
 
57
   assign                 WREADY = psel & penable & pwrite & pready;
58
 
59
   always @(posedge clk or posedge reset)
60
     if (reset)
61
           begin
62
         BGROUP_APB_AXI_B.OUT <= #FFD {GROUP_APB_AXI_B.OUT.WIDTH{1'b0}};
63
           end
64
         else if (finish_wr)
65
           begin
66
         BGROUP_APB_AXI_B.OUT <= #FFD {GROUP_APB_AXI_B.OUT.WIDTH{1'b0}};
67
           end
68
         else if (psel & penable & pwrite & pready)
69
           begin
70
             BID    <= #FFD cmd_id;
71
                 BRESP  <= #FFD cmd_err ? RESP_SLVERR : pslverr ? RESP_DECERR : RESP_OK;
72
                 BVALID <= #FFD 1'b1;
73
           end
74
 
75
endmodule
76
 
77
 

powered by: WebSVN 2.1.0

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