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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [orpsocv2/] [bench/] [sysc/] [include/] [JtagSC.h] - Diff between revs 63 and 462

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

Rev 63 Rev 462
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
 
 
// Main module providing the JTAG interface: definition
// Main module providing the JTAG interface: definition
 
 
// Copyright (C) 2009  Embecosm Limited <info@embecosm.com>
// Copyright (C) 2009  Embecosm Limited <info@embecosm.com>
 
 
// Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
// Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
 
 
// This file is part of the Embecosm cycle accurate SystemC JTAG library.
// This file is part of the Embecosm cycle accurate SystemC JTAG library.
 
 
// This program is free software: you can redistribute it and/or modify it
// This program is free software: you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by
// under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or (at your
// the Free Software Foundation, either version 3 of the License, or (at your
// option) any later version.
// option) any later version.
 
 
// This program is distributed in the hope that it will be useful, but WITHOUT
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
// License for more details.
// License for more details.
 
 
// You should have received a copy of the GNU Lesser General Public License
// You should have received a copy of the GNU Lesser General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 
// The C/C++ parts of this program are commented throughout in a fashion
// The C/C++ parts of this program are commented throughout in a fashion
// suitable for processing with Doxygen.
// suitable for processing with Doxygen.
 
 
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
 
 
// $Id$
// $Id$
 
 
#ifndef JTAG_SC__H
#ifndef JTAG_SC__H
#define JTAG_SC__H
#define JTAG_SC__H
 
 
#include "systemc"
#include "systemc"
#include "TapAction.h"
#include "TapAction.h"
 
 
 
 
//! Default size of the FIFO queuing TAP actions
//! Default size of the FIFO queuing TAP actions
#define DEFAULT_TAP_FIFO_SIZE  256
#define DEFAULT_TAP_FIFO_SIZE  256
 
 
//! The main JTAG interface module
//! The main JTAG interface module
 
 
//! This provides a pin interface on one side (to drive JTAG ports on a chip)
//! This provides a pin interface on one side (to drive JTAG ports on a chip)
//! and a FIFO on the other, allowing the user to queue JTAG actions.
//! and a FIFO on the other, allowing the user to queue JTAG actions.
 
 
//! The pin interface is:
//! The pin interface is:
//! - sysReset (input)  The system reset. When this is asserted, the interface
//! - sysReset (input)  The system reset. When this is asserted, the interface
//!                     will do nothing except drive TRST low.
//!                     will do nothing except drive TRST low.
//! - tck (input)       The JTAG clock (supplied externally)
//! - tck (input)       The JTAG clock (supplied externally)
//! - tdi (output)      Drives the TDI pin
//! - tdi (output)      Drives the TDI pin
//! - tdo (input)       Receives the TDO pin
//! - tdo (input)       Receives the TDO pin
//! - tms (output)      Drives the TMS pin
//! - tms (output)      Drives the TMS pin
//! - trst (output)     Drives the TRST pin
//! - trst (output)     Drives the TRST pin
 
 
//! @note The JTAG pins are reversed, because this module is @b driving the
//! @note The JTAG pins are reversed, because this module is @b driving the
//!       pins.
//!       pins.
 
 
//! The FIFO allows the user to queue actions, which are of abstract type
//! The FIFO allows the user to queue actions, which are of abstract type
//! TapAction::. This is subclassed to provide specific actions for reset
//! TapAction::. This is subclassed to provide specific actions for reset
//! (TapActionReset::), DR-scan (TapActionDRScan::) and IR-scan
//! (TapActionReset::), DR-scan (TapActionDRScan::) and IR-scan
//! (TapActionIRScan::).
//! (TapActionIRScan::).
 
 
//! The size of the FIFO can optionally be specified in the constructor.
//! The size of the FIFO can optionally be specified in the constructor.
 
 
//! The class provides a method, sensitive to the clock, which reads actions
//! The class provides a method, sensitive to the clock, which reads actions
//! from the FIFO and processes them, issuing the requisite sequence of
//! from the FIFO and processes them, issuing the requisite sequence of
//! changes of the JTAG pins until the action is complete. It then notifies
//! changes of the JTAG pins until the action is complete. It then notifies
//! the action owner of completion, through an sc_event, which is part of the
//! the action owner of completion, through an sc_event, which is part of the
//! ::TapAction class.
//! ::TapAction class.
//! 
//! 
class JtagSC
class JtagSC:public sc_core::sc_module {
  : public sc_core::sc_module
 
{
 
public:
public:
 
 
  // The ports. Note that the naming of the low level JTAG ports is reversed,
        // The ports. Note that the naming of the low level JTAG ports is reversed,
  // because we are driving the inputs! */
        // because we are driving the inputs! */
  sc_core::sc_in<bool>   sysReset;      //!< The system reset (active high)
        sc_core::sc_in < bool > sysReset;       //!< The system reset (active high)
 
 
  sc_core::sc_in<bool>   tck;           //!< External JTAG TCK
        sc_core::sc_in < bool > tck;    //!< External JTAG TCK
  sc_core::sc_out<bool>  tdi;           //!< JTAG TDI pin
        sc_core::sc_out < bool > tdi;   //!< JTAG TDI pin
  sc_core::sc_in<bool>   tdo;           //!< JTAG TDO pin
        sc_core::sc_in < bool > tdo;    //!< JTAG TDO pin
  sc_core::sc_out<bool>  tms;           //!< JTAG TMS pin
        sc_core::sc_out < bool > tms;   //!< JTAG TMS pin
  sc_core::sc_out<bool>  trst;          //!< JTAG TRST pin
        sc_core::sc_out < bool > trst;  //!< JTAG TRST pin
 
 
  //! JTAG action queue
  //! JTAG action queue
  sc_core::sc_fifo<TapAction *> *tapActionQueue;
        sc_core::sc_fifo < TapAction * >*tapActionQueue;
 
 
  // Constructor and destructor
        // Constructor and destructor
  JtagSC (sc_core::sc_module_name  name,
        JtagSC(sc_core::sc_module_name name,
          int                      fifo_size = DEFAULT_TAP_FIFO_SIZE);
               int fifo_size = DEFAULT_TAP_FIFO_SIZE);
  ~JtagSC ();
        ~JtagSC();
 
 
 
 
protected:
protected:
 
 
  // Method to process the actions
        // Method to process the actions
  void  processActions();
        void processActions();
 
 
 
 
private:
private:
 
 
  //! The TAP state machine
        //! The TAP state machine
  TapStateMachine *stateMachine;
        TapStateMachine * stateMachine;
 
 
  //! The next TAP action
        //! The next TAP action
  TapAction *currentTapAction;
        TapAction *currentTapAction;
 
 
};      // JtagSC ()
};                              // JtagSC ()
 
 
#endif  // JTAG_SC__H
#endif // JTAG_SC__H
 
 

powered by: WebSVN 2.1.0

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