1 | /** @file
|
---|
2 | * PDM - Pluggable Device Manager, Common Definitions & Types.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2023 Oracle and/or its affiliates.
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox base platform packages, as
|
---|
9 | * available from https://www.virtualbox.org.
|
---|
10 | *
|
---|
11 | * This program is free software; you can redistribute it and/or
|
---|
12 | * modify it under the terms of the GNU General Public License
|
---|
13 | * as published by the Free Software Foundation, in version 3 of the
|
---|
14 | * License.
|
---|
15 | *
|
---|
16 | * This program is distributed in the hope that it will be useful, but
|
---|
17 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
19 | * General Public License for more details.
|
---|
20 | *
|
---|
21 | * You should have received a copy of the GNU General Public License
|
---|
22 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
23 | *
|
---|
24 | * The contents of this file may alternatively be used under the terms
|
---|
25 | * of the Common Development and Distribution License Version 1.0
|
---|
26 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
27 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
28 | * CDDL are applicable instead of those of the GPL.
|
---|
29 | *
|
---|
30 | * You may elect to license modified versions of this file under the
|
---|
31 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
32 | *
|
---|
33 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
34 | */
|
---|
35 |
|
---|
36 | #ifndef VBOX_INCLUDED_vmm_pdmcommon_h
|
---|
37 | #define VBOX_INCLUDED_vmm_pdmcommon_h
|
---|
38 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
39 | # pragma once
|
---|
40 | #endif
|
---|
41 |
|
---|
42 | #include <VBox/types.h>
|
---|
43 |
|
---|
44 |
|
---|
45 | /** @defgroup grp_pdm_common Common Definitions & Types
|
---|
46 | * @ingroup grp_pdm
|
---|
47 | *
|
---|
48 | * Not all the types here are "common", they are here to work around header
|
---|
49 | * ordering issues.
|
---|
50 | *
|
---|
51 | * @{
|
---|
52 | */
|
---|
53 |
|
---|
54 | /** Makes a PDM structure version out of an unique magic value and major &
|
---|
55 | * minor version numbers.
|
---|
56 | *
|
---|
57 | * @returns 32-bit structure version number.
|
---|
58 | *
|
---|
59 | * @param uMagic 16-bit magic value. This must be unique.
|
---|
60 | * @param uMajor 12-bit major version number. Structures with different
|
---|
61 | * major numbers are not compatible.
|
---|
62 | * @param uMinor 4-bit minor version number. When only the minor version
|
---|
63 | * differs, the structures will be 100% backwards
|
---|
64 | * compatible.
|
---|
65 | */
|
---|
66 | #define PDM_VERSION_MAKE(uMagic, uMajor, uMinor) \
|
---|
67 | ( ((uint32_t)(uMagic) << 16) | ((uint32_t)((uMajor) & 0xff) << 4) | ((uint32_t)((uMinor) & 0xf) << 0) )
|
---|
68 |
|
---|
69 | /**
|
---|
70 | * Version of PDM_VERSION_MAKE that's compatible with the preprocessor.
|
---|
71 | *
|
---|
72 | * @returns 32-bit structure version number.
|
---|
73 | *
|
---|
74 | * @param uMagic 16-bit magic value, no suffix. This must be unique.
|
---|
75 | * @param uMajor 12-bit major version number, no suffix. Structures with
|
---|
76 | * different major numbers are not compatible.
|
---|
77 | * @param uMinor 4-bit minor version number, no suffix. When only the
|
---|
78 | * minor version differs, the structures will be 100%
|
---|
79 | * backwards compatible.
|
---|
80 | */
|
---|
81 | #define PDM_VERSION_MAKE_PP(uMagic, uMajor, uMinor) \
|
---|
82 | ( (UINT32_C(uMagic) << 16) | ((UINT32_C(uMajor) & UINT32_C(0xff)) << 4) | ((UINT32_C(uMinor) & UINT32_C(0xf)) << 0) )
|
---|
83 |
|
---|
84 | /** Checks if @a uVerMagic1 is compatible with @a uVerMagic2.
|
---|
85 | *
|
---|
86 | * @returns true / false.
|
---|
87 | * @param uVerMagic1 Typically the runtime version of the struct. This must
|
---|
88 | * have the same magic and major version as @a uVerMagic2
|
---|
89 | * and the minor version must be greater or equal to that
|
---|
90 | * of @a uVerMagic2.
|
---|
91 | * @param uVerMagic2 Typically the version the code was compiled against.
|
---|
92 | *
|
---|
93 | * @remarks The parameters will be referenced more than once.
|
---|
94 | */
|
---|
95 | #define PDM_VERSION_ARE_COMPATIBLE(uVerMagic1, uVerMagic2) \
|
---|
96 | ( (uVerMagic1) == (uVerMagic2) \
|
---|
97 | || ( (uVerMagic1) >= (uVerMagic2) \
|
---|
98 | && ((uVerMagic1) & UINT32_C(0xfffffff0)) == ((uVerMagic2) & UINT32_C(0xfffffff0)) ) \
|
---|
99 | )
|
---|
100 |
|
---|
101 |
|
---|
102 | /** @name PDM Attach/Detach Callback Flags.
|
---|
103 | * Used by PDMDeviceAttach, PDMDeviceDetach, PDMDriverAttach, PDMDriverDetach,
|
---|
104 | * FNPDMDEVATTACH, FNPDMDEVDETACH, FNPDMDRVATTACH, FNPDMDRVDETACH and
|
---|
105 | * FNPDMDRVCONSTRUCT.
|
---|
106 | * @{ */
|
---|
107 | /** The attach/detach command is not a hotplug event. */
|
---|
108 | #define PDM_TACH_FLAGS_NOT_HOT_PLUG RT_BIT_32(0)
|
---|
109 | /** Indicates that no attach or detach callbacks should be made.
|
---|
110 | * This is mostly for internal use. */
|
---|
111 | #define PDM_TACH_FLAGS_NO_CALLBACKS RT_BIT_32(1)
|
---|
112 | /** @} */
|
---|
113 |
|
---|
114 |
|
---|
115 | /**
|
---|
116 | * Is asynchronous handling of suspend or power off notification completed?
|
---|
117 | *
|
---|
118 | * This is called to check whether the USB device has quiesced. Don't deadlock.
|
---|
119 | * Avoid blocking. Do NOT wait for anything.
|
---|
120 | *
|
---|
121 | * @returns true if done, false if more work to be done.
|
---|
122 | *
|
---|
123 | * @param pUsbIns The USB device instance.
|
---|
124 | *
|
---|
125 | * @thread EMT(0)
|
---|
126 | */
|
---|
127 | typedef DECLCALLBACKTYPE(bool, FNPDMUSBASYNCNOTIFY,(PPDMUSBINS pUsbIns));
|
---|
128 | /** Pointer to a FNPDMUSBASYNCNOTIFY. */
|
---|
129 | typedef FNPDMUSBASYNCNOTIFY *PFNPDMUSBASYNCNOTIFY;
|
---|
130 |
|
---|
131 | /**
|
---|
132 | * Is asynchronous handling of suspend or power off notification completed?
|
---|
133 | *
|
---|
134 | * This is called to check whether the device has quiesced. Don't deadlock.
|
---|
135 | * Avoid blocking. Do NOT wait for anything.
|
---|
136 | *
|
---|
137 | * @returns true if done, false if more work to be done.
|
---|
138 | *
|
---|
139 | * @param pDevIns The device instance.
|
---|
140 | * @remarks The caller will enter the device critical section.
|
---|
141 | * @thread EMT(0)
|
---|
142 | */
|
---|
143 | typedef DECLCALLBACKTYPE(bool, FNPDMDEVASYNCNOTIFY,(PPDMDEVINS pDevIns));
|
---|
144 | /** Pointer to a FNPDMDEVASYNCNOTIFY. */
|
---|
145 | typedef FNPDMDEVASYNCNOTIFY *PFNPDMDEVASYNCNOTIFY;
|
---|
146 |
|
---|
147 | /**
|
---|
148 | * Is asynchronous handling of suspend or power off notification completed?
|
---|
149 | *
|
---|
150 | * This is called to check whether the driver has quiesced. Don't deadlock.
|
---|
151 | * Avoid blocking. Do NOT wait for anything.
|
---|
152 | *
|
---|
153 | * @returns true if done, false if more work to be done.
|
---|
154 | *
|
---|
155 | * @param pDrvIns The driver instance.
|
---|
156 | *
|
---|
157 | * @thread EMT(0)
|
---|
158 | */
|
---|
159 | typedef DECLCALLBACKTYPE(bool, FNPDMDRVASYNCNOTIFY,(PPDMDRVINS pDrvIns));
|
---|
160 | /** Pointer to a FNPDMDRVASYNCNOTIFY. */
|
---|
161 | typedef FNPDMDRVASYNCNOTIFY *PFNPDMDRVASYNCNOTIFY;
|
---|
162 |
|
---|
163 |
|
---|
164 | /**
|
---|
165 | * The ring-0 driver request handler.
|
---|
166 | *
|
---|
167 | * @returns VBox status code. PDMDevHlpCallR0 will return this.
|
---|
168 | * @param pDevIns The device instance (the ring-0 mapping).
|
---|
169 | * @param uOperation The operation.
|
---|
170 | * @param u64Arg Optional integer argument for the operation.
|
---|
171 | */
|
---|
172 | typedef DECLCALLBACKTYPE(int, FNPDMDEVREQHANDLERR0,(PPDMDEVINS pDevIns, uint32_t uOperation, uint64_t u64Arg));
|
---|
173 | /** Ring-0 pointer to a FNPDMDEVREQHANDLERR0. */
|
---|
174 | typedef R0PTRTYPE(FNPDMDEVREQHANDLERR0 *) PFNPDMDEVREQHANDLERR0;
|
---|
175 |
|
---|
176 | /**
|
---|
177 | * The ring-0 driver request handler.
|
---|
178 | *
|
---|
179 | * @returns VBox status code. PDMDrvHlpCallR0 will return this.
|
---|
180 | * @param pDrvIns The driver instance (the ring-0 mapping).
|
---|
181 | * @param uOperation The operation.
|
---|
182 | * @param u64Arg Optional integer argument for the operation.
|
---|
183 | */
|
---|
184 | typedef DECLCALLBACKTYPE(int, FNPDMDRVREQHANDLERR0,(PPDMDRVINS pDrvIns, uint32_t uOperation, uint64_t u64Arg));
|
---|
185 | /** Ring-0 pointer to a FNPDMDRVREQHANDLERR0. */
|
---|
186 | typedef R0PTRTYPE(FNPDMDRVREQHANDLERR0 *) PFNPDMDRVREQHANDLERR0;
|
---|
187 |
|
---|
188 |
|
---|
189 | /** @} */
|
---|
190 |
|
---|
191 | #endif /* !VBOX_INCLUDED_vmm_pdmcommon_h */
|
---|
192 |
|
---|