📄 wb_dma_top.v
字号:
///////////////////////////////////////////////////////////////////////// //////// WISHBONE DMA Top Level //////// //////// //////// Author: Rudolf Usselmann //////// rudi@asics.ws //////// //////// //////// Downloaded from: http://www.opencores.org/cores/wb_dma/ //////// ///////////////////////////////////////////////////////////////////////////// //////// Copyright (C) 2000-2002 Rudolf Usselmann //////// www.asics.ws //////// rudi@asics.ws //////// //////// This source file may be used and distributed without //////// restriction provided that this copyright statement is not //////// removed from the file and that any derivative work contains //////// the original copyright notice and the associated disclaimer.//////// //////// THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY //////// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED //////// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS //////// FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL THE AUTHOR //////// OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, //////// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES //////// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE //////// GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR //////// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF //////// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT //////// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT //////// OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE //////// POSSIBILITY OF SUCH DAMAGE. //////// /////////////////////////////////////////////////////////////////////////// CVS Log//// $Id: wb_dma_top.v,v 1.5 2002/02/01 01:54:45 rudi Exp $//// $Date: 2002/02/01 01:54:45 $// $Revision: 1.5 $// $Author: rudi $// $Locker: $// $State: Exp $//// Change History:// $Log: wb_dma_top.v,v $// Revision 1.5 2002/02/01 01:54:45 rudi//// - Minor cleanup//// Revision 1.4 2001/10/19 04:35:04 rudi//// - Made the core parameterized//// Revision 1.3 2001/09/07 15:34:38 rudi//// Changed reset to active high.//// Revision 1.2 2001/08/15 05:40:30 rudi//// - Changed IO names to be more clear.// - Uniquifyed define names to be core specific.// - Added Section 3.10, describing DMA restart.//// Revision 1.1 2001/07/29 08:57:02 rudi////// 1) Changed Directory Structure// 2) Added restart signal (REST)//// Revision 1.3 2001/06/13 02:26:50 rudi////// Small changes after running lint.//// Revision 1.2 2001/06/05 10:22:37 rudi////// - Added Support of up to 31 channels// - Added support for 2,4 and 8 priority levels// - Now can have up to 31 channels// - Added many configuration items// - Changed reset to async//// Revision 1.1.1.1 2001/03/19 13:10:23 rudi// Initial Release//////`include "wb_dma_defines.v"module wb_dma_top(clk_i, rst_i, wb0s_data_i, wb0s_data_o, wb0_addr_i, wb0_sel_i, wb0_we_i, wb0_cyc_i, wb0_stb_i, wb0_ack_o, wb0_err_o, wb0_rty_o, wb0m_data_i, wb0m_data_o, wb0_addr_o, wb0_sel_o, wb0_we_o, wb0_cyc_o, wb0_stb_o, wb0_ack_i, wb0_err_i, wb0_rty_i, wb1s_data_i, wb1s_data_o, wb1_addr_i, wb1_sel_i, wb1_we_i, wb1_cyc_i, wb1_stb_i, wb1_ack_o, wb1_err_o, wb1_rty_o, wb1m_data_i, wb1m_data_o, wb1_addr_o, wb1_sel_o, wb1_we_o, wb1_cyc_o, wb1_stb_o, wb1_ack_i, wb1_err_i, wb1_rty_i, dma_req_i, dma_ack_o, dma_nd_i, dma_rest_i, inta_o, intb_o );//////////////////////////////////////////////////////////////////////// Module Parameters//// chXX_conf = { CBUF, ED, ARS, EN }parameter rf_addr = 0;parameter [1:0] pri_sel = 2'h0;parameter ch_count = 1;parameter [3:0] ch0_conf = 4'h1;parameter [3:0] ch1_conf = 4'h0;parameter [3:0] ch2_conf = 4'h0;parameter [3:0] ch3_conf = 4'h0;parameter [3:0] ch4_conf = 4'h0;parameter [3:0] ch5_conf = 4'h0;parameter [3:0] ch6_conf = 4'h0;parameter [3:0] ch7_conf = 4'h0;parameter [3:0] ch8_conf = 4'h0;parameter [3:0] ch9_conf = 4'h0;parameter [3:0] ch10_conf = 4'h0;parameter [3:0] ch11_conf = 4'h0;parameter [3:0] ch12_conf = 4'h0;parameter [3:0] ch13_conf = 4'h0;parameter [3:0] ch14_conf = 4'h0;parameter [3:0] ch15_conf = 4'h0;parameter [3:0] ch16_conf = 4'h0;parameter [3:0] ch17_conf = 4'h0;parameter [3:0] ch18_conf = 4'h0;parameter [3:0] ch19_conf = 4'h0;parameter [3:0] ch20_conf = 4'h0;parameter [3:0] ch21_conf = 4'h0;parameter [3:0] ch22_conf = 4'h0;parameter [3:0] ch23_conf = 4'h0;parameter [3:0] ch24_conf = 4'h0;parameter [3:0] ch25_conf = 4'h0;parameter [3:0] ch26_conf = 4'h0;parameter [3:0] ch27_conf = 4'h0;parameter [3:0] ch28_conf = 4'h0;parameter [3:0] ch29_conf = 4'h0;parameter [3:0] ch30_conf = 4'h0;//////////////////////////////////////////////////////////////////////// Module IOs//input clk_i, rst_i;// --------------------------------------// WISHBONE INTERFACE 0// Slave Interfaceinput [31:0] wb0s_data_i;output [31:0] wb0s_data_o;input [31:0] wb0_addr_i;input [3:0] wb0_sel_i;input wb0_we_i;input wb0_cyc_i;input wb0_stb_i;output wb0_ack_o;output wb0_err_o;output wb0_rty_o;// Master Interfaceinput [31:0] wb0m_data_i;output [31:0] wb0m_data_o;output [31:0] wb0_addr_o;output [3:0] wb0_sel_o;output wb0_we_o;output wb0_cyc_o;output wb0_stb_o;input wb0_ack_i;input wb0_err_i;input wb0_rty_i;// --------------------------------------// WISHBONE INTERFACE 1// Slave Interfaceinput [31:0] wb1s_data_i;output [31:0] wb1s_data_o;input [31:0] wb1_addr_i;input [3:0] wb1_sel_i;input wb1_we_i;input wb1_cyc_i;input wb1_stb_i;output wb1_ack_o;output wb1_err_o;output wb1_rty_o;// Master Interfaceinput [31:0] wb1m_data_i;output [31:0] wb1m_data_o;output [31:0] wb1_addr_o;output [3:0] wb1_sel_o;output wb1_we_o;output wb1_cyc_o;output wb1_stb_o;input wb1_ack_i;input wb1_err_i;input wb1_rty_i;// --------------------------------------// Misc Signalsinput [ch_count-1:0] dma_req_i;input [ch_count-1:0] dma_nd_i;output [ch_count-1:0] dma_ack_o;input [ch_count-1:0] dma_rest_i;output inta_o;output intb_o;//////////////////////////////////////////////////////////////////////// Local Wires//wire [31:0] pointer0, pointer0_s, ch0_csr, ch0_txsz, ch0_adr0, ch0_adr1, ch0_am0, ch0_am1;wire [31:0] pointer1, pointer1_s, ch1_csr, ch1_txsz, ch1_adr0, ch1_adr1, ch1_am0, ch1_am1;wire [31:0] pointer2, pointer2_s, ch2_csr, ch2_txsz, ch2_adr0, ch2_adr1, ch2_am0, ch2_am1;wire [31:0] pointer3, pointer3_s, ch3_csr, ch3_txsz, ch3_adr0, ch3_adr1, ch3_am0, ch3_am1;wire [31:0] pointer4, pointer4_s, ch4_csr, ch4_txsz, ch4_adr0, ch4_adr1, ch4_am0, ch4_am1;wire [31:0] pointer5, pointer5_s, ch5_csr, ch5_txsz, ch5_adr0, ch5_adr1, ch5_am0, ch5_am1;wire [31:0] pointer6, pointer6_s, ch6_csr, ch6_txsz, ch6_adr0, ch6_adr1, ch6_am0, ch6_am1;wire [31:0] pointer7, pointer7_s, ch7_csr, ch7_txsz, ch7_adr0, ch7_adr1, ch7_am0, ch7_am1;wire [31:0] pointer8, pointer8_s, ch8_csr, ch8_txsz, ch8_adr0, ch8_adr1, ch8_am0, ch8_am1;wire [31:0] pointer9, pointer9_s, ch9_csr, ch9_txsz, ch9_adr0, ch9_adr1, ch9_am0, ch9_am1;wire [31:0] pointer10, pointer10_s, ch10_csr, ch10_txsz, ch10_adr0, ch10_adr1, ch10_am0, ch10_am1;wire [31:0] pointer11, pointer11_s, ch11_csr, ch11_txsz, ch11_adr0, ch11_adr1, ch11_am0, ch11_am1;wire [31:0] pointer12, pointer12_s, ch12_csr, ch12_txsz, ch12_adr0, ch12_adr1, ch12_am0, ch12_am1;wire [31:0] pointer13, pointer13_s, ch13_csr, ch13_txsz, ch13_adr0, ch13_adr1, ch13_am0, ch13_am1;wire [31:0] pointer14, pointer14_s, ch14_csr, ch14_txsz, ch14_adr0, ch14_adr1, ch14_am0, ch14_am1;wire [31:0] pointer15, pointer15_s, ch15_csr, ch15_txsz, ch15_adr0, ch15_adr1, ch15_am0, ch15_am1;wire [31:0] pointer16, pointer16_s, ch16_csr, ch16_txsz, ch16_adr0, ch16_adr1, ch16_am0, ch16_am1;wire [31:0] pointer17, pointer17_s, ch17_csr, ch17_txsz, ch17_adr0, ch17_adr1, ch17_am0, ch17_am1;wire [31:0] pointer18, pointer18_s, ch18_csr, ch18_txsz, ch18_adr0, ch18_adr1, ch18_am0, ch18_am1;wire [31:0] pointer19, pointer19_s, ch19_csr, ch19_txsz, ch19_adr0, ch19_adr1, ch19_am0, ch19_am1;wire [31:0] pointer20, pointer20_s, ch20_csr, ch20_txsz, ch20_adr0, ch20_adr1, ch20_am0, ch20_am1;wire [31:0] pointer21, pointer21_s, ch21_csr, ch21_txsz, ch21_adr0, ch21_adr1, ch21_am0, ch21_am1;wire [31:0] pointer22, pointer22_s, ch22_csr, ch22_txsz, ch22_adr0, ch22_adr1, ch22_am0, ch22_am1;wire [31:0] pointer23, pointer23_s, ch23_csr, ch23_txsz, ch23_adr0, ch23_adr1, ch23_am0, ch23_am1;wire [31:0] pointer24, pointer24_s, ch24_csr, ch24_txsz, ch24_adr0, ch24_adr1, ch24_am0, ch24_am1;wire [31:0] pointer25, pointer25_s, ch25_csr, ch25_txsz, ch25_adr0, ch25_adr1, ch25_am0, ch25_am1;wire [31:0] pointer26, pointer26_s, ch26_csr, ch26_txsz, ch26_adr0, ch26_adr1, ch26_am0, ch26_am1;wire [31:0] pointer27, pointer27_s, ch27_csr, ch27_txsz, ch27_adr0, ch27_adr1, ch27_am0, ch27_am1;wire [31:0] pointer28, pointer28_s, ch28_csr, ch28_txsz, ch28_adr0, ch28_adr1, ch28_am0, ch28_am1;wire [31:0] pointer29, pointer29_s, ch29_csr, ch29_txsz, ch29_adr0, ch29_adr1, ch29_am0, ch29_am1;wire [31:0] pointer30, pointer30_s, ch30_csr, ch30_txsz, ch30_adr0, ch30_adr1, ch30_am0, ch30_am1;wire [4:0] ch_sel; // Write Back Channel Selectwire [30:0] ndnr; // Next Descriptor No Requestwire de_start; // Start DMA Enginewire ndr; // Next Descriptor With Requestwire [31:0] csr; // Selected Channel CSRwire [31:0] pointer;wire [31:0] pointer_s;wire [31:0] txsz; // Selected Channel Transfer Sizewire [31:0] adr0, adr1; // Selected Channel Addresseswire [31:0] am0, am1; // Selected Channel Address Maskswire next_ch; // Indicates the DMA Engine is donewire inta_o, intb_o;wire dma_abort;wire dma_busy, dma_err, dma_done, dma_done_all;wire [31:0] de_csr;wire [11:0] de_txsz;wire [31:0] de_adr0;wire [31:0] de_adr1;wire de_csr_we, de_txsz_we, de_adr0_we, de_adr1_we; wire de_fetch_descr;wire ptr_set;wire de_ack;wire pause_req;wire paused;wire mast0_go; // Perform a Master Cycle (as long as thiswire mast0_we; // Read/Writewire [31:0] mast0_adr; // Address for the transferwire [31:0] mast0_din; // Internal Input Datawire [31:0] mast0_dout; // Internal Output Datawire mast0_err; // Indicates an error has occurredwire mast0_drdy; // Indicated that either data is availablewire mast0_wait; // Tells the master to insert wait cycleswire [31:0] slv0_adr; // Slave Addresswire [31:0] slv0_din; // Slave Input Datawire [31:0] slv0_dout; // Slave Output Datawire slv0_re; // Slave Read Enablewire slv0_we; // Slave Write Enablewire pt0_sel_i; // Pass Through Mode Selectedwire [70:0] mast0_pt_in; // Grouped WISHBONE inputswire [34:0] mast0_pt_out; // Grouped WISHBONE outputswire pt0_sel_o; // Pass Through Mode Activewire [70:0] slv0_pt_out; // Grouped WISHBONE out signalswire [34:0] slv0_pt_in; // Grouped WISHBONE in signalswire mast1_go; // Perform a Master Cycle (as long as thiswire mast1_we; // Read/Writewire [31:0] mast1_adr; // Address for the transferwire [31:0] mast1_din; // Internal Input Datawire [31:0] mast1_dout; // Internal Output Datawire mast1_err; // Indicates an error has occurredwire mast1_drdy; // Indicated that either data is availablewire mast1_wait; // Tells the master to insert wait cycleswire [31:0] slv1_adr; // Slave Addresswire [31:0] slv1_dout; // Slave Output Datawire slv1_re; // Slave Read Enablewire slv1_we; // Slave Write Enablewire pt1_sel_i; // Pass Through Mode Selectedwire [70:0] mast1_pt_in; // Grouped WISHBONE inputswire [34:0] mast1_pt_out; // Grouped WISHBONE outputswire pt1_sel_o; // Pass Through Mode Activewire [70:0] slv1_pt_out; // Grouped WISHBONE out signalswire [34:0] slv1_pt_in; // Grouped WISHBONE in signalswire [30:0] dma_req;wire [30:0] dma_nd;wire [30:0] dma_ack;wire [30:0] dma_rest;//////////////////////////////////////////////////////////////////////// Misc Logic//wire [31:0] tmp_gnd = 32'h0;assign dma_req[ch_count-1:0] = dma_req_i;assign dma_nd[ch_count-1:0] = dma_nd_i;assign dma_rest[ch_count-1:0] = dma_rest_i;assign dma_ack_o = {tmp_gnd[31-ch_count:0], dma_ack[ch_count-1:0]};// --------------------------------------------------// This should go in to a separate Pass Through Blockassign pt1_sel_i = pt0_sel_o;assign pt0_sel_i = pt1_sel_o;assign mast1_pt_in = slv0_pt_out;assign slv0_pt_in = mast1_pt_out;assign mast0_pt_in = slv1_pt_out;assign slv1_pt_in = mast0_pt_out;// --------------------------------------------------//////////////////////////////////////////////////////////////////////// Modules//// DMA Register Filewb_dma_rf #( ch0_conf, ch1_conf, ch2_conf, ch3_conf, ch4_conf, ch5_conf, ch6_conf, ch7_conf, ch8_conf, ch9_conf, ch10_conf,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -