97 lines
3.3 KiB
Systemverilog
97 lines
3.3 KiB
Systemverilog
// (C) 2001-2015 Altera Corporation. All rights reserved.
|
|
// Your use of Altera Corporation's design tools, logic functions and other
|
|
// software and tools, and its AMPP partner logic functions, and any output
|
|
// files any of the foregoing (including device programming or simulation
|
|
// files), and any associated documentation or information are expressly subject
|
|
// to the terms and conditions of the Altera Program License Subscription
|
|
// Agreement, Altera MegaCore Function License Agreement, or other applicable
|
|
// license agreement, including, without limitation, that your use is for the
|
|
// sole purpose of programming logic devices manufactured by Altera and sold by
|
|
// Altera or its authorized distributors. Please refer to the applicable
|
|
// agreement for further details.
|
|
|
|
|
|
// (C) 2001-2013 Altera Corporation. All rights reserved.
|
|
// Your use of Altera Corporation's design tools, logic functions and other
|
|
// software and tools, and its AMPP partner logic functions, and any output
|
|
// files any of the foregoing (including device programming or simulation
|
|
// files), and any associated documentation or information are expressly subject
|
|
// to the terms and conditions of the Altera Program License Subscription
|
|
// Agreement, Altera MegaCore Function License Agreement, or other applicable
|
|
// license agreement, including, without limitation, that your use is for the
|
|
// sole purpose of programming logic devices manufactured by Altera and sold by
|
|
// Altera or its authorized distributors. Please refer to the applicable
|
|
// agreement for further details.
|
|
|
|
|
|
// $Id: //acds/rel/13.1/ip/.../avalon-st_channel_adapter.sv.terp#1 $
|
|
// $Revision: #1 $
|
|
// $Date: 2013/09/09 $
|
|
// $Author: dmunday $
|
|
|
|
// --------------------------------------------------------------------------------
|
|
//| Avalon Streaming Channel Adapter
|
|
// --------------------------------------------------------------------------------
|
|
|
|
`timescale 1ns / 100ps
|
|
|
|
// ------------------------------------------
|
|
// Generation parameters:
|
|
// output_name: ddr3_dmaster_p2b_adapter
|
|
// in_channel_width: 0
|
|
// in_max_channel: 0
|
|
// out_channel_width: 8
|
|
// out_max_channel: 255
|
|
// data_width: 8
|
|
// error_width: 0
|
|
// use_ready: true
|
|
// use_packets: true
|
|
// use_empty: 0
|
|
// empty_width: 0
|
|
|
|
// ------------------------------------------
|
|
|
|
|
|
module ddr3_dmaster_p2b_adapter
|
|
(
|
|
// Interface: in
|
|
output reg in_ready,
|
|
input in_valid,
|
|
input [8-1: 0] in_data,
|
|
input in_startofpacket,
|
|
input in_endofpacket,
|
|
// Interface: out
|
|
input out_ready,
|
|
output reg out_valid,
|
|
output reg [8-1: 0] out_data,
|
|
output reg [8-1: 0] out_channel,
|
|
output reg out_startofpacket,
|
|
output reg out_endofpacket,
|
|
// Interface: clk
|
|
input clk,
|
|
// Interface: reset
|
|
input reset_n
|
|
|
|
|
|
);
|
|
|
|
reg in_channel = 0;
|
|
|
|
// ---------------------------------------------------------------------
|
|
//| Payload Mapping
|
|
// ---------------------------------------------------------------------
|
|
always @* begin
|
|
in_ready = out_ready;
|
|
out_valid = in_valid;
|
|
out_data = in_data;
|
|
out_startofpacket = in_startofpacket;
|
|
out_endofpacket = in_endofpacket;
|
|
|
|
out_channel = 0;
|
|
out_channel = in_channel;
|
|
|
|
end
|
|
|
|
endmodule
|
|
|