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

Subversion Repositories usbhostslave

[/] [usbhostslave/] [trunk/] [RTL/] [slaveController/] [slaveGetpacket.v] - Diff between revs 37 and 40

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

Rev 37 Rev 40
 
 
// File        : ../RTL/slaveController/slaveGetpacket.v
// File        : ../RTL/slaveController/slaveGetpacket.v
// Generated   : 11/10/06 05:37:25
// Generated   : 11/10/06 05:37:25
// From        : ../RTL/slaveController/slaveGetpacket.asf
// From        : ../RTL/slaveController/slaveGetpacket.asf
// By          : FSM2VHDL ver. 5.0.0.9
// By          : FSM2VHDL ver. 5.0.0.9
 
 
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
////                                                              ////
////                                                              ////
//// slaveGetPacket
//// slaveGetPacket
////                                                              ////
////                                                              ////
//// This file is part of the usbhostslave opencores effort.
//// This file is part of the usbhostslave opencores effort.
//// http://www.opencores.org/cores/usbhostslave/                 ////
//// http://www.opencores.org/cores/usbhostslave/                 ////
////                                                              ////
////                                                              ////
//// Module Description:                                          ////
//// Module Description:                                          ////
//// 
//// 
////                                                              ////
////                                                              ////
//// 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                     ////
////                                                              ////
////                                                              ////
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
//
//
`include "timescale.v"
`include "timescale.v"
`include "usbSerialInterfaceEngine_h.v"
`include "usbSerialInterfaceEngine_h.v"
`include "usbConstants_h.v"
`include "usbConstants_h.v"
 
 
module slaveGetPacket (ACKRxed, CRCError, RXDataIn, RXDataValid, RXFifoData, RXFifoFull, RXFifoWEn, RXOverflow, RXPacketRdy, RXStreamStatusIn, RXTimeOut, RxPID, SIERxTimeOut, SIERxTimeOutEn, bitStuffError, clk, dataSequence, endPointReady, getPacketEn, rst);
module slaveGetPacket (ACKRxed, CRCError, RXDataIn, RXDataValid, RXFifoData, RXFifoFull, RXFifoWEn, RXOverflow, RXPacketRdy, RXStreamStatusIn, RXTimeOut, RxPID, SIERxTimeOut, SIERxTimeOutEn, bitStuffError, clk, dataSequence, endPointReady, getPacketEn, rst);
input   [7:0] RXDataIn;
input   [7:0] RXDataIn;
input   RXDataValid;
input   RXDataValid;
input   RXFifoFull;
input   RXFifoFull;
input   [7:0] RXStreamStatusIn;
input   [7:0] RXStreamStatusIn;
input   SIERxTimeOut;           // Single cycle pulse
input   SIERxTimeOut;           // Single cycle pulse
input   clk;
input   clk;
input   endPointReady;
input   endPointReady;
input   getPacketEn;
input   getPacketEn;
input   rst;
input   rst;
output  ACKRxed;
output  ACKRxed;
output  CRCError;
output  CRCError;
output  [7:0] RXFifoData;
output  [7:0] RXFifoData;
output  RXFifoWEn;
output  RXFifoWEn;
output  RXOverflow;
output  RXOverflow;
output  RXPacketRdy;
output  RXPacketRdy;
output  RXTimeOut;
output  RXTimeOut;
output  [3:0] RxPID;
output  [3:0] RxPID;
output  SIERxTimeOutEn;
output  SIERxTimeOutEn;
output  bitStuffError;
output  bitStuffError;
output  dataSequence;
output  dataSequence;
 
 
reg     ACKRxed, next_ACKRxed;
reg     ACKRxed, next_ACKRxed;
reg     CRCError, next_CRCError;
reg     CRCError, next_CRCError;
wire    [7:0] RXDataIn;
wire    [7:0] RXDataIn;
wire    RXDataValid;
wire    RXDataValid;
reg     [7:0] RXFifoData, next_RXFifoData;
reg     [7:0] RXFifoData, next_RXFifoData;
wire    RXFifoFull;
wire    RXFifoFull;
reg     RXFifoWEn, next_RXFifoWEn;
reg     RXFifoWEn, next_RXFifoWEn;
reg     RXOverflow, next_RXOverflow;
reg     RXOverflow, next_RXOverflow;
reg     RXPacketRdy, next_RXPacketRdy;
reg     RXPacketRdy, next_RXPacketRdy;
wire    [7:0] RXStreamStatusIn;
wire    [7:0] RXStreamStatusIn;
reg     RXTimeOut, next_RXTimeOut;
reg     RXTimeOut, next_RXTimeOut;
reg     [3:0] RxPID, next_RxPID;
reg     [3:0] RxPID, next_RxPID;
wire    SIERxTimeOut;
wire    SIERxTimeOut;
reg     SIERxTimeOutEn, next_SIERxTimeOutEn;
reg     SIERxTimeOutEn, next_SIERxTimeOutEn;
reg     bitStuffError, next_bitStuffError;
reg     bitStuffError, next_bitStuffError;
wire    clk;
wire    clk;
reg     dataSequence, next_dataSequence;
reg     dataSequence, next_dataSequence;
wire    endPointReady;
wire    endPointReady;
wire    getPacketEn;
wire    getPacketEn;
wire    rst;
wire    rst;
 
 
// diagram signals declarations
// diagram signals declarations
reg  [7:0]RXByteOld, next_RXByteOld;
reg  [7:0]RXByteOld, next_RXByteOld;
reg  [7:0]RXByteOldest, next_RXByteOldest;
reg  [7:0]RXByteOldest, next_RXByteOldest;
reg  [7:0]RXByte, next_RXByte;
reg  [7:0]RXByte, next_RXByte;
reg  [7:0]RXStreamStatus, next_RXStreamStatus;
reg  [7:0]RXStreamStatus, next_RXStreamStatus;
 
 
// BINARY ENCODED state machine: slvGetPkt
// BINARY ENCODED state machine: slvGetPkt
// State codes definitions:
// State codes definitions:
`define PROC_PKT_CHK_PID 5'b00000
`define PROC_PKT_CHK_PID 5'b00000
`define PROC_PKT_HS 5'b00001
`define PROC_PKT_HS 5'b00001
`define PROC_PKT_DATA_W_D1 5'b00010
`define PROC_PKT_DATA_W_D1 5'b00010
`define PROC_PKT_DATA_CHK_D1 5'b00011
`define PROC_PKT_DATA_CHK_D1 5'b00011
`define PROC_PKT_DATA_W_D2 5'b00100
`define PROC_PKT_DATA_W_D2 5'b00100
`define PROC_PKT_DATA_FIN 5'b00101
`define PROC_PKT_DATA_FIN 5'b00101
`define PROC_PKT_DATA_CHK_D2 5'b00110
`define PROC_PKT_DATA_CHK_D2 5'b00110
`define PROC_PKT_DATA_W_D3 5'b00111
`define PROC_PKT_DATA_W_D3 5'b00111
`define PROC_PKT_DATA_CHK_D3 5'b01000
`define PROC_PKT_DATA_CHK_D3 5'b01000
`define PROC_PKT_DATA_LOOP_CHK_FIFO 5'b01001
`define PROC_PKT_DATA_LOOP_CHK_FIFO 5'b01001
`define PROC_PKT_DATA_LOOP_FIFO_FULL 5'b01010
`define PROC_PKT_DATA_LOOP_FIFO_FULL 5'b01010
`define PROC_PKT_DATA_LOOP_W_D 5'b01011
`define PROC_PKT_DATA_LOOP_W_D 5'b01011
`define START_GP 5'b01100
`define START_GP 5'b01100
`define WAIT_PKT 5'b01101
`define WAIT_PKT 5'b01101
`define CHK_PKT_START 5'b01110
`define CHK_PKT_START 5'b01110
`define WAIT_EN 5'b01111
`define WAIT_EN 5'b01111
`define PKT_RDY 5'b10000
`define PKT_RDY 5'b10000
`define PROC_PKT_DATA_LOOP_DELAY 5'b10001
`define PROC_PKT_DATA_LOOP_DELAY 5'b10001
`define PROC_PKT_DATA_LOOP_EP_N_RDY 5'b10010
`define PROC_PKT_DATA_LOOP_EP_N_RDY 5'b10010
 
 
reg [4:0] CurrState_slvGetPkt;
reg [4:0] CurrState_slvGetPkt;
reg [4:0] NextState_slvGetPkt;
reg [4:0] NextState_slvGetPkt;
 
 
 
 
//--------------------------------------------------------------------
//--------------------------------------------------------------------
// Machine: slvGetPkt
// Machine: slvGetPkt
//--------------------------------------------------------------------
//--------------------------------------------------------------------
//----------------------------------
//----------------------------------
// Next State Logic (combinatorial)
// Next State Logic (combinatorial)
//----------------------------------
//----------------------------------
always @ (RXDataIn or RXStreamStatusIn or RXByte or RXByteOldest or RXByteOld or RXDataValid or SIERxTimeOut or RXStreamStatus or getPacketEn or endPointReady or RXFifoFull or CRCError or bitStuffError or RXOverflow or RXTimeOut or ACKRxed or dataSequence or SIERxTimeOutEn or RxPID or RXPacketRdy or RXFifoWEn or RXFifoData or CurrState_slvGetPkt)
always @ (RXDataIn or RXStreamStatusIn or RXByte or RXByteOldest or RXByteOld or RXDataValid or SIERxTimeOut or RXStreamStatus or getPacketEn or endPointReady or RXFifoFull or CRCError or bitStuffError or RXOverflow or RXTimeOut or ACKRxed or dataSequence or SIERxTimeOutEn or RxPID or RXPacketRdy or RXFifoWEn or RXFifoData or CurrState_slvGetPkt)
begin : slvGetPkt_NextState
begin : slvGetPkt_NextState
  NextState_slvGetPkt <= CurrState_slvGetPkt;
  NextState_slvGetPkt <= CurrState_slvGetPkt;
  // Set default values for outputs and signals
  // Set default values for outputs and signals
  next_CRCError <= CRCError;
  next_CRCError <= CRCError;
  next_bitStuffError <= bitStuffError;
  next_bitStuffError <= bitStuffError;
  next_RXOverflow <= RXOverflow;
  next_RXOverflow <= RXOverflow;
  next_RXTimeOut <= RXTimeOut;
  next_RXTimeOut <= RXTimeOut;
  next_ACKRxed <= ACKRxed;
  next_ACKRxed <= ACKRxed;
  next_dataSequence <= dataSequence;
  next_dataSequence <= dataSequence;
  next_SIERxTimeOutEn <= SIERxTimeOutEn;
  next_SIERxTimeOutEn <= SIERxTimeOutEn;
  next_RXByte <= RXByte;
  next_RXByte <= RXByte;
  next_RXStreamStatus <= RXStreamStatus;
  next_RXStreamStatus <= RXStreamStatus;
  next_RxPID <= RxPID;
  next_RxPID <= RxPID;
  next_RXPacketRdy <= RXPacketRdy;
  next_RXPacketRdy <= RXPacketRdy;
  next_RXByteOldest <= RXByteOldest;
  next_RXByteOldest <= RXByteOldest;
  next_RXByteOld <= RXByteOld;
  next_RXByteOld <= RXByteOld;
  next_RXFifoWEn <= RXFifoWEn;
  next_RXFifoWEn <= RXFifoWEn;
  next_RXFifoData <= RXFifoData;
  next_RXFifoData <= RXFifoData;
  case (CurrState_slvGetPkt)
  case (CurrState_slvGetPkt)
    `START_GP:
    `START_GP:
      NextState_slvGetPkt <= `WAIT_EN;
      NextState_slvGetPkt <= `WAIT_EN;
    `WAIT_PKT:
    `WAIT_PKT:
    begin
    begin
      next_CRCError <= 1'b0;
      next_CRCError <= 1'b0;
      next_bitStuffError <= 1'b0;
      next_bitStuffError <= 1'b0;
      next_RXOverflow <= 1'b0;
      next_RXOverflow <= 1'b0;
      next_RXTimeOut <= 1'b0;
      next_RXTimeOut <= 1'b0;
      next_ACKRxed <= 1'b0;
      next_ACKRxed <= 1'b0;
      next_dataSequence <= 1'b0;
      next_dataSequence <= 1'b0;
      next_SIERxTimeOutEn <= 1'b1;
      next_SIERxTimeOutEn <= 1'b1;
      if (RXDataValid == 1'b1)
      if (RXDataValid == 1'b1)
      begin
      begin
        NextState_slvGetPkt <= `CHK_PKT_START;
        NextState_slvGetPkt <= `CHK_PKT_START;
        next_RXByte <= RXDataIn;
        next_RXByte <= RXDataIn;
        next_RXStreamStatus <= RXStreamStatusIn;
        next_RXStreamStatus <= RXStreamStatusIn;
      end
      end
      else if (SIERxTimeOut == 1'b1)
      else if (SIERxTimeOut == 1'b1)
      begin
      begin
        NextState_slvGetPkt <= `PKT_RDY;
        NextState_slvGetPkt <= `PKT_RDY;
        next_RXTimeOut <= 1'b1;
        next_RXTimeOut <= 1'b1;
      end
      end
    end
    end
    `CHK_PKT_START:
    `CHK_PKT_START:
      if (RXStreamStatus == `RX_PACKET_START)
      if (RXStreamStatus == `RX_PACKET_START)
      begin
      begin
        NextState_slvGetPkt <= `PROC_PKT_CHK_PID;
        NextState_slvGetPkt <= `PROC_PKT_CHK_PID;
        next_RxPID <= RXByte[3:0];
        next_RxPID <= RXByte[3:0];
      end
      end
      else
      else
      begin
      begin
        NextState_slvGetPkt <= `PKT_RDY;
        NextState_slvGetPkt <= `PKT_RDY;
        next_RXTimeOut <= 1'b1;
        next_RXTimeOut <= 1'b1;
      end
      end
    `WAIT_EN:
    `WAIT_EN:
    begin
    begin
      next_RXPacketRdy <= 1'b0;
      next_RXPacketRdy <= 1'b0;
      next_SIERxTimeOutEn <= 1'b0;
      next_SIERxTimeOutEn <= 1'b0;
      if (getPacketEn == 1'b1)
      if (getPacketEn == 1'b1)
        NextState_slvGetPkt <= `WAIT_PKT;
        NextState_slvGetPkt <= `WAIT_PKT;
    end
    end
    `PKT_RDY:
    `PKT_RDY:
    begin
    begin
      next_RXPacketRdy <= 1'b1;
      next_RXPacketRdy <= 1'b1;
      NextState_slvGetPkt <= `WAIT_EN;
      NextState_slvGetPkt <= `WAIT_EN;
    end
    end
    `PROC_PKT_CHK_PID:
    `PROC_PKT_CHK_PID:
      if (RXByte[1:0] == `HANDSHAKE)
      if (RXByte[1:0] == `HANDSHAKE)
        NextState_slvGetPkt <= `PROC_PKT_HS;
        NextState_slvGetPkt <= `PROC_PKT_HS;
      else if (RXByte[1:0] == `DATA)
      else if (RXByte[1:0] == `DATA)
        NextState_slvGetPkt <= `PROC_PKT_DATA_W_D1;
        NextState_slvGetPkt <= `PROC_PKT_DATA_W_D1;
      else
      else
        NextState_slvGetPkt <= `PKT_RDY;
        NextState_slvGetPkt <= `PKT_RDY;
    `PROC_PKT_HS:
    `PROC_PKT_HS:
      if (RXDataValid == 1'b1)
      if (RXDataValid == 1'b1)
      begin
      begin
        NextState_slvGetPkt <= `PKT_RDY;
        NextState_slvGetPkt <= `PKT_RDY;
        next_RXOverflow <= RXDataIn[`RX_OVERFLOW_BIT];
        next_RXOverflow <= RXDataIn[`RX_OVERFLOW_BIT];
        next_ACKRxed <= RXDataIn[`ACK_RXED_BIT];
        next_ACKRxed <= RXDataIn[`ACK_RXED_BIT];
      end
      end
    `PROC_PKT_DATA_W_D1:
    `PROC_PKT_DATA_W_D1:
      if (RXDataValid == 1'b1)
      if (RXDataValid == 1'b1)
      begin
      begin
        NextState_slvGetPkt <= `PROC_PKT_DATA_CHK_D1;
        NextState_slvGetPkt <= `PROC_PKT_DATA_CHK_D1;
        next_RXByte <= RXDataIn;
        next_RXByte <= RXDataIn;
        next_RXStreamStatus <= RXStreamStatusIn;
        next_RXStreamStatus <= RXStreamStatusIn;
      end
      end
    `PROC_PKT_DATA_CHK_D1:
    `PROC_PKT_DATA_CHK_D1:
      if (RXStreamStatus == `RX_PACKET_STREAM)
      if (RXStreamStatus == `RX_PACKET_STREAM)
      begin
      begin
        NextState_slvGetPkt <= `PROC_PKT_DATA_W_D2;
        NextState_slvGetPkt <= `PROC_PKT_DATA_W_D2;
        next_RXByteOldest <= RXByte;
        next_RXByteOldest <= RXByte;
      end
      end
      else
      else
        NextState_slvGetPkt <= `PROC_PKT_DATA_FIN;
        NextState_slvGetPkt <= `PROC_PKT_DATA_FIN;
    `PROC_PKT_DATA_W_D2:
    `PROC_PKT_DATA_W_D2:
      if (RXDataValid == 1'b1)
      if (RXDataValid == 1'b1)
      begin
      begin
        NextState_slvGetPkt <= `PROC_PKT_DATA_CHK_D2;
        NextState_slvGetPkt <= `PROC_PKT_DATA_CHK_D2;
        next_RXByte <= RXDataIn;
        next_RXByte <= RXDataIn;
        next_RXStreamStatus <= RXStreamStatusIn;
        next_RXStreamStatus <= RXStreamStatusIn;
      end
      end
    `PROC_PKT_DATA_FIN:
    `PROC_PKT_DATA_FIN:
    begin
    begin
      next_CRCError <= RXByte[`CRC_ERROR_BIT];
      next_CRCError <= RXByte[`CRC_ERROR_BIT];
      next_bitStuffError <= RXByte[`BIT_STUFF_ERROR_BIT];
      next_bitStuffError <= RXByte[`BIT_STUFF_ERROR_BIT];
      next_dataSequence <= RXByte[`DATA_SEQUENCE_BIT];
      next_dataSequence <= RXByte[`DATA_SEQUENCE_BIT];
      NextState_slvGetPkt <= `PKT_RDY;
      NextState_slvGetPkt <= `PKT_RDY;
    end
    end
    `PROC_PKT_DATA_CHK_D2:
    `PROC_PKT_DATA_CHK_D2:
      if (RXStreamStatus == `RX_PACKET_STREAM)
      if (RXStreamStatus == `RX_PACKET_STREAM)
      begin
      begin
        NextState_slvGetPkt <= `PROC_PKT_DATA_W_D3;
        NextState_slvGetPkt <= `PROC_PKT_DATA_W_D3;
        next_RXByteOld <= RXByte;
        next_RXByteOld <= RXByte;
      end
      end
      else
      else
        NextState_slvGetPkt <= `PROC_PKT_DATA_FIN;
        NextState_slvGetPkt <= `PROC_PKT_DATA_FIN;
    `PROC_PKT_DATA_W_D3:
    `PROC_PKT_DATA_W_D3:
      if (RXDataValid == 1'b1)
      if (RXDataValid == 1'b1)
      begin
      begin
        NextState_slvGetPkt <= `PROC_PKT_DATA_CHK_D3;
        NextState_slvGetPkt <= `PROC_PKT_DATA_CHK_D3;
        next_RXByte <= RXDataIn;
        next_RXByte <= RXDataIn;
        next_RXStreamStatus <= RXStreamStatusIn;
        next_RXStreamStatus <= RXStreamStatusIn;
      end
      end
    `PROC_PKT_DATA_CHK_D3:
    `PROC_PKT_DATA_CHK_D3:
      if (RXStreamStatus == `RX_PACKET_STREAM)
      if (RXStreamStatus == `RX_PACKET_STREAM)
        NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_CHK_FIFO;
        NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_CHK_FIFO;
      else
      else
        NextState_slvGetPkt <= `PROC_PKT_DATA_FIN;
        NextState_slvGetPkt <= `PROC_PKT_DATA_FIN;
    `PROC_PKT_DATA_LOOP_CHK_FIFO:
    `PROC_PKT_DATA_LOOP_CHK_FIFO:
      if (endPointReady == 1'b0)
      if (endPointReady == 1'b0)
        NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_EP_N_RDY;
        NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_EP_N_RDY;
      else if (RXFifoFull == 1'b1)
      else if (RXFifoFull == 1'b1)
      begin
      begin
        NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_FIFO_FULL;
        NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_FIFO_FULL;
        next_RXOverflow <= 1'b1;
        next_RXOverflow <= 1'b1;
      end
      end
      else
      else
      begin
      begin
        NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_W_D;
        NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_W_D;
        next_RXFifoWEn <= 1'b1;
        next_RXFifoWEn <= 1'b1;
        next_RXFifoData <= RXByteOldest;
        next_RXFifoData <= RXByteOldest;
        next_RXByteOldest <= RXByteOld;
        next_RXByteOldest <= RXByteOld;
        next_RXByteOld <= RXByte;
        next_RXByteOld <= RXByte;
      end
      end
    `PROC_PKT_DATA_LOOP_FIFO_FULL:
    `PROC_PKT_DATA_LOOP_FIFO_FULL:
      NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_W_D;
      NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_W_D;
    `PROC_PKT_DATA_LOOP_W_D:
    `PROC_PKT_DATA_LOOP_W_D:
    begin
    begin
      next_RXFifoWEn <= 1'b0;
      next_RXFifoWEn <= 1'b0;
      if ((RXDataValid == 1'b1) && (RXStreamStatusIn == `RX_PACKET_STREAM))
      if ((RXDataValid == 1'b1) && (RXStreamStatusIn == `RX_PACKET_STREAM))
      begin
      begin
        NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_DELAY;
        NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_DELAY;
        next_RXByte <= RXDataIn;
        next_RXByte <= RXDataIn;
      end
      end
      else if (RXDataValid == 1'b1)
      else if (RXDataValid == 1'b1)
      begin
      begin
        NextState_slvGetPkt <= `PROC_PKT_DATA_FIN;
        NextState_slvGetPkt <= `PROC_PKT_DATA_FIN;
        next_RXByte <= RXDataIn;
        next_RXByte <= RXDataIn;
      end
      end
    end
    end
    `PROC_PKT_DATA_LOOP_DELAY:
    `PROC_PKT_DATA_LOOP_DELAY:
      NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_CHK_FIFO;
      NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_CHK_FIFO;
    `PROC_PKT_DATA_LOOP_EP_N_RDY:    // Discard data
    `PROC_PKT_DATA_LOOP_EP_N_RDY:    // Discard data
      NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_W_D;
      NextState_slvGetPkt <= `PROC_PKT_DATA_LOOP_W_D;
  endcase
  endcase
end
end
 
 
//----------------------------------
//----------------------------------
// Current State Logic (sequential)
// Current State Logic (sequential)
//----------------------------------
//----------------------------------
always @ (posedge clk)
always @ (posedge clk)
begin : slvGetPkt_CurrentState
begin : slvGetPkt_CurrentState
  if (rst)
  if (rst)
    CurrState_slvGetPkt <= `START_GP;
    CurrState_slvGetPkt <= `START_GP;
  else
  else
    CurrState_slvGetPkt <= NextState_slvGetPkt;
    CurrState_slvGetPkt <= NextState_slvGetPkt;
end
end
 
 
//----------------------------------
//----------------------------------
// Registered outputs logic
// Registered outputs logic
//----------------------------------
//----------------------------------
always @ (posedge clk)
always @ (posedge clk)
begin : slvGetPkt_RegOutput
begin : slvGetPkt_RegOutput
  if (rst)
  if (rst)
  begin
  begin
    RXByteOld <= 8'h00;
    RXByteOld <= 8'h00;
    RXByteOldest <= 8'h00;
    RXByteOldest <= 8'h00;
    RXByte <= 8'h00;
    RXByte <= 8'h00;
    RXStreamStatus <= 8'h00;
    RXStreamStatus <= 8'h00;
    RXPacketRdy <= 1'b0;
    RXPacketRdy <= 1'b0;
    RXFifoWEn <= 1'b0;
    RXFifoWEn <= 1'b0;
    RXFifoData <= 8'h00;
    RXFifoData <= 8'h00;
    CRCError <= 1'b0;
    CRCError <= 1'b0;
    bitStuffError <= 1'b0;
    bitStuffError <= 1'b0;
    RXOverflow <= 1'b0;
    RXOverflow <= 1'b0;
    RXTimeOut <= 1'b0;
    RXTimeOut <= 1'b0;
    ACKRxed <= 1'b0;
    ACKRxed <= 1'b0;
    dataSequence <= 1'b0;
    dataSequence <= 1'b0;
    SIERxTimeOutEn <= 1'b0;
    SIERxTimeOutEn <= 1'b0;
    RxPID <= 4'h0;
    RxPID <= 4'h0;
  end
  end
  else
  else
  begin
  begin
    RXByteOld <= next_RXByteOld;
    RXByteOld <= next_RXByteOld;
    RXByteOldest <= next_RXByteOldest;
    RXByteOldest <= next_RXByteOldest;
    RXByte <= next_RXByte;
    RXByte <= next_RXByte;
    RXStreamStatus <= next_RXStreamStatus;
    RXStreamStatus <= next_RXStreamStatus;
    RXPacketRdy <= next_RXPacketRdy;
    RXPacketRdy <= next_RXPacketRdy;
    RXFifoWEn <= next_RXFifoWEn;
    RXFifoWEn <= next_RXFifoWEn;
    RXFifoData <= next_RXFifoData;
    RXFifoData <= next_RXFifoData;
    CRCError <= next_CRCError;
    CRCError <= next_CRCError;
    bitStuffError <= next_bitStuffError;
    bitStuffError <= next_bitStuffError;
    RXOverflow <= next_RXOverflow;
    RXOverflow <= next_RXOverflow;
    RXTimeOut <= next_RXTimeOut;
    RXTimeOut <= next_RXTimeOut;
    ACKRxed <= next_ACKRxed;
    ACKRxed <= next_ACKRxed;
    dataSequence <= next_dataSequence;
    dataSequence <= next_dataSequence;
    SIERxTimeOutEn <= next_SIERxTimeOutEn;
    SIERxTimeOutEn <= next_SIERxTimeOutEn;
    RxPID <= next_RxPID;
    RxPID <= next_RxPID;
  end
  end
end
end
 
 
 
 

powered by: WebSVN 2.1.0

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