1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
/** @file
* PDM - Pluggable Device Manager, Threads.
*/
/*
* Copyright (C) 2006-2025 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, in version 3 of the
* License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses>.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
* in the VirtualBox distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
*/
#ifndef VBOX_INCLUDED_vmm_pdmthread_h
#define VBOX_INCLUDED_vmm_pdmthread_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <VBox/cdefs.h>
#include <VBox/types.h>
#ifdef IN_RING3
# include <iprt/thread.h>
#endif
RT_C_DECLS_BEGIN
/** @defgroup grp_pdm_thread The PDM Threads API
* @ingroup grp_pdm
* @{
*/
/**
* The thread state
*/
typedef enum PDMTHREADSTATE
{
/** The usual invalid 0 entry. */
PDMTHREADSTATE_INVALID = 0,
/** The thread is initializing.
* Prev state: none
* Next state: suspended, terminating (error) */
PDMTHREADSTATE_INITIALIZING,
/** The thread has been asked to suspend.
* Prev state: running
* Next state: suspended */
PDMTHREADSTATE_SUSPENDING,
/** The thread is supended.
* Prev state: suspending, initializing
* Next state: resuming, terminated. */
PDMTHREADSTATE_SUSPENDED,
/** The thread is active.
* Prev state: suspended
* Next state: running, terminating. */
PDMTHREADSTATE_RESUMING,
/** The thread is active.
* Prev state: resuming
* Next state: suspending, terminating. */
PDMTHREADSTATE_RUNNING,
/** The thread has been asked to terminate.
* Prev state: initializing, suspended, resuming, running
* Next state: terminated. */
PDMTHREADSTATE_TERMINATING,
/** The thread is terminating / has terminated.
* Prev state: terminating
* Next state: none */
PDMTHREADSTATE_TERMINATED,
/** The usual 32-bit hack. */
PDMTHREADSTATE_32BIT_HACK = 0x7fffffff
} PDMTHREADSTATE;
/** A pointer to a PDM thread. */
typedef R3PTRTYPE(struct PDMTHREAD *) PPDMTHREAD;
/** A pointer to a pointer to a PDM thread. */
typedef PPDMTHREAD *PPPDMTHREAD;
/**
* PDM thread, device variation.
*
* @returns VBox status code.
* @param pDevIns The device instance.
* @param pThread The PDM thread data.
*/
typedef DECLCALLBACKTYPE(int, FNPDMTHREADDEV,(PPDMDEVINS pDevIns, PPDMTHREAD pThread));
/** Pointer to a FNPDMTHREADDEV(). */
typedef FNPDMTHREADDEV *PFNPDMTHREADDEV;
/**
* PDM thread, USB device variation.
*
* @returns VBox status code.
* @param pUsbIns The USB device instance.
* @param pThread The PDM thread data.
*/
typedef DECLCALLBACKTYPE(int, FNPDMTHREADUSB,(PPDMUSBINS pUsbIns, PPDMTHREAD pThread));
/** Pointer to a FNPDMTHREADUSB(). */
typedef FNPDMTHREADUSB *PFNPDMTHREADUSB;
/**
* PDM thread, driver variation.
*
* @returns VBox status code.
* @param pDrvIns The driver instance.
* @param pThread The PDM thread data.
*/
typedef DECLCALLBACKTYPE(int, FNPDMTHREADDRV,(PPDMDRVINS pDrvIns, PPDMTHREAD pThread));
/** Pointer to a FNPDMTHREADDRV(). */
typedef FNPDMTHREADDRV *PFNPDMTHREADDRV;
/**
* PDM thread, driver variation.
*
* @returns VBox status code.
* @param pVM The cross context VM structure.
* @param pThread The PDM thread data.
*/
typedef DECLCALLBACKTYPE(int, FNPDMTHREADINT,(PVM pVM, PPDMTHREAD pThread));
/** Pointer to a FNPDMTHREADINT(). */
typedef FNPDMTHREADINT *PFNPDMTHREADINT;
/**
* PDM thread, driver variation.
*
* @returns VBox status code.
* @param pThread The PDM thread data.
*/
typedef int FNPDMTHREADEXT(PPDMTHREAD pThread);
/** Pointer to a FNPDMTHREADEXT(). */
typedef FNPDMTHREADEXT *PFNPDMTHREADEXT;
/**
* PDM thread wakeup call, device variation.
*
* @returns VBox status code.
* @param pDevIns The device instance.
* @param pThread The PDM thread data.
*/
typedef DECLCALLBACKTYPE(int, FNPDMTHREADWAKEUPDEV,(PPDMDEVINS pDevIns, PPDMTHREAD pThread));
/** Pointer to a FNPDMTHREADDEV(). */
typedef FNPDMTHREADWAKEUPDEV *PFNPDMTHREADWAKEUPDEV;
/**
* PDM thread wakeup call, device variation.
*
* @returns VBox status code.
* @param pUsbIns The USB device instance.
* @param pThread The PDM thread data.
*/
typedef DECLCALLBACKTYPE(int, FNPDMTHREADWAKEUPUSB,(PPDMUSBINS pUsbIns, PPDMTHREAD pThread));
/** Pointer to a FNPDMTHREADUSB(). */
typedef FNPDMTHREADWAKEUPUSB *PFNPDMTHREADWAKEUPUSB;
/**
* PDM thread wakeup call, driver variation.
*
* @returns VBox status code.
* @param pDrvIns The driver instance.
* @param pThread The PDM thread data.
*/
typedef DECLCALLBACKTYPE(int, FNPDMTHREADWAKEUPDRV,(PPDMDRVINS pDrvIns, PPDMTHREAD pThread));
/** Pointer to a FNPDMTHREADDRV(). */
typedef FNPDMTHREADWAKEUPDRV *PFNPDMTHREADWAKEUPDRV;
/**
* PDM thread wakeup call, internal variation.
*
* @returns VBox status code.
* @param pVM The cross context VM structure.
* @param pThread The PDM thread data.
*/
typedef DECLCALLBACKTYPE(int, FNPDMTHREADWAKEUPINT,(PVM pVM, PPDMTHREAD pThread));
/** Pointer to a FNPDMTHREADWAKEUPINT(). */
typedef FNPDMTHREADWAKEUPINT *PFNPDMTHREADWAKEUPINT;
/**
* PDM thread wakeup call, external variation.
*
* @returns VBox status code.
* @param pThread The PDM thread data.
*/
typedef int FNPDMTHREADWAKEUPEXT(PPDMTHREAD pThread);
/** Pointer to a FNPDMTHREADEXT(). */
typedef FNPDMTHREADWAKEUPEXT *PFNPDMTHREADWAKEUPEXT;
/**
* PDM Thread instance data.
*/
typedef struct PDMTHREAD
{
/** PDMTHREAD_VERSION. */
uint32_t u32Version;
/** The thread state. */
PDMTHREADSTATE volatile enmState;
/** The thread handle. */
RTTHREAD Thread;
/** The user parameter. */
R3PTRTYPE(void *) pvUser;
/** Data specific to the kind of thread.
* This should really be in PDMTHREADINT, but is placed here because of the
* function pointer typedefs. So, don't touch these, please.
*/
union
{
/** PDMTHREADTYPE_DEVICE data. */
struct
{
/** The device instance. */
PPDMDEVINSR3 pDevIns;
/** The thread function. */
R3PTRTYPE(PFNPDMTHREADDEV) pfnThread;
/** Thread. */
R3PTRTYPE(PFNPDMTHREADWAKEUPDEV) pfnWakeUp;
} Dev;
/** PDMTHREADTYPE_USB data. */
struct
{
/** The device instance. */
PPDMUSBINS pUsbIns;
/** The thread function. */
R3PTRTYPE(PFNPDMTHREADUSB) pfnThread;
/** Thread. */
R3PTRTYPE(PFNPDMTHREADWAKEUPUSB) pfnWakeUp;
} Usb;
/** PDMTHREADTYPE_DRIVER data. */
struct
{
/** The driver instance. */
R3PTRTYPE(PPDMDRVINS) pDrvIns;
/** The thread function. */
R3PTRTYPE(PFNPDMTHREADDRV) pfnThread;
/** Thread. */
R3PTRTYPE(PFNPDMTHREADWAKEUPDRV) pfnWakeUp;
} Drv;
/** PDMTHREADTYPE_INTERNAL data. */
struct
{
/** The thread function. */
R3PTRTYPE(PFNPDMTHREADINT) pfnThread;
/** Thread. */
R3PTRTYPE(PFNPDMTHREADWAKEUPINT) pfnWakeUp;
} Int;
/** PDMTHREADTYPE_EXTERNAL data. */
struct
{
/** The thread function. */
R3PTRTYPE(PFNPDMTHREADEXT) pfnThread;
/** Thread. */
R3PTRTYPE(PFNPDMTHREADWAKEUPEXT) pfnWakeUp;
} Ext;
} u;
/** Internal data. */
union
{
#ifdef PDMTHREADINT_DECLARED
PDMTHREADINT s;
#endif
uint8_t padding[64];
} Internal;
} PDMTHREAD;
/** PDMTHREAD::u32Version value. */
#define PDMTHREAD_VERSION PDM_VERSION_MAKE(0xefff, 1, 0)
#ifdef IN_RING3
VMMR3DECL(int) PDMR3ThreadCreate(PVM pVM, PPPDMTHREAD ppThread, void *pvUser, PFNPDMTHREADINT pfnThread,
PFNPDMTHREADWAKEUPINT pfnWakeUp, size_t cbStack, RTTHREADTYPE enmType, const char *pszName);
VMMR3DECL(int) PDMR3ThreadCreateExternal(PVM pVM, PPPDMTHREAD ppThread, void *pvUser, PFNPDMTHREADEXT pfnThread,
PFNPDMTHREADWAKEUPEXT pfnWakeUp, size_t cbStack, RTTHREADTYPE enmType, const char *pszName);
VMMR3DECL(int) PDMR3ThreadDestroy(PPDMTHREAD pThread, int *pRcThread);
VMMR3DECL(int) PDMR3ThreadIAmSuspending(PPDMTHREAD pThread);
VMMR3DECL(int) PDMR3ThreadIAmRunning(PPDMTHREAD pThread);
VMMR3DECL(int) PDMR3ThreadSleep(PPDMTHREAD pThread, RTMSINTERVAL cMillies);
VMMR3DECL(int) PDMR3ThreadSuspend(PPDMTHREAD pThread);
VMMR3DECL(int) PDMR3ThreadResume(PPDMTHREAD pThread);
#endif /* IN_RING3 */
/** @} */
RT_C_DECLS_END
#endif /* !VBOX_INCLUDED_vmm_pdmthread_h */
|