⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pci_wbw_wbr_fifos.v

📁 这是用pci-wishbone核和16450串口核在xilinx的fpga上实现的串口程序
💻 V
📖 第 1 页 / 共 2 页
字号:
//////////////////////////////////////////////////////////////////////////                                                              ////////  File name "wbw_wbr_fifos.v"                                 ////////                                                              ////////  This file is part of the "PCI bridge" project               ////////  http://www.opencores.org/cores/pci/                         ////////                                                              ////////  Author(s):                                                  ////////      - Miha Dolenc (mihad@opencores.org)                     ////////                                                              ////////  All additional information is avaliable in the README       ////////  file.                                                       ////////                                                              ////////                                                              //////////////////////////////////////////////////////////////////////////////                                                              //////// Copyright (C) 2001 Miha Dolenc, mihad@opencores.org          ////////                                                              //////// 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 source file is free software; you can redistribute it   //////// and/or modify it under the terms of the GNU Lesser General   //////// Public License as published by the Free Software Foundation; //////// either version 2.1 of the License, or (at your option) any   //////// later version.                                               ////////                                                              //////// This source is distributed in the hope that it will be       //////// useful, but WITHOUT ANY WARRANTY; without even the implied   //////// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      //////// PURPOSE.  See the GNU Lesser General Public License for more //////// details.                                                     ////////                                                              //////// You should have received a copy of the GNU Lesser General    //////// Public License along with this source; if not, download it   //////// from http://www.opencores.org/lgpl.shtml                     ////////                                                              ////////////////////////////////////////////////////////////////////////////// CVS Revision History//// $Log: pci_wbw_wbr_fifos.v,v $// Revision 1.6  2003/12/19 11:11:30  mihad// Compact PCI Hot Swap support added.// New testcases added.// Specification updated.// Test application changed to support WB B3 cycles.//// Revision 1.5  2003/10/17 09:11:52  markom// mbist signals updated according to newest convention//// Revision 1.4  2003/08/14 13:06:03  simons// synchronizer_flop replaced with pci_synchronizer_flop, artisan ram instance updated.//// Revision 1.3  2003/03/26 13:16:18  mihad// Added the reset value parameter to the synchronizer flop module.// Added resets to all synchronizer flop instances.// Repaired initial sync value in fifos.//// Revision 1.2  2003/01/30 22:01:09  mihad// Updated synchronization in top level fifo modules.//// Revision 1.1  2003/01/27 16:49:31  mihad// Changed module and file names. Updated scripts accordingly. FIFO synchronizations changed.//// Revision 1.9  2002/10/18 03:36:37  tadejm// Changed wrong signal name mbist_sen into mbist_ctrl_i.//// Revision 1.8  2002/10/17 22:49:22  tadejm// Changed BIST signals for RAMs.//// Revision 1.7  2002/10/11 10:09:01  mihad// Added additional testcase and changed rst name in BIST to trst//// Revision 1.6  2002/10/08 17:17:06  mihad// Added BIST signals for RAMs.//// Revision 1.5  2002/09/30 16:03:04  mihad// Added meta flop module for easier meta stable FF identification during synthesis//// Revision 1.4  2002/09/25 15:53:52  mihad// Removed all logic from asynchronous reset network//// Revision 1.3  2002/02/01 15:25:14  mihad// Repaired a few bugs, updated specification, added test bench files and design document//// Revision 1.2  2001/10/05 08:20:12  mihad// Updated all files with inclusion of timescale file for simulation purposes.//// Revision 1.1.1.1  2001/10/02 15:33:47  mihad// New project directory structure////`include "pci_constants.v"// synopsys translate_off`include "timescale.v"// synopsys translate_onmodule pci_wbw_wbr_fifos(    wb_clock_in,    pci_clock_in,    reset_in,    wbw_wenable_in,    wbw_addr_data_in,    wbw_cbe_in,    wbw_control_in,    wbw_renable_in,    wbw_addr_data_out,    wbw_cbe_out,    wbw_control_out,//    wbw_flush_in,         write fifo flush not used    wbw_almost_full_out,    wbw_full_out,    wbw_empty_out,    wbw_transaction_ready_out,    wbr_wenable_in,    wbr_data_in,    wbr_be_in,    wbr_control_in,    wbr_renable_in,    wbr_data_out,    wbr_be_out,    wbr_control_out,    wbr_flush_in,    wbr_empty_out`ifdef PCI_BIST    ,    // debug chain signals    mbist_si_i,       // bist scan serial in    mbist_so_o,       // bist scan serial out    mbist_ctrl_i        // bist chain shift control`endif                        ) ;/*-----------------------------------------------------------------------------------------------------------System inputs:wb_clock_in - WISHBONE bus clockpci_clock_in - PCI bus clockreset_in - reset from control logic-------------------------------------------------------------------------------------------------------------*/input wb_clock_in, pci_clock_in, reset_in ;/*-----------------------------------------------------------------------------------------------------------WISHBONE WRITE FIFO interface signals prefixed with wbw_ - FIFO is used for posted writes initiated byWISHBONE master, traveling through FIFO and are completed on PCI by PCI master interfacewrite enable signal:wbw_wenable_in = write enable input for WBW_FIFO - driven by WISHBONE slave interfacedata input signals:wbw_addr_data_in = data input - data from WISHBONE bus - first entry of transaction is address others are data entrieswbw_cbe_in       = bus command/byte enable(~SEL[3:0]) input - first entry of transaction is bus command, other are byte enableswbw_control_in   = control input - encoded control bus inputread enable signal:wbw_renable_in = read enable input driven by PCI master interfacedata output signals:wbw_addr_data_out = data output - data from WISHBONE bus - first entry of transaction is address, others are data entrieswbw_cbe_out      = bus command/byte enable output - first entry of transaction is bus command, others are byte enableswbw_control_out = control input - encoded control bus inputstatus signals - monitored by various resources in the corewbw_flush_in = flush signal input for WBW_FIFO - when asserted, fifo is flushed(emptied)wbw_almost_full_out = almost full output from WBW_FIFOwbw_full_out = full output from WBW_FIFOwbw_empty_out = empty output from WBW_FIFOwbw_transaction_ready_out = output indicating that one complete transaction is waiting in WBW_FIFO-----------------------------------------------------------------------------------------------------------*/// input control and datainput        wbw_wenable_in ;input [31:0] wbw_addr_data_in ;input [3:0]  wbw_cbe_in ;input [3:0]  wbw_control_in ;// output control and datainput         wbw_renable_in ;output [31:0] wbw_addr_data_out ;output [3:0]  wbw_cbe_out ;output [3:0]  wbw_control_out ;// flush input// input wbw_flush_in ; // not used// status outputsoutput wbw_almost_full_out ;output wbw_full_out ;output wbw_empty_out ;output wbw_transaction_ready_out ;/*-----------------------------------------------------------------------------------------------------------WISHBONE READ FIFO interface signals prefixed with wbr_ - FIFO is used for holding delayed read completionsinitiated by master on WISHBONE bus and completed on PCI bus,write enable signal:wbr_wenable_in = write enable input for WBR_FIFO - driven by PCI master interfacedata input signals:wbr_data_in      = data input - data from PCI bus - there is no address entry here, since address is stored in separate registerwbr_be_in        = byte enable(~BE#[3:0]) input - byte enables - same through one transactionwbr_control_in   = control input - encoded control bus inputread enable signal:wbr_renable_in = read enable input driven by WISHBONE slave interfacedata output signals:wbr_data_out = data output - data from PCI buswbr_be_out      = byte enable output(~#BE)wbr_control_out = control output - encoded control bus outputstatus signals - monitored by various resources in the corewbr_flush_in = flush signal input for WBR_FIFO - when asserted, fifo is flushed(emptied)wbr full_out = full output from WBR_FIFOwbr_empty_out = empty output from WBR_FIFO-----------------------------------------------------------------------------------------------------------*/// input control and datainput        wbr_wenable_in ;input [31:0] wbr_data_in ;input [3:0]  wbr_be_in ;input [3:0]  wbr_control_in ;// output control and datainput         wbr_renable_in ;output [31:0] wbr_data_out ;output [3:0]  wbr_be_out ;output [3:0]  wbr_control_out ;// flush inputinput wbr_flush_in ;output wbr_empty_out ;`ifdef PCI_BIST/*-----------------------------------------------------BIST debug chain port signals-----------------------------------------------------*/input   mbist_si_i;       // bist scan serial inoutput  mbist_so_o;       // bist scan serial outinput [`PCI_MBIST_CTRL_WIDTH - 1:0] mbist_ctrl_i;       // bist chain shift control`endif/*-----------------------------------------------------------------------------------------------------------FIFO depth parameters:WBW_DEPTH = defines WBW_FIFO depthWBR_DEPTH = defines WBR_FIFO depthWBW_ADDR_LENGTH = defines WBW_FIFO's location address length = log2(WBW_DEPTH)WBR_ADDR_LENGTH = defines WBR_FIFO's location address length = log2(WBR_DEPTH)-----------------------------------------------------------------------------------------------------------*/parameter WBW_DEPTH = `WBW_DEPTH ;parameter WBW_ADDR_LENGTH = `WBW_ADDR_LENGTH ;parameter WBR_DEPTH = `WBR_DEPTH ;parameter WBR_ADDR_LENGTH = `WBR_ADDR_LENGTH ;/*-----------------------------------------------------------------------------------------------------------wbw_wallow = WBW_FIFO write allow wire - writes to FIFO are allowed when FIFO isn't full and write enable is 1wbw_rallow = WBW_FIFO read allow wire - reads from FIFO are allowed when FIFO isn't empty and read enable is 1-----------------------------------------------------------------------------------------------------------*/wire wbw_wallow ;wire wbw_rallow ;/*-----------------------------------------------------------------------------------------------------------wbr_wallow = WBR_FIFO write allow wire - writes to FIFO are allowed when FIFO isn't full and write enable is 1wbr_rallow = WBR_FIFO read allow wire - reads from FIFO are allowed when FIFO isn't empty and read enable is 1-----------------------------------------------------------------------------------------------------------*/wire wbr_wallow ;wire wbr_rallow ;/*-----------------------------------------------------------------------------------------------------------wires for address port conections from WBW_FIFO control logic to RAM blocks used for WBW_FIFO-----------------------------------------------------------------------------------------------------------*/wire [(WBW_ADDR_LENGTH - 1):0] wbw_raddr ;wire [(WBW_ADDR_LENGTH - 1):0] wbw_waddr ;/*-----------------------------------------------------------------------------------------------------------wires for address port conections from WBR_FIFO control logic to RAM blocks used for WBR_FIFO-----------------------------------------------------------------------------------------------------------*/wire [(WBR_ADDR_LENGTH - 1):0] wbr_raddr ;wire [(WBR_ADDR_LENGTH - 1):0] wbr_waddr ;/*-----------------------------------------------------------------------------------------------------------WBW_FIFO transaction counters: used to count incoming transactions and outgoing transactions. When number ofinput transactions is equal to number of output transactions, it means that there isn't any complete transactioncurrently present in the FIFO.-----------------------------------------------------------------------------------------------------------*/reg [(WBW_ADDR_LENGTH - 2):0] wbw_inTransactionCount ;reg [(WBW_ADDR_LENGTH - 2):0] wbw_outTransactionCount ;/*-----------------------------------------------------------------------------------------------------------wires monitoring control bus. When control bus on a write transaction has a value of `LAST, it means thatcomplete transaction is in the FIFO. When control bus on a read transaction has a value of `LAST,it means that there was one complete transaction taken out of FIFO.-----------------------------------------------------------------------------------------------------------*/wire wbw_last_in  = wbw_control_in[`LAST_CTRL_BIT]  ;wire wbw_last_out = wbw_control_out[`LAST_CTRL_BIT] ;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -