/* -*- 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 * * Copyright (c) UPMC, Lip6, Asim * Nicolas Pouillon , 2007 * * Maintainers: nipo */ #ifndef SOCLIB_VCI_DMA_TSAR_V2_H #define SOCLIB_VCI_DMA_TSAR_V2_H #include #include #include "vci_target_fsm.h" #include "vci_initiator_fsm.h" #include "caba_base_module.h" #include "mapping_table.h" namespace soclib { namespace caba { using namespace sc_core; template class VciDmaTsarV2 : public caba::BaseModule { private: soclib::caba::VciTargetFsm m_vci_target_fsm; soclib::caba::VciInitiatorFsm m_vci_init_fsm; typedef typename soclib::caba::VciInitiatorReq req_t; bool on_write(int seg, typename vci_param::addr_t addr, typename vci_param::data_t data, int be); bool on_read(int seg, typename vci_param::addr_t addr, typename vci_param::data_t &data); void read_done( req_t *req ); void write_finish( req_t *req ); void transition(); void genMoore(); uint32_t m_src; uint32_t m_dst; uint32_t m_len; uint32_t m_offset; uint32_t m_offset_buffer; bool m_partial; bool m_must_finish; bool m_irq_enabled; bool r_irq; std::vector m_data; bool m_handling; void next_req(); void ended(); protected: SC_HAS_PROCESS(VciDmaTsarV2); public: sc_in p_clk; sc_in p_resetn; soclib::caba::VciTarget p_vci_target; soclib::caba::VciInitiator p_vci_initiator; sc_out p_irq; VciDmaTsarV2( sc_module_name name, const soclib::common::MappingTable &mt, const soclib::common::IntTab &srcid, const soclib::common::IntTab &tgtid, const size_t burst_size ); }; }} #endif /* SOCLIB_VCI_DMA_TSAR_V2_H */ // Local Variables: // tab-width: 4 // c-basic-offset: 4 // c-file-offsets:((innamespace . 0)(inline-open . 0)) // indent-tabs-mode: nil // End: // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4