SystemC Library API Reference Manual
Reference documentation for the Simics SystemC Library.
 
Loading...
Searching...
No Matches
tlm_fw_action_interface.h
Go to the documentation of this file.
1// -*- mode: C++; c-file-style: "virtutech-c++" -*-
2
3/*
4 © 2016 Intel Corporation
5
6 This software and the related documents are Intel copyrighted materials, and
7 your use of them is governed by the express license under which they were
8 provided to you ("License"). Unless the License provides otherwise, you may
9 not use, modify, copy, publish, distribute, disclose or transmit this software
10 or the related documents without Intel's prior written permission.
11
12 This software and the related documents are provided as is, with no express or
13 implied warranties, other than those that are expressly stated in the License.
14*/
15
16#ifndef SIMICS_SYSTEMC_IFACE_INSTRUMENTATION_TLM_FW_ACTION_INTERFACE_H
17#define SIMICS_SYSTEMC_IFACE_INSTRUMENTATION_TLM_FW_ACTION_INTERFACE_H
18
19
21
22#include <systemc>
23#include <tlm>
24
25namespace simics {
26namespace systemc {
27namespace iface {
28namespace instrumentation {
29
32 public:
34 tlm::tlm_generic_payload *trans,
35 tlm::tlm_phase *phase,
36 sc_core::sc_time *t) = 0;
38 tlm::tlm_generic_payload *trans,
39 tlm::tlm_phase *phase,
40 sc_core::sc_time *t,
41 tlm::tlm_sync_enum *ret) = 0;
43 tlm::tlm_generic_payload *trans,
44 sc_core::sc_time *t) = 0;
46 tlm::tlm_generic_payload *trans,
47 sc_core::sc_time *t) = 0;
49 tlm::tlm_generic_payload *trans,
50 tlm::tlm_dmi *dmi_data) = 0;
52 tlm::tlm_generic_payload *trans,
53 tlm::tlm_dmi *dmi_data,
54 bool *ret) = 0;
56 tlm::tlm_generic_payload *trans) = 0;
58 tlm::tlm_generic_payload *trans,
59 unsigned int *ret) = 0;
61};
62
63} // namespace instrumentation
64} // namespace iface
65} // namespace systemc
66} // namespace simics
67
68#endif
Definition: proxy_interface.h:29
virtual void b_transport_pre(awareness::ProxyInterface *proxy, tlm::tlm_generic_payload *trans, sc_core::sc_time *t)=0
virtual ~TlmFwActionInterface()
Definition: tlm_fw_action_interface.h:60
virtual void nb_transport_fw_post(awareness::ProxyInterface *proxy, tlm::tlm_generic_payload *trans, tlm::tlm_phase *phase, sc_core::sc_time *t, tlm::tlm_sync_enum *ret)=0
virtual void nb_transport_fw_pre(awareness::ProxyInterface *proxy, tlm::tlm_generic_payload *trans, tlm::tlm_phase *phase, sc_core::sc_time *t)=0
virtual void get_direct_mem_ptr_post(awareness::ProxyInterface *proxy, tlm::tlm_generic_payload *trans, tlm::tlm_dmi *dmi_data, bool *ret)=0
virtual void transport_dbg_pre(awareness::ProxyInterface *proxy, tlm::tlm_generic_payload *trans)=0
virtual void transport_dbg_post(awareness::ProxyInterface *proxy, tlm::tlm_generic_payload *trans, unsigned int *ret)=0
virtual void get_direct_mem_ptr_pre(awareness::ProxyInterface *proxy, tlm::tlm_generic_payload *trans, tlm::tlm_dmi *dmi_data)=0
virtual void b_transport_post(awareness::ProxyInterface *proxy, tlm::tlm_generic_payload *trans, sc_core::sc_time *t)=0
Definition: pci_bus_interface.h:24