<##//////////////////////////////////////////////////////////////////
|
<##//////////////////////////////////////////////////////////////////
|
//// ////
|
//// ////
|
//// 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_axi2apb.txt
|
INCLUDE def_axi2apb.txt
|
OUTFILE PREFIX_axi2apb_rd.v
|
OUTFILE PREFIX_rd.v
|
|
|
module PREFIX_axi2apb_rd (PORTS);
|
module PREFIX_rd (PORTS);
|
|
|
input clk;
|
input clk;
|
input reset;
|
input reset;
|
|
|
input GROUP_APB3;
|
input GROUP_APB3;
|
|
|
input cmd_err;
|
input cmd_err;
|
input [ID_BITS-1:0] cmd_id;
|
input [ID_BITS-1:0] cmd_id;
|
output finish_rd;
|
output finish_rd;
|
|
|
port RGROUP_APB_AXI_R;
|
port RGROUP_APB_AXI_R;
|
|
|
|
|
parameter RESP_OK = 2'b00;
|
parameter RESP_OK = 2'b00;
|
parameter RESP_SLVERR = 2'b10;
|
parameter RESP_SLVERR = 2'b10;
|
parameter RESP_DECERR = 2'b11;
|
parameter RESP_DECERR = 2'b11;
|
|
|
reg RGROUP_APB_AXI_R.OUT;
|
reg RGROUP_APB_AXI_R.OUT;
|
|
|
|
|
assign finish_rd = RVALID & RREADY & RLAST;
|
assign finish_rd = RVALID & RREADY & RLAST;
|
|
|
always @(posedge clk or posedge reset)
|
always @(posedge clk or posedge reset)
|
if (reset)
|
if (reset)
|
begin
|
begin
|
RGROUP_APB_AXI_R.OUT <= #FFD {GROUP_APB_AXI_R.OUT.WIDTH{1'b0}};
|
RGROUP_APB_AXI_R.OUT <= #FFD {GROUP_APB_AXI_R.OUT.WIDTH{1'b0}};
|
end
|
end
|
else if (finish_rd)
|
else if (finish_rd)
|
begin
|
begin
|
RGROUP_APB_AXI_R.OUT <= #FFD {GROUP_APB_AXI_R.OUT.WIDTH{1'b0}};
|
RGROUP_APB_AXI_R.OUT <= #FFD {GROUP_APB_AXI_R.OUT.WIDTH{1'b0}};
|
end
|
end
|
else if (psel & penable & (~pwrite) & pready)
|
else if (psel & penable & (~pwrite) & pready)
|
begin
|
begin
|
RID <= #FFD cmd_id;
|
RID <= #FFD cmd_id;
|
RDATA <= #FFD prdata;
|
RDATA <= #FFD prdata;
|
RRESP <= #FFD cmd_err ? RESP_SLVERR : pslverr ? RESP_DECERR : RESP_OK;
|
RRESP <= #FFD cmd_err ? RESP_SLVERR : pslverr ? RESP_DECERR : RESP_OK;
|
RLAST <= #FFD 1'b1;
|
RLAST <= #FFD 1'b1;
|
RVALID <= #FFD 1'b1;
|
RVALID <= #FFD 1'b1;
|
end
|
end
|
|
|
endmodule
|
endmodule
|
|
|
|
|
|
|