1 | /* $Id: DrvIfsTraceInternal.h 104976 2024-06-20 10:17:44Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox interface callback tracing driver - internal header.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2020-2023 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | */
|
---|
27 |
|
---|
28 | #ifndef VBOX_INCLUDED_SRC_Trace_DrvIfsTraceInternal_h
|
---|
29 | #define VBOX_INCLUDED_SRC_Trace_DrvIfsTraceInternal_h
|
---|
30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
31 | # pragma once
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | #include <VBox/vmm/pdmdrv.h>
|
---|
35 | #include <VBox/vmm/pdmserialifs.h>
|
---|
36 | #include <VBox/vmm/pdmtpmifs.h>
|
---|
37 |
|
---|
38 | #include <iprt/types.h>
|
---|
39 |
|
---|
40 |
|
---|
41 | /**
|
---|
42 | * Interface Tracing Driver Instance Data.
|
---|
43 | */
|
---|
44 | typedef struct DRVIFTRACE
|
---|
45 | {
|
---|
46 | /** @name Interfaces exposed by this driver.
|
---|
47 | * @{ */
|
---|
48 | PDMIBASE IBase;
|
---|
49 | PDMISERIALPORT ISerialPort;
|
---|
50 | PDMISERIALCONNECTOR ISerialConnector;
|
---|
51 | PDMITPMPORT ITpmPort;
|
---|
52 | PDMITPMCONNECTOR ITpmConnector;
|
---|
53 | /** @} */
|
---|
54 |
|
---|
55 | /** @name Interfaces exposed by the driver below us.
|
---|
56 | * @{ */
|
---|
57 | PPDMISERIALCONNECTOR pISerialConBelow;
|
---|
58 | PPDMITPMCONNECTOR pITpmConBelow;
|
---|
59 | /** @} */
|
---|
60 |
|
---|
61 | /** @name Interfaces exposed by the driver/device above us.
|
---|
62 | * @{ */
|
---|
63 | PPDMISERIALPORT pISerialPortAbove;
|
---|
64 | PPDMITPMPORT pITpmPortAbove;
|
---|
65 | /** @} */
|
---|
66 |
|
---|
67 | /** PDM device driver instance pointer. */
|
---|
68 | PPDMDRVINS pDrvIns;
|
---|
69 | /** The trace log writer handle. */
|
---|
70 | RTTRACELOGWR hTraceLog;
|
---|
71 |
|
---|
72 | } DRVIFTRACE;
|
---|
73 | /** Pointer to a interface tracing driver instance. */
|
---|
74 | typedef DRVIFTRACE *PDRVIFTRACE;
|
---|
75 |
|
---|
76 |
|
---|
77 | DECLHIDDEN(void) drvIfsTrace_SerialIfInit(PDRVIFTRACE pThis);
|
---|
78 | DECLHIDDEN(void) drvIfsTrace_TpmIfInit(PDRVIFTRACE pThis);
|
---|
79 |
|
---|
80 | #endif /* !VBOX_INCLUDED_SRC_Trace_DrvIfsTraceInternal_h */
|
---|