/* -*- c++ -*- * SOCLIB_LGPL_HEADER_BEGIN * * This file is part of SoCLib, GNU LGPLv2.1. * * SoCLib 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; version 2.1 of the License. * * SoCLib 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 SoCLib; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA * * SOCLIB_LGPL_HEADER_END * * Authors : Abdelmalek SI MERABET * Date : March 2010 * Copyright: UPMC - LIP6 */ #ifndef VCI_LOCAL_RING_H_ #define VCI_LOCAL_RING_H_ #include #include "caba_base_module.h" #include "mapping_table.h" #include "generic_fifo.h" #include "address_decoding_table.h" #include "address_masking_table.h" #include "ring_signals_2.h" #include "vci_ring_initiator.h" #include "vci_ring_target.h" #include "half_gateway_initiator_2.h" #include "half_gateway_target_2.h" namespace soclib { namespace caba { using namespace sc_core; template class VciLocalRingNetwork2 : public soclib::caba::BaseModule { public: sc_in p_clk; sc_in p_resetn; soclib::caba::VciInitiator* p_to_target; soclib::caba::VciTarget * p_to_initiator; // Gate interface soclib::caba::GateInitiator2 p_gate_initiator; soclib::caba::GateTarget2 p_gate_target; protected: SC_HAS_PROCESS(VciLocalRingNetwork2); private: int m_ns; // network number of signals int m_nai; // number of attached initiators int m_nat; // number of attached targets typedef RingSignals2 ring_signal_t; typedef VciRingInitiator ring_initiator_t; typedef VciRingTarget ring_target_t; typedef HalfGatewayInitiator2 half_gateway_initiator_t; typedef HalfGatewayTarget2 half_gateway_target_t; void transition(); void genMoore(); ring_signal_t *m_ring_signal; ring_initiator_t **m_ring_initiator; ring_target_t **m_ring_target; half_gateway_initiator_t *m_half_gateway_initiator; half_gateway_target_t *m_half_gateway_target; public: VciLocalRingNetwork2( sc_module_name insname, const soclib::common::MappingTable &mt, const soclib::common::IntTab &ringid, const int &wrapper_fifo_depth, const int &half_gateway_fifo_depth, int nb_attached_initiator, int nb_attached_target); ~VciLocalRingNetwork2(); }; }} // end namespace #endif //VCI_LOCAL_RING_H_