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

Subversion Repositories usbhostslave

[/] [usbhostslave/] [tags/] [start/] [RTL/] [buffers/] [RxFifo.v] - Diff between revs 4 and 40

Only display areas with differences | Details | Blame | View Log

Rev 4 Rev 40
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
////                                                              ////
////                                                              ////
//// RxFifo.v                                                     ////
//// RxFifo.v                                                     ////
////                                                              ////
////                                                              ////
//// This file is part of the usbhostslave opencores effort.
//// This file is part of the usbhostslave opencores effort.
//// <http://www.opencores.org/cores//>                           ////
//// <http://www.opencores.org/cores//>                           ////
////                                                              ////
////                                                              ////
//// Module Description:                                          ////
//// Module Description:                                          ////
////  parameterized RxFifo wrapper. Min depth = 2, Max depth = 65536
////  parameterized RxFifo wrapper. Min depth = 2, Max depth = 65536
////  fifo read access via bus interface, fifo write access is direct
////  fifo read access via bus interface, fifo write access is direct
//// 
//// 
////                                                              ////
////                                                              ////
//// To Do:                                                       ////
//// To Do:                                                       ////
//// 
//// 
////                                                              ////
////                                                              ////
//// Author(s):                                                   ////
//// Author(s):                                                   ////
//// - Steve Fielding, sfielding@base2designs.com                 ////
//// - Steve Fielding, sfielding@base2designs.com                 ////
////                                                              ////
////                                                              ////
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
////                                                              ////
////                                                              ////
//// Copyright (C) 2004 Steve Fielding and OPENCORES.ORG          ////
//// Copyright (C) 2004 Steve Fielding and OPENCORES.ORG          ////
////                                                              ////
////                                                              ////
//// 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; ////
//// either version 2.1 of the License, or (at your option) any   ////
//// either version 2.1 of the License, or (at your option) any   ////
//// later version.                                               ////
//// later version.                                               ////
////                                                              ////
////                                                              ////
//// 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.                                                     ////
//// details.                                                     ////
////                                                              ////
////                                                              ////
//// You should have received a copy of the GNU Lesser General    ////
//// You should have received a copy of the GNU Lesser General    ////
//// Public License along with this source; if not, download it   ////
//// Public License along with this source; if not, download it   ////
//// from <http://www.opencores.org/lgpl.shtml>                   ////
//// from <http://www.opencores.org/lgpl.shtml>                   ////
////                                                              ////
////                                                              ////
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
//
//
// $Id: RxFifo.v,v 1.1.1.1 2004-10-11 04:00:51 sfielding Exp $
// $Id: RxFifo.v,v 1.1.1.1 2004-10-11 04:00:51 sfielding Exp $
//
//
// CVS Revision History
// CVS Revision History
//
//
// $Log: not supported by cvs2svn $
// $Log: not supported by cvs2svn $
//
//
 
 
`timescale 1ns / 1ps
`timescale 1ns / 1ps
 
 
module RxFifo(
module RxFifo(
  clk,
  clk,
  rst,
  rst,
  fifoWEn,
  fifoWEn,
  fifoFull,
  fifoFull,
  busAddress,
  busAddress,
  busWriteEn,
  busWriteEn,
  busStrobe_i,
  busStrobe_i,
  busFifoSelect,
  busFifoSelect,
  busDataIn,
  busDataIn,
  busDataOut,
  busDataOut,
  fifoDataIn  );
  fifoDataIn  );
  //FIFO_DEPTH = ADDR_WIDTH^2
  //FIFO_DEPTH = ADDR_WIDTH^2
        parameter FIFO_DEPTH = 64;
        parameter FIFO_DEPTH = 64;
  parameter ADDR_WIDTH = 6;
  parameter ADDR_WIDTH = 6;
 
 
input clk;
input clk;
input rst;
input rst;
input fifoWEn;
input fifoWEn;
output fifoFull;
output fifoFull;
input [2:0] busAddress;
input [2:0] busAddress;
input busWriteEn;
input busWriteEn;
input busStrobe_i;
input busStrobe_i;
input busFifoSelect;
input busFifoSelect;
input [7:0] busDataIn;
input [7:0] busDataIn;
output [7:0] busDataOut;
output [7:0] busDataOut;
input [7:0] fifoDataIn;
input [7:0] fifoDataIn;
 
 
wire clk;
wire clk;
wire rst;
wire rst;
wire fifoWEn;
wire fifoWEn;
wire fifoFull;
wire fifoFull;
wire [2:0] busAddress;
wire [2:0] busAddress;
wire busWriteEn;
wire busWriteEn;
wire busStrobe_i;
wire busStrobe_i;
wire busFifoSelect;
wire busFifoSelect;
wire [7:0] busDataIn;
wire [7:0] busDataIn;
wire [7:0] busDataOut;
wire [7:0] busDataOut;
wire [7:0] fifoDataIn;
wire [7:0] fifoDataIn;
 
 
//internal wires and regs
//internal wires and regs
wire [7:0] dataFromFifoToBus;
wire [7:0] dataFromFifoToBus;
wire fifoREn;
wire fifoREn;
wire forceEmpty;
wire forceEmpty;
wire [15:0] numElementsInFifo;
wire [15:0] numElementsInFifo;
wire fifoEmpty;
wire fifoEmpty;
 
 
fifoRTL #(8, FIFO_DEPTH, ADDR_WIDTH) u_fifo(
fifoRTL #(8, FIFO_DEPTH, ADDR_WIDTH) u_fifo(
  .clk(clk),
  .clk(clk),
  .rst(rst),
  .rst(rst),
  .dataIn(fifoDataIn),
  .dataIn(fifoDataIn),
  .dataOut(dataFromFifoToBus),
  .dataOut(dataFromFifoToBus),
  .fifoWEn(fifoWEn),
  .fifoWEn(fifoWEn),
  .fifoREn(fifoREn),
  .fifoREn(fifoREn),
  .fifoFull(fifoFull),
  .fifoFull(fifoFull),
  .fifoEmpty(fifoEmpty),
  .fifoEmpty(fifoEmpty),
  .forceEmpty(forceEmpty),
  .forceEmpty(forceEmpty),
  .numElementsInFifo(numElementsInFifo) );
  .numElementsInFifo(numElementsInFifo) );
 
 
RxfifoBI u_RxfifoBI(
RxfifoBI u_RxfifoBI(
  .address(busAddress),
  .address(busAddress),
  .writeEn(busWriteEn),
  .writeEn(busWriteEn),
  .strobe_i(busStrobe_i),
  .strobe_i(busStrobe_i),
  .clk(clk),
  .clk(clk),
  .rst(rst),
  .rst(rst),
  .fifoSelect(busFifoSelect),
  .fifoSelect(busFifoSelect),
  .fifoDataIn(dataFromFifoToBus),
  .fifoDataIn(dataFromFifoToBus),
  .busDataIn(busDataIn),
  .busDataIn(busDataIn),
  .busDataOut(busDataOut),
  .busDataOut(busDataOut),
  .fifoREn(fifoREn),
  .fifoREn(fifoREn),
  .fifoEmpty(fifoEmpty),
  .fifoEmpty(fifoEmpty),
  .forceEmpty(forceEmpty),
  .forceEmpty(forceEmpty),
  .numElementsInFifo(numElementsInFifo)
  .numElementsInFifo(numElementsInFifo)
  );
  );
 
 
 
 

powered by: WebSVN 2.1.0

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