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

Subversion Repositories usbhostslave

[/] [usbhostslave/] [trunk/] [RTL/] [hostController/] [sendpacket.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
//// sendPacket
// 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\sendpacket.v
// $Id: sendpacket.v,v 1.2 2004-12-18 14:36:10 sfielding Exp $
// Generated   : 09/25/04 06:36:27
 
// From        : c:\projects\USBHostSlave\RTL\hostController\sendpacket.asf
 
// By          : FSM2VHDL ver. 4.0.5.2
 
//
//
//-------------------------------------------------------------------------------------------------
// CVS Revision History
//
//
// Description : 
// $Log: not supported by cvs2svn $
//
//
//-------------------------------------------------------------------------------------------------
 
 
 
`timescale 1ns / 1ps
`timescale 1ns / 1ps
`include "usbSerialInterfaceEngine_h.v"
`include "usbSerialInterfaceEngine_h.v"
`include "usbConstants_h.v"
`include "usbConstants_h.v"
 
 
 
 
 
 
module sendPacket (HCTxPortCntl, HCTxPortData, HCTxPortGnt, HCTxPortRdy, HCTxPortReq, HCTxPortWEn, PID, TxAddr, TxEndP, clk, fifoData, fifoEmpty, fifoReadEn, frameNum, rst, sendPacketRdy, sendPacketWEn);
module sendPacket (clk, fifoData, fifoEmpty, fifoReadEn, frameNum, HCTxPortCntl, HCTxPortData, HCTxPortGnt, HCTxPortRdy, HCTxPortReq, HCTxPortWEn, PID, rst, sendPacketRdy, sendPacketWEn, TxAddr, TxEndP);
input   HCTxPortGnt;
 
input   HCTxPortRdy;
 
input   [3:0] PID;
 
input   [6:0] TxAddr;
 
input   clk;
input   clk;
input   [7:0] fifoData;
input   [7:0] fifoData;
input   fifoEmpty;
input   fifoEmpty;
 
input   HCTxPortGnt;
 
input   HCTxPortRdy;
 
input   [3:0]PID;
input   rst;
input   rst;
input   sendPacketWEn;
input   sendPacketWEn;
 
input   [6:0]TxAddr;
 
input   [3:0]TxEndP;
 
output  fifoReadEn;
 
output  [10:0]frameNum;
output  [7:0] HCTxPortCntl;
output  [7:0] HCTxPortCntl;
output  [7:0] HCTxPortData;
output  [7:0] HCTxPortData;
output  HCTxPortReq;
output  HCTxPortReq;
output  HCTxPortWEn;
output  HCTxPortWEn;
output  [3:0] TxEndP;
 
output  fifoReadEn;
 
output  [10:0] frameNum;
 
output  sendPacketRdy;
output  sendPacketRdy;
 
 
 
wire    clk;
 
wire    [7:0]fifoData;
 
wire    fifoEmpty;
 
reg     fifoReadEn, next_fifoReadEn;
 
reg     [10:0]frameNum, next_frameNum;
reg     [7:0] HCTxPortCntl, next_HCTxPortCntl;
reg     [7:0] HCTxPortCntl, next_HCTxPortCntl;
reg     [7:0] HCTxPortData, next_HCTxPortData;
reg     [7:0] HCTxPortData, next_HCTxPortData;
wire    HCTxPortGnt;
wire    HCTxPortGnt;
wire    HCTxPortRdy;
wire    HCTxPortRdy;
reg     HCTxPortReq, next_HCTxPortReq;
reg     HCTxPortReq, next_HCTxPortReq;
reg     HCTxPortWEn, next_HCTxPortWEn;
reg     HCTxPortWEn, next_HCTxPortWEn;
wire    [3:0] PID;
wire    [3:0] PID;
wire    [6:0] TxAddr;
 
reg     [3:0] TxEndP, next_TxEndP;
 
wire    clk;
 
wire    [7:0] fifoData;
 
wire    fifoEmpty;
 
reg     fifoReadEn, next_fifoReadEn;
 
reg     [10:0] frameNum, next_frameNum;
 
wire    rst;
wire    rst;
reg     sendPacketRdy, next_sendPacketRdy;
reg     sendPacketRdy, next_sendPacketRdy;
wire    sendPacketWEn;
wire    sendPacketWEn;
 
wire    [6:0]TxAddr;
 
wire    [3:0]TxEndP;
 
 
// diagram signals declarations
// diagram signals declarations
reg  [7:0]PIDNotPID;
reg  [7:0]PIDNotPID;
 
 
// BINARY ENCODED state machine: sndPkt
// BINARY ENCODED state machine: sndPkt
Line 86... Line 116...
`define OUT_IN_SETUP_CLR_WEN1 5'b10001
`define OUT_IN_SETUP_CLR_WEN1 5'b10001
`define SEND_SOF_CLR_WEN1 5'b10010
`define SEND_SOF_CLR_WEN1 5'b10010
`define DATA0_DATA1_CLR_WEN 5'b10011
`define DATA0_DATA1_CLR_WEN 5'b10011
`define DATA0_DATA1_CLR_REN 5'b10100
`define DATA0_DATA1_CLR_REN 5'b10100
 
 
reg [4:0] CurrState_sndPkt;
reg [4:0]CurrState_sndPkt, NextState_sndPkt;
reg [4:0] NextState_sndPkt;
 
 
 
// Diagram actions (continuous assignments allowed only: assign ...)
// Diagram actions (continuous assignments allowed only: assign ...)
always @(PID)
always @(PID)
begin
begin
    PIDNotPID <=  { (PID ^ 4'hf), PID };
    PIDNotPID <=  { (PID ^ 4'hf), PID };
end
end
 
 
 
 
//--------------------------------------------------------------------
 
// Machine: sndPkt
// Machine: sndPkt
//--------------------------------------------------------------------
 
//----------------------------------
 
// NextState logic (combinatorial)
// NextState logic (combinatorial)
//----------------------------------
always @ (sendPacketWEn or HCTxPortGnt or HCTxPortRdy or PIDNotPID or PID or TxEndP or TxAddr or frameNum or fifoData or fifoEmpty or sendPacketRdy or fifoReadEn or HCTxPortData or HCTxPortCntl or HCTxPortWEn or HCTxPortReq or CurrState_sndPkt)
always @ (PIDNotPID or TxEndP or TxAddr or frameNum or fifoData or sendPacketWEn or HCTxPortGnt or HCTxPortRdy or PID or fifoEmpty or sendPacketRdy or HCTxPortReq or HCTxPortWEn or HCTxPortData or HCTxPortCntl or fifoReadEn or CurrState_sndPkt)
begin
begin : sndPkt_NextState
 
        NextState_sndPkt <= CurrState_sndPkt;
        NextState_sndPkt <= CurrState_sndPkt;
        // Set default values for outputs and signals
        // Set default values for outputs and signals
        next_sendPacketRdy <= sendPacketRdy;
        next_sendPacketRdy <= sendPacketRdy;
        next_HCTxPortReq <= HCTxPortReq;
  next_fifoReadEn <= fifoReadEn;
        next_HCTxPortWEn <= HCTxPortWEn;
 
        next_HCTxPortData <= HCTxPortData;
        next_HCTxPortData <= HCTxPortData;
        next_HCTxPortCntl <= HCTxPortCntl;
        next_HCTxPortCntl <= HCTxPortCntl;
 
  next_HCTxPortWEn <= HCTxPortWEn;
 
  next_HCTxPortReq <= HCTxPortReq;
        next_frameNum <= frameNum;
        next_frameNum <= frameNum;
        next_fifoReadEn <= fifoReadEn;
 
        case (CurrState_sndPkt) // synopsys parallel_case full_case
        case (CurrState_sndPkt) // synopsys parallel_case full_case
                `START_SP:
                `START_SP:
 
    begin
                        NextState_sndPkt <= `WAIT_ENABLE;
                        NextState_sndPkt <= `WAIT_ENABLE;
 
    end
                `WAIT_ENABLE:
                `WAIT_ENABLE:
 
    begin
                        if (sendPacketWEn == 1'b1)
                        if (sendPacketWEn == 1'b1)
                        begin
                        begin
                                NextState_sndPkt <= `SP_WAIT_GNT;
                                NextState_sndPkt <= `SP_WAIT_GNT;
                                next_sendPacketRdy <= 1'b0;
                                next_sendPacketRdy <= 1'b0;
                                next_HCTxPortReq <= 1'b1;
                                next_HCTxPortReq <= 1'b1;
                        end
                        end
 
    end
                `SP_WAIT_GNT:
                `SP_WAIT_GNT:
 
    begin
                        if (HCTxPortGnt == 1'b1)
                        if (HCTxPortGnt == 1'b1)
 
      begin
                                NextState_sndPkt <= `SEND_PID_WAIT_RDY;
                                NextState_sndPkt <= `SEND_PID_WAIT_RDY;
 
      end
 
    end
                `FIN_SP:
                `FIN_SP:
                begin
                begin
                        NextState_sndPkt <= `WAIT_ENABLE;
                        NextState_sndPkt <= `WAIT_ENABLE;
                        next_sendPacketRdy <= 1'b1;
                        next_sendPacketRdy <= 1'b1;
                        next_HCTxPortReq <= 1'b0;
                        next_HCTxPortReq <= 1'b0;
                end
                end
                `SEND_PID_WAIT_RDY:
                `SEND_PID_WAIT_RDY:
 
    begin
                        if (HCTxPortRdy == 1'b1)
                        if (HCTxPortRdy == 1'b1)
                        begin
                        begin
                                NextState_sndPkt <= `SEND_PID_FIN;
                                NextState_sndPkt <= `SEND_PID_FIN;
                                next_HCTxPortWEn <= 1'b1;
                                next_HCTxPortWEn <= 1'b1;
                                next_HCTxPortData <= PIDNotPID;
                                next_HCTxPortData <= PIDNotPID;
                                next_HCTxPortCntl <= `TX_PACKET_START;
                                next_HCTxPortCntl <= `TX_PACKET_START;
                        end
                        end
 
    end
                `SEND_PID_FIN:
                `SEND_PID_FIN:
                begin
                begin
                        next_HCTxPortWEn <= 1'b0;
                        next_HCTxPortWEn <= 1'b0;
                        if (PID == `DATA0 || PID == `DATA1)
                        if (PID == `DATA0 || PID == `DATA1)
 
      begin
                                NextState_sndPkt <= `DATA0_DATA1_FIFO_EMPTY;
                                NextState_sndPkt <= `DATA0_DATA1_FIFO_EMPTY;
 
      end
                        else if (PID == `SOF)
                        else if (PID == `SOF)
 
      begin
                                NextState_sndPkt <= `SEND_SOF_WAIT_RDY3;
                                NextState_sndPkt <= `SEND_SOF_WAIT_RDY3;
 
      end
                        else if (PID == `OUT ||
                        else if (PID == `OUT ||
                                PID == `IN ||
                                PID == `IN ||
                                PID == `SETUP)
                                PID == `SETUP)
 
      begin
                                NextState_sndPkt <= `OUT_IN_SETUP_WAIT_RDY1;
                                NextState_sndPkt <= `OUT_IN_SETUP_WAIT_RDY1;
 
      end
                        else
                        else
 
      begin
                                NextState_sndPkt <= `FIN_SP;
                                NextState_sndPkt <= `FIN_SP;
                end
                end
 
    end
                `OUT_IN_SETUP_WAIT_RDY1:
                `OUT_IN_SETUP_WAIT_RDY1:
 
    begin
                        if (HCTxPortRdy == 1'b1)
                        if (HCTxPortRdy == 1'b1)
                        begin
                        begin
                                NextState_sndPkt <= `OUT_IN_SETUP_CLR_WEN1;
                                NextState_sndPkt <= `OUT_IN_SETUP_CLR_WEN1;
                                next_HCTxPortWEn <= 1'b1;
                                next_HCTxPortWEn <= 1'b1;
                                next_HCTxPortData <= {TxEndP[0], TxAddr[6:0]};
                                next_HCTxPortData <= {TxEndP[0], TxAddr[6:0]};
                                next_HCTxPortCntl <= `TX_PACKET_STREAM;
                                next_HCTxPortCntl <= `TX_PACKET_STREAM;
                        end
                        end
 
    end
                `OUT_IN_SETUP_WAIT_RDY2:
                `OUT_IN_SETUP_WAIT_RDY2:
 
    begin
                        if (HCTxPortRdy == 1'b1)
                        if (HCTxPortRdy == 1'b1)
                        begin
                        begin
                                NextState_sndPkt <= `OUT_IN_SETUP_FIN;
                                NextState_sndPkt <= `OUT_IN_SETUP_FIN;
                                next_HCTxPortWEn <= 1'b1;
                                next_HCTxPortWEn <= 1'b1;
                                next_HCTxPortData <= {5'b00000, TxEndP[3:1]};
                                next_HCTxPortData <= {5'b00000, TxEndP[3:1]};
                                next_HCTxPortCntl <= `TX_PACKET_STREAM;
                                next_HCTxPortCntl <= `TX_PACKET_STREAM;
                        end
                        end
 
    end
                `OUT_IN_SETUP_FIN:
                `OUT_IN_SETUP_FIN:
                begin
                begin
                        next_HCTxPortWEn <= 1'b0;
                        next_HCTxPortWEn <= 1'b0;
                        NextState_sndPkt <= `FIN_SP;
                        NextState_sndPkt <= `FIN_SP;
                end
                end
Line 187... Line 235...
                        next_HCTxPortWEn <= 1'b0;
                        next_HCTxPortWEn <= 1'b0;
                        next_frameNum <= frameNum + 1'b1;
                        next_frameNum <= frameNum + 1'b1;
                        NextState_sndPkt <= `FIN_SP;
                        NextState_sndPkt <= `FIN_SP;
                end
                end
                `SEND_SOF_WAIT_RDY3:
                `SEND_SOF_WAIT_RDY3:
 
    begin
                        if (HCTxPortRdy == 1'b1)
                        if (HCTxPortRdy == 1'b1)
                        begin
                        begin
                                NextState_sndPkt <= `SEND_SOF_CLR_WEN1;
                                NextState_sndPkt <= `SEND_SOF_CLR_WEN1;
                                next_HCTxPortWEn <= 1'b1;
                                next_HCTxPortWEn <= 1'b1;
                                next_HCTxPortData <= frameNum[7:0];
                                next_HCTxPortData <= frameNum[7:0];
                                next_HCTxPortCntl <= `TX_PACKET_STREAM;
                                next_HCTxPortCntl <= `TX_PACKET_STREAM;
                        end
                        end
 
    end
                `SEND_SOF_WAIT_RDY4:
                `SEND_SOF_WAIT_RDY4:
 
    begin
                        if (HCTxPortRdy == 1'b1)
                        if (HCTxPortRdy == 1'b1)
                        begin
                        begin
                                NextState_sndPkt <= `SEND_SOF_FIN1;
                                NextState_sndPkt <= `SEND_SOF_FIN1;
                                next_HCTxPortWEn <= 1'b1;
                                next_HCTxPortWEn <= 1'b1;
                                next_HCTxPortData <= {5'b00000, frameNum[10:8]};
                                next_HCTxPortData <= {5'b00000, frameNum[10:8]};
                                next_HCTxPortCntl <= `TX_PACKET_STREAM;
                                next_HCTxPortCntl <= `TX_PACKET_STREAM;
                        end
                        end
 
    end
                `SEND_SOF_CLR_WEN1:
                `SEND_SOF_CLR_WEN1:
                begin
                begin
                        next_HCTxPortWEn <= 1'b0;
                        next_HCTxPortWEn <= 1'b0;
                        NextState_sndPkt <= `SEND_SOF_WAIT_RDY4;
                        NextState_sndPkt <= `SEND_SOF_WAIT_RDY4;
                end
                end
Line 215... Line 267...
                        next_HCTxPortData <= fifoData;
                        next_HCTxPortData <= fifoData;
                        next_HCTxPortCntl <= `TX_PACKET_STREAM;
                        next_HCTxPortCntl <= `TX_PACKET_STREAM;
                        NextState_sndPkt <= `DATA0_DATA1_CLR_WEN;
                        NextState_sndPkt <= `DATA0_DATA1_CLR_WEN;
                end
                end
                `DATA0_DATA1_WAIT_READ_FIFO:
                `DATA0_DATA1_WAIT_READ_FIFO:
 
    begin
                        if (HCTxPortRdy == 1'b1)
                        if (HCTxPortRdy == 1'b1)
                        begin
                        begin
                                NextState_sndPkt <= `DATA0_DATA1_CLR_REN;
                                NextState_sndPkt <= `DATA0_DATA1_CLR_REN;
                                next_fifoReadEn <= 1'b1;
                                next_fifoReadEn <= 1'b1;
                        end
                        end
 
    end
                `DATA0_DATA1_FIFO_EMPTY:
                `DATA0_DATA1_FIFO_EMPTY:
 
    begin
                        if (fifoEmpty == 1'b0)
                        if (fifoEmpty == 1'b0)
 
      begin
                                NextState_sndPkt <= `DATA0_DATA1_WAIT_READ_FIFO;
                                NextState_sndPkt <= `DATA0_DATA1_WAIT_READ_FIFO;
 
      end
                        else
                        else
 
      begin
                                NextState_sndPkt <= `DATA0_DATA1_TERM_BYTE;
                                NextState_sndPkt <= `DATA0_DATA1_TERM_BYTE;
 
      end
 
    end
                `DATA0_DATA1_FIN:
                `DATA0_DATA1_FIN:
                begin
                begin
                        next_HCTxPortWEn <= 1'b0;
                        next_HCTxPortWEn <= 1'b0;
                        NextState_sndPkt <= `FIN_SP;
                        NextState_sndPkt <= `FIN_SP;
                end
                end
                `DATA0_DATA1_TERM_BYTE:
                `DATA0_DATA1_TERM_BYTE:
 
    begin
                        if (HCTxPortRdy == 1'b1)
                        if (HCTxPortRdy == 1'b1)
                        begin
                        begin
                                NextState_sndPkt <= `DATA0_DATA1_FIN;
                                NextState_sndPkt <= `DATA0_DATA1_FIN;
                                //Last byte is not valid data,
                                //Last byte is not valid data,
                                //but the 'TX_PACKET_STOP' flag is required
                                //but the 'TX_PACKET_STOP' flag is required
                                //by the SIE state machine to detect end of data packet
                                //by the SIE state machine to detect end of data packet
                                next_HCTxPortWEn <= 1'b1;
                                next_HCTxPortWEn <= 1'b1;
                                next_HCTxPortData <= 8'h00;
                                next_HCTxPortData <= 8'h00;
                                next_HCTxPortCntl <= `TX_PACKET_STOP;
                                next_HCTxPortCntl <= `TX_PACKET_STOP;
                        end
                        end
 
    end
                `DATA0_DATA1_CLR_WEN:
                `DATA0_DATA1_CLR_WEN:
                begin
                begin
                        next_HCTxPortWEn <= 1'b0;
                        next_HCTxPortWEn <= 1'b0;
                        NextState_sndPkt <= `DATA0_DATA1_FIFO_EMPTY;
                        NextState_sndPkt <= `DATA0_DATA1_FIFO_EMPTY;
                end
                end
Line 254... Line 316...
                        NextState_sndPkt <= `DATA0_DATA1_READ_FIFO;
                        NextState_sndPkt <= `DATA0_DATA1_READ_FIFO;
                end
                end
        endcase
        endcase
end
end
 
 
//----------------------------------
 
// Current State Logic (sequential)
// Current State Logic (sequential)
//----------------------------------
 
always @ (posedge clk)
always @ (posedge clk)
begin : sndPkt_CurrentState
begin
        if (rst)
        if (rst)
                CurrState_sndPkt <= `START_SP;
                CurrState_sndPkt <= `START_SP;
        else
        else
                CurrState_sndPkt <= NextState_sndPkt;
                CurrState_sndPkt <= NextState_sndPkt;
end
end
 
 
//----------------------------------
 
// Registered outputs logic
// Registered outputs logic
//----------------------------------
 
always @ (posedge clk)
always @ (posedge clk)
begin : sndPkt_RegOutput
begin
        if (rst)
        if (rst)
        begin
        begin
                sendPacketRdy <= 1'b1;
                sendPacketRdy <= 1'b1;
                HCTxPortReq <= 1'b0;
    fifoReadEn <= 1'b0;
                HCTxPortWEn <= 1'b0;
 
                HCTxPortData <= 8'h00;
                HCTxPortData <= 8'h00;
                HCTxPortCntl <= 8'h00;
                HCTxPortCntl <= 8'h00;
 
    HCTxPortWEn <= 1'b0;
 
    HCTxPortReq <= 1'b0;
                frameNum <= 11'h000;
                frameNum <= 11'h000;
                fifoReadEn <= 1'b0;
 
        end
        end
        else
        else
        begin
        begin
                sendPacketRdy <= next_sendPacketRdy;
                sendPacketRdy <= next_sendPacketRdy;
                HCTxPortReq <= next_HCTxPortReq;
    fifoReadEn <= next_fifoReadEn;
                HCTxPortWEn <= next_HCTxPortWEn;
 
                HCTxPortData <= next_HCTxPortData;
                HCTxPortData <= next_HCTxPortData;
                HCTxPortCntl <= next_HCTxPortCntl;
                HCTxPortCntl <= next_HCTxPortCntl;
 
    HCTxPortWEn <= next_HCTxPortWEn;
 
    HCTxPortReq <= next_HCTxPortReq;
                frameNum <= next_frameNum;
                frameNum <= next_frameNum;
                fifoReadEn <= next_fifoReadEn;
 
        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.