VirtualBox

source: vbox/trunk/include/VBox/pdmdrv.h@ 30681

Last change on this file since 30681 was 30587, checked in by vboxsync, 14 years ago

IntNet: Profile sends.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 64.6 KB
Line 
1/** @file
2 * PDM - Pluggable Device Manager, Drivers. (VMM)
3 */
4
5/*
6 * Copyright (C) 2006-2010 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___VBox_pdmdrv_h
27#define ___VBox_pdmdrv_h
28
29#include <VBox/pdmqueue.h>
30#include <VBox/pdmcritsect.h>
31#include <VBox/pdmthread.h>
32#include <VBox/pdmifs.h>
33#include <VBox/pdmins.h>
34#include <VBox/pdmcommon.h>
35#include <VBox/pdmasynccompletion.h>
36#include <VBox/tm.h>
37#include <VBox/ssm.h>
38#include <VBox/cfgm.h>
39#include <VBox/dbgf.h>
40#include <VBox/mm.h>
41#include <VBox/err.h>
42#include <iprt/stdarg.h>
43
44RT_C_DECLS_BEGIN
45
46/** @defgroup grp_pdm_driver The PDM Drivers API
47 * @ingroup grp_pdm
48 * @{
49 */
50
51/** Pointer const PDM Driver API, ring-3. */
52typedef R3PTRTYPE(struct PDMDRVHLPR3 const *) PCPDMDRVHLPR3;
53/** Pointer const PDM Driver API, ring-0. */
54typedef R0PTRTYPE(struct PDMDRVHLPR0 const *) PCPDMDRVHLPR0;
55/** Pointer const PDM Driver API, raw-mode context. */
56typedef RCPTRTYPE(struct PDMDRVHLPRC const *) PCPDMDRVHLPRC;
57
58
59/**
60 * Construct a driver instance for a VM.
61 *
62 * @returns VBox status.
63 * @param pDrvIns The driver instance data. If the registration structure
64 * is needed, it can be accessed thru pDrvIns->pReg.
65 * @param pCfg Configuration node handle for the driver. This is
66 * expected to be in high demand in the constructor and is
67 * therefore passed as an argument. When using it at other
68 * times, it can be accessed via pDrvIns->pCfg.
69 * @param fFlags Flags, combination of the PDM_TACH_FLAGS_* \#defines.
70 */
71typedef DECLCALLBACK(int) FNPDMDRVCONSTRUCT(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags);
72/** Pointer to a FNPDMDRVCONSTRUCT() function. */
73typedef FNPDMDRVCONSTRUCT *PFNPDMDRVCONSTRUCT;
74
75/**
76 * Destruct a driver instance.
77 *
78 * Most VM resources are freed by the VM. This callback is provided so that
79 * any non-VM resources can be freed correctly.
80 *
81 * @param pDrvIns The driver instance data.
82 */
83typedef DECLCALLBACK(void) FNPDMDRVDESTRUCT(PPDMDRVINS pDrvIns);
84/** Pointer to a FNPDMDRVDESTRUCT() function. */
85typedef FNPDMDRVDESTRUCT *PFNPDMDRVDESTRUCT;
86
87/**
88 * Driver relocation callback.
89 *
90 * This is called when the instance data has been relocated in raw-mode context
91 * (RC). It is also called when the RC hypervisor selects changes. The driver
92 * must fixup all necessary pointers and re-query all interfaces to other RC
93 * devices and drivers.
94 *
95 * Before the RC code is executed the first time, this function will be called
96 * with a 0 delta so RC pointer calculations can be one in one place.
97 *
98 * @param pDrvIns Pointer to the driver instance.
99 * @param offDelta The relocation delta relative to the old location.
100 *
101 * @remark A relocation CANNOT fail.
102 */
103typedef DECLCALLBACK(void) FNPDMDRVRELOCATE(PPDMDRVINS pDrvIns, RTGCINTPTR offDelta);
104/** Pointer to a FNPDMDRVRELOCATE() function. */
105typedef FNPDMDRVRELOCATE *PFNPDMDRVRELOCATE;
106
107/**
108 * Driver I/O Control interface.
109 *
110 * This is used by external components, such as the COM interface, to
111 * communicate with a driver using a driver specific interface. Generally,
112 * the driver interfaces are used for this task.
113 *
114 * @returns VBox status code.
115 * @param pDrvIns Pointer to the driver instance.
116 * @param uFunction Function to perform.
117 * @param pvIn Pointer to input data.
118 * @param cbIn Size of input data.
119 * @param pvOut Pointer to output data.
120 * @param cbOut Size of output data.
121 * @param pcbOut Where to store the actual size of the output data.
122 */
123typedef DECLCALLBACK(int) FNPDMDRVIOCTL(PPDMDRVINS pDrvIns, uint32_t uFunction,
124 void *pvIn, uint32_t cbIn,
125 void *pvOut, uint32_t cbOut, uint32_t *pcbOut);
126/** Pointer to a FNPDMDRVIOCTL() function. */
127typedef FNPDMDRVIOCTL *PFNPDMDRVIOCTL;
128
129/**
130 * Power On notification.
131 *
132 * @param pDrvIns The driver instance data.
133 */
134typedef DECLCALLBACK(void) FNPDMDRVPOWERON(PPDMDRVINS pDrvIns);
135/** Pointer to a FNPDMDRVPOWERON() function. */
136typedef FNPDMDRVPOWERON *PFNPDMDRVPOWERON;
137
138/**
139 * Reset notification.
140 *
141 * @returns VBox status.
142 * @param pDrvIns The driver instance data.
143 */
144typedef DECLCALLBACK(void) FNPDMDRVRESET(PPDMDRVINS pDrvIns);
145/** Pointer to a FNPDMDRVRESET() function. */
146typedef FNPDMDRVRESET *PFNPDMDRVRESET;
147
148/**
149 * Suspend notification.
150 *
151 * @returns VBox status.
152 * @param pDrvIns The driver instance data.
153 */
154typedef DECLCALLBACK(void) FNPDMDRVSUSPEND(PPDMDRVINS pDrvIns);
155/** Pointer to a FNPDMDRVSUSPEND() function. */
156typedef FNPDMDRVSUSPEND *PFNPDMDRVSUSPEND;
157
158/**
159 * Resume notification.
160 *
161 * @returns VBox status.
162 * @param pDrvIns The driver instance data.
163 */
164typedef DECLCALLBACK(void) FNPDMDRVRESUME(PPDMDRVINS pDrvIns);
165/** Pointer to a FNPDMDRVRESUME() function. */
166typedef FNPDMDRVRESUME *PFNPDMDRVRESUME;
167
168/**
169 * Power Off notification.
170 *
171 * This is only called when the VMR3PowerOff call is made on a running VM. This
172 * means that there is no notification if the VM was suspended before being
173 * powered of. There will also be no callback when hot plugging devices or when
174 * replumbing the driver stack.
175 *
176 * @param pDrvIns The driver instance data.
177 */
178typedef DECLCALLBACK(void) FNPDMDRVPOWEROFF(PPDMDRVINS pDrvIns);
179/** Pointer to a FNPDMDRVPOWEROFF() function. */
180typedef FNPDMDRVPOWEROFF *PFNPDMDRVPOWEROFF;
181
182/**
183 * Attach command.
184 *
185 * This is called to let the drive attach to a driver at runtime. This is not
186 * called during VM construction, the driver constructor have to do this by
187 * calling PDMDrvHlpAttach.
188 *
189 * This is like plugging in the keyboard or mouse after turning on the PC.
190 *
191 * @returns VBox status code.
192 * @param pDrvIns The driver instance.
193 * @param fFlags Flags, combination of the PDM_TACH_FLAGS_* \#defines.
194 */
195typedef DECLCALLBACK(int) FNPDMDRVATTACH(PPDMDRVINS pDrvIns, uint32_t fFlags);
196/** Pointer to a FNPDMDRVATTACH() function. */
197typedef FNPDMDRVATTACH *PFNPDMDRVATTACH;
198
199/**
200 * Detach notification.
201 *
202 * This is called when a driver below it in the chain is detaching itself
203 * from it. The driver should adjust it's state to reflect this.
204 *
205 * This is like ejecting a cdrom or floppy.
206 *
207 * @param pDrvIns The driver instance.
208 * @param fFlags PDM_TACH_FLAGS_NOT_HOT_PLUG or 0.
209 */
210typedef DECLCALLBACK(void) FNPDMDRVDETACH(PPDMDRVINS pDrvIns, uint32_t fFlags);
211/** Pointer to a FNPDMDRVDETACH() function. */
212typedef FNPDMDRVDETACH *PFNPDMDRVDETACH;
213
214
215
216/**
217 * PDM Driver Registration Structure.
218 *
219 * This structure is used when registering a driver from VBoxInitDrivers() (in
220 * host ring-3 context). PDM will continue use till the VM is terminated.
221 */
222typedef struct PDMDRVREG
223{
224 /** Structure version. PDM_DRVREG_VERSION defines the current version. */
225 uint32_t u32Version;
226 /** Driver name. */
227 char szName[32];
228 /** Name of the raw-mode context module (no path).
229 * Only evalutated if PDM_DRVREG_FLAGS_RC is set. */
230 char szRCMod[32];
231 /** Name of the ring-0 module (no path).
232 * Only evalutated if PDM_DRVREG_FLAGS_R0 is set. */
233 char szR0Mod[32];
234 /** The description of the driver. The UTF-8 string pointed to shall, like this structure,
235 * remain unchanged from registration till VM destruction. */
236 const char *pszDescription;
237
238 /** Flags, combination of the PDM_DRVREG_FLAGS_* \#defines. */
239 uint32_t fFlags;
240 /** Driver class(es), combination of the PDM_DRVREG_CLASS_* \#defines. */
241 uint32_t fClass;
242 /** Maximum number of instances (per VM). */
243 uint32_t cMaxInstances;
244 /** Size of the instance data. */
245 uint32_t cbInstance;
246
247 /** Construct instance - required. */
248 PFNPDMDRVCONSTRUCT pfnConstruct;
249 /** Destruct instance - optional. */
250 PFNPDMDRVDESTRUCT pfnDestruct;
251 /** Relocation command - optional. */
252 PFNPDMDRVRELOCATE pfnRelocate;
253 /** I/O control - optional. */
254 PFNPDMDRVIOCTL pfnIOCtl;
255 /** Power on notification - optional. */
256 PFNPDMDRVPOWERON pfnPowerOn;
257 /** Reset notification - optional. */
258 PFNPDMDRVRESET pfnReset;
259 /** Suspend notification - optional. */
260 PFNPDMDRVSUSPEND pfnSuspend;
261 /** Resume notification - optional. */
262 PFNPDMDRVRESUME pfnResume;
263 /** Attach command - optional. */
264 PFNPDMDRVATTACH pfnAttach;
265 /** Detach notification - optional. */
266 PFNPDMDRVDETACH pfnDetach;
267 /** Power off notification - optional. */
268 PFNPDMDRVPOWEROFF pfnPowerOff;
269 /** @todo */
270 PFNRT pfnSoftReset;
271 /** Initialization safty marker. */
272 uint32_t u32VersionEnd;
273} PDMDRVREG;
274/** Pointer to a PDM Driver Structure. */
275typedef PDMDRVREG *PPDMDRVREG;
276/** Const pointer to a PDM Driver Structure. */
277typedef PDMDRVREG const *PCPDMDRVREG;
278
279/** Current DRVREG version number. */
280#define PDM_DRVREG_VERSION PDM_VERSION_MAKE(0xf0ff, 1, 0)
281
282/** PDM Driver Flags.
283 * @{ */
284/** @def PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT
285 * The bit count for the current host. */
286#if HC_ARCH_BITS == 32
287# define PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT UINT32_C(0x00000001)
288#elif HC_ARCH_BITS == 64
289# define PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT UINT32_C(0x00000002)
290#else
291# error Unsupported HC_ARCH_BITS value.
292#endif
293/** The host bit count mask. */
294#define PDM_DRVREG_FLAGS_HOST_BITS_MASK UINT32_C(0x00000003)
295/** This flag is used to indicate that the driver has a RC component. */
296#define PDM_DRVREG_FLAGS_RC UINT32_C(0x00000010)
297/** This flag is used to indicate that the driver has a R0 component. */
298#define PDM_DRVREG_FLAGS_R0 UINT32_C(0x00000020)
299
300/** @} */
301
302
303/** PDM Driver Classes.
304 * @{ */
305/** Mouse input driver. */
306#define PDM_DRVREG_CLASS_MOUSE RT_BIT(0)
307/** Keyboard input driver. */
308#define PDM_DRVREG_CLASS_KEYBOARD RT_BIT(1)
309/** Display driver. */
310#define PDM_DRVREG_CLASS_DISPLAY RT_BIT(2)
311/** Network transport driver. */
312#define PDM_DRVREG_CLASS_NETWORK RT_BIT(3)
313/** Block driver. */
314#define PDM_DRVREG_CLASS_BLOCK RT_BIT(4)
315/** Media driver. */
316#define PDM_DRVREG_CLASS_MEDIA RT_BIT(5)
317/** Mountable driver. */
318#define PDM_DRVREG_CLASS_MOUNTABLE RT_BIT(6)
319/** Audio driver. */
320#define PDM_DRVREG_CLASS_AUDIO RT_BIT(7)
321/** VMMDev driver. */
322#define PDM_DRVREG_CLASS_VMMDEV RT_BIT(8)
323/** Status driver. */
324#define PDM_DRVREG_CLASS_STATUS RT_BIT(9)
325/** ACPI driver. */
326#define PDM_DRVREG_CLASS_ACPI RT_BIT(10)
327/** USB related driver. */
328#define PDM_DRVREG_CLASS_USB RT_BIT(11)
329/** ISCSI Transport related driver. */
330#define PDM_DRVREG_CLASS_ISCSITRANSPORT RT_BIT(12)
331/** Char driver. */
332#define PDM_DRVREG_CLASS_CHAR RT_BIT(13)
333/** Stream driver. */
334#define PDM_DRVREG_CLASS_STREAM RT_BIT(14)
335/** SCSI driver. */
336#define PDM_DRVREG_CLASS_SCSI RT_BIT(15)
337/** @} */
338
339
340/**
341 * PDM Driver Instance.
342 *
343 * @implements PDMIBASE
344 */
345typedef struct PDMDRVINS
346{
347 /** Structure version. PDM_DRVINS_VERSION defines the current version. */
348 uint32_t u32Version;
349 /** Driver instance number. */
350 uint32_t iInstance;
351
352 /** Pointer the PDM Driver API. */
353 RCPTRTYPE(PCPDMDRVHLPRC) pHlpRC;
354 /** Pointer to driver instance data. */
355 RCPTRTYPE(void *) pvInstanceDataRC;
356
357 /** Pointer the PDM Driver API. */
358 R0PTRTYPE(PCPDMDRVHLPR0) pHlpR0;
359 /** Pointer to driver instance data. */
360 R0PTRTYPE(void *) pvInstanceDataR0;
361
362 /** Pointer the PDM Driver API. */
363 R3PTRTYPE(PCPDMDRVHLPR3) pHlpR3;
364 /** Pointer to driver instance data. */
365 R3PTRTYPE(void *) pvInstanceDataR3;
366
367 /** Pointer to driver registration structure. */
368 R3PTRTYPE(PCPDMDRVREG) pReg;
369 /** Configuration handle. */
370 R3PTRTYPE(PCFGMNODE) pCfg;
371
372 /** Pointer to the base interface of the device/driver instance above. */
373 R3PTRTYPE(PPDMIBASE) pUpBase;
374 /** Pointer to the base interface of the driver instance below. */
375 R3PTRTYPE(PPDMIBASE) pDownBase;
376
377 /** The base interface of the driver.
378 * The driver constructor initializes this. */
379 PDMIBASE IBase;
380 /** Align the internal data more naturally. */
381 RTR3PTR R3PtrPadding;
382
383 /** Internal data. */
384 union
385 {
386#ifdef PDMDRVINSINT_DECLARED
387 PDMDRVINSINT s;
388#endif
389 uint8_t padding[HC_ARCH_BITS == 32 ? 40 + 32 : 72 + 24];
390 } Internal;
391
392 /** Driver instance data. The size of this area is defined
393 * in the PDMDRVREG::cbInstanceData field. */
394 char achInstanceData[4];
395} PDMDRVINS;
396
397/** Current DRVREG version number. */
398#define PDM_DRVINS_VERSION PDM_VERSION_MAKE(0xf0fe, 1, 0)
399
400/** Converts a pointer to the PDMDRVINS::IBase to a pointer to PDMDRVINS. */
401#define PDMIBASE_2_PDMDRV(pInterface) ( (PPDMDRVINS)((char *)(pInterface) - RT_OFFSETOF(PDMDRVINS, IBase)) )
402
403/** @def PDMDRVINS_2_RCPTR
404 * Converts a PDM Driver instance pointer a RC PDM Driver instance pointer.
405 */
406#define PDMDRVINS_2_RCPTR(pDrvIns) ( (RCPTRTYPE(PPDMDRVINS))((RTGCUINTPTR)(pDrvIns)->pvInstanceDataRC - RT_OFFSETOF(PDMDRVINS, achInstanceData)) )
407
408/** @def PDMDRVINS_2_R3PTR
409 * Converts a PDM Driver instance pointer a R3 PDM Driver instance pointer.
410 */
411#define PDMDRVINS_2_R3PTR(pDrvIns) ( (R3PTRTYPE(PPDMDRVINS))((RTHCUINTPTR)(pDrvIns)->pvInstanceDataR3 - RT_OFFSETOF(PDMDRVINS, achInstanceData)) )
412
413/** @def PDMDRVINS_2_R0PTR
414 * Converts a PDM Driver instance pointer a R0 PDM Driver instance pointer.
415 */
416#define PDMDRVINS_2_R0PTR(pDrvIns) ( (R0PTRTYPE(PPDMDRVINS))((RTR0UINTPTR)(pDrvIns)->pvInstanceDataR0 - RT_OFFSETOF(PDMDRVINS, achInstanceData)) )
417
418
419
420/**
421 * Checks the structure versions of the drive instance and driver helpers,
422 * returning if they are incompatible.
423 *
424 * Intended for the constructor.
425 *
426 * @param pDrvIns Pointer to the PDM driver instance.
427 */
428#define PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns) \
429 do \
430 { \
431 PPDMDRVINS pDrvInsTypeCheck = (pDrvIns); NOREF(pDrvInsTypeCheck); \
432 AssertLogRelMsgReturn(PDM_VERSION_ARE_COMPATIBLE((pDrvIns)->u32Version, PDM_DRVINS_VERSION), \
433 ("DrvIns=%#x mine=%#x\n", (pDrvIns)->u32Version, PDM_DRVINS_VERSION), \
434 VERR_VERSION_MISMATCH); \
435 AssertLogRelMsgReturn(PDM_VERSION_ARE_COMPATIBLE((pDrvIns)->pHlpR3->u32Version, PDM_DRVHLPR3_VERSION), \
436 ("DrvHlp=%#x mine=%#x\n", (pDrvIns)->pHlpR3->u32Version, PDM_DRVHLPR3_VERSION), \
437 VERR_VERSION_MISMATCH); \
438 } while (0)
439
440/**
441 * Quietly checks the structure versions of the drive instance and driver
442 * helpers, returning if they are incompatible.
443 *
444 * Intended for the destructor.
445 *
446 * @param pDrvIns Pointer to the PDM driver instance.
447 */
448#define PDMDRV_CHECK_VERSIONS_RETURN_VOID(pDrvIns) \
449 do \
450 { \
451 PPDMDRVINS pDrvInsTypeCheck = (pDrvIns); NOREF(pDrvInsTypeCheck); \
452 if (RT_UNLIKELY( !PDM_VERSION_ARE_COMPATIBLE((pDrvIns)->u32Version, PDM_DRVINS_VERSION) \
453 || !PDM_VERSION_ARE_COMPATIBLE((pDrvIns)->pHlpR3->u32Version, PDM_DRVHLPR3_VERSION)) ) \
454 return; \
455 } while (0)
456
457/**
458 * Wrapper around CFGMR3ValidateConfig for the root config for use in the
459 * constructor - returns on failure.
460 *
461 * This should be invoked after having initialized the instance data
462 * sufficiently for the correct operation of the destructor. The destructor is
463 * always called!
464 *
465 * @param pDrvIns Pointer to the PDM driver instance.
466 * @param pszValidValues Patterns describing the valid value names. See
467 * RTStrSimplePatternMultiMatch for details on the
468 * pattern syntax.
469 * @param pszValidNodes Patterns describing the valid node (key) names.
470 * Pass empty string if no valid nodess.
471 */
472#define PDMDRV_VALIDATE_CONFIG_RETURN(pDrvIns, pszValidValues, pszValidNodes) \
473 do \
474 { \
475 int rcValCfg = CFGMR3ValidateConfig((pDrvIns)->pCfg, "/", pszValidValues, pszValidNodes, \
476 (pDrvIns)->pReg->szName, (pDrvIns)->iInstance); \
477 if (RT_FAILURE(rcValCfg)) \
478 return rcValCfg; \
479 } while (0)
480
481
482
483/**
484 * USB hub registration structure.
485 */
486typedef struct PDMUSBHUBREG
487{
488 /** Structure version number. PDM_USBHUBREG_VERSION defines the current version. */
489 uint32_t u32Version;
490
491 /**
492 * Request the hub to attach of the specified device.
493 *
494 * @returns VBox status code.
495 * @param pDrvIns The hub instance.
496 * @param pUsbIns The device to attach.
497 * @param piPort Where to store the port number the device was attached to.
498 * @thread EMT.
499 */
500 DECLR3CALLBACKMEMBER(int, pfnAttachDevice,(PPDMDRVINS pDrvIns, PPDMUSBINS pUsbIns, uint32_t *piPort));
501
502 /**
503 * Request the hub to detach of the specified device.
504 *
505 * The device has previously been attached to the hub with the
506 * pfnAttachDevice call. This call is not currently expected to
507 * fail.
508 *
509 * @returns VBox status code.
510 * @param pDrvIns The hub instance.
511 * @param pUsbIns The device to detach.
512 * @param iPort The port number returned by the attach call.
513 * @thread EMT.
514 */
515 DECLR3CALLBACKMEMBER(int, pfnDetachDevice,(PPDMDRVINS pDrvIns, PPDMUSBINS pUsbIns, uint32_t iPort));
516
517 /** Counterpart to u32Version, same value. */
518 uint32_t u32TheEnd;
519} PDMUSBHUBREG;
520/** Pointer to a const USB hub registration structure. */
521typedef const PDMUSBHUBREG *PCPDMUSBHUBREG;
522
523/** Current PDMUSBHUBREG version number. */
524#define PDM_USBHUBREG_VERSION PDM_VERSION_MAKE(0xf0fd, 1, 0)
525
526
527/**
528 * USB hub helpers.
529 * This is currently just a place holder.
530 */
531typedef struct PDMUSBHUBHLP
532{
533 /** Structure version. PDM_USBHUBHLP_VERSION defines the current version. */
534 uint32_t u32Version;
535
536 /** Just a safety precaution. */
537 uint32_t u32TheEnd;
538} PDMUSBHUBHLP;
539/** Pointer to PCI helpers. */
540typedef PDMUSBHUBHLP *PPDMUSBHUBHLP;
541/** Pointer to const PCI helpers. */
542typedef const PDMUSBHUBHLP *PCPDMUSBHUBHLP;
543/** Pointer to const PCI helpers pointer. */
544typedef PCPDMUSBHUBHLP *PPCPDMUSBHUBHLP;
545
546/** Current PDMUSBHUBHLP version number. */
547#define PDM_USBHUBHLP_VERSION PDM_VERSION_MAKE(0xf0fc, 1, 0)
548
549
550/**
551 * PDM Driver API - raw-mode context variant.
552 */
553typedef struct PDMDRVHLPRC
554{
555 /** Structure version. PDM_DRVHLPRC_VERSION defines the current version. */
556 uint32_t u32Version;
557
558 /**
559 * Set the VM error message
560 *
561 * @returns rc.
562 * @param pDrvIns Driver instance.
563 * @param rc VBox status code.
564 * @param RT_SRC_POS_DECL Use RT_SRC_POS.
565 * @param pszFormat Error message format string.
566 * @param ... Error message arguments.
567 */
568 DECLRCCALLBACKMEMBER(int, pfnVMSetError,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...));
569
570 /**
571 * Set the VM error message
572 *
573 * @returns rc.
574 * @param pDrvIns Driver instance.
575 * @param rc VBox status code.
576 * @param RT_SRC_POS_DECL Use RT_SRC_POS.
577 * @param pszFormat Error message format string.
578 * @param va Error message arguments.
579 */
580 DECLRCCALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va));
581
582 /**
583 * Set the VM runtime error message
584 *
585 * @returns VBox status code.
586 * @param pDrvIns Driver instance.
587 * @param fFlags The action flags. See VMSETRTERR_FLAGS_*.
588 * @param pszErrorId Error ID string.
589 * @param pszFormat Error message format string.
590 * @param ... Error message arguments.
591 */
592 DECLRCCALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...));
593
594 /**
595 * Set the VM runtime error message
596 *
597 * @returns VBox status code.
598 * @param pDrvIns Driver instance.
599 * @param fFlags The action flags. See VMSETRTERR_FLAGS_*.
600 * @param pszErrorId Error ID string.
601 * @param pszFormat Error message format string.
602 * @param va Error message arguments.
603 */
604 DECLRCCALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va));
605
606 /**
607 * Assert that the current thread is the emulation thread.
608 *
609 * @returns True if correct.
610 * @returns False if wrong.
611 * @param pDrvIns Driver instance.
612 * @param pszFile Filename of the assertion location.
613 * @param iLine Linenumber of the assertion location.
614 * @param pszFunction Function of the assertion location.
615 */
616 DECLRCCALLBACKMEMBER(bool, pfnAssertEMT,(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction));
617
618 /**
619 * Assert that the current thread is NOT the emulation thread.
620 *
621 * @returns True if correct.
622 * @returns False if wrong.
623 * @param pDrvIns Driver instance.
624 * @param pszFile Filename of the assertion location.
625 * @param iLine Linenumber of the assertion location.
626 * @param pszFunction Function of the assertion location.
627 */
628 DECLRCCALLBACKMEMBER(bool, pfnAssertOther,(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction));
629
630 /** Just a safety precaution. */
631 uint32_t u32TheEnd;
632} PDMDRVHLPRC;
633/** Current PDMDRVHLPRC version number. */
634#define PDM_DRVHLPRC_VERSION PDM_VERSION_MAKE(0xf0f9, 1, 0)
635
636
637/**
638 * PDM Driver API, ring-0 context.
639 */
640typedef struct PDMDRVHLPR0
641{
642 /** Structure version. PDM_DRVHLPR0_VERSION defines the current version. */
643 uint32_t u32Version;
644
645 /**
646 * Set the VM error message
647 *
648 * @returns rc.
649 * @param pDrvIns Driver instance.
650 * @param rc VBox status code.
651 * @param RT_SRC_POS_DECL Use RT_SRC_POS.
652 * @param pszFormat Error message format string.
653 * @param ... Error message arguments.
654 */
655 DECLR0CALLBACKMEMBER(int, pfnVMSetError,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...));
656
657 /**
658 * Set the VM error message
659 *
660 * @returns rc.
661 * @param pDrvIns Driver instance.
662 * @param rc VBox status code.
663 * @param RT_SRC_POS_DECL Use RT_SRC_POS.
664 * @param pszFormat Error message format string.
665 * @param va Error message arguments.
666 */
667 DECLR0CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va));
668
669 /**
670 * Set the VM runtime error message
671 *
672 * @returns VBox status code.
673 * @param pDrvIns Driver instance.
674 * @param fFlags The action flags. See VMSETRTERR_FLAGS_*.
675 * @param pszErrorId Error ID string.
676 * @param pszFormat Error message format string.
677 * @param ... Error message arguments.
678 */
679 DECLR0CALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...));
680
681 /**
682 * Set the VM runtime error message
683 *
684 * @returns VBox status code.
685 * @param pDrvIns Driver instance.
686 * @param fFlags The action flags. See VMSETRTERR_FLAGS_*.
687 * @param pszErrorId Error ID string.
688 * @param pszFormat Error message format string.
689 * @param va Error message arguments.
690 */
691 DECLR0CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va));
692
693 /**
694 * Assert that the current thread is the emulation thread.
695 *
696 * @returns True if correct.
697 * @returns False if wrong.
698 * @param pDrvIns Driver instance.
699 * @param pszFile Filename of the assertion location.
700 * @param iLine Linenumber of the assertion location.
701 * @param pszFunction Function of the assertion location.
702 */
703 DECLR0CALLBACKMEMBER(bool, pfnAssertEMT,(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction));
704
705 /**
706 * Assert that the current thread is NOT the emulation thread.
707 *
708 * @returns True if correct.
709 * @returns False if wrong.
710 * @param pDrvIns Driver instance.
711 * @param pszFile Filename of the assertion location.
712 * @param iLine Linenumber of the assertion location.
713 * @param pszFunction Function of the assertion location.
714 */
715 DECLR0CALLBACKMEMBER(bool, pfnAssertOther,(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction));
716
717 /** Just a safety precaution. */
718 uint32_t u32TheEnd;
719} PDMDRVHLPR0;
720/** Current DRVHLP version number. */
721#define PDM_DRVHLPR0_VERSION PDM_VERSION_MAKE(0xf0f8, 1, 0)
722
723
724#ifdef IN_RING3
725
726/**
727 * PDM Driver API.
728 */
729typedef struct PDMDRVHLPR3
730{
731 /** Structure version. PDM_DRVHLPR3_VERSION defines the current version. */
732 uint32_t u32Version;
733
734 /**
735 * Attaches a driver (chain) to the driver.
736 *
737 * @returns VBox status code.
738 * @param pDrvIns Driver instance.
739 * @param fFlags PDM_TACH_FLAGS_NOT_HOT_PLUG or 0.
740 * @param ppBaseInterface Where to store the pointer to the base interface.
741 */
742 DECLR3CALLBACKMEMBER(int, pfnAttach,(PPDMDRVINS pDrvIns, uint32_t fFlags, PPDMIBASE *ppBaseInterface));
743
744 /**
745 * Detach the driver the drivers below us.
746 *
747 * @returns VBox status code.
748 * @param pDrvIns Driver instance.
749 * @param fFlags PDM_TACH_FLAGS_NOT_HOT_PLUG or 0.
750 */
751 DECLR3CALLBACKMEMBER(int, pfnDetach,(PPDMDRVINS pDrvIns, uint32_t fFlags));
752
753 /**
754 * Detach the driver from the driver above it and destroy this
755 * driver and all drivers below it.
756 *
757 * @returns VBox status code.
758 * @param pDrvIns Driver instance.
759 * @param fFlags PDM_TACH_FLAGS_NOT_HOT_PLUG or 0.
760 */
761 DECLR3CALLBACKMEMBER(int, pfnDetachSelf,(PPDMDRVINS pDrvIns, uint32_t fFlags));
762
763 /**
764 * Prepare a media mount.
765 *
766 * The driver must not have anything attached to itself
767 * when calling this function as the purpose is to set up the configuration
768 * of an future attachment.
769 *
770 * @returns VBox status code
771 * @param pDrvIns Driver instance.
772 * @param pszFilename Pointer to filename. If this is NULL it assumed that the caller have
773 * constructed a configuration which can be attached to the bottom driver.
774 * @param pszCoreDriver Core driver name. NULL will cause autodetection. Ignored if pszFilanem is NULL.
775 */
776 DECLR3CALLBACKMEMBER(int, pfnMountPrepare,(PPDMDRVINS pDrvIns, const char *pszFilename, const char *pszCoreDriver));
777
778 /**
779 * Assert that the current thread is the emulation thread.
780 *
781 * @returns True if correct.
782 * @returns False if wrong.
783 * @param pDrvIns Driver instance.
784 * @param pszFile Filename of the assertion location.
785 * @param iLine Linenumber of the assertion location.
786 * @param pszFunction Function of the assertion location.
787 */
788 DECLR3CALLBACKMEMBER(bool, pfnAssertEMT,(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction));
789
790 /**
791 * Assert that the current thread is NOT the emulation thread.
792 *
793 * @returns True if correct.
794 * @returns False if wrong.
795 * @param pDrvIns Driver instance.
796 * @param pszFile Filename of the assertion location.
797 * @param iLine Linenumber of the assertion location.
798 * @param pszFunction Function of the assertion location.
799 */
800 DECLR3CALLBACKMEMBER(bool, pfnAssertOther,(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction));
801
802 /**
803 * Set the VM error message
804 *
805 * @returns rc.
806 * @param pDrvIns Driver instance.
807 * @param rc VBox status code.
808 * @param RT_SRC_POS_DECL Use RT_SRC_POS.
809 * @param pszFormat Error message format string.
810 * @param ... Error message arguments.
811 */
812 DECLR3CALLBACKMEMBER(int, pfnVMSetError,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...));
813
814 /**
815 * Set the VM error message
816 *
817 * @returns rc.
818 * @param pDrvIns Driver instance.
819 * @param rc VBox status code.
820 * @param RT_SRC_POS_DECL Use RT_SRC_POS.
821 * @param pszFormat Error message format string.
822 * @param va Error message arguments.
823 */
824 DECLR3CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va));
825
826 /**
827 * Set the VM runtime error message
828 *
829 * @returns VBox status code.
830 * @param pDrvIns Driver instance.
831 * @param fFlags The action flags. See VMSETRTERR_FLAGS_*.
832 * @param pszErrorId Error ID string.
833 * @param pszFormat Error message format string.
834 * @param ... Error message arguments.
835 */
836 DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...));
837
838 /**
839 * Set the VM runtime error message
840 *
841 * @returns VBox status code.
842 * @param pDrvIns Driver instance.
843 * @param fFlags The action flags. See VMSETRTERR_FLAGS_*.
844 * @param pszErrorId Error ID string.
845 * @param pszFormat Error message format string.
846 * @param va Error message arguments.
847 */
848 DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va));
849
850 /**
851 * Gets the VM state.
852 *
853 * @returns VM state.
854 * @param pDrvIns The driver instance.
855 * @thread Any thread (just keep in mind that it's volatile info).
856 */
857 DECLR3CALLBACKMEMBER(VMSTATE, pfnVMState, (PPDMDRVINS pDrvIns));
858
859 /**
860 * Checks if the VM was teleported and hasn't been fully resumed yet.
861 *
862 * @returns true / false.
863 * @param pDrvIns The driver instance.
864 * @thread Any thread.
865 */
866 DECLR3CALLBACKMEMBER(bool, pfnVMTeleportedAndNotFullyResumedYet,(PPDMDRVINS pDrvIns));
867
868 /**
869 * Gets the support driver session.
870 *
871 * This is intended for working using the semaphore API.
872 *
873 * @returns Support driver session handle.
874 * @param pDrvIns The driver instance.
875 */
876 DECLR3CALLBACKMEMBER(PSUPDRVSESSION, pfnGetSupDrvSession,(PPDMDRVINS pDrvIns));
877
878 /**
879 * Create a queue.
880 *
881 * @returns VBox status code.
882 * @param pDrvIns Driver instance.
883 * @param cbItem Size a queue item.
884 * @param cItems Number of items in the queue.
885 * @param cMilliesInterval Number of milliseconds between polling the queue.
886 * If 0 then the emulation thread will be notified whenever an item arrives.
887 * @param pfnCallback The consumer function.
888 * @param pszName The queue base name. The instance number will be
889 * appended automatically.
890 * @param ppQueue Where to store the queue handle on success.
891 * @thread The emulation thread.
892 */
893 DECLR3CALLBACKMEMBER(int, pfnQueueCreate,(PPDMDRVINS pDrvIns, uint32_t cbItem, uint32_t cItems, uint32_t cMilliesInterval,
894 PFNPDMQUEUEDRV pfnCallback, const char *pszName, PPDMQUEUE *ppQueue));
895
896 /**
897 * Query the virtual timer frequency.
898 *
899 * @returns Frequency in Hz.
900 * @param pDrvIns Driver instance.
901 * @thread Any thread.
902 */
903 DECLR3CALLBACKMEMBER(uint64_t, pfnTMGetVirtualFreq,(PPDMDRVINS pDrvIns));
904
905 /**
906 * Query the virtual time.
907 *
908 * @returns The current virtual time.
909 * @param pDrvIns Driver instance.
910 * @thread Any thread.
911 */
912 DECLR3CALLBACKMEMBER(uint64_t, pfnTMGetVirtualTime,(PPDMDRVINS pDrvIns));
913
914 /**
915 * Creates a timer.
916 *
917 * @returns VBox status.
918 * @param pDrvIns Driver instance.
919 * @param enmClock The clock to use on this timer.
920 * @param pfnCallback Callback function.
921 * @param pvUser The user argument to the callback.
922 * @param fFlags Timer creation flags, see grp_tm_timer_flags.
923 * @param pszDesc Pointer to description string which must stay around
924 * until the timer is fully destroyed (i.e. a bit after TMTimerDestroy()).
925 * @param ppTimer Where to store the timer on success.
926 * @thread EMT
927 */
928 DECLR3CALLBACKMEMBER(int, pfnTMTimerCreate,(PPDMDRVINS pDrvIns, TMCLOCK enmClock, PFNTMTIMERDRV pfnCallback, void *pvUser, uint32_t fFlags, const char *pszDesc, PPTMTIMERR3 ppTimer));
929
930 /**
931 * Register a save state data unit.
932 *
933 * @returns VBox status.
934 * @param pDrvIns Driver instance.
935 * @param uVersion Data layout version number.
936 * @param cbGuess The approximate amount of data in the unit.
937 * Only for progress indicators.
938 *
939 * @param pfnLivePrep Prepare live save callback, optional.
940 * @param pfnLiveExec Execute live save callback, optional.
941 * @param pfnLiveVote Vote live save callback, optional.
942 *
943 * @param pfnSavePrep Prepare save callback, optional.
944 * @param pfnSaveExec Execute save callback, optional.
945 * @param pfnSaveDone Done save callback, optional.
946 *
947 * @param pfnLoadPrep Prepare load callback, optional.
948 * @param pfnLoadExec Execute load callback, optional.
949 * @param pfnLoadDone Done load callback, optional.
950 */
951 DECLR3CALLBACKMEMBER(int, pfnSSMRegister,(PPDMDRVINS pDrvIns, uint32_t uVersion, size_t cbGuess,
952 PFNSSMDRVLIVEPREP pfnLivePrep, PFNSSMDRVLIVEEXEC pfnLiveExec, PFNSSMDRVLIVEVOTE pfnLiveVote,
953 PFNSSMDRVSAVEPREP pfnSavePrep, PFNSSMDRVSAVEEXEC pfnSaveExec, PFNSSMDRVSAVEDONE pfnSaveDone,
954 PFNSSMDRVLOADPREP pfnLoadPrep, PFNSSMDRVLOADEXEC pfnLoadExec, PFNSSMDRVLOADDONE pfnLoadDone));
955
956 /**
957 * Deregister a save state data unit.
958 *
959 * @returns VBox status.
960 * @param pDrvIns Driver instance.
961 * @param pszName Data unit name.
962 * @param uInstance The instance identifier of the data unit.
963 * This must together with the name be unique.
964 */
965 DECLR3CALLBACKMEMBER(int, pfnSSMDeregister,(PPDMDRVINS pDrvIns, const char *pszName, uint32_t uInstance));
966
967 /**
968 * Registers a statistics sample if statistics are enabled.
969 *
970 * @param pDrvIns Driver instance.
971 * @param pvSample Pointer to the sample.
972 * @param enmType Sample type. This indicates what pvSample is pointing at.
973 * @param pszName Sample name. The name is on this form "/<component>/<sample>".
974 * Further nesting is possible.
975 * @param enmUnit Sample unit.
976 * @param pszDesc Sample description.
977 */
978 DECLR3CALLBACKMEMBER(void, pfnSTAMRegister,(PPDMDRVINS pDrvIns, void *pvSample, STAMTYPE enmType, const char *pszName,
979 STAMUNIT enmUnit, const char *pszDesc));
980
981 /**
982 * Same as pfnSTAMRegister except that the name is specified in a
983 * RTStrPrintf like fashion.
984 *
985 * @param pDrvIns Driver instance.
986 * @param pvSample Pointer to the sample.
987 * @param enmType Sample type. This indicates what pvSample is pointing at.
988 * @param enmVisibility Visibility type specifying whether unused statistics should be visible or not.
989 * @param enmUnit Sample unit.
990 * @param pszDesc Sample description.
991 * @param pszName The sample name format string.
992 * @param ... Arguments to the format string.
993 */
994 DECLR3CALLBACKMEMBER(void, pfnSTAMRegisterF,(PPDMDRVINS pDrvIns, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility,
995 STAMUNIT enmUnit, const char *pszDesc, const char *pszName, ...));
996
997 /**
998 * Same as pfnSTAMRegister except that the name is specified in a
999 * RTStrPrintfV like fashion.
1000 *
1001 * @param pDrvIns Driver instance.
1002 * @param pvSample Pointer to the sample.
1003 * @param enmType Sample type. This indicates what pvSample is pointing at.
1004 * @param enmVisibility Visibility type specifying whether unused statistics should be visible or not.
1005 * @param enmUnit Sample unit.
1006 * @param pszDesc Sample description.
1007 * @param pszName The sample name format string.
1008 * @param args Arguments to the format string.
1009 */
1010 DECLR3CALLBACKMEMBER(void, pfnSTAMRegisterV,(PPDMDRVINS pDrvIns, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility,
1011 STAMUNIT enmUnit, const char *pszDesc, const char *pszName, va_list args));
1012
1013 /**
1014 * Deregister a statistic item previously registered with pfnSTAMRegister,
1015 * pfnSTAMRegisterF or pfnSTAMRegisterV
1016 *
1017 * @returns VBox status.
1018 * @param pDrvIns Driver instance.
1019 * @param pvSample Pointer to the sample.
1020 */
1021 DECLR3CALLBACKMEMBER(int, pfnSTAMDeregister,(PPDMDRVINS pDrvIns, void *pvSample));
1022
1023 /**
1024 * Calls the HC R0 VMM entry point, in a safer but slower manner than
1025 * SUPR3CallVMMR0.
1026 *
1027 * When entering using this call the R0 components can call into the host kernel
1028 * (i.e. use the SUPR0 and RT APIs).
1029 *
1030 * See VMMR0Entry() for more details.
1031 *
1032 * @returns error code specific to uFunction.
1033 * @param pDrvIns The driver instance.
1034 * @param uOperation Operation to execute.
1035 * This is limited to services.
1036 * @param pvArg Pointer to argument structure or if cbArg is 0 just an value.
1037 * @param cbArg The size of the argument. This is used to copy whatever the argument
1038 * points at into a kernel buffer to avoid problems like the user page
1039 * being invalidated while we're executing the call.
1040 */
1041 DECLR3CALLBACKMEMBER(int, pfnSUPCallVMMR0Ex,(PPDMDRVINS pDrvIns, unsigned uOperation, void *pvArg, unsigned cbArg));
1042
1043 /**
1044 * Registers a USB HUB.
1045 *
1046 * @returns VBox status code.
1047 * @param pDrvIns The driver instance.
1048 * @param fVersions Indicates the kinds of USB devices that can be attached to this HUB.
1049 * @param cPorts The number of ports.
1050 * @param pUsbHubReg The hub callback structure that PDMUsb uses to interact with it.
1051 * @param ppUsbHubHlp The helper callback structure that the hub uses to talk to PDMUsb.
1052 *
1053 * @thread EMT.
1054 */
1055 DECLR3CALLBACKMEMBER(int, pfnUSBRegisterHub,(PPDMDRVINS pDrvIns, uint32_t fVersions, uint32_t cPorts, PCPDMUSBHUBREG pUsbHubReg, PPCPDMUSBHUBHLP ppUsbHubHlp));
1056
1057 /**
1058 * Set up asynchronous handling of a suspend, reset or power off notification.
1059 *
1060 * This shall only be called when getting the notification. It must be called
1061 * for each one.
1062 *
1063 * @returns VBox status code.
1064 * @param pDrvIns The driver instance.
1065 * @param pfnAsyncNotify The callback.
1066 * @thread EMT(0)
1067 */
1068 DECLR3CALLBACKMEMBER(int, pfnSetAsyncNotification, (PPDMDRVINS pDrvIns, PFNPDMDRVASYNCNOTIFY pfnAsyncNotify));
1069
1070 /**
1071 * Notify EMT(0) that the driver has completed the asynchronous notification
1072 * handling.
1073 *
1074 * This can be called at any time, spurious calls will simply be ignored.
1075 *
1076 * @param pDrvIns The driver instance.
1077 * @thread Any
1078 */
1079 DECLR3CALLBACKMEMBER(void, pfnAsyncNotificationCompleted, (PPDMDRVINS pDrvIns));
1080
1081 /**
1082 * Creates a PDM thread.
1083 *
1084 * This differs from the RTThreadCreate() API in that PDM takes care of suspending,
1085 * resuming, and destroying the thread as the VM state changes.
1086 *
1087 * @returns VBox status code.
1088 * @param pDrvIns The driver instance.
1089 * @param ppThread Where to store the thread 'handle'.
1090 * @param pvUser The user argument to the thread function.
1091 * @param pfnThread The thread function.
1092 * @param pfnWakeup The wakup callback. This is called on the EMT thread when
1093 * a state change is pending.
1094 * @param cbStack See RTThreadCreate.
1095 * @param enmType See RTThreadCreate.
1096 * @param pszName See RTThreadCreate.
1097 */
1098 DECLR3CALLBACKMEMBER(int, pfnThreadCreate,(PPDMDRVINS pDrvIns, PPPDMTHREAD ppThread, void *pvUser, PFNPDMTHREADDRV pfnThread,
1099 PFNPDMTHREADWAKEUPDRV pfnWakeup, size_t cbStack, RTTHREADTYPE enmType, const char *pszName));
1100
1101 /**
1102 * Creates a async completion template for a driver instance.
1103 *
1104 * The template is used when creating new completion tasks.
1105 *
1106 * @returns VBox status code.
1107 * @param pDrvIns The driver instance.
1108 * @param ppTemplate Where to store the template pointer on success.
1109 * @param pfnCompleted The completion callback routine.
1110 * @param pvTemplateUser Template user argument.
1111 * @param pszDesc Description.
1112 */
1113 DECLR3CALLBACKMEMBER(int, pfnAsyncCompletionTemplateCreate,(PPDMDRVINS pDrvIns, PPPDMASYNCCOMPLETIONTEMPLATE ppTemplate,
1114 PFNPDMASYNCCOMPLETEDRV pfnCompleted, void *pvTemplateUser,
1115 const char *pszDesc));
1116
1117
1118 /**
1119 * Resolves the symbol for a raw-mode context interface.
1120 *
1121 * @returns VBox status code.
1122 * @param pDrvIns The driver instance.
1123 * @param pvInterface The interface structure.
1124 * @param cbInterface The size of the interface structure.
1125 * @param pszSymPrefix What to prefix the symbols in the list with before
1126 * resolving them. This must start with 'drv' and
1127 * contain the driver name.
1128 * @param pszSymList List of symbols corresponding to the interface.
1129 * There is generally a there is generally a define
1130 * holding this list associated with the interface
1131 * definition (INTERFACE_SYM_LIST). For more details
1132 * see PDMR3LdrGetInterfaceSymbols.
1133 * @thread EMT
1134 */
1135 DECLR3CALLBACKMEMBER(int, pfnLdrGetRCInterfaceSymbols,(PPDMDRVINS pDrvIns, void *pvInterface, size_t cbInterface,
1136 const char *pszSymPrefix, const char *pszSymList));
1137
1138 /**
1139 * Resolves the symbol for a ring-0 context interface.
1140 *
1141 * @returns VBox status code.
1142 * @param pDrvIns The driver instance.
1143 * @param pvInterface The interface structure.
1144 * @param cbInterface The size of the interface structure.
1145 * @param pszSymPrefix What to prefix the symbols in the list with before
1146 * resolving them. This must start with 'drv' and
1147 * contain the driver name.
1148 * @param pszSymList List of symbols corresponding to the interface.
1149 * There is generally a there is generally a define
1150 * holding this list associated with the interface
1151 * definition (INTERFACE_SYM_LIST). For more details
1152 * see PDMR3LdrGetInterfaceSymbols.
1153 * @thread EMT
1154 */
1155 DECLR3CALLBACKMEMBER(int, pfnLdrGetR0InterfaceSymbols,(PPDMDRVINS pDrvIns, void *pvInterface, size_t cbInterface,
1156 const char *pszSymPrefix, const char *pszSymList));
1157 /**
1158 * Initializes a PDM critical section.
1159 *
1160 * The PDM critical sections are derived from the IPRT critical sections, but
1161 * works in both RC and R0 as well as R3.
1162 *
1163 * @returns VBox status code.
1164 * @param pDrvIns The driver instance.
1165 * @param pCritSect Pointer to the critical section.
1166 * @param RT_SRC_POS_DECL Use RT_SRC_POS.
1167 * @param pszName The base name of the critical section. Will be
1168 * mangeled with the instance number. For
1169 * statistics and lock validation.
1170 * @param va Arguments for the format string.
1171 * @thread EMT
1172 */
1173 DECLR3CALLBACKMEMBER(int, pfnCritSectInit,(PPDMDRVINS pDrvIns, PPDMCRITSECT pCritSect,
1174 RT_SRC_POS_DECL, const char *pszName));
1175
1176 /**
1177 * Call the ring-0 request handler routine of the driver.
1178 *
1179 * For this to work, the driver must be ring-0 enabled and export a request
1180 * handler function. The name of the function must be the driver name in the
1181 * PDMDRVREG struct prefixed with 'drvR0' and suffixed with 'ReqHandler'.
1182 * The driver name will be capitalized. It shall take the exact same
1183 * arguments as this function and be declared using PDMBOTHCBDECL. See
1184 * FNPDMDRVREQHANDLERR0.
1185 *
1186 * @returns VBox status code.
1187 * @retval VERR_SYMBOL_NOT_FOUND if the driver doesn't export the required
1188 * handler function.
1189 * @retval VERR_ACCESS_DENIED if the driver isn't ring-0 capable.
1190 *
1191 * @param pDrvIns The driver instance.
1192 * @param uOperation The operation to perform.
1193 * @param u64Arg 64-bit integer argument.
1194 * @thread Any
1195 */
1196 DECLR3CALLBACKMEMBER(int, pfnCallR0,(PPDMDRVINS pDrvIns, uint32_t uOperation, uint64_t u64Arg));
1197
1198 /** Just a safety precaution. */
1199 uint32_t u32TheEnd;
1200} PDMDRVHLPR3;
1201/** Current DRVHLP version number. */
1202#define PDM_DRVHLPR3_VERSION PDM_VERSION_MAKE(0xf0fb, 1, 0)
1203
1204#endif /* IN_RING3 */
1205
1206
1207/**
1208 * @copydoc PDMDRVHLP::pfnVMSetError
1209 */
1210DECLINLINE(int) PDMDrvHlpVMSetError(PPDMDRVINS pDrvIns, const int rc, RT_SRC_POS_DECL, const char *pszFormat, ...)
1211{
1212 va_list va;
1213 va_start(va, pszFormat);
1214 pDrvIns->CTX_SUFF(pHlp)->pfnVMSetErrorV(pDrvIns, rc, RT_SRC_POS_ARGS, pszFormat, va);
1215 va_end(va);
1216 return rc;
1217}
1218
1219/** @def PDMDRV_SET_ERROR
1220 * Set the VM error. See PDMDrvHlpVMSetError() for printf like message formatting.
1221 */
1222#define PDMDRV_SET_ERROR(pDrvIns, rc, pszError) \
1223 PDMDrvHlpVMSetError(pDrvIns, rc, RT_SRC_POS, "%s", pszError)
1224
1225/**
1226 * @copydoc PDMDRVHLP::pfnVMSetErrorV
1227 */
1228DECLINLINE(int) PDMDrvHlpVMSetErrorV(PPDMDRVINS pDrvIns, const int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va)
1229{
1230 return pDrvIns->CTX_SUFF(pHlp)->pfnVMSetErrorV(pDrvIns, rc, RT_SRC_POS_ARGS, pszFormat, va);
1231}
1232
1233
1234/**
1235 * @copydoc PDMDRVHLP::pfnVMSetRuntimeError
1236 */
1237DECLINLINE(int) PDMDrvHlpVMSetRuntimeError(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)
1238{
1239 va_list va;
1240 int rc;
1241 va_start(va, pszFormat);
1242 rc = pDrvIns->CTX_SUFF(pHlp)->pfnVMSetRuntimeErrorV(pDrvIns, fFlags, pszErrorId, pszFormat, va);
1243 va_end(va);
1244 return rc;
1245}
1246
1247/** @def PDMDRV_SET_RUNTIME_ERROR
1248 * Set the VM runtime error. See PDMDrvHlpVMSetRuntimeError() for printf like message formatting.
1249 */
1250#define PDMDRV_SET_RUNTIME_ERROR(pDrvIns, fFlags, pszErrorId, pszError) \
1251 PDMDrvHlpVMSetRuntimeError(pDrvIns, fFlags, pszErrorId, "%s", pszError)
1252
1253/**
1254 * @copydoc PDMDRVHLP::pfnVMSetRuntimeErrorV
1255 */
1256DECLINLINE(int) PDMDrvHlpVMSetRuntimeErrorV(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va)
1257{
1258 return pDrvIns->CTX_SUFF(pHlp)->pfnVMSetRuntimeErrorV(pDrvIns, fFlags, pszErrorId, pszFormat, va);
1259}
1260
1261
1262
1263/** @def PDMDRV_ASSERT_EMT
1264 * Assert that the current thread is the emulation thread.
1265 */
1266#ifdef VBOX_STRICT
1267# define PDMDRV_ASSERT_EMT(pDrvIns) pDrvIns->CTX_SUFF(pHlp)->pfnAssertEMT(pDrvIns, __FILE__, __LINE__, __FUNCTION__)
1268#else
1269# define PDMDRV_ASSERT_EMT(pDrvIns) do { } while (0)
1270#endif
1271
1272/** @def PDMDRV_ASSERT_OTHER
1273 * Assert that the current thread is NOT the emulation thread.
1274 */
1275#ifdef VBOX_STRICT
1276# define PDMDRV_ASSERT_OTHER(pDrvIns) pDrvIns->CTX_SUFF(pHlp)->pfnAssertOther(pDrvIns, __FILE__, __LINE__, __FUNCTION__)
1277#else
1278# define PDMDRV_ASSERT_OTHER(pDrvIns) do { } while (0)
1279#endif
1280
1281
1282#ifdef IN_RING3
1283
1284/**
1285 * @copydoc PDMDRVHLP::pfnAttach
1286 */
1287DECLINLINE(int) PDMDrvHlpAttach(PPDMDRVINS pDrvIns, uint32_t fFlags, PPDMIBASE *ppBaseInterface)
1288{
1289 return pDrvIns->pHlpR3->pfnAttach(pDrvIns, fFlags, ppBaseInterface);
1290}
1291
1292/**
1293 * Check that there is no driver below the us that we should attach to.
1294 *
1295 * @returns VERR_PDM_NO_ATTACHED_DRIVER if there is no driver.
1296 * @param pDrvIns The driver instance.
1297 */
1298DECLINLINE(int) PDMDrvHlpNoAttach(PPDMDRVINS pDrvIns)
1299{
1300 return pDrvIns->pHlpR3->pfnAttach(pDrvIns, 0, NULL);
1301}
1302
1303/**
1304 * @copydoc PDMDRVHLP::pfnDetach
1305 */
1306DECLINLINE(int) PDMDrvHlpDetach(PPDMDRVINS pDrvIns, uint32_t fFlags)
1307{
1308 return pDrvIns->pHlpR3->pfnDetach(pDrvIns, fFlags);
1309}
1310
1311/**
1312 * @copydoc PDMDRVHLP::pfnDetachSelf
1313 */
1314DECLINLINE(int) PDMDrvHlpDetachSelf(PPDMDRVINS pDrvIns, uint32_t fFlags)
1315{
1316 return pDrvIns->pHlpR3->pfnDetachSelf(pDrvIns, fFlags);
1317}
1318
1319/**
1320 * @copydoc PDMDRVHLP::pfnMountPrepare
1321 */
1322DECLINLINE(int) PDMDrvHlpMountPrepare(PPDMDRVINS pDrvIns, const char *pszFilename, const char *pszCoreDriver)
1323{
1324 return pDrvIns->pHlpR3->pfnMountPrepare(pDrvIns, pszFilename, pszCoreDriver);
1325}
1326
1327/**
1328 * @copydoc PDMDRVHLP::pfnVMState
1329 */
1330DECLINLINE(VMSTATE) PDMDrvHlpVMState(PPDMDRVINS pDrvIns)
1331{
1332 return pDrvIns->CTX_SUFF(pHlp)->pfnVMState(pDrvIns);
1333}
1334
1335/**
1336 * @copydoc PDMDRVHLP::pfnVMTeleportedAndNotFullyResumedYet
1337 */
1338DECLINLINE(bool) PDMDrvHlpVMTeleportedAndNotFullyResumedYet(PPDMDRVINS pDrvIns)
1339{
1340 return pDrvIns->pHlpR3->pfnVMTeleportedAndNotFullyResumedYet(pDrvIns);
1341}
1342
1343/**
1344 * @copydoc PDMDRVHLP::pfnGetSupDrvSession
1345 */
1346DECLINLINE(PSUPDRVSESSION) PDMDrvHlpGetSupDrvSession(PPDMDRVINS pDrvIns)
1347{
1348 return pDrvIns->pHlpR3->pfnGetSupDrvSession(pDrvIns);
1349}
1350
1351/**
1352 * @copydoc PDMDRVHLP::pfnQueueCreate
1353 */
1354DECLINLINE(int) PDMDrvHlpQueueCreate(PPDMDRVINS pDrvIns, uint32_t cbItem, uint32_t cItems, uint32_t cMilliesInterval,
1355 PFNPDMQUEUEDRV pfnCallback, const char *pszName, PPDMQUEUE *ppQueue)
1356{
1357 return pDrvIns->pHlpR3->pfnQueueCreate(pDrvIns, cbItem, cItems, cMilliesInterval, pfnCallback, pszName, ppQueue);
1358}
1359
1360/**
1361 * @copydoc PDMDRVHLP::pfnTMGetVirtualFreq
1362 */
1363DECLINLINE(uint64_t) PDMDrvHlpTMGetVirtualFreq(PPDMDRVINS pDrvIns)
1364{
1365 return pDrvIns->pHlpR3->pfnTMGetVirtualFreq(pDrvIns);
1366}
1367
1368/**
1369 * @copydoc PDMDRVHLP::pfnTMGetVirtualTime
1370 */
1371DECLINLINE(uint64_t) PDMDrvHlpTMGetVirtualTime(PPDMDRVINS pDrvIns)
1372{
1373 return pDrvIns->pHlpR3->pfnTMGetVirtualTime(pDrvIns);
1374}
1375
1376/**
1377 * @copydoc PDMDRVHLP::pfnTMTimerCreate
1378 */
1379DECLINLINE(int) PDMDrvHlpTMTimerCreate(PPDMDRVINS pDrvIns, TMCLOCK enmClock, PFNTMTIMERDRV pfnCallback, void *pvUser, uint32_t fFlags, const char *pszDesc, PPTMTIMERR3 ppTimer)
1380{
1381 return pDrvIns->pHlpR3->pfnTMTimerCreate(pDrvIns, enmClock, pfnCallback, pvUser, fFlags, pszDesc, ppTimer);
1382}
1383
1384/**
1385 * Register a save state data unit.
1386 *
1387 * @returns VBox status.
1388 * @param pDrvIns Driver instance.
1389 * @param uVersion Data layout version number.
1390 * @param cbGuess The approximate amount of data in the unit.
1391 * Only for progress indicators.
1392 * @param pfnSaveExec Execute save callback, optional.
1393 * @param pfnLoadExec Execute load callback, optional.
1394 */
1395DECLINLINE(int) PDMDrvHlpSSMRegister(PPDMDRVINS pDrvIns, uint32_t uVersion, size_t cbGuess,
1396 PFNSSMDRVSAVEEXEC pfnSaveExec, PFNSSMDRVLOADEXEC pfnLoadExec)
1397{
1398 return pDrvIns->pHlpR3->pfnSSMRegister(pDrvIns, uVersion, cbGuess,
1399 NULL /*pfnLivePrep*/, NULL /*pfnLiveExec*/, NULL /*pfnLiveVote*/,
1400 NULL /*pfnSavePrep*/, pfnSaveExec, NULL /*pfnSaveDone*/,
1401 NULL /*pfnLoadPrep*/, pfnLoadExec, NULL /*pfnLoadDone*/);
1402}
1403
1404/**
1405 * @copydoc PDMDRVHLP::pfnSSMRegister
1406 */
1407DECLINLINE(int) PDMDrvHlpSSMRegisterEx(PPDMDRVINS pDrvIns, uint32_t uVersion, size_t cbGuess,
1408 PFNSSMDRVLIVEPREP pfnLivePrep, PFNSSMDRVLIVEEXEC pfnLiveExec, PFNSSMDRVLIVEVOTE pfnLiveVote,
1409 PFNSSMDRVSAVEPREP pfnSavePrep, PFNSSMDRVSAVEEXEC pfnSaveExec, PFNSSMDRVSAVEDONE pfnSaveDone,
1410 PFNSSMDRVLOADPREP pfnLoadPrep, PFNSSMDRVLOADEXEC pfnLoadExec, PFNSSMDRVLOADDONE pfnLoadDone)
1411{
1412 return pDrvIns->pHlpR3->pfnSSMRegister(pDrvIns, uVersion, cbGuess,
1413 pfnLivePrep, pfnLiveExec, pfnLiveVote,
1414 pfnSavePrep, pfnSaveExec, pfnSaveDone,
1415 pfnLoadPrep, pfnLoadExec, pfnLoadDone);
1416}
1417
1418/**
1419 * Register a load done callback.
1420 *
1421 * @returns VBox status.
1422 * @param pDrvIns Driver instance.
1423 * @param pfnLoadDone Done load callback, optional.
1424 */
1425DECLINLINE(int) PDMDrvHlpSSMRegisterLoadDone(PPDMDRVINS pDrvIns, PFNSSMDRVLOADDONE pfnLoadDone)
1426{
1427 return pDrvIns->pHlpR3->pfnSSMRegister(pDrvIns, 0 /*uVersion*/, 0 /*cbGuess*/,
1428 NULL /*pfnLivePrep*/, NULL /*pfnLiveExec*/, NULL /*pfnLiveVote*/,
1429 NULL /*pfnSavePrep*/, NULL /*pfnSaveExec*/, NULL /*pfnSaveDone*/,
1430 NULL /*pfnLoadPrep*/, NULL /*pfnLoadExec*/, pfnLoadDone);
1431}
1432
1433/**
1434 * @copydoc PDMDRVHLP::pfnSTAMRegister
1435 */
1436DECLINLINE(void) PDMDrvHlpSTAMRegister(PPDMDRVINS pDrvIns, void *pvSample, STAMTYPE enmType, const char *pszName, STAMUNIT enmUnit, const char *pszDesc)
1437{
1438 pDrvIns->pHlpR3->pfnSTAMRegister(pDrvIns, pvSample, enmType, pszName, enmUnit, pszDesc);
1439}
1440
1441/**
1442 * @copydoc PDMDRVHLP::pfnSTAMRegisterF
1443 */
1444DECLINLINE(void) PDMDrvHlpSTAMRegisterF(PPDMDRVINS pDrvIns, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit,
1445 const char *pszDesc, const char *pszName, ...)
1446{
1447 va_list va;
1448 va_start(va, pszName);
1449 pDrvIns->pHlpR3->pfnSTAMRegisterV(pDrvIns, pvSample, enmType, enmVisibility, enmUnit, pszDesc, pszName, va);
1450 va_end(va);
1451}
1452
1453/**
1454 * Convenience wrapper that registers counter which is always visible.
1455 *
1456 * @param pDrvIns The driver instance.
1457 * @param pCounter Pointer to the counter variable.
1458 * @param pszName The name of the sample. This is prefixed with
1459 * "/Drivers/<drivername>-<instance no>/".
1460 * @param enmUnit The unit.
1461 * @param pszDesc The description.
1462 */
1463DECLINLINE(void) PDMDrvHlpSTAMRegCounterEx(PPDMDRVINS pDrvIns, PSTAMCOUNTER pCounter, const char *pszName, STAMUNIT enmUnit, const char *pszDesc)
1464{
1465 pDrvIns->pHlpR3->pfnSTAMRegisterF(pDrvIns, pCounter, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, enmUnit, pszDesc,
1466 "/Drivers/%s-%u/%s", pDrvIns->pReg->szName, pDrvIns->iInstance, pszName);
1467}
1468
1469/**
1470 * Convenience wrapper that registers counter which is always visible and has
1471 * the STAMUNIT_COUNT unit.
1472 *
1473 * @param pDrvIns The driver instance.
1474 * @param pCounter Pointer to the counter variable.
1475 * @param pszName The name of the sample. This is prefixed with
1476 * "/Drivers/<drivername>-<instance no>/".
1477 * @param pszDesc The description.
1478 */
1479DECLINLINE(void) PDMDrvHlpSTAMRegCounter(PPDMDRVINS pDrvIns, PSTAMCOUNTER pCounter, const char *pszName, const char *pszDesc)
1480{
1481 PDMDrvHlpSTAMRegCounterEx(pDrvIns, pCounter, pszName, STAMUNIT_COUNT, pszDesc);
1482}
1483
1484/**
1485 * Convenience wrapper that registers profiling sample which is always visible.
1486 *
1487 * @param pDrvIns The driver instance.
1488 * @param pProfile Pointer to the profiling variable.
1489 * @param pszName The name of the sample. This is prefixed with
1490 * "/Drivers/<drivername>-<instance no>/".
1491 * @param enmUnit The unit.
1492 * @param pszDesc The description.
1493 */
1494DECLINLINE(void) PDMDrvHlpSTAMRegProfileEx(PPDMDRVINS pDrvIns, PSTAMPROFILE pProfile, const char *pszName, STAMUNIT enmUnit, const char *pszDesc)
1495{
1496 pDrvIns->pHlpR3->pfnSTAMRegisterF(pDrvIns, pProfile, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, enmUnit, pszDesc,
1497 "/Drivers/%s-%u/%s", pDrvIns->pReg->szName, pDrvIns->iInstance, pszName);
1498}
1499
1500/**
1501 * Convenience wrapper that registers profiling sample which is always visible
1502 * hand counts ticks per call (STAMUNIT_TICKS_PER_CALL).
1503 *
1504 * @param pDrvIns The driver instance.
1505 * @param pProfile Pointer to the profiling variable.
1506 * @param pszName The name of the sample. This is prefixed with
1507 * "/Drivers/<drivername>-<instance no>/".
1508 * @param pszDesc The description.
1509 */
1510DECLINLINE(void) PDMDrvHlpSTAMRegProfile(PPDMDRVINS pDrvIns, PSTAMPROFILE pProfile, const char *pszName, const char *pszDesc)
1511{
1512 PDMDrvHlpSTAMRegProfileEx(pDrvIns, pProfile, pszName, STAMUNIT_TICKS_PER_CALL, pszDesc);
1513}
1514
1515/**
1516 * Convenience wrapper that registers an advanced profiling sample which is
1517 * always visible.
1518 *
1519 * @param pDrvIns The driver instance.
1520 * @param pProfile Pointer to the profiling variable.
1521 * @param enmUnit The unit.
1522 * @param pszName The name of the sample. This is prefixed with
1523 * "/Drivers/<drivername>-<instance no>/".
1524 * @param pszDesc The description.
1525 */
1526DECLINLINE(void) PDMDrvHlpSTAMRegProfileAdvEx(PPDMDRVINS pDrvIns, PSTAMPROFILEADV pProfile, const char *pszName, STAMUNIT enmUnit, const char *pszDesc)
1527{
1528 pDrvIns->pHlpR3->pfnSTAMRegisterF(pDrvIns, pProfile, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, enmUnit, pszDesc,
1529 "/Drivers/%s-%u/%s", pDrvIns->pReg->szName, pDrvIns->iInstance, pszName);
1530}
1531
1532/**
1533 * Convenience wrapper that registers an advanced profiling sample which is
1534 * always visible.
1535 *
1536 * @param pDrvIns The driver instance.
1537 * @param pProfile Pointer to the profiling variable.
1538 * @param pszName The name of the sample. This is prefixed with
1539 * "/Drivers/<drivername>-<instance no>/".
1540 * @param pszDesc The description.
1541 */
1542DECLINLINE(void) PDMDrvHlpSTAMRegProfileAdv(PPDMDRVINS pDrvIns, PSTAMPROFILEADV pProfile, const char *pszName, const char *pszDesc)
1543{
1544 PDMDrvHlpSTAMRegProfileAdvEx(pDrvIns, pProfile, pszName, STAMUNIT_TICKS_PER_CALL, pszDesc);
1545}
1546
1547/**
1548 * @copydoc PDMDRVHLP::pfnSTAMDeregister
1549 */
1550DECLINLINE(int) PDMDrvHlpSTAMDeregister(PPDMDRVINS pDrvIns, void *pvSample)
1551{
1552 return pDrvIns->pHlpR3->pfnSTAMDeregister(pDrvIns, pvSample);
1553}
1554
1555/**
1556 * @copydoc PDMDRVHLP::pfnSUPCallVMMR0Ex
1557 */
1558DECLINLINE(int) PDMDrvHlpSUPCallVMMR0Ex(PPDMDRVINS pDrvIns, unsigned uOperation, void *pvArg, unsigned cbArg)
1559{
1560 return pDrvIns->pHlpR3->pfnSUPCallVMMR0Ex(pDrvIns, uOperation, pvArg, cbArg);
1561}
1562
1563/**
1564 * @copydoc PDMDRVHLP::pfnUSBRegisterHub
1565 */
1566DECLINLINE(int) PDMDrvHlpUSBRegisterHub(PPDMDRVINS pDrvIns, uint32_t fVersions, uint32_t cPorts, PCPDMUSBHUBREG pUsbHubReg, PPCPDMUSBHUBHLP ppUsbHubHlp)
1567{
1568 return pDrvIns->pHlpR3->pfnUSBRegisterHub(pDrvIns, fVersions, cPorts, pUsbHubReg, ppUsbHubHlp);
1569}
1570
1571/**
1572 * @copydoc PDMDRVHLP::pfnSetAsyncNotification
1573 */
1574DECLINLINE(int) PDMDrvHlpSetAsyncNotification(PPDMDRVINS pDrvIns, PFNPDMDRVASYNCNOTIFY pfnAsyncNotify)
1575{
1576 return pDrvIns->pHlpR3->pfnSetAsyncNotification(pDrvIns, pfnAsyncNotify);
1577}
1578
1579/**
1580 * @copydoc PDMDRVHLP::pfnAsyncNotificationCompleted
1581 */
1582DECLINLINE(void) PDMDrvHlpAsyncNotificationCompleted(PPDMDRVINS pDrvIns)
1583{
1584 pDrvIns->pHlpR3->pfnAsyncNotificationCompleted(pDrvIns);
1585}
1586
1587/**
1588 * @copydoc PDMDRVHLP::pfnThreadCreate
1589 */
1590DECLINLINE(int) PDMDrvHlpThreadCreate(PPDMDRVINS pDrvIns, PPPDMTHREAD ppThread, void *pvUser, PFNPDMTHREADDRV pfnThread,
1591 PFNPDMTHREADWAKEUPDRV pfnWakeup, size_t cbStack, RTTHREADTYPE enmType, const char *pszName)
1592{
1593 return pDrvIns->pHlpR3->pfnThreadCreate(pDrvIns, ppThread, pvUser, pfnThread, pfnWakeup, cbStack, enmType, pszName);
1594}
1595
1596# ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
1597/**
1598 * @copydoc PDMDRVHLP::pfnAsyncCompletionTemplateCreate
1599 */
1600DECLINLINE(int) PDMDrvHlpAsyncCompletionTemplateCreate(PPDMDRVINS pDrvIns, PPPDMASYNCCOMPLETIONTEMPLATE ppTemplate,
1601 PFNPDMASYNCCOMPLETEDRV pfnCompleted, void *pvTemplateUser, const char *pszDesc)
1602{
1603 return pDrvIns->pHlpR3->pfnAsyncCompletionTemplateCreate(pDrvIns, ppTemplate, pfnCompleted, pvTemplateUser, pszDesc);
1604}
1605# endif
1606
1607/**
1608 * @copydoc PDMDRVHLP::pfnCritSectInit
1609 */
1610DECLINLINE(int) PDMDrvHlpCritSectInit(PPDMDRVINS pDrvIns, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL, const char *pszName)
1611{
1612 return pDrvIns->pHlpR3->pfnCritSectInit(pDrvIns, pCritSect, RT_SRC_POS_ARGS, pszName);
1613}
1614
1615/**
1616 * @copydoc PDMDRVHLP::pfnCallR0
1617 */
1618DECLINLINE(int) PDMDrvHlpCallR0(PPDMDRVINS pDrvIns, uint32_t uOperation, uint64_t u64Arg)
1619{
1620 return pDrvIns->pHlpR3->pfnCallR0(pDrvIns, uOperation, u64Arg);
1621}
1622
1623
1624/** Pointer to callbacks provided to the VBoxDriverRegister() call. */
1625typedef struct PDMDRVREGCB *PPDMDRVREGCB;
1626/** Pointer to const callbacks provided to the VBoxDriverRegister() call. */
1627typedef const struct PDMDRVREGCB *PCPDMDRVREGCB;
1628
1629/**
1630 * Callbacks for VBoxDriverRegister().
1631 */
1632typedef struct PDMDRVREGCB
1633{
1634 /** Interface version.
1635 * This is set to PDM_DRVREG_CB_VERSION. */
1636 uint32_t u32Version;
1637
1638 /**
1639 * Registers a driver with the current VM instance.
1640 *
1641 * @returns VBox status code.
1642 * @param pCallbacks Pointer to the callback table.
1643 * @param pReg Pointer to the driver registration record.
1644 * This data must be permanent and readonly.
1645 */
1646 DECLR3CALLBACKMEMBER(int, pfnRegister,(PCPDMDRVREGCB pCallbacks, PCPDMDRVREG pReg));
1647} PDMDRVREGCB;
1648
1649/** Current version of the PDMDRVREGCB structure. */
1650#define PDM_DRVREG_CB_VERSION PDM_VERSION_MAKE(0xf0fa, 1, 0)
1651
1652
1653/**
1654 * The VBoxDriverRegister callback function.
1655 *
1656 * PDM will invoke this function after loading a driver module and letting
1657 * the module decide which drivers to register and how to handle conflicts.
1658 *
1659 * @returns VBox status code.
1660 * @param pCallbacks Pointer to the callback table.
1661 * @param u32Version VBox version number.
1662 */
1663typedef DECLCALLBACK(int) FNPDMVBOXDRIVERSREGISTER(PCPDMDRVREGCB pCallbacks, uint32_t u32Version);
1664
1665VMMR3DECL(int) PDMR3RegisterDrivers(PVM pVM, FNPDMVBOXDRIVERSREGISTER pfnCallback);
1666
1667#endif /* IN_RING3 */
1668
1669/** @} */
1670
1671RT_C_DECLS_END
1672
1673#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette