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

Subversion Repositories async_sdm_noc

[/] [async_sdm_noc/] [trunk/] [sdm/] [tb/] [rtdriver.h] - Diff between revs 32 and 37

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 32 Rev 37
/*
/*
 Asynchronous SDM NoC
 Asynchronous SDM NoC
 (C)2011 Wei Song
 (C)2011 Wei Song
 Advanced Processor Technologies Group
 Advanced Processor Technologies Group
 Computer Science, the Univ. of Manchester, UK
 Computer Science, the Univ. of Manchester, UK
 
 
 Authors:
 Authors:
 Wei Song     wsong83@gmail.com
 Wei Song     wsong83@gmail.com
 
 
 License: LGPL 3.0 or later
 License: LGPL 3.0 or later
 
 
 The port driver between NI and router.
 The port driver between NI and router.
 
 
 History:
 History:
 27/04/2010  Initial version. <wsong83@gmail.com>
 27/04/2010  Initial version. <wsong83@gmail.com>
 16/10/2010  Support SDM. <wsong83@gmail.com>
 16/10/2010  Support SDM. <wsong83@gmail.com>
 30/05/2011  Remove the sc_unit datatype to support data width larger than 64. <wsong83@gmail.com>
 30/05/2011  Remove the sc_unit datatype to support data width larger than 64. <wsong83@gmail.com>
 
 
*/
*/
 
 
#ifndef RT_DRIVER_H_
#ifndef RT_DRIVER_H_
#define RT_DRIVER_H_
#define RT_DRIVER_H_
 
 
#include "define.h"
#include "define.h"
#include <systemc.h>
#include <systemc.h>
#include "pdu_def.h"
#include "pdu_def.h"
 
 
SC_MODULE(RTDriver) {
SC_MODULE(RTDriver) {
 
 
 public:
 public:
  // port with network interface
  // port with network interface
  sc_port<sc_fifo_in_if<FLIT> > NI2P;
  sc_port<sc_fifo_in_if<FLIT> > NI2P;
  sc_port<sc_fifo_out_if<FLIT> > P2NI;
  sc_port<sc_fifo_out_if<FLIT> > P2NI;
 
 
  // signals from interface to router
  // signals from interface to router
  sc_out<sc_lv<ChBW*4> > rtid [4];
  sc_out<sc_lv<ChBW*4> > rtid [4];
  sc_in<sc_lv<ChBW*4> > rtod [4];
  sc_in<sc_lv<ChBW*4> > rtod [4];
 
 
#ifdef ENABLE_CHANNEL_CLISING
#ifdef ENABLE_CHANNEL_CLISING
  sc_out<sc_lv<ChBW*4> > rtid4;
  sc_out<sc_lv<ChBW*4> > rtid4;
  sc_in<sc_lv<ChBW*4> > rtod4;
  sc_in<sc_lv<ChBW*4> > rtod4;
  sc_in<sc_lv<ChBW*4> > rtia;
  sc_in<sc_lv<ChBW*4> > rtia;
  sc_out<sc_lv<ChBW*4> > rtoa;
  sc_out<sc_lv<ChBW*4> > rtoa;
#else
#else
  sc_out<sc_logic > rtid4;
  sc_out<sc_logic > rtid4;
  sc_in<sc_logic > rtod4;
  sc_in<sc_logic > rtod4;
  sc_in<sc_logic> rtia;
  sc_in<sc_logic> rtia;
  sc_out<sc_logic> rtoa;
  sc_out<sc_logic> rtoa;
#endif
#endif
 
 
  SC_HAS_PROCESS(RTDriver);
  SC_HAS_PROCESS(RTDriver);
  RTDriver(sc_module_name name);
  RTDriver(sc_module_name name);
 
 
  void IPdetect();              // Method to detect the router input port
  void IPdetect();              // Method to detect the router input port
  void OPdetect();              // Method to detect the router output port
  void OPdetect();              // Method to detect the router output port
  void send();                  // thread of sending a flit
  void send();                  // thread of sending a flit
  void recv();                  // thread to recveive a flit
  void recv();                  // thread to recveive a flit
 
 
  sc_signal<bool> rtinp_sig; // fire when the router input port is ready for a new flit
  sc_signal<bool> rtinp_sig; // fire when the router input port is ready for a new flit
  sc_signal<bool> rtoutp_sig; // fire when the router output port has a new flit
  sc_signal<bool> rtoutp_sig; // fire when the router output port has a new flit
 
 
  unsigned int c1o42b(unsigned int); // convert 1-of-4 to binary
  unsigned int c1o42b(unsigned int); // convert 1-of-4 to binary
};
};
 
 
 
 
#endif
#endif
 
 

powered by: WebSVN 2.1.0

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