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

Subversion Repositories usbhostslave

[/] [usbhostslave/] [trunk/] [RTL/] [hostController/] [sendpacketarbiter.v] - Diff between revs 2 and 5

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 2 Rev 5
Line 1... Line 1...
//--------------------------------------------------------------------------------------------------
 
//
//////////////////////////////////////////////////////////////////////
// Title       : No Title
////                                                              ////
// Design      : usbhostslave
//// sendpacketarbiter
// Author      : 
////                                                              ////
// Company     : 
//// This file is part of the usbhostslave opencores effort.
//
//// http://www.opencores.org/cores/usbhostslave/                 ////
//-------------------------------------------------------------------------------------------------
////                                                              ////
 
//// Module Description:                                          ////
 
//// 
 
////                                                              ////
 
//// To Do:                                                       ////
 
//// 
 
////                                                              ////
 
//// Author(s):                                                   ////
 
//// - Steve Fielding, sfielding@base2designs.com                 ////
 
////                                                              ////
 
//////////////////////////////////////////////////////////////////////
 
////                                                              ////
 
//// Copyright (C) 2004 Steve Fielding and 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                     ////
 
////                                                              ////
 
//////////////////////////////////////////////////////////////////////
//
//
// File        : c:\projects\USBHostSlave\Aldec\usbhostslave\usbhostslave\compile\sendpacketarbiter.v
// $Id: sendpacketarbiter.v,v 1.2 2004-12-18 14:36:10 sfielding Exp $
// Generated   : 09/10/04 20:20:24
 
// From        : c:\projects\USBHostSlave\RTL\hostController\sendpacketarbiter.asf
 
// By          : FSM2VHDL ver. 4.0.3.8
 
//
//
//-------------------------------------------------------------------------------------------------
// CVS Revision History
//
//
// Description : 
// $Log: not supported by cvs2svn $
//
//
//-------------------------------------------------------------------------------------------------
 
 
 
`timescale 1ns / 1ps
`timescale 1ns / 1ps
`include "usbConstants_h.v"
`include "usbConstants_h.v"
 
 
module sendPacketArbiter (HCTxGnt, HCTxReq, HC_PID, HC_SP_WEn, SOFTxGnt, SOFTxReq, SOF_SP_WEn, clk, rst, sendPacketPID, sendPacketWEnable);
module sendPacketArbiter (clk, HC_PID, HC_SP_WEn, HCTxGnt, HCTxReq, rst, sendPacketPID, sendPacketWEnable, SOF_SP_WEn, SOFTxGnt, SOFTxReq);
input   HCTxReq;
input   clk;
input   [3:0] HC_PID;
input   [3:0] HC_PID;
input   HC_SP_WEn;
input   HC_SP_WEn;
input   SOFTxReq;
input   HCTxReq;
input   SOF_SP_WEn;
 
input   clk;
 
input   rst;
input   rst;
 
input   SOF_SP_WEn;
 
input   SOFTxReq;
output  HCTxGnt;
output  HCTxGnt;
output  SOFTxGnt;
 
output  [3:0] sendPacketPID;
output  [3:0] sendPacketPID;
output  sendPacketWEnable;
output  sendPacketWEnable;
 
output  SOFTxGnt;
 
 
reg     HCTxGnt, next_HCTxGnt;
wire    clk;
wire    HCTxReq;
 
wire    [3:0] HC_PID;
wire    [3:0] HC_PID;
wire    HC_SP_WEn;
wire    HC_SP_WEn;
reg     SOFTxGnt, next_SOFTxGnt;
reg     HCTxGnt, next_HCTxGnt;
wire    SOFTxReq;
wire    HCTxReq;
wire    SOF_SP_WEn;
 
wire    clk;
 
wire    rst;
wire    rst;
reg     [3:0] sendPacketPID, next_sendPacketPID;
reg     [3:0] sendPacketPID, next_sendPacketPID;
reg     sendPacketWEnable, next_sendPacketWEnable;
reg     sendPacketWEnable, next_sendPacketWEnable;
 
wire    SOF_SP_WEn;
 
reg     SOFTxGnt, next_SOFTxGnt;
 
wire    SOFTxReq;
 
 
// diagram signals declarations
// diagram signals declarations
reg muxSOFNotHC, next_muxSOFNotHC;
reg muxSOFNotHC, next_muxSOFNotHC;
 
 
// BINARY ENCODED state machine: sendPktArb
// BINARY ENCODED state machine: sendPktArb
Line 54... Line 84...
`define HC_ACT 2'b00
`define HC_ACT 2'b00
`define SOF_ACT 2'b01
`define SOF_ACT 2'b01
`define SARB_WAIT_REQ 2'b10
`define SARB_WAIT_REQ 2'b10
`define START_SARB 2'b11
`define START_SARB 2'b11
 
 
reg [1:0] CurrState_sendPktArb;
reg [1:0]CurrState_sendPktArb, NextState_sendPktArb;
reg [1:0] NextState_sendPktArb;
 
 
 
// Diagram actions (continuous assignments allowed only: assign ...)
// Diagram actions (continuous assignments allowed only: assign ...)
// hostController/SOFTransmit mux
// hostController/SOFTransmit mux
always @(muxSOFNotHC or SOF_SP_WEn or HC_SP_WEn or HC_PID)
always @(muxSOFNotHC or SOF_SP_WEn or HC_SP_WEn or HC_PID)
begin
begin
Line 74... Line 103...
        sendPacketPID <= HC_PID;
        sendPacketPID <= HC_PID;
    end
    end
end
end
 
 
 
 
//--------------------------------------------------------------------
 
// Machine: sendPktArb
// Machine: sendPktArb
//--------------------------------------------------------------------
 
//----------------------------------
 
// NextState logic (combinatorial)
// NextState logic (combinatorial)
//----------------------------------
 
always @ (HCTxReq or SOFTxReq or HCTxGnt or SOFTxGnt or muxSOFNotHC or CurrState_sendPktArb)
always @ (HCTxReq or SOFTxReq or HCTxGnt or SOFTxGnt or muxSOFNotHC or CurrState_sendPktArb)
begin : sendPktArb_NextState
begin
        NextState_sendPktArb <= CurrState_sendPktArb;
        NextState_sendPktArb <= CurrState_sendPktArb;
        // Set default values for outputs and signals
        // Set default values for outputs and signals
        next_HCTxGnt <= HCTxGnt;
        next_HCTxGnt <= HCTxGnt;
        next_SOFTxGnt <= SOFTxGnt;
        next_SOFTxGnt <= SOFTxGnt;
        next_muxSOFNotHC <= muxSOFNotHC;
        next_muxSOFNotHC <= muxSOFNotHC;
        case (CurrState_sendPktArb) // synopsys parallel_case full_case
        case (CurrState_sendPktArb) // synopsys parallel_case full_case
                `HC_ACT:
                `HC_ACT:
 
    begin
                        if (HCTxReq == 1'b0)
                        if (HCTxReq == 1'b0)
                        begin
                        begin
                                NextState_sendPktArb <= `SARB_WAIT_REQ;
                                NextState_sendPktArb <= `SARB_WAIT_REQ;
                                next_HCTxGnt <= 1'b0;
                                next_HCTxGnt <= 1'b0;
                        end
                        end
 
    end
                `SOF_ACT:
                `SOF_ACT:
 
    begin
                        if (SOFTxReq == 1'b0)
                        if (SOFTxReq == 1'b0)
                        begin
                        begin
                                NextState_sendPktArb <= `SARB_WAIT_REQ;
                                NextState_sendPktArb <= `SARB_WAIT_REQ;
                                next_SOFTxGnt <= 1'b0;
                                next_SOFTxGnt <= 1'b0;
                        end
                        end
 
    end
                `SARB_WAIT_REQ:
                `SARB_WAIT_REQ:
 
    begin
                        if (SOFTxReq == 1'b1)
                        if (SOFTxReq == 1'b1)
                        begin
                        begin
                                NextState_sendPktArb <= `SOF_ACT;
                                NextState_sendPktArb <= `SOF_ACT;
                                next_SOFTxGnt <= 1'b1;
                                next_SOFTxGnt <= 1'b1;
                                next_muxSOFNotHC <= 1'b1;
                                next_muxSOFNotHC <= 1'b1;
Line 113... Line 144...
                        begin
                        begin
                                NextState_sendPktArb <= `HC_ACT;
                                NextState_sendPktArb <= `HC_ACT;
                                next_HCTxGnt <= 1'b1;
                                next_HCTxGnt <= 1'b1;
                                next_muxSOFNotHC <= 1'b0;
                                next_muxSOFNotHC <= 1'b0;
                        end
                        end
 
    end
                `START_SARB:
                `START_SARB:
 
    begin
                        NextState_sendPktArb <= `SARB_WAIT_REQ;
                        NextState_sendPktArb <= `SARB_WAIT_REQ;
 
    end
        endcase
        endcase
end
end
 
 
//----------------------------------
 
// Current State Logic (sequential)
// Current State Logic (sequential)
//----------------------------------
 
always @ (posedge clk)
always @ (posedge clk)
begin : sendPktArb_CurrentState
begin
        if (rst)
        if (rst)
                CurrState_sendPktArb <= `START_SARB;
                CurrState_sendPktArb <= `START_SARB;
        else
        else
                CurrState_sendPktArb <= NextState_sendPktArb;
                CurrState_sendPktArb <= NextState_sendPktArb;
end
end
 
 
//----------------------------------
 
// Registered outputs logic
// Registered outputs logic
//----------------------------------
 
always @ (posedge clk)
always @ (posedge clk)
begin : sendPktArb_RegOutput
begin
        if (rst)
        if (rst)
        begin
        begin
                muxSOFNotHC <= 1'b0;
 
                SOFTxGnt <= 1'b0;
 
                HCTxGnt <= 1'b0;
                HCTxGnt <= 1'b0;
 
    SOFTxGnt <= 1'b0;
 
    muxSOFNotHC <= 1'b0;
        end
        end
        else
        else
        begin
        begin
                muxSOFNotHC <= next_muxSOFNotHC;
 
                SOFTxGnt <= next_SOFTxGnt;
 
                HCTxGnt <= next_HCTxGnt;
                HCTxGnt <= next_HCTxGnt;
 
    SOFTxGnt <= next_SOFTxGnt;
 
    muxSOFNotHC <= next_muxSOFNotHC;
        end
        end
end
end
 
 
endmodule
endmodule
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

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