112047Schristian.menard@tu-dresden.de/*
212047Schristian.menard@tu-dresden.de * Copyright (c) 2015, University of Kaiserslautern
312047Schristian.menard@tu-dresden.de * Copyright (c) 2016, Dresden University of Technology (TU Dresden)
412047Schristian.menard@tu-dresden.de * All rights reserved.
512047Schristian.menard@tu-dresden.de *
612047Schristian.menard@tu-dresden.de * Redistribution and use in source and binary forms, with or without
712047Schristian.menard@tu-dresden.de * modification, are permitted provided that the following conditions are
812047Schristian.menard@tu-dresden.de * met:
912047Schristian.menard@tu-dresden.de *
1012047Schristian.menard@tu-dresden.de * 1. Redistributions of source code must retain the above copyright notice,
1112047Schristian.menard@tu-dresden.de *    this list of conditions and the following disclaimer.
1212047Schristian.menard@tu-dresden.de *
1312047Schristian.menard@tu-dresden.de * 2. Redistributions in binary form must reproduce the above copyright
1412047Schristian.menard@tu-dresden.de *    notice, this list of conditions and the following disclaimer in the
1512047Schristian.menard@tu-dresden.de *    documentation and/or other materials provided with the distribution.
1612047Schristian.menard@tu-dresden.de *
1712047Schristian.menard@tu-dresden.de * 3. Neither the name of the copyright holder nor the names of its
1812047Schristian.menard@tu-dresden.de *    contributors may be used to endorse or promote products derived from
1912047Schristian.menard@tu-dresden.de *    this software without specific prior written permission.
2012047Schristian.menard@tu-dresden.de *
2112047Schristian.menard@tu-dresden.de * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2212047Schristian.menard@tu-dresden.de * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2312047Schristian.menard@tu-dresden.de * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2412047Schristian.menard@tu-dresden.de * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
2512047Schristian.menard@tu-dresden.de * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
2612047Schristian.menard@tu-dresden.de * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
2712047Schristian.menard@tu-dresden.de * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
2812047Schristian.menard@tu-dresden.de * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
2912047Schristian.menard@tu-dresden.de * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
3012047Schristian.menard@tu-dresden.de * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
3112047Schristian.menard@tu-dresden.de * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3212047Schristian.menard@tu-dresden.de *
3312047Schristian.menard@tu-dresden.de * Authors:
3412047Schristian.menard@tu-dresden.de *    Matthias Jung
3512047Schristian.menard@tu-dresden.de *    Christian Menard
3612047Schristian.menard@tu-dresden.de */
3712047Schristian.menard@tu-dresden.de
3812047Schristian.menard@tu-dresden.de#include "sc_ext.hh"
3912047Schristian.menard@tu-dresden.de
4012047Schristian.menard@tu-dresden.deusing namespace tlm;
4112047Schristian.menard@tu-dresden.de
4212047Schristian.menard@tu-dresden.denamespace Gem5SystemC
4312047Schristian.menard@tu-dresden.de{
4412047Schristian.menard@tu-dresden.de
4512047Schristian.menard@tu-dresden.deGem5Extension::Gem5Extension(PacketPtr packet)
4612047Schristian.menard@tu-dresden.de{
4712047Schristian.menard@tu-dresden.de    Packet = packet;
4812047Schristian.menard@tu-dresden.de    pipeThrough = false;
4912047Schristian.menard@tu-dresden.de}
5012047Schristian.menard@tu-dresden.de
5112047Schristian.menard@tu-dresden.deGem5Extension& Gem5Extension::getExtension(const tlm_generic_payload *payload)
5212047Schristian.menard@tu-dresden.de{
5312047Schristian.menard@tu-dresden.de    Gem5Extension *result = NULL;
5412047Schristian.menard@tu-dresden.de    payload->get_extension(result);
5512047Schristian.menard@tu-dresden.de    sc_assert(result!=NULL);
5612047Schristian.menard@tu-dresden.de    return *result;
5712047Schristian.menard@tu-dresden.de}
5812047Schristian.menard@tu-dresden.de
5912047Schristian.menard@tu-dresden.deGem5Extension& Gem5Extension::getExtension(const tlm_generic_payload &payload)
6012047Schristian.menard@tu-dresden.de{
6112047Schristian.menard@tu-dresden.de    return Gem5Extension::getExtension(&payload);
6212047Schristian.menard@tu-dresden.de}
6312047Schristian.menard@tu-dresden.de
6412047Schristian.menard@tu-dresden.dePacketPtr Gem5Extension::getPacket()
6512047Schristian.menard@tu-dresden.de{
6612047Schristian.menard@tu-dresden.de    return Packet;
6712047Schristian.menard@tu-dresden.de}
6812047Schristian.menard@tu-dresden.de
6912047Schristian.menard@tu-dresden.detlm_extension_base* Gem5Extension::clone() const
7012047Schristian.menard@tu-dresden.de{
7112047Schristian.menard@tu-dresden.de    return new Gem5Extension(Packet);
7212047Schristian.menard@tu-dresden.de}
7312047Schristian.menard@tu-dresden.de
7412047Schristian.menard@tu-dresden.devoid Gem5Extension::copy_from(const tlm_extension_base& ext)
7512047Schristian.menard@tu-dresden.de{
7612047Schristian.menard@tu-dresden.de    const Gem5Extension& cpyFrom = static_cast<const Gem5Extension&>(ext);
7712047Schristian.menard@tu-dresden.de    Packet = cpyFrom.Packet;
7812047Schristian.menard@tu-dresden.de}
7912047Schristian.menard@tu-dresden.de
8012047Schristian.menard@tu-dresden.de}
81