112047Schristian.menard@tu-dresden.de/*
212047Schristian.menard@tu-dresden.de * Copyright (c) 2016, Dresden University of Technology (TU Dresden)
312047Schristian.menard@tu-dresden.de * All rights reserved.
412047Schristian.menard@tu-dresden.de *
512047Schristian.menard@tu-dresden.de * Redistribution and use in source and binary forms, with or without
612047Schristian.menard@tu-dresden.de * modification, are permitted provided that the following conditions are
712047Schristian.menard@tu-dresden.de * met:
812047Schristian.menard@tu-dresden.de *
912047Schristian.menard@tu-dresden.de * 1. Redistributions of source code must retain the above copyright notice,
1012047Schristian.menard@tu-dresden.de *    this list of conditions and the following disclaimer.
1112047Schristian.menard@tu-dresden.de *
1212047Schristian.menard@tu-dresden.de * 2. Redistributions in binary form must reproduce the above copyright
1312047Schristian.menard@tu-dresden.de *    notice, this list of conditions and the following disclaimer in the
1412047Schristian.menard@tu-dresden.de *    documentation and/or other materials provided with the distribution.
1512047Schristian.menard@tu-dresden.de *
1612047Schristian.menard@tu-dresden.de * 3. Neither the name of the copyright holder nor the names of its
1712047Schristian.menard@tu-dresden.de *    contributors may be used to endorse or promote products derived from
1812047Schristian.menard@tu-dresden.de *    this software without specific prior written permission.
1912047Schristian.menard@tu-dresden.de *
2012047Schristian.menard@tu-dresden.de * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2112047Schristian.menard@tu-dresden.de * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2212047Schristian.menard@tu-dresden.de * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2312047Schristian.menard@tu-dresden.de * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
2412047Schristian.menard@tu-dresden.de * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
2512047Schristian.menard@tu-dresden.de * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
2612047Schristian.menard@tu-dresden.de * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
2712047Schristian.menard@tu-dresden.de * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
2812047Schristian.menard@tu-dresden.de * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
2912047Schristian.menard@tu-dresden.de * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
3012047Schristian.menard@tu-dresden.de * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3112047Schristian.menard@tu-dresden.de *
3212047Schristian.menard@tu-dresden.de * Authors: Christian Menard
3312047Schristian.menard@tu-dresden.de */
3412047Schristian.menard@tu-dresden.de
3512047Schristian.menard@tu-dresden.de#ifndef __GEM5_SLAVE_TRANSACTOR_HH__
3612047Schristian.menard@tu-dresden.de#define __GEM5_SLAVE_TRANSACTOR_HH__
3712047Schristian.menard@tu-dresden.de
3812047Schristian.menard@tu-dresden.de#include <tlm_utils/simple_initiator_socket.h>
3912047Schristian.menard@tu-dresden.de
4012047Schristian.menard@tu-dresden.de#include <systemc>
4112047Schristian.menard@tu-dresden.de#include <tlm>
4212047Schristian.menard@tu-dresden.de
4312047Schristian.menard@tu-dresden.de#include "sc_slave_port.hh"
4412047Schristian.menard@tu-dresden.de#include "sim_control_if.hh"
4512047Schristian.menard@tu-dresden.de
4612047Schristian.menard@tu-dresden.denamespace Gem5SystemC
4712047Schristian.menard@tu-dresden.de{
4812047Schristian.menard@tu-dresden.de
4912047Schristian.menard@tu-dresden.declass Gem5SlaveTransactor : public sc_core::sc_module
5012047Schristian.menard@tu-dresden.de{
5112047Schristian.menard@tu-dresden.de  public:
5212047Schristian.menard@tu-dresden.de    // module interface
5312047Schristian.menard@tu-dresden.de    tlm_utils::simple_initiator_socket<SCSlavePort> socket;
5412047Schristian.menard@tu-dresden.de    sc_core::sc_port<Gem5SimControlInterface> sim_control;
5512047Schristian.menard@tu-dresden.de
5612047Schristian.menard@tu-dresden.de  private:
5712047Schristian.menard@tu-dresden.de    std::string portName;
5812047Schristian.menard@tu-dresden.de
5912047Schristian.menard@tu-dresden.de  public:
6012047Schristian.menard@tu-dresden.de    SC_HAS_PROCESS(Gem5SlaveTransactor);
6112047Schristian.menard@tu-dresden.de
6212047Schristian.menard@tu-dresden.de    Gem5SlaveTransactor(sc_core::sc_module_name name,
6312047Schristian.menard@tu-dresden.de                        const std::string& portName);
6412047Schristian.menard@tu-dresden.de
6512047Schristian.menard@tu-dresden.de    void before_end_of_elaboration();
6612047Schristian.menard@tu-dresden.de};
6712047Schristian.menard@tu-dresden.de
6812047Schristian.menard@tu-dresden.de}
6912047Schristian.menard@tu-dresden.de
7012047Schristian.menard@tu-dresden.de#endif
71