VirtualBox

source: vbox/trunk/include/VBox/vmm/pdmifs.h@ 84546

Last change on this file since 84546 was 83550, checked in by vboxsync, 5 years ago

pdmifs.h: nit

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 92.9 KB
Line 
1/** @file
2 * PDM - Pluggable Device Manager, Interfaces.
3 */
4
5/*
6 * Copyright (C) 2006-2020 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_INCLUDED_vmm_pdmifs_h
27#define VBOX_INCLUDED_vmm_pdmifs_h
28#ifndef RT_WITHOUT_PRAGMA_ONCE
29# pragma once
30#endif
31
32#include <iprt/sg.h>
33#include <VBox/types.h>
34
35
36RT_C_DECLS_BEGIN
37
38/** @defgroup grp_pdm_interfaces The PDM Interface Definitions
39 * @ingroup grp_pdm
40 *
41 * For historical reasons (the PDMINTERFACE enum) a lot of interface was stuffed
42 * together in this group instead, dragging stuff into global space that didn't
43 * need to be there and making this file huge (>2500 lines). Since we're using
44 * UUIDs as interface identifiers (IIDs) now, no only generic PDM interface will
45 * be added to this file. Component specific interface should be defined in the
46 * header file of that component.
47 *
48 * Interfaces consists of a method table (typedef'ed struct) and an interface
49 * ID. The typename of the method table should have an 'I' in it, be all
50 * capitals and according to the rules, no underscores. The interface ID is a
51 * \#define constructed by appending '_IID' to the typename. The IID value is a
52 * UUID string on the form "a2299c0d-b709-4551-aa5a-73f59ffbed74". If you stick
53 * to these rules, you can make use of the PDMIBASE_QUERY_INTERFACE and
54 * PDMIBASE_RETURN_INTERFACE when querying interface and implementing
55 * PDMIBASE::pfnQueryInterface respectively.
56 *
57 * In most interface descriptions the orientation of the interface is given as
58 * 'down' or 'up'. This refers to a model with the device on the top and the
59 * drivers stacked below it. Sometimes there is mention of 'main' or 'external'
60 * which normally means the same, i.e. the Main or VBoxBFE API. Picture the
61 * orientation of 'main' as horizontal.
62 *
63 * @{
64 */
65
66
67/** @name PDMIBASE
68 * @{
69 */
70
71/**
72 * PDM Base Interface.
73 *
74 * Everyone implements this.
75 */
76typedef struct PDMIBASE
77{
78 /**
79 * Queries an interface to the driver.
80 *
81 * @returns Pointer to interface.
82 * @returns NULL if the interface was not supported by the driver.
83 * @param pInterface Pointer to this interface structure.
84 * @param pszIID The interface ID, a UUID string.
85 * @thread Any thread.
86 */
87 DECLR3CALLBACKMEMBER(void *, pfnQueryInterface,(struct PDMIBASE *pInterface, const char *pszIID));
88} PDMIBASE;
89/** PDMIBASE interface ID. */
90#define PDMIBASE_IID "a2299c0d-b709-4551-aa5a-73f59ffbed74"
91
92/**
93 * Helper macro for querying an interface from PDMIBASE.
94 *
95 * @returns Correctly typed PDMIBASE::pfnQueryInterface return value.
96 *
97 * @param pIBase Pointer to the base interface.
98 * @param InterfaceType The interface type name. The interface ID is
99 * derived from this by appending _IID.
100 */
101#define PDMIBASE_QUERY_INTERFACE(pIBase, InterfaceType) \
102 ( (InterfaceType *)(pIBase)->pfnQueryInterface(pIBase, InterfaceType##_IID ) )
103
104/**
105 * Helper macro for implementing PDMIBASE::pfnQueryInterface.
106 *
107 * Return @a pInterface if @a pszIID matches the @a InterfaceType. This will
108 * perform basic type checking.
109 *
110 * @param pszIID The ID of the interface that is being queried.
111 * @param InterfaceType The interface type name. The interface ID is
112 * derived from this by appending _IID.
113 * @param pInterface The interface address expression.
114 */
115#define PDMIBASE_RETURN_INTERFACE(pszIID, InterfaceType, pInterface) \
116 do { \
117 if (RTUuidCompare2Strs((pszIID), InterfaceType##_IID) == 0) \
118 { \
119 P##InterfaceType pReturnInterfaceTypeCheck = (pInterface); \
120 return pReturnInterfaceTypeCheck; \
121 } \
122 } while (0)
123
124/** @} */
125
126
127/** @name PDMIBASERC
128 * @{
129 */
130
131/**
132 * PDM Base Interface for querying ring-mode context interfaces in
133 * ring-3.
134 *
135 * This is mandatory for drivers present in raw-mode context.
136 */
137typedef struct PDMIBASERC
138{
139 /**
140 * Queries an ring-mode context interface to the driver.
141 *
142 * @returns Pointer to interface.
143 * @returns NULL if the interface was not supported by the driver.
144 * @param pInterface Pointer to this interface structure.
145 * @param pszIID The interface ID, a UUID string.
146 * @thread Any thread.
147 */
148 DECLR3CALLBACKMEMBER(RTRCPTR, pfnQueryInterface,(struct PDMIBASERC *pInterface, const char *pszIID));
149} PDMIBASERC;
150/** Pointer to a PDM Base Interface for query ring-mode context interfaces. */
151typedef PDMIBASERC *PPDMIBASERC;
152/** PDMIBASERC interface ID. */
153#define PDMIBASERC_IID "f6a6c649-6cb3-493f-9737-4653f221aeca"
154
155/**
156 * Helper macro for querying an interface from PDMIBASERC.
157 *
158 * @returns PDMIBASERC::pfnQueryInterface return value.
159 *
160 * @param pIBaseRC Pointer to the base raw-mode context interface. Can
161 * be NULL.
162 * @param InterfaceType The interface type base name, no trailing RC. The
163 * interface ID is derived from this by appending _IID.
164 *
165 * @remarks Unlike PDMIBASE_QUERY_INTERFACE, this macro is not able to do any
166 * implicit type checking for you.
167 */
168#define PDMIBASERC_QUERY_INTERFACE(pIBaseRC, InterfaceType) \
169 ( (P##InterfaceType##RC)((pIBaseRC) ? (pIBaseRC)->pfnQueryInterface(pIBaseRC, InterfaceType##_IID) : NIL_RTRCPTR) )
170
171/**
172 * Helper macro for implementing PDMIBASERC::pfnQueryInterface.
173 *
174 * Return @a pInterface if @a pszIID matches the @a InterfaceType. This will
175 * perform basic type checking.
176 *
177 * @param pIns Pointer to the instance data.
178 * @param pszIID The ID of the interface that is being queried.
179 * @param InterfaceType The interface type base name, no trailing RC. The
180 * interface ID is derived from this by appending _IID.
181 * @param pInterface The interface address expression. This must resolve
182 * to some address within the instance data.
183 * @remarks Don't use with PDMIBASE.
184 */
185#define PDMIBASERC_RETURN_INTERFACE(pIns, pszIID, InterfaceType, pInterface) \
186 do { \
187 Assert((uintptr_t)pInterface - PDMINS_2_DATA(pIns, uintptr_t) < _4M); \
188 if (RTUuidCompare2Strs((pszIID), InterfaceType##_IID) == 0) \
189 { \
190 InterfaceType##RC *pReturnInterfaceTypeCheck = (pInterface); \
191 return (uintptr_t)pReturnInterfaceTypeCheck \
192 - PDMINS_2_DATA(pIns, uintptr_t) \
193 + PDMINS_2_DATA_RCPTR(pIns); \
194 } \
195 } while (0)
196
197/** @} */
198
199
200/** @name PDMIBASER0
201 * @{
202 */
203
204/**
205 * PDM Base Interface for querying ring-0 interfaces in ring-3.
206 *
207 * This is mandatory for drivers present in ring-0 context.
208 */
209typedef struct PDMIBASER0
210{
211 /**
212 * Queries an ring-0 interface to the driver.
213 *
214 * @returns Pointer to interface.
215 * @returns NULL if the interface was not supported by the driver.
216 * @param pInterface Pointer to this interface structure.
217 * @param pszIID The interface ID, a UUID string.
218 * @thread Any thread.
219 */
220 DECLR3CALLBACKMEMBER(RTR0PTR, pfnQueryInterface,(struct PDMIBASER0 *pInterface, const char *pszIID));
221} PDMIBASER0;
222/** Pointer to a PDM Base Interface for query ring-0 context interfaces. */
223typedef PDMIBASER0 *PPDMIBASER0;
224/** PDMIBASER0 interface ID. */
225#define PDMIBASER0_IID "9c9b99b8-7f53-4f59-a3c2-5bc9659c7944"
226
227/**
228 * Helper macro for querying an interface from PDMIBASER0.
229 *
230 * @returns PDMIBASER0::pfnQueryInterface return value.
231 *
232 * @param pIBaseR0 Pointer to the base ring-0 interface. Can be NULL.
233 * @param InterfaceType The interface type base name, no trailing R0. The
234 * interface ID is derived from this by appending _IID.
235 *
236 * @remarks Unlike PDMIBASE_QUERY_INTERFACE, this macro is not able to do any
237 * implicit type checking for you.
238 */
239#define PDMIBASER0_QUERY_INTERFACE(pIBaseR0, InterfaceType) \
240 ( (P##InterfaceType##R0)((pIBaseR0) ? (pIBaseR0)->pfnQueryInterface(pIBaseR0, InterfaceType##_IID) : NIL_RTR0PTR) )
241
242/**
243 * Helper macro for implementing PDMIBASER0::pfnQueryInterface.
244 *
245 * Return @a pInterface if @a pszIID matches the @a InterfaceType. This will
246 * perform basic type checking.
247 *
248 * @param pIns Pointer to the instance data.
249 * @param pszIID The ID of the interface that is being queried.
250 * @param InterfaceType The interface type base name, no trailing R0. The
251 * interface ID is derived from this by appending _IID.
252 * @param pInterface The interface address expression. This must resolve
253 * to some address within the instance data.
254 * @remarks Don't use with PDMIBASE.
255 */
256#define PDMIBASER0_RETURN_INTERFACE(pIns, pszIID, InterfaceType, pInterface) \
257 do { \
258 Assert((uintptr_t)pInterface - PDMINS_2_DATA(pIns, uintptr_t) < _4M); \
259 if (RTUuidCompare2Strs((pszIID), InterfaceType##_IID) == 0) \
260 { \
261 InterfaceType##R0 *pReturnInterfaceTypeCheck = (pInterface); \
262 return (uintptr_t)pReturnInterfaceTypeCheck \
263 - PDMINS_2_DATA(pIns, uintptr_t) \
264 + PDMINS_2_DATA_R0PTR(pIns); \
265 } \
266 } while (0)
267
268/** @} */
269
270
271/**
272 * Dummy interface.
273 *
274 * This is used to typedef other dummy interfaces. The purpose of a dummy
275 * interface is to validate the logical function of a driver/device and
276 * full a natural interface pair.
277 */
278typedef struct PDMIDUMMY
279{
280 RTHCPTR pvDummy;
281} PDMIDUMMY;
282
283
284/** Pointer to a mouse port interface. */
285typedef struct PDMIMOUSEPORT *PPDMIMOUSEPORT;
286/**
287 * Mouse port interface (down).
288 * Pair with PDMIMOUSECONNECTOR.
289 */
290typedef struct PDMIMOUSEPORT
291{
292 /**
293 * Puts a mouse event.
294 *
295 * This is called by the source of mouse events. The event will be passed up
296 * until the topmost driver, which then calls the registered event handler.
297 *
298 * @returns VBox status code. Return VERR_TRY_AGAIN if you cannot process the
299 * event now and want it to be repeated at a later point.
300 *
301 * @param pInterface Pointer to this interface structure.
302 * @param dx The X delta.
303 * @param dy The Y delta.
304 * @param dz The Z delta.
305 * @param dw The W (horizontal scroll button) delta.
306 * @param fButtons The button states, see the PDMIMOUSEPORT_BUTTON_* \#defines.
307 */
308 DECLR3CALLBACKMEMBER(int, pfnPutEvent,(PPDMIMOUSEPORT pInterface,
309 int32_t dx, int32_t dy, int32_t dz,
310 int32_t dw, uint32_t fButtons));
311 /**
312 * Puts an absolute mouse event.
313 *
314 * This is called by the source of mouse events. The event will be passed up
315 * until the topmost driver, which then calls the registered event handler.
316 *
317 * @returns VBox status code. Return VERR_TRY_AGAIN if you cannot process the
318 * event now and want it to be repeated at a later point.
319 *
320 * @param pInterface Pointer to this interface structure.
321 * @param x The X value, in the range 0 to 0xffff.
322 * @param y The Y value, in the range 0 to 0xffff.
323 * @param dz The Z delta.
324 * @param dw The W (horizontal scroll button) delta.
325 * @param fButtons The button states, see the PDMIMOUSEPORT_BUTTON_* \#defines.
326 */
327 DECLR3CALLBACKMEMBER(int, pfnPutEventAbs,(PPDMIMOUSEPORT pInterface,
328 uint32_t x, uint32_t y,
329 int32_t dz, int32_t dw,
330 uint32_t fButtons));
331 /**
332 * Puts a multi-touch event.
333 *
334 * @returns VBox status code. Return VERR_TRY_AGAIN if you cannot process the
335 * event now and want it to be repeated at a later point.
336 *
337 * @param pInterface Pointer to this interface structure.
338 * @param cContacts How many touch contacts in this event.
339 * @param pau64Contacts Pointer to array of packed contact information.
340 * Each 64bit element contains:
341 * Bits 0..15: X coordinate in pixels (signed).
342 * Bits 16..31: Y coordinate in pixels (signed).
343 * Bits 32..39: contact identifier.
344 * Bit 40: "in contact" flag, which indicates that
345 * there is a contact with the touch surface.
346 * Bit 41: "in range" flag, the contact is close enough
347 * to the touch surface.
348 * All other bits are reserved for future use and must be set to 0.
349 * @param u32ScanTime Timestamp of this event in milliseconds. Only relative
350 * time between event is important.
351 */
352 DECLR3CALLBACKMEMBER(int, pfnPutEventMultiTouch,(PPDMIMOUSEPORT pInterface,
353 uint8_t cContacts,
354 const uint64_t *pau64Contacts,
355 uint32_t u32ScanTime));
356} PDMIMOUSEPORT;
357/** PDMIMOUSEPORT interface ID. */
358#define PDMIMOUSEPORT_IID "359364f0-9fa3-4490-a6b4-7ed771901c93"
359
360/** Mouse button defines for PDMIMOUSEPORT::pfnPutEvent.
361 * @{ */
362#define PDMIMOUSEPORT_BUTTON_LEFT RT_BIT(0)
363#define PDMIMOUSEPORT_BUTTON_RIGHT RT_BIT(1)
364#define PDMIMOUSEPORT_BUTTON_MIDDLE RT_BIT(2)
365#define PDMIMOUSEPORT_BUTTON_X1 RT_BIT(3)
366#define PDMIMOUSEPORT_BUTTON_X2 RT_BIT(4)
367/** @} */
368
369
370/** Pointer to a mouse connector interface. */
371typedef struct PDMIMOUSECONNECTOR *PPDMIMOUSECONNECTOR;
372/**
373 * Mouse connector interface (up).
374 * Pair with PDMIMOUSEPORT.
375 */
376typedef struct PDMIMOUSECONNECTOR
377{
378 /**
379 * Notifies the the downstream driver of changes to the reporting modes
380 * supported by the driver
381 *
382 * @param pInterface Pointer to this interface structure.
383 * @param fRelative Whether relative mode is currently supported.
384 * @param fAbsolute Whether absolute mode is currently supported.
385 * @param fMultiTouch Whether multi-touch mode is currently supported.
386 */
387 DECLR3CALLBACKMEMBER(void, pfnReportModes,(PPDMIMOUSECONNECTOR pInterface, bool fRelative, bool fAbsolute, bool fMultiTouch));
388
389 /**
390 * Flushes the mouse queue if it contains pending events.
391 *
392 * @param pInterface Pointer to this interface structure.
393 */
394 DECLR3CALLBACKMEMBER(void, pfnFlushQueue,(PPDMIMOUSECONNECTOR pInterface));
395
396} PDMIMOUSECONNECTOR;
397/** PDMIMOUSECONNECTOR interface ID. */
398#define PDMIMOUSECONNECTOR_IID "ce64d7bd-fa8f-41d1-a6fb-d102a2d6bffe"
399
400
401/** Pointer to a keyboard port interface. */
402typedef struct PDMIKEYBOARDPORT *PPDMIKEYBOARDPORT;
403/**
404 * Keyboard port interface (down).
405 * Pair with PDMIKEYBOARDCONNECTOR.
406 */
407typedef struct PDMIKEYBOARDPORT
408{
409 /**
410 * Puts a scan code based keyboard event.
411 *
412 * This is called by the source of keyboard events. The event will be passed up
413 * until the topmost driver, which then calls the registered event handler.
414 *
415 * @returns VBox status code. Return VERR_TRY_AGAIN if you cannot process the
416 * event now and want it to be repeated at a later point.
417 *
418 * @param pInterface Pointer to this interface structure.
419 * @param u8ScanCode The scan code to queue.
420 */
421 DECLR3CALLBACKMEMBER(int, pfnPutEventScan,(PPDMIKEYBOARDPORT pInterface, uint8_t u8KeyCode));
422
423 /**
424 * Puts a USB HID usage ID based keyboard event.
425 *
426 * This is called by the source of keyboard events. The event will be passed up
427 * until the topmost driver, which then calls the registered event handler.
428 *
429 * @returns VBox status code. Return VERR_TRY_AGAIN if you cannot process the
430 * event now and want it to be repeated at a later point.
431 *
432 * @param pInterface Pointer to this interface structure.
433 * @param idUsage The HID usage code event to queue.
434 */
435 DECLR3CALLBACKMEMBER(int, pfnPutEventHid,(PPDMIKEYBOARDPORT pInterface, uint32_t idUsage));
436} PDMIKEYBOARDPORT;
437/** PDMIKEYBOARDPORT interface ID. */
438#define PDMIKEYBOARDPORT_IID "2a0844f0-410b-40ab-a6ed-6575f3aa3e29"
439
440
441/**
442 * Keyboard LEDs.
443 */
444typedef enum PDMKEYBLEDS
445{
446 /** No leds. */
447 PDMKEYBLEDS_NONE = 0x0000,
448 /** Num Lock */
449 PDMKEYBLEDS_NUMLOCK = 0x0001,
450 /** Caps Lock */
451 PDMKEYBLEDS_CAPSLOCK = 0x0002,
452 /** Scroll Lock */
453 PDMKEYBLEDS_SCROLLLOCK = 0x0004
454} PDMKEYBLEDS;
455
456/** Pointer to keyboard connector interface. */
457typedef struct PDMIKEYBOARDCONNECTOR *PPDMIKEYBOARDCONNECTOR;
458/**
459 * Keyboard connector interface (up).
460 * Pair with PDMIKEYBOARDPORT
461 */
462typedef struct PDMIKEYBOARDCONNECTOR
463{
464 /**
465 * Notifies the the downstream driver about an LED change initiated by the guest.
466 *
467 * @param pInterface Pointer to this interface structure.
468 * @param enmLeds The new led mask.
469 */
470 DECLR3CALLBACKMEMBER(void, pfnLedStatusChange,(PPDMIKEYBOARDCONNECTOR pInterface, PDMKEYBLEDS enmLeds));
471
472 /**
473 * Notifies the the downstream driver of changes in driver state.
474 *
475 * @param pInterface Pointer to this interface structure.
476 * @param fActive Whether interface wishes to get "focus".
477 */
478 DECLR3CALLBACKMEMBER(void, pfnSetActive,(PPDMIKEYBOARDCONNECTOR pInterface, bool fActive));
479
480 /**
481 * Flushes the keyboard queue if it contains pending events.
482 *
483 * @param pInterface Pointer to this interface structure.
484 */
485 DECLR3CALLBACKMEMBER(void, pfnFlushQueue,(PPDMIKEYBOARDCONNECTOR pInterface));
486
487} PDMIKEYBOARDCONNECTOR;
488/** PDMIKEYBOARDCONNECTOR interface ID. */
489#define PDMIKEYBOARDCONNECTOR_IID "db3f7bd5-953e-436f-9f8e-077905a92d82"
490
491
492
493/** Pointer to a display port interface. */
494typedef struct PDMIDISPLAYPORT *PPDMIDISPLAYPORT;
495/**
496 * Display port interface (down).
497 * Pair with PDMIDISPLAYCONNECTOR.
498 */
499typedef struct PDMIDISPLAYPORT
500{
501 /**
502 * Update the display with any changed regions.
503 *
504 * Flushes any display changes to the memory pointed to by the
505 * PDMIDISPLAYCONNECTOR interface and calles PDMIDISPLAYCONNECTOR::pfnUpdateRect()
506 * while doing so.
507 *
508 * @returns VBox status code.
509 * @param pInterface Pointer to this interface.
510 * @thread The emulation thread.
511 */
512 DECLR3CALLBACKMEMBER(int, pfnUpdateDisplay,(PPDMIDISPLAYPORT pInterface));
513
514 /**
515 * Update the entire display.
516 *
517 * Flushes the entire display content to the memory pointed to by the
518 * PDMIDISPLAYCONNECTOR interface and calles PDMIDISPLAYCONNECTOR::pfnUpdateRect().
519 *
520 * @returns VBox status code.
521 * @param pInterface Pointer to this interface.
522 * @param fFailOnResize Fail is a resize is pending.
523 * @thread The emulation thread.
524 */
525 DECLR3CALLBACKMEMBER(int, pfnUpdateDisplayAll,(PPDMIDISPLAYPORT pInterface, bool fFailOnResize));
526
527 /**
528 * Return the current guest resolution and color depth in bits per pixel (bpp).
529 *
530 * As the graphics card is able to provide display updates with the bpp
531 * requested by the host, this method can be used to query the actual
532 * guest color depth.
533 *
534 * @returns VBox status code.
535 * @param pInterface Pointer to this interface.
536 * @param pcBits Where to store the current guest color depth.
537 * @param pcx Where to store the horizontal resolution.
538 * @param pcy Where to store the vertical resolution.
539 * @thread Any thread.
540 */
541 DECLR3CALLBACKMEMBER(int, pfnQueryVideoMode,(PPDMIDISPLAYPORT pInterface, uint32_t *pcBits, uint32_t *pcx, uint32_t *pcy));
542
543 /**
544 * Sets the refresh rate and restart the timer.
545 * The rate is defined as the minimum interval between the return of
546 * one PDMIDISPLAYPORT::pfnRefresh() call to the next one.
547 *
548 * The interval timer will be restarted by this call. So at VM startup
549 * this function must be called to start the refresh cycle. The refresh
550 * rate is not saved, but have to be when resuming a loaded VM state.
551 *
552 * @returns VBox status code.
553 * @param pInterface Pointer to this interface.
554 * @param cMilliesInterval Number of millis between two refreshes.
555 * @thread Any thread.
556 */
557 DECLR3CALLBACKMEMBER(int, pfnSetRefreshRate,(PPDMIDISPLAYPORT pInterface, uint32_t cMilliesInterval));
558
559 /**
560 * Create a 32-bbp screenshot of the display.
561 *
562 * This will allocate and return a 32-bbp bitmap. Size of the bitmap scanline in bytes is 4*width.
563 *
564 * The allocated bitmap buffer must be freed with pfnFreeScreenshot.
565 *
566 * @param pInterface Pointer to this interface.
567 * @param ppbData Where to store the pointer to the allocated
568 * buffer.
569 * @param pcbData Where to store the actual size of the bitmap.
570 * @param pcx Where to store the width of the bitmap.
571 * @param pcy Where to store the height of the bitmap.
572 * @thread The emulation thread.
573 */
574 DECLR3CALLBACKMEMBER(int, pfnTakeScreenshot,(PPDMIDISPLAYPORT pInterface, uint8_t **ppbData, size_t *pcbData, uint32_t *pcx, uint32_t *pcy));
575
576 /**
577 * Free screenshot buffer.
578 *
579 * This will free the memory buffer allocated by pfnTakeScreenshot.
580 *
581 * @param pInterface Pointer to this interface.
582 * @param pbData Pointer to the buffer returned by
583 * pfnTakeScreenshot.
584 * @thread Any.
585 */
586 DECLR3CALLBACKMEMBER(void, pfnFreeScreenshot,(PPDMIDISPLAYPORT pInterface, uint8_t *pbData));
587
588 /**
589 * Copy bitmap to the display.
590 *
591 * This will convert and copy a 32-bbp bitmap (with dword aligned scanline length) to
592 * the memory pointed to by the PDMIDISPLAYCONNECTOR interface.
593 *
594 * @param pInterface Pointer to this interface.
595 * @param pvData Pointer to the bitmap bits.
596 * @param x The upper left corner x coordinate of the destination rectangle.
597 * @param y The upper left corner y coordinate of the destination rectangle.
598 * @param cx The width of the source and destination rectangles.
599 * @param cy The height of the source and destination rectangles.
600 * @thread The emulation thread.
601 * @remark This is just a convenience for using the bitmap conversions of the
602 * graphics device.
603 */
604 DECLR3CALLBACKMEMBER(int, pfnDisplayBlt,(PPDMIDISPLAYPORT pInterface, const void *pvData, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy));
605
606 /**
607 * Render a rectangle from guest VRAM to Framebuffer.
608 *
609 * @param pInterface Pointer to this interface.
610 * @param x The upper left corner x coordinate of the rectangle to be updated.
611 * @param y The upper left corner y coordinate of the rectangle to be updated.
612 * @param cx The width of the rectangle to be updated.
613 * @param cy The height of the rectangle to be updated.
614 * @thread The emulation thread.
615 */
616 DECLR3CALLBACKMEMBER(void, pfnUpdateDisplayRect,(PPDMIDISPLAYPORT pInterface, int32_t x, int32_t y, uint32_t cx, uint32_t cy));
617
618 /**
619 * Inform the VGA device whether the Display is directly using the guest VRAM and there is no need
620 * to render the VRAM to the framebuffer memory.
621 *
622 * @param pInterface Pointer to this interface.
623 * @param fRender Whether the VRAM content must be rendered to the framebuffer.
624 * @thread The emulation thread.
625 */
626 DECLR3CALLBACKMEMBER(void, pfnSetRenderVRAM,(PPDMIDISPLAYPORT pInterface, bool fRender));
627
628 /**
629 * Render a bitmap rectangle from source to target buffer.
630 *
631 * @param pInterface Pointer to this interface.
632 * @param cx The width of the rectangle to be copied.
633 * @param cy The height of the rectangle to be copied.
634 * @param pbSrc Source frame buffer 0,0.
635 * @param xSrc The upper left corner x coordinate of the source rectangle.
636 * @param ySrc The upper left corner y coordinate of the source rectangle.
637 * @param cxSrc The width of the source frame buffer.
638 * @param cySrc The height of the source frame buffer.
639 * @param cbSrcLine The line length of the source frame buffer.
640 * @param cSrcBitsPerPixel The pixel depth of the source.
641 * @param pbDst Destination frame buffer 0,0.
642 * @param xDst The upper left corner x coordinate of the destination rectangle.
643 * @param yDst The upper left corner y coordinate of the destination rectangle.
644 * @param cxDst The width of the destination frame buffer.
645 * @param cyDst The height of the destination frame buffer.
646 * @param cbDstLine The line length of the destination frame buffer.
647 * @param cDstBitsPerPixel The pixel depth of the destination.
648 * @thread The emulation thread.
649 */
650 DECLR3CALLBACKMEMBER(int, pfnCopyRect,(PPDMIDISPLAYPORT pInterface, uint32_t cx, uint32_t cy,
651 const uint8_t *pbSrc, int32_t xSrc, int32_t ySrc, uint32_t cxSrc, uint32_t cySrc, uint32_t cbSrcLine, uint32_t cSrcBitsPerPixel,
652 uint8_t *pbDst, int32_t xDst, int32_t yDst, uint32_t cxDst, uint32_t cyDst, uint32_t cbDstLine, uint32_t cDstBitsPerPixel));
653
654 /**
655 * Inform the VGA device of viewport changes (as a result of e.g. scrolling).
656 *
657 * @param pInterface Pointer to this interface.
658 * @param idScreen The screen updates are for.
659 * @param x The upper left corner x coordinate of the new viewport rectangle
660 * @param y The upper left corner y coordinate of the new viewport rectangle
661 * @param cx The width of the new viewport rectangle
662 * @param cy The height of the new viewport rectangle
663 * @thread GUI thread?
664 *
665 * @remarks Is allowed to be NULL.
666 */
667 DECLR3CALLBACKMEMBER(void, pfnSetViewport,(PPDMIDISPLAYPORT pInterface,
668 uint32_t idScreen, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy));
669
670 /**
671 * Send a video mode hint to the VGA device.
672 *
673 * @param pInterface Pointer to this interface.
674 * @param cx The X resolution.
675 * @param cy The Y resolution.
676 * @param cBPP The bit count.
677 * @param iDisplay The screen number.
678 * @param dx X offset into the virtual framebuffer or ~0.
679 * @param dy Y offset into the virtual framebuffer or ~0.
680 * @param fEnabled Is this screen currently enabled?
681 * @param fNotifyGuest Should the device send the guest an IRQ?
682 * Set for the last hint of a series.
683 * @thread Schedules on the emulation thread.
684 */
685 DECLR3CALLBACKMEMBER(int, pfnSendModeHint, (PPDMIDISPLAYPORT pInterface, uint32_t cx, uint32_t cy,
686 uint32_t cBPP, uint32_t iDisplay, uint32_t dx,
687 uint32_t dy, uint32_t fEnabled, uint32_t fNotifyGuest));
688
689 /**
690 * Send the guest a notification about host cursor capabilities changes.
691 *
692 * @param pInterface Pointer to this interface.
693 * @param fSupportsRenderCursor Whether the host can draw the guest cursor
694 * using the host one provided the location matches.
695 * @param fSupportsMoveCursor Whether the host can draw the guest cursor
696 * itself at any position. Implies RenderCursor.
697 * @thread Any.
698 */
699 DECLR3CALLBACKMEMBER(void, pfnReportHostCursorCapabilities, (PPDMIDISPLAYPORT pInterface, bool fSupportsRenderCursor, bool fSupportsMoveCursor));
700
701 /**
702 * Tell the graphics device about the host cursor position.
703 *
704 * @param pInterface Pointer to this interface.
705 * @param x X offset into the cursor range.
706 * @param y Y offset into the cursor range.
707 * @param fOutOfRange The host pointer is out of all guest windows, so
708 * X and Y do not currently have meaningful value.
709 * @thread Any.
710 */
711 DECLR3CALLBACKMEMBER(void, pfnReportHostCursorPosition, (PPDMIDISPLAYPORT pInterface, uint32_t x, uint32_t y, bool fOutOfRange));
712
713 /**
714 * Notify the graphics device about the monitor positions since the ones we get
715 * from vmwgfx FIFO are not correct.
716 *
717 * In an ideal universe this method should not be here.
718 *
719 * @param pInterface Pointer to this interface.
720 * @param cPositions Number of monitor positions.
721 * @param paPositions Monitor positions (offsets/origins) array.
722 * @thread Any.
723 */
724 DECLR3CALLBACKMEMBER(void, pfnReportMonitorPositions, (PPDMIDISPLAYPORT pInterface, uint32_t cPositions,
725 PCRTPOINT paPositions));
726
727} PDMIDISPLAYPORT;
728/** PDMIDISPLAYPORT interface ID. */
729#define PDMIDISPLAYPORT_IID "471b0520-338c-11e9-bb84-6ff2c956da45"
730
731/** @name Flags for PDMIDISPLAYCONNECTOR::pfnVBVAReportCursorPosition.
732 * @{ */
733/** Is the data in the report valid? */
734#define VBVA_CURSOR_VALID_DATA RT_BIT(0)
735/** Is the cursor position reported relative to a particular guest screen? */
736#define VBVA_CURSOR_SCREEN_RELATIVE RT_BIT(1)
737/** @} */
738
739/** Pointer to a 2D graphics acceleration command. */
740typedef struct VBOXVHWACMD VBOXVHWACMD;
741/** Pointer to a VBVA command header. */
742typedef struct VBVACMDHDR *PVBVACMDHDR;
743/** Pointer to a const VBVA command header. */
744typedef const struct VBVACMDHDR *PCVBVACMDHDR;
745/** Pointer to a VBVA screen information. */
746typedef struct VBVAINFOSCREEN *PVBVAINFOSCREEN;
747/** Pointer to a const VBVA screen information. */
748typedef const struct VBVAINFOSCREEN *PCVBVAINFOSCREEN;
749/** Pointer to a VBVA guest VRAM area information. */
750typedef struct VBVAINFOVIEW *PVBVAINFOVIEW;
751/** Pointer to a const VBVA guest VRAM area information. */
752typedef const struct VBVAINFOVIEW *PCVBVAINFOVIEW;
753typedef struct VBVAHOSTFLAGS *PVBVAHOSTFLAGS;
754
755/** Pointer to a display connector interface. */
756typedef struct PDMIDISPLAYCONNECTOR *PPDMIDISPLAYCONNECTOR;
757
758/**
759 * Display connector interface (up).
760 * Pair with PDMIDISPLAYPORT.
761 */
762typedef struct PDMIDISPLAYCONNECTOR
763{
764 /**
765 * Resize the display.
766 * This is called when the resolution changes. This usually happens on
767 * request from the guest os, but may also happen as the result of a reset.
768 * If the callback returns VINF_VGA_RESIZE_IN_PROGRESS, the caller (VGA device)
769 * must not access the connector and return.
770 *
771 * @returns VINF_SUCCESS if the framebuffer resize was completed,
772 * VINF_VGA_RESIZE_IN_PROGRESS if resize takes time and not yet finished.
773 * @param pInterface Pointer to this interface.
774 * @param cBits Color depth (bits per pixel) of the new video mode.
775 * @param pvVRAM Address of the guest VRAM.
776 * @param cbLine Size in bytes of a single scan line.
777 * @param cx New display width.
778 * @param cy New display height.
779 * @thread The emulation thread.
780 */
781 DECLR3CALLBACKMEMBER(int, pfnResize,(PPDMIDISPLAYCONNECTOR pInterface, uint32_t cBits, void *pvVRAM, uint32_t cbLine,
782 uint32_t cx, uint32_t cy));
783
784 /**
785 * Update a rectangle of the display.
786 * PDMIDISPLAYPORT::pfnUpdateDisplay is the caller.
787 *
788 * @param pInterface Pointer to this interface.
789 * @param x The upper left corner x coordinate of the rectangle.
790 * @param y The upper left corner y coordinate of the rectangle.
791 * @param cx The width of the rectangle.
792 * @param cy The height of the rectangle.
793 * @thread The emulation thread.
794 */
795 DECLR3CALLBACKMEMBER(void, pfnUpdateRect,(PPDMIDISPLAYCONNECTOR pInterface, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy));
796
797 /**
798 * Refresh the display.
799 *
800 * The interval between these calls is set by
801 * PDMIDISPLAYPORT::pfnSetRefreshRate(). The driver should call
802 * PDMIDISPLAYPORT::pfnUpdateDisplay() if it wishes to refresh the
803 * display. PDMIDISPLAYPORT::pfnUpdateDisplay calls pfnUpdateRect with
804 * the changed rectangles.
805 *
806 * @param pInterface Pointer to this interface.
807 * @thread The emulation thread.
808 */
809 DECLR3CALLBACKMEMBER(void, pfnRefresh,(PPDMIDISPLAYCONNECTOR pInterface));
810
811 /**
812 * Reset the display.
813 *
814 * Notification message when the graphics card has been reset.
815 *
816 * @param pInterface Pointer to this interface.
817 * @thread The emulation thread.
818 */
819 DECLR3CALLBACKMEMBER(void, pfnReset,(PPDMIDISPLAYCONNECTOR pInterface));
820
821 /**
822 * LFB video mode enter/exit.
823 *
824 * Notification message when LinearFrameBuffer video mode is enabled/disabled.
825 *
826 * @param pInterface Pointer to this interface.
827 * @param fEnabled false - LFB mode was disabled,
828 * true - an LFB mode was disabled
829 * @thread The emulation thread.
830 */
831 DECLR3CALLBACKMEMBER(void, pfnLFBModeChange,(PPDMIDISPLAYCONNECTOR pInterface, bool fEnabled));
832
833 /**
834 * Process the guest graphics adapter information.
835 *
836 * Direct notification from guest to the display connector.
837 *
838 * @param pInterface Pointer to this interface.
839 * @param pvVRAM Address of the guest VRAM.
840 * @param u32VRAMSize Size of the guest VRAM.
841 * @thread The emulation thread.
842 */
843 DECLR3CALLBACKMEMBER(void, pfnProcessAdapterData,(PPDMIDISPLAYCONNECTOR pInterface, void *pvVRAM, uint32_t u32VRAMSize));
844
845 /**
846 * Process the guest display information.
847 *
848 * Direct notification from guest to the display connector.
849 *
850 * @param pInterface Pointer to this interface.
851 * @param pvVRAM Address of the guest VRAM.
852 * @param uScreenId The index of the guest display to be processed.
853 * @thread The emulation thread.
854 */
855 DECLR3CALLBACKMEMBER(void, pfnProcessDisplayData,(PPDMIDISPLAYCONNECTOR pInterface, void *pvVRAM, unsigned uScreenId));
856
857 /**
858 * Process the guest Video HW Acceleration command.
859 *
860 * @param pInterface Pointer to this interface.
861 * @param enmCmd The command type (don't re-read from pCmd).
862 * @param fGuestCmd Set if the command origins with the guest and
863 * pCmd must be considered volatile.
864 * @param pCmd Video HW Acceleration Command to be processed.
865 * @retval VINF_SUCCESS - command is completed,
866 * @retval VINF_CALLBACK_RETURN if command will by asynchronously completed via
867 * complete callback.
868 * @retval VERR_INVALID_STATE if the command could not be processed (most
869 * likely because the framebuffer was disconnected) - the post should
870 * be retried later.
871 * @thread EMT
872 */
873 DECLR3CALLBACKMEMBER(int, pfnVHWACommandProcess,(PPDMIDISPLAYCONNECTOR pInterface, int enmCmd, bool fGuestCmd,
874 VBOXVHWACMD RT_UNTRUSTED_VOLATILE_GUEST *pCmd));
875
876 /**
877 * The specified screen enters VBVA mode.
878 *
879 * @param pInterface Pointer to this interface.
880 * @param uScreenId The screen updates are for.
881 * @param pHostFlags Undocumented!
882 * @thread The emulation thread.
883 */
884 DECLR3CALLBACKMEMBER(int, pfnVBVAEnable,(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId,
885 struct VBVAHOSTFLAGS RT_UNTRUSTED_VOLATILE_GUEST *pHostFlags));
886
887 /**
888 * The specified screen leaves VBVA mode.
889 *
890 * @param pInterface Pointer to this interface.
891 * @param uScreenId The screen updates are for.
892 * @thread if render thread mode is on (fRenderThreadMode that was passed to pfnVBVAEnable is TRUE) - the render thread pfnVBVAEnable was called in,
893 * otherwise - the emulation thread.
894 */
895 DECLR3CALLBACKMEMBER(void, pfnVBVADisable,(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId));
896
897 /**
898 * A sequence of pfnVBVAUpdateProcess calls begins.
899 *
900 * @param pInterface Pointer to this interface.
901 * @param uScreenId The screen updates are for.
902 * @thread if render thread mode is on (fRenderThreadMode that was passed to pfnVBVAEnable is TRUE) - the render thread pfnVBVAEnable was called in,
903 * otherwise - the emulation thread.
904 */
905 DECLR3CALLBACKMEMBER(void, pfnVBVAUpdateBegin,(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId));
906
907 /**
908 * Process the guest VBVA command.
909 *
910 * @param pInterface Pointer to this interface.
911 * @param uScreenId The screen updates are for.
912 * @param pCmd Video HW Acceleration Command to be processed.
913 * @param cbCmd Undocumented!
914 * @thread if render thread mode is on (fRenderThreadMode that was passed to pfnVBVAEnable is TRUE) - the render thread pfnVBVAEnable was called in,
915 * otherwise - the emulation thread.
916 */
917 DECLR3CALLBACKMEMBER(void, pfnVBVAUpdateProcess,(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId,
918 struct VBVACMDHDR const RT_UNTRUSTED_VOLATILE_GUEST *pCmd, size_t cbCmd));
919
920 /**
921 * A sequence of pfnVBVAUpdateProcess calls ends.
922 *
923 * @param pInterface Pointer to this interface.
924 * @param uScreenId The screen updates are for.
925 * @param x The upper left corner x coordinate of the combined rectangle of all VBVA updates.
926 * @param y The upper left corner y coordinate of the rectangle.
927 * @param cx The width of the rectangle.
928 * @param cy The height of the rectangle.
929 * @thread if render thread mode is on (fRenderThreadMode that was passed to pfnVBVAEnable is TRUE) - the render thread pfnVBVAEnable was called in,
930 * otherwise - the emulation thread.
931 */
932 DECLR3CALLBACKMEMBER(void, pfnVBVAUpdateEnd,(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId, int32_t x, int32_t y,
933 uint32_t cx, uint32_t cy));
934
935 /**
936 * Resize the display.
937 * This is called when the resolution changes. This usually happens on
938 * request from the guest os, but may also happen as the result of a reset.
939 * If the callback returns VINF_VGA_RESIZE_IN_PROGRESS, the caller (VGA device)
940 * must not access the connector and return.
941 *
942 * @todo Merge with pfnResize.
943 *
944 * @returns VINF_SUCCESS if the framebuffer resize was completed,
945 * VINF_VGA_RESIZE_IN_PROGRESS if resize takes time and not yet finished.
946 * @param pInterface Pointer to this interface.
947 * @param pView The description of VRAM block for this screen.
948 * @param pScreen The data of screen being resized.
949 * @param pvVRAM Address of the guest VRAM.
950 * @param fResetInputMapping Whether to reset the absolute pointing device to screen position co-ordinate
951 * mapping. Needed for real resizes, as the caller on the guest may not know how
952 * to set the mapping. Not wanted when we restore a saved state and are resetting
953 * the mode.
954 * @thread if render thread mode is on (fRenderThreadMode that was passed to pfnVBVAEnable is TRUE) - the render thread pfnVBVAEnable was called in,
955 * otherwise - the emulation thread.
956 */
957 DECLR3CALLBACKMEMBER(int, pfnVBVAResize,(PPDMIDISPLAYCONNECTOR pInterface, PCVBVAINFOVIEW pView, PCVBVAINFOSCREEN pScreen,
958 void *pvVRAM, bool fResetInputMapping));
959
960 /**
961 * Update the pointer shape.
962 * This is called when the mouse pointer shape changes. The new shape
963 * is passed as a caller allocated buffer that will be freed after returning
964 *
965 * @param pInterface Pointer to this interface.
966 * @param fVisible Visibility indicator (if false, the other parameters are undefined).
967 * @param fAlpha Flag whether alpha channel is being passed.
968 * @param xHot Pointer hot spot x coordinate.
969 * @param yHot Pointer hot spot y coordinate.
970 * @param cx Pointer width in pixels.
971 * @param cy Pointer height in pixels.
972 * @param pvShape New shape buffer.
973 * @thread The emulation thread.
974 */
975 DECLR3CALLBACKMEMBER(int, pfnVBVAMousePointerShape,(PPDMIDISPLAYCONNECTOR pInterface, bool fVisible, bool fAlpha,
976 uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy,
977 const void *pvShape));
978
979 /**
980 * The guest capabilities were updated.
981 *
982 * @param pInterface Pointer to this interface.
983 * @param fCapabilities The new capability flag state.
984 * @thread The emulation thread.
985 */
986 DECLR3CALLBACKMEMBER(void, pfnVBVAGuestCapabilityUpdate,(PPDMIDISPLAYCONNECTOR pInterface, uint32_t fCapabilities));
987
988 /** Read-only attributes.
989 * For preformance reasons some readonly attributes are kept in the interface.
990 * We trust the interface users to respect the readonlyness of these.
991 * @{
992 */
993 /** Pointer to the display data buffer. */
994 uint8_t *pbData;
995 /** Size of a scanline in the data buffer. */
996 uint32_t cbScanline;
997 /** The color depth (in bits) the graphics card is supposed to provide. */
998 uint32_t cBits;
999 /** The display width. */
1000 uint32_t cx;
1001 /** The display height. */
1002 uint32_t cy;
1003 /** @} */
1004
1005 /**
1006 * The guest display input mapping rectangle was updated.
1007 *
1008 * @param pInterface Pointer to this interface.
1009 * @param xOrigin Upper left X co-ordinate relative to the first screen.
1010 * @param yOrigin Upper left Y co-ordinate relative to the first screen.
1011 * @param cx Rectangle width.
1012 * @param cy Rectangle height.
1013 * @thread The emulation thread.
1014 */
1015 DECLR3CALLBACKMEMBER(void, pfnVBVAInputMappingUpdate,(PPDMIDISPLAYCONNECTOR pInterface, int32_t xOrigin, int32_t yOrigin, uint32_t cx, uint32_t cy));
1016
1017 /**
1018 * The guest is reporting the requested location of the host pointer.
1019 *
1020 * @param pInterface Pointer to this interface.
1021 * @param fFlags VBVA_CURSOR_*
1022 * @param uScreenId The screen to which X and Y are relative if VBVA_CURSOR_SCREEN_RELATIVE is set.
1023 * @param x Cursor X offset.
1024 * @param y Cursor Y offset.
1025 * @thread The emulation thread.
1026 */
1027 DECLR3CALLBACKMEMBER(void, pfnVBVAReportCursorPosition,(PPDMIDISPLAYCONNECTOR pInterface, uint32_t fFlags, uint32_t uScreen, uint32_t x, uint32_t y));
1028} PDMIDISPLAYCONNECTOR;
1029/** PDMIDISPLAYCONNECTOR interface ID. */
1030#define PDMIDISPLAYCONNECTOR_IID "b71dc381-99cc-43de-b459-f1e812e73b65"
1031
1032
1033/** Pointer to a secret key interface. */
1034typedef struct PDMISECKEY *PPDMISECKEY;
1035
1036/**
1037 * Secret key interface to retrieve secret keys.
1038 */
1039typedef struct PDMISECKEY
1040{
1041 /**
1042 * Retains a key identified by the ID. The caller will only hold a reference
1043 * to the key and must not modify the key buffer in any way.
1044 *
1045 * @returns VBox status code.
1046 * @param pInterface Pointer to this interface.
1047 * @param pszId The alias/id for the key to retrieve.
1048 * @param ppbKey Where to store the pointer to the key buffer on success.
1049 * @param pcbKey Where to store the size of the key in bytes on success.
1050 */
1051 DECLR3CALLBACKMEMBER(int, pfnKeyRetain, (PPDMISECKEY pInterface, const char *pszId,
1052 const uint8_t **pbKey, size_t *pcbKey));
1053
1054 /**
1055 * Releases one reference of the key identified by the given identifier.
1056 * The caller must not access the key buffer after calling this operation.
1057 *
1058 * @returns VBox status code.
1059 * @param pInterface Pointer to this interface.
1060 * @param pszId The alias/id for the key to release.
1061 *
1062 * @note: It is advised to release the key whenever it is not used anymore so the entity
1063 * storing the key can do anything to make retrieving the key from memory more
1064 * difficult like scrambling the memory buffer for instance.
1065 */
1066 DECLR3CALLBACKMEMBER(int, pfnKeyRelease, (PPDMISECKEY pInterface, const char *pszId));
1067
1068 /**
1069 * Retains a password identified by the ID. The caller will only hold a reference
1070 * to the password and must not modify the buffer in any way.
1071 *
1072 * @returns VBox status code.
1073 * @param pInterface Pointer to this interface.
1074 * @param pszId The alias/id for the password to retrieve.
1075 * @param ppszPassword Where to store the pointer to the password on success.
1076 */
1077 DECLR3CALLBACKMEMBER(int, pfnPasswordRetain, (PPDMISECKEY pInterface, const char *pszId,
1078 const char **ppszPassword));
1079
1080 /**
1081 * Releases one reference of the password identified by the given identifier.
1082 * The caller must not access the password after calling this operation.
1083 *
1084 * @returns VBox status code.
1085 * @param pInterface Pointer to this interface.
1086 * @param pszId The alias/id for the password to release.
1087 *
1088 * @note: It is advised to release the password whenever it is not used anymore so the entity
1089 * storing the password can do anything to make retrieving the password from memory more
1090 * difficult like scrambling the memory buffer for instance.
1091 */
1092 DECLR3CALLBACKMEMBER(int, pfnPasswordRelease, (PPDMISECKEY pInterface, const char *pszId));
1093} PDMISECKEY;
1094/** PDMISECKEY interface ID. */
1095#define PDMISECKEY_IID "3d698355-d995-453d-960f-31566a891df2"
1096
1097/** Pointer to a secret key helper interface. */
1098typedef struct PDMISECKEYHLP *PPDMISECKEYHLP;
1099
1100/**
1101 * Secret key helper interface for non critical functionality.
1102 */
1103typedef struct PDMISECKEYHLP
1104{
1105 /**
1106 * Notifies the interface provider that a key couldn't be retrieved from the key store.
1107 *
1108 * @returns VBox status code.
1109 * @param pInterface Pointer to this interface.
1110 */
1111 DECLR3CALLBACKMEMBER(int, pfnKeyMissingNotify, (PPDMISECKEYHLP pInterface));
1112
1113} PDMISECKEYHLP;
1114/** PDMISECKEY interface ID. */
1115#define PDMISECKEYHLP_IID "7be96168-4156-40ac-86d2-3073bf8b318e"
1116
1117
1118/** Pointer to a stream interface. */
1119typedef struct PDMISTREAM *PPDMISTREAM;
1120/**
1121 * Stream interface (up).
1122 * Makes up the foundation for PDMICHARCONNECTOR. No pair interface.
1123 */
1124typedef struct PDMISTREAM
1125{
1126 /**
1127 * Polls for the specified events.
1128 *
1129 * @returns VBox status code.
1130 * @retval VERR_INTERRUPTED if the poll was interrupted.
1131 * @retval VERR_TIMEOUT if the maximum waiting time was reached.
1132 * @param pInterface Pointer to the interface structure containing the called function pointer.
1133 * @param fEvts The events to poll for, see RTPOLL_EVT_XXX.
1134 * @param pfEvts Where to return details about the events that occurred.
1135 * @param cMillies Number of milliseconds to wait. Use
1136 * RT_INDEFINITE_WAIT to wait for ever.
1137 */
1138 DECLR3CALLBACKMEMBER(int, pfnPoll,(PPDMISTREAM pInterface, uint32_t fEvts, uint32_t *pfEvts, RTMSINTERVAL cMillies));
1139
1140 /**
1141 * Interrupts the current poll call.
1142 *
1143 * @returns VBox status code.
1144 * @param pInterface Pointer to the interface structure containing the called function pointer.
1145 */
1146 DECLR3CALLBACKMEMBER(int, pfnPollInterrupt,(PPDMISTREAM pInterface));
1147
1148 /**
1149 * Read bits.
1150 *
1151 * @returns VBox status code.
1152 * @param pInterface Pointer to the interface structure containing the called function pointer.
1153 * @param pvBuf Where to store the read bits.
1154 * @param pcbRead Number of bytes to read/bytes actually read.
1155 * @thread Any thread.
1156 *
1157 * @note: This is non blocking, use the poll callback to block when there is nothing to read.
1158 */
1159 DECLR3CALLBACKMEMBER(int, pfnRead,(PPDMISTREAM pInterface, void *pvBuf, size_t *pcbRead));
1160
1161 /**
1162 * Write bits.
1163 *
1164 * @returns VBox status code.
1165 * @param pInterface Pointer to the interface structure containing the called function pointer.
1166 * @param pvBuf Where to store the write bits.
1167 * @param pcbWrite Number of bytes to write/bytes actually written.
1168 * @thread Any thread.
1169 *
1170 * @note: This is non blocking, use the poll callback to block until there is room to write.
1171 */
1172 DECLR3CALLBACKMEMBER(int, pfnWrite,(PPDMISTREAM pInterface, const void *pvBuf, size_t *pcbWrite));
1173} PDMISTREAM;
1174/** PDMISTREAM interface ID. */
1175#define PDMISTREAM_IID "f9bd1ba6-c134-44cc-8259-febe14393952"
1176
1177
1178/** Mode of the parallel port */
1179typedef enum PDMPARALLELPORTMODE
1180{
1181 /** First invalid mode. */
1182 PDM_PARALLEL_PORT_MODE_INVALID = 0,
1183 /** SPP (Compatibility mode). */
1184 PDM_PARALLEL_PORT_MODE_SPP,
1185 /** EPP Data mode. */
1186 PDM_PARALLEL_PORT_MODE_EPP_DATA,
1187 /** EPP Address mode. */
1188 PDM_PARALLEL_PORT_MODE_EPP_ADDR,
1189 /** ECP mode (not implemented yet). */
1190 PDM_PARALLEL_PORT_MODE_ECP,
1191 /** 32bit hack. */
1192 PDM_PARALLEL_PORT_MODE_32BIT_HACK = 0x7fffffff
1193} PDMPARALLELPORTMODE;
1194
1195/** Pointer to a host parallel port interface. */
1196typedef struct PDMIHOSTPARALLELPORT *PPDMIHOSTPARALLELPORT;
1197/**
1198 * Host parallel port interface (down).
1199 * Pair with PDMIHOSTPARALLELCONNECTOR.
1200 */
1201typedef struct PDMIHOSTPARALLELPORT
1202{
1203 /**
1204 * Notify device/driver that an interrupt has occurred.
1205 *
1206 * @returns VBox status code.
1207 * @param pInterface Pointer to the interface structure containing the called function pointer.
1208 * @thread Any thread.
1209 */
1210 DECLR3CALLBACKMEMBER(int, pfnNotifyInterrupt,(PPDMIHOSTPARALLELPORT pInterface));
1211} PDMIHOSTPARALLELPORT;
1212/** PDMIHOSTPARALLELPORT interface ID. */
1213#define PDMIHOSTPARALLELPORT_IID "f24b8668-e7f6-4eaa-a14c-4aa2a5f7048e"
1214
1215
1216
1217/** Pointer to a Host Parallel connector interface. */
1218typedef struct PDMIHOSTPARALLELCONNECTOR *PPDMIHOSTPARALLELCONNECTOR;
1219/**
1220 * Host parallel connector interface (up).
1221 * Pair with PDMIHOSTPARALLELPORT.
1222 */
1223typedef struct PDMIHOSTPARALLELCONNECTOR
1224{
1225 /**
1226 * Write bits.
1227 *
1228 * @returns VBox status code.
1229 * @param pInterface Pointer to the interface structure containing the called function pointer.
1230 * @param pvBuf Where to store the write bits.
1231 * @param cbWrite Number of bytes to write.
1232 * @param enmMode Mode to write the data.
1233 * @thread Any thread.
1234 * @todo r=klaus cbWrite only defines buffer length, method needs a way top return actually written amount of data.
1235 */
1236 DECLR3CALLBACKMEMBER(int, pfnWrite,(PPDMIHOSTPARALLELCONNECTOR pInterface, const void *pvBuf,
1237 size_t cbWrite, PDMPARALLELPORTMODE enmMode));
1238
1239 /**
1240 * Read bits.
1241 *
1242 * @returns VBox status code.
1243 * @param pInterface Pointer to the interface structure containing the called function pointer.
1244 * @param pvBuf Where to store the read bits.
1245 * @param cbRead Number of bytes to read.
1246 * @param enmMode Mode to read the data.
1247 * @thread Any thread.
1248 * @todo r=klaus cbRead only defines buffer length, method needs a way top return actually read amount of data.
1249 */
1250 DECLR3CALLBACKMEMBER(int, pfnRead,(PPDMIHOSTPARALLELCONNECTOR pInterface, void *pvBuf,
1251 size_t cbRead, PDMPARALLELPORTMODE enmMode));
1252
1253 /**
1254 * Set data direction of the port (forward/reverse).
1255 *
1256 * @returns VBox status code.
1257 * @param pInterface Pointer to the interface structure containing the called function pointer.
1258 * @param fForward Flag whether to indicate whether the port is operated in forward or reverse mode.
1259 * @thread Any thread.
1260 */
1261 DECLR3CALLBACKMEMBER(int, pfnSetPortDirection,(PPDMIHOSTPARALLELCONNECTOR pInterface, bool fForward));
1262
1263 /**
1264 * Write control register bits.
1265 *
1266 * @returns VBox status code.
1267 * @param pInterface Pointer to the interface structure containing the called function pointer.
1268 * @param fReg The new control register value.
1269 * @thread Any thread.
1270 */
1271 DECLR3CALLBACKMEMBER(int, pfnWriteControl,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t fReg));
1272
1273 /**
1274 * Read control register bits.
1275 *
1276 * @returns VBox status code.
1277 * @param pInterface Pointer to the interface structure containing the called function pointer.
1278 * @param pfReg Where to store the control register bits.
1279 * @thread Any thread.
1280 */
1281 DECLR3CALLBACKMEMBER(int, pfnReadControl,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t *pfReg));
1282
1283 /**
1284 * Read status register bits.
1285 *
1286 * @returns VBox status code.
1287 * @param pInterface Pointer to the interface structure containing the called function pointer.
1288 * @param pfReg Where to store the status register bits.
1289 * @thread Any thread.
1290 */
1291 DECLR3CALLBACKMEMBER(int, pfnReadStatus,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t *pfReg));
1292
1293} PDMIHOSTPARALLELCONNECTOR;
1294/** PDMIHOSTPARALLELCONNECTOR interface ID. */
1295#define PDMIHOSTPARALLELCONNECTOR_IID "7c532602-7438-4fbc-9265-349d9f0415f9"
1296
1297
1298/** ACPI power source identifier */
1299typedef enum PDMACPIPOWERSOURCE
1300{
1301 PDM_ACPI_POWER_SOURCE_UNKNOWN = 0,
1302 PDM_ACPI_POWER_SOURCE_OUTLET,
1303 PDM_ACPI_POWER_SOURCE_BATTERY
1304} PDMACPIPOWERSOURCE;
1305/** Pointer to ACPI battery state. */
1306typedef PDMACPIPOWERSOURCE *PPDMACPIPOWERSOURCE;
1307
1308/** ACPI battey capacity */
1309typedef enum PDMACPIBATCAPACITY
1310{
1311 PDM_ACPI_BAT_CAPACITY_MIN = 0,
1312 PDM_ACPI_BAT_CAPACITY_MAX = 100,
1313 PDM_ACPI_BAT_CAPACITY_UNKNOWN = 255
1314} PDMACPIBATCAPACITY;
1315/** Pointer to ACPI battery capacity. */
1316typedef PDMACPIBATCAPACITY *PPDMACPIBATCAPACITY;
1317
1318/** ACPI battery state. See ACPI 3.0 spec '_BST (Battery Status)' */
1319typedef enum PDMACPIBATSTATE
1320{
1321 PDM_ACPI_BAT_STATE_CHARGED = 0x00,
1322 PDM_ACPI_BAT_STATE_DISCHARGING = 0x01,
1323 PDM_ACPI_BAT_STATE_CHARGING = 0x02,
1324 PDM_ACPI_BAT_STATE_CRITICAL = 0x04
1325} PDMACPIBATSTATE;
1326/** Pointer to ACPI battery state. */
1327typedef PDMACPIBATSTATE *PPDMACPIBATSTATE;
1328
1329/** Pointer to an ACPI port interface. */
1330typedef struct PDMIACPIPORT *PPDMIACPIPORT;
1331/**
1332 * ACPI port interface (down). Used by both the ACPI driver and (grumble) main.
1333 * Pair with PDMIACPICONNECTOR.
1334 */
1335typedef struct PDMIACPIPORT
1336{
1337 /**
1338 * Send an ACPI power off event.
1339 *
1340 * @returns VBox status code
1341 * @param pInterface Pointer to the interface structure containing the called function pointer.
1342 */
1343 DECLR3CALLBACKMEMBER(int, pfnPowerButtonPress,(PPDMIACPIPORT pInterface));
1344
1345 /**
1346 * Send an ACPI sleep button event.
1347 *
1348 * @returns VBox status code
1349 * @param pInterface Pointer to the interface structure containing the called function pointer.
1350 */
1351 DECLR3CALLBACKMEMBER(int, pfnSleepButtonPress,(PPDMIACPIPORT pInterface));
1352
1353 /**
1354 * Check if the last power button event was handled by the guest.
1355 *
1356 * @returns VBox status code
1357 * @param pInterface Pointer to the interface structure containing the called function pointer.
1358 * @param pfHandled Is set to true if the last power button event was handled, false otherwise.
1359 */
1360 DECLR3CALLBACKMEMBER(int, pfnGetPowerButtonHandled,(PPDMIACPIPORT pInterface, bool *pfHandled));
1361
1362 /**
1363 * Check if the guest entered the ACPI mode.
1364 *
1365 * @returns VBox status code
1366 * @param pInterface Pointer to the interface structure containing the called function pointer.
1367 * @param pfEntered Is set to true if the guest entered the ACPI mode, false otherwise.
1368 */
1369 DECLR3CALLBACKMEMBER(int, pfnGetGuestEnteredACPIMode,(PPDMIACPIPORT pInterface, bool *pfEntered));
1370
1371 /**
1372 * Check if the given CPU is still locked by the guest.
1373 *
1374 * @returns VBox status code
1375 * @param pInterface Pointer to the interface structure containing the called function pointer.
1376 * @param uCpu The CPU to check for.
1377 * @param pfLocked Is set to true if the CPU is still locked by the guest, false otherwise.
1378 */
1379 DECLR3CALLBACKMEMBER(int, pfnGetCpuStatus,(PPDMIACPIPORT pInterface, unsigned uCpu, bool *pfLocked));
1380
1381 /**
1382 * Send an ACPI monitor hot-plug event.
1383 *
1384 * @returns VBox status code
1385 * @param pInterface Pointer to the interface structure containing
1386 * the called function pointer.
1387 */
1388 DECLR3CALLBACKMEMBER(int, pfnMonitorHotPlugEvent,(PPDMIACPIPORT pInterface));
1389
1390 /**
1391 * Send a battery status change event.
1392 *
1393 * @returns VBox status code
1394 * @param pInterface Pointer to the interface structure containing
1395 * the called function pointer.
1396 */
1397 DECLR3CALLBACKMEMBER(int, pfnBatteryStatusChangeEvent,(PPDMIACPIPORT pInterface));
1398} PDMIACPIPORT;
1399/** PDMIACPIPORT interface ID. */
1400#define PDMIACPIPORT_IID "974cb8fb-7fda-408c-f9b4-7ff4e3b2a699"
1401
1402
1403/** Pointer to an ACPI connector interface. */
1404typedef struct PDMIACPICONNECTOR *PPDMIACPICONNECTOR;
1405/**
1406 * ACPI connector interface (up).
1407 * Pair with PDMIACPIPORT.
1408 */
1409typedef struct PDMIACPICONNECTOR
1410{
1411 /**
1412 * Get the current power source of the host system.
1413 *
1414 * @returns VBox status code
1415 * @param pInterface Pointer to the interface structure containing the called function pointer.
1416 * @param penmPowerSource Pointer to the power source result variable.
1417 */
1418 DECLR3CALLBACKMEMBER(int, pfnQueryPowerSource,(PPDMIACPICONNECTOR, PPDMACPIPOWERSOURCE penmPowerSource));
1419
1420 /**
1421 * Query the current battery status of the host system.
1422 *
1423 * @returns VBox status code?
1424 * @param pInterface Pointer to the interface structure containing the called function pointer.
1425 * @param pfPresent Is set to true if battery is present, false otherwise.
1426 * @param penmRemainingCapacity Pointer to the battery remaining capacity (0 - 100 or 255 for unknown).
1427 * @param penmBatteryState Pointer to the battery status.
1428 * @param pu32PresentRate Pointer to the present rate (0..1000 of the total capacity).
1429 */
1430 DECLR3CALLBACKMEMBER(int, pfnQueryBatteryStatus,(PPDMIACPICONNECTOR, bool *pfPresent, PPDMACPIBATCAPACITY penmRemainingCapacity,
1431 PPDMACPIBATSTATE penmBatteryState, uint32_t *pu32PresentRate));
1432} PDMIACPICONNECTOR;
1433/** PDMIACPICONNECTOR interface ID. */
1434#define PDMIACPICONNECTOR_IID "5f14bf8d-1edf-4e3a-a1e1-cca9fd08e359"
1435
1436struct VMMDevDisplayDef;
1437
1438/** Pointer to a VMMDevice port interface. */
1439typedef struct PDMIVMMDEVPORT *PPDMIVMMDEVPORT;
1440/**
1441 * VMMDevice port interface (down).
1442 * Pair with PDMIVMMDEVCONNECTOR.
1443 */
1444typedef struct PDMIVMMDEVPORT
1445{
1446 /**
1447 * Return the current absolute mouse position in pixels
1448 *
1449 * @returns VBox status code
1450 * @param pInterface Pointer to the interface structure containing the called function pointer.
1451 * @param pxAbs Pointer of result value, can be NULL
1452 * @param pyAbs Pointer of result value, can be NULL
1453 */
1454 DECLR3CALLBACKMEMBER(int, pfnQueryAbsoluteMouse,(PPDMIVMMDEVPORT pInterface, int32_t *pxAbs, int32_t *pyAbs));
1455
1456 /**
1457 * Set the new absolute mouse position in pixels
1458 *
1459 * @returns VBox status code
1460 * @param pInterface Pointer to the interface structure containing the called function pointer.
1461 * @param xAbs New absolute X position
1462 * @param yAbs New absolute Y position
1463 */
1464 DECLR3CALLBACKMEMBER(int, pfnSetAbsoluteMouse,(PPDMIVMMDEVPORT pInterface, int32_t xAbs, int32_t yAbs));
1465
1466 /**
1467 * Return the current mouse capability flags
1468 *
1469 * @returns VBox status code
1470 * @param pInterface Pointer to the interface structure containing the called function pointer.
1471 * @param pfCapabilities Pointer of result value
1472 */
1473 DECLR3CALLBACKMEMBER(int, pfnQueryMouseCapabilities,(PPDMIVMMDEVPORT pInterface, uint32_t *pfCapabilities));
1474
1475 /**
1476 * Set the current mouse capability flag (host side)
1477 *
1478 * @returns VBox status code
1479 * @param pInterface Pointer to the interface structure containing the called function pointer.
1480 * @param fCapsAdded Mask of capabilities to add to the flag
1481 * @param fCapsRemoved Mask of capabilities to remove from the flag
1482 */
1483 DECLR3CALLBACKMEMBER(int, pfnUpdateMouseCapabilities,(PPDMIVMMDEVPORT pInterface, uint32_t fCapsAdded, uint32_t fCapsRemoved));
1484
1485 /**
1486 * Issue a display resolution change request.
1487 *
1488 * Note that there can only one request in the queue and that in case the guest does
1489 * not process it, issuing another request will overwrite the previous.
1490 *
1491 * @returns VBox status code
1492 * @param pInterface Pointer to the interface structure containing the called function pointer.
1493 * @param cDisplays Number of displays. Can be either 1 or the number of VM virtual monitors.
1494 * @param paDisplays Definitions of guest screens to be applied. See VMMDev.h
1495 * @param fForce Whether to deliver the request to the guest even if the guest has
1496 * the requested resolution already.
1497 * @param fMayNotify Whether to send a hotplug notification to the guest if appropriate.
1498 */
1499 DECLR3CALLBACKMEMBER(int, pfnRequestDisplayChange,(PPDMIVMMDEVPORT pInterface, uint32_t cDisplays,
1500 struct VMMDevDisplayDef const *paDisplays, bool fForce, bool fMayNotify));
1501
1502 /**
1503 * Pass credentials to guest.
1504 *
1505 * Note that there can only be one set of credentials and the guest may or may not
1506 * query them and may do whatever it wants with them.
1507 *
1508 * @returns VBox status code.
1509 * @param pInterface Pointer to the interface structure containing the called function pointer.
1510 * @param pszUsername User name, may be empty (UTF-8).
1511 * @param pszPassword Password, may be empty (UTF-8).
1512 * @param pszDomain Domain name, may be empty (UTF-8).
1513 * @param fFlags VMMDEV_SETCREDENTIALS_*.
1514 */
1515 DECLR3CALLBACKMEMBER(int, pfnSetCredentials,(PPDMIVMMDEVPORT pInterface, const char *pszUsername,
1516 const char *pszPassword, const char *pszDomain,
1517 uint32_t fFlags));
1518
1519 /**
1520 * Notify the driver about a VBVA status change.
1521 *
1522 * @returns Nothing. Because it is informational callback.
1523 * @param pInterface Pointer to the interface structure containing the called function pointer.
1524 * @param fEnabled Current VBVA status.
1525 */
1526 DECLR3CALLBACKMEMBER(void, pfnVBVAChange, (PPDMIVMMDEVPORT pInterface, bool fEnabled));
1527
1528 /**
1529 * Issue a seamless mode change request.
1530 *
1531 * Note that there can only one request in the queue and that in case the guest does
1532 * not process it, issuing another request will overwrite the previous.
1533 *
1534 * @returns VBox status code
1535 * @param pInterface Pointer to the interface structure containing the called function pointer.
1536 * @param fEnabled Seamless mode enabled or not
1537 */
1538 DECLR3CALLBACKMEMBER(int, pfnRequestSeamlessChange,(PPDMIVMMDEVPORT pInterface, bool fEnabled));
1539
1540 /**
1541 * Issue a memory balloon change request.
1542 *
1543 * Note that there can only one request in the queue and that in case the guest does
1544 * not process it, issuing another request will overwrite the previous.
1545 *
1546 * @returns VBox status code
1547 * @param pInterface Pointer to the interface structure containing the called function pointer.
1548 * @param cMbBalloon Balloon size in megabytes
1549 */
1550 DECLR3CALLBACKMEMBER(int, pfnSetMemoryBalloon,(PPDMIVMMDEVPORT pInterface, uint32_t cMbBalloon));
1551
1552 /**
1553 * Issue a statistcs interval change request.
1554 *
1555 * Note that there can only one request in the queue and that in case the guest does
1556 * not process it, issuing another request will overwrite the previous.
1557 *
1558 * @returns VBox status code
1559 * @param pInterface Pointer to the interface structure containing the called function pointer.
1560 * @param cSecsStatInterval Statistics query interval in seconds
1561 * (0=disable).
1562 */
1563 DECLR3CALLBACKMEMBER(int, pfnSetStatisticsInterval,(PPDMIVMMDEVPORT pInterface, uint32_t cSecsStatInterval));
1564
1565 /**
1566 * Notify the guest about a VRDP status change.
1567 *
1568 * @returns VBox status code
1569 * @param pInterface Pointer to the interface structure containing the called function pointer.
1570 * @param fVRDPEnabled Current VRDP status.
1571 * @param uVRDPExperienceLevel Which visual effects to be disabled in
1572 * the guest.
1573 */
1574 DECLR3CALLBACKMEMBER(int, pfnVRDPChange, (PPDMIVMMDEVPORT pInterface, bool fVRDPEnabled, uint32_t uVRDPExperienceLevel));
1575
1576 /**
1577 * Notify the guest of CPU hot-unplug event.
1578 *
1579 * @returns VBox status code
1580 * @param pInterface Pointer to the interface structure containing the called function pointer.
1581 * @param idCpuCore The core id of the CPU to remove.
1582 * @param idCpuPackage The package id of the CPU to remove.
1583 */
1584 DECLR3CALLBACKMEMBER(int, pfnCpuHotUnplug, (PPDMIVMMDEVPORT pInterface, uint32_t idCpuCore, uint32_t idCpuPackage));
1585
1586 /**
1587 * Notify the guest of CPU hot-plug event.
1588 *
1589 * @returns VBox status code
1590 * @param pInterface Pointer to the interface structure containing the called function pointer.
1591 * @param idCpuCore The core id of the CPU to add.
1592 * @param idCpuPackage The package id of the CPU to add.
1593 */
1594 DECLR3CALLBACKMEMBER(int, pfnCpuHotPlug, (PPDMIVMMDEVPORT pInterface, uint32_t idCpuCore, uint32_t idCpuPackage));
1595
1596} PDMIVMMDEVPORT;
1597/** PDMIVMMDEVPORT interface ID. */
1598#define PDMIVMMDEVPORT_IID "9e004f1a-875d-11e9-a673-c77c30f53623"
1599
1600
1601/** Pointer to a HPET legacy notification interface. */
1602typedef struct PDMIHPETLEGACYNOTIFY *PPDMIHPETLEGACYNOTIFY;
1603/**
1604 * HPET legacy notification interface.
1605 */
1606typedef struct PDMIHPETLEGACYNOTIFY
1607{
1608 /**
1609 * Notify about change of HPET legacy mode.
1610 *
1611 * @param pInterface Pointer to the interface structure containing the
1612 * called function pointer.
1613 * @param fActivated If HPET legacy mode is activated (@c true) or
1614 * deactivated (@c false).
1615 */
1616 DECLR3CALLBACKMEMBER(void, pfnModeChanged,(PPDMIHPETLEGACYNOTIFY pInterface, bool fActivated));
1617} PDMIHPETLEGACYNOTIFY;
1618/** PDMIHPETLEGACYNOTIFY interface ID. */
1619#define PDMIHPETLEGACYNOTIFY_IID "c9ada595-4b65-4311-8b21-b10498997774"
1620
1621
1622/** @name Flags for PDMIVMMDEVPORT::pfnSetCredentials.
1623 * @{ */
1624/** The guest should perform a logon with the credentials. */
1625#define VMMDEV_SETCREDENTIALS_GUESTLOGON RT_BIT(0)
1626/** The guest should prevent local logons. */
1627#define VMMDEV_SETCREDENTIALS_NOLOCALLOGON RT_BIT(1)
1628/** The guest should verify the credentials. */
1629#define VMMDEV_SETCREDENTIALS_JUDGE RT_BIT(15)
1630/** @} */
1631
1632/** Forward declaration of the guest information structure. */
1633struct VBoxGuestInfo;
1634/** Forward declaration of the guest information-2 structure. */
1635struct VBoxGuestInfo2;
1636/** Forward declaration of the guest statistics structure */
1637struct VBoxGuestStatistics;
1638/** Forward declaration of the guest status structure */
1639struct VBoxGuestStatus;
1640
1641/** Forward declaration of the video accelerator command memory. */
1642struct VBVAMEMORY;
1643/** Pointer to video accelerator command memory. */
1644typedef struct VBVAMEMORY *PVBVAMEMORY;
1645
1646/** Pointer to a VMMDev connector interface. */
1647typedef struct PDMIVMMDEVCONNECTOR *PPDMIVMMDEVCONNECTOR;
1648/**
1649 * VMMDev connector interface (up).
1650 * Pair with PDMIVMMDEVPORT.
1651 */
1652typedef struct PDMIVMMDEVCONNECTOR
1653{
1654 /**
1655 * Update guest facility status.
1656 *
1657 * Called in response to VMMDevReq_ReportGuestStatus, reset or state restore.
1658 *
1659 * @param pInterface Pointer to this interface.
1660 * @param uFacility The facility.
1661 * @param uStatus The status.
1662 * @param fFlags Flags assoicated with the update. Currently
1663 * reserved and should be ignored.
1664 * @param pTimeSpecTS Pointer to the timestamp of this report.
1665 * @thread The emulation thread.
1666 */
1667 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestStatus,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t uFacility, uint16_t uStatus,
1668 uint32_t fFlags, PCRTTIMESPEC pTimeSpecTS));
1669
1670 /**
1671 * Updates a guest user state.
1672 *
1673 * Called in response to VMMDevReq_ReportGuestUserState.
1674 *
1675 * @param pInterface Pointer to this interface.
1676 * @param pszUser Guest user name to update status for.
1677 * @param pszDomain Domain the guest user is bound to. Optional.
1678 * @param uState New guest user state to notify host about.
1679 * @param pabDetails Pointer to optional state data.
1680 * @param cbDetails Size (in bytes) of optional state data.
1681 * @thread The emulation thread.
1682 */
1683 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestUserState,(PPDMIVMMDEVCONNECTOR pInterface, const char *pszUser,
1684 const char *pszDomain, uint32_t uState,
1685 const uint8_t *pabDetails, uint32_t cbDetails));
1686
1687 /**
1688 * Reports the guest API and OS version.
1689 * Called whenever the Additions issue a guest info report request.
1690 *
1691 * @param pInterface Pointer to this interface.
1692 * @param pGuestInfo Pointer to guest information structure
1693 * @thread The emulation thread.
1694 */
1695 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestInfo,(PPDMIVMMDEVCONNECTOR pInterface, const struct VBoxGuestInfo *pGuestInfo));
1696
1697 /**
1698 * Reports the detailed Guest Additions version.
1699 *
1700 * @param pInterface Pointer to this interface.
1701 * @param uFullVersion The guest additions version as a full version.
1702 * Use VBOX_FULL_VERSION_GET_MAJOR,
1703 * VBOX_FULL_VERSION_GET_MINOR and
1704 * VBOX_FULL_VERSION_GET_BUILD to access it.
1705 * (This will not be zero, so turn down the
1706 * paranoia level a notch.)
1707 * @param pszName Pointer to the sanitized version name. This can
1708 * be empty, but will not be NULL. If not empty,
1709 * it will contain a build type tag and/or a
1710 * publisher tag. If both, then they are separated
1711 * by an underscore (VBOX_VERSION_STRING fashion).
1712 * @param uRevision The SVN revision. Can be 0.
1713 * @param fFeatures Feature mask, currently none are defined.
1714 *
1715 * @thread The emulation thread.
1716 */
1717 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestInfo2,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t uFullVersion,
1718 const char *pszName, uint32_t uRevision, uint32_t fFeatures));
1719
1720 /**
1721 * Update the guest additions capabilities.
1722 * This is called when the guest additions capabilities change. The new capabilities
1723 * are given and the connector should update its internal state.
1724 *
1725 * @param pInterface Pointer to this interface.
1726 * @param newCapabilities New capabilities.
1727 * @thread The emulation thread.
1728 */
1729 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestCapabilities,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities));
1730
1731 /**
1732 * Update the mouse capabilities.
1733 * This is called when the mouse capabilities change. The new capabilities
1734 * are given and the connector should update its internal state.
1735 *
1736 * @param pInterface Pointer to this interface.
1737 * @param newCapabilities New capabilities.
1738 * @thread The emulation thread.
1739 */
1740 DECLR3CALLBACKMEMBER(void, pfnUpdateMouseCapabilities,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities));
1741
1742 /**
1743 * Update the pointer shape.
1744 * This is called when the mouse pointer shape changes. The new shape
1745 * is passed as a caller allocated buffer that will be freed after returning
1746 *
1747 * @param pInterface Pointer to this interface.
1748 * @param fVisible Visibility indicator (if false, the other parameters are undefined).
1749 * @param fAlpha Flag whether alpha channel is being passed.
1750 * @param xHot Pointer hot spot x coordinate.
1751 * @param yHot Pointer hot spot y coordinate.
1752 * @param x Pointer new x coordinate on screen.
1753 * @param y Pointer new y coordinate on screen.
1754 * @param cx Pointer width in pixels.
1755 * @param cy Pointer height in pixels.
1756 * @param cbScanline Size of one scanline in bytes.
1757 * @param pvShape New shape buffer.
1758 * @thread The emulation thread.
1759 */
1760 DECLR3CALLBACKMEMBER(void, pfnUpdatePointerShape,(PPDMIVMMDEVCONNECTOR pInterface, bool fVisible, bool fAlpha,
1761 uint32_t xHot, uint32_t yHot,
1762 uint32_t cx, uint32_t cy,
1763 void *pvShape));
1764
1765 /**
1766 * Enable or disable video acceleration on behalf of guest.
1767 *
1768 * @param pInterface Pointer to this interface.
1769 * @param fEnable Whether to enable acceleration.
1770 * @param pVbvaMemory Video accelerator memory.
1771
1772 * @return VBox rc. VINF_SUCCESS if VBVA was enabled.
1773 * @thread The emulation thread.
1774 */
1775 DECLR3CALLBACKMEMBER(int, pfnVideoAccelEnable,(PPDMIVMMDEVCONNECTOR pInterface, bool fEnable, PVBVAMEMORY pVbvaMemory));
1776
1777 /**
1778 * Force video queue processing.
1779 *
1780 * @param pInterface Pointer to this interface.
1781 * @thread The emulation thread.
1782 */
1783 DECLR3CALLBACKMEMBER(void, pfnVideoAccelFlush,(PPDMIVMMDEVCONNECTOR pInterface));
1784
1785 /**
1786 * Return whether the given video mode is supported/wanted by the host.
1787 *
1788 * @returns VBox status code
1789 * @param pInterface Pointer to this interface.
1790 * @param display The guest monitor, 0 for primary.
1791 * @param cy Video mode horizontal resolution in pixels.
1792 * @param cx Video mode vertical resolution in pixels.
1793 * @param cBits Video mode bits per pixel.
1794 * @param pfSupported Where to put the indicator for whether this mode is supported. (output)
1795 * @thread The emulation thread.
1796 */
1797 DECLR3CALLBACKMEMBER(int, pfnVideoModeSupported,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t display, uint32_t cx, uint32_t cy, uint32_t cBits, bool *pfSupported));
1798
1799 /**
1800 * Queries by how many pixels the height should be reduced when calculating video modes
1801 *
1802 * @returns VBox status code
1803 * @param pInterface Pointer to this interface.
1804 * @param pcyReduction Pointer to the result value.
1805 * @thread The emulation thread.
1806 */
1807 DECLR3CALLBACKMEMBER(int, pfnGetHeightReduction,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pcyReduction));
1808
1809 /**
1810 * Informs about a credentials judgement result from the guest.
1811 *
1812 * @returns VBox status code
1813 * @param pInterface Pointer to this interface.
1814 * @param fFlags Judgement result flags.
1815 * @thread The emulation thread.
1816 */
1817 DECLR3CALLBACKMEMBER(int, pfnSetCredentialsJudgementResult,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t fFlags));
1818
1819 /**
1820 * Set the visible region of the display
1821 *
1822 * @returns VBox status code.
1823 * @param pInterface Pointer to this interface.
1824 * @param cRect Number of rectangles in pRect
1825 * @param pRect Rectangle array
1826 * @thread The emulation thread.
1827 */
1828 DECLR3CALLBACKMEMBER(int, pfnSetVisibleRegion,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t cRect, PRTRECT pRect));
1829
1830 /**
1831 * Update monitor positions (offsets). Passing monitor positions from the guest to host
1832 * exclusively since vmwgfx fails to do so (thru FIFO).
1833 *
1834 * @returns VBox status code.
1835 * @param pInterface Pointer to this interface.
1836 * @param cPositions Number of monitor positions
1837 * @param pPosition Positions array
1838 * @thread The emulation thread.
1839 *
1840 * @remarks Is allowed to be NULL.
1841 */
1842 DECLR3CALLBACKMEMBER(int, pfnUpdateMonitorPositions,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t cPositions, PRTPOINT pPosition));
1843
1844 /**
1845 * Query the visible region of the display
1846 *
1847 * @returns VBox status code.
1848 * @param pInterface Pointer to this interface.
1849 * @param pcRects Where to return the number of rectangles in
1850 * paRects.
1851 * @param paRects Rectangle array (set to NULL to query the number
1852 * of rectangles)
1853 * @thread The emulation thread.
1854 */
1855 DECLR3CALLBACKMEMBER(int, pfnQueryVisibleRegion,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pcRects, PRTRECT paRects));
1856
1857 /**
1858 * Request the statistics interval
1859 *
1860 * @returns VBox status code.
1861 * @param pInterface Pointer to this interface.
1862 * @param pulInterval Pointer to interval in seconds
1863 * @thread The emulation thread.
1864 */
1865 DECLR3CALLBACKMEMBER(int, pfnQueryStatisticsInterval,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pulInterval));
1866
1867 /**
1868 * Report new guest statistics
1869 *
1870 * @returns VBox status code.
1871 * @param pInterface Pointer to this interface.
1872 * @param pGuestStats Guest statistics
1873 * @thread The emulation thread.
1874 */
1875 DECLR3CALLBACKMEMBER(int, pfnReportStatistics,(PPDMIVMMDEVCONNECTOR pInterface, struct VBoxGuestStatistics *pGuestStats));
1876
1877 /**
1878 * Query the current balloon size
1879 *
1880 * @returns VBox status code.
1881 * @param pInterface Pointer to this interface.
1882 * @param pcbBalloon Balloon size
1883 * @thread The emulation thread.
1884 */
1885 DECLR3CALLBACKMEMBER(int, pfnQueryBalloonSize,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pcbBalloon));
1886
1887 /**
1888 * Query the current page fusion setting
1889 *
1890 * @returns VBox status code.
1891 * @param pInterface Pointer to this interface.
1892 * @param pfPageFusionEnabled Pointer to boolean
1893 * @thread The emulation thread.
1894 */
1895 DECLR3CALLBACKMEMBER(int, pfnIsPageFusionEnabled,(PPDMIVMMDEVCONNECTOR pInterface, bool *pfPageFusionEnabled));
1896
1897} PDMIVMMDEVCONNECTOR;
1898/** PDMIVMMDEVCONNECTOR interface ID. */
1899#define PDMIVMMDEVCONNECTOR_IID "aff90240-a443-434e-9132-80c186ab97d4"
1900
1901
1902/**
1903 * Generic status LED core.
1904 * Note that a unit doesn't have to support all the indicators.
1905 */
1906typedef union PDMLEDCORE
1907{
1908 /** 32-bit view. */
1909 uint32_t volatile u32;
1910 /** Bit view. */
1911 struct
1912 {
1913 /** Reading/Receiving indicator. */
1914 uint32_t fReading : 1;
1915 /** Writing/Sending indicator. */
1916 uint32_t fWriting : 1;
1917 /** Busy indicator. */
1918 uint32_t fBusy : 1;
1919 /** Error indicator. */
1920 uint32_t fError : 1;
1921 } s;
1922} PDMLEDCORE;
1923
1924/** LED bit masks for the u32 view.
1925 * @{ */
1926/** Reading/Receiving indicator. */
1927#define PDMLED_READING RT_BIT(0)
1928/** Writing/Sending indicator. */
1929#define PDMLED_WRITING RT_BIT(1)
1930/** Busy indicator. */
1931#define PDMLED_BUSY RT_BIT(2)
1932/** Error indicator. */
1933#define PDMLED_ERROR RT_BIT(3)
1934/** @} */
1935
1936
1937/**
1938 * Generic status LED.
1939 * Note that a unit doesn't have to support all the indicators.
1940 */
1941typedef struct PDMLED
1942{
1943 /** Just a magic for sanity checking. */
1944 uint32_t u32Magic;
1945 uint32_t u32Alignment; /**< structure size alignment. */
1946 /** The actual LED status.
1947 * Only the device is allowed to change this. */
1948 PDMLEDCORE Actual;
1949 /** The asserted LED status which is cleared by the reader.
1950 * The device will assert the bits but never clear them.
1951 * The driver clears them as it sees fit. */
1952 PDMLEDCORE Asserted;
1953} PDMLED;
1954
1955/** Pointer to an LED. */
1956typedef PDMLED *PPDMLED;
1957/** Pointer to a const LED. */
1958typedef const PDMLED *PCPDMLED;
1959
1960/** Magic value for PDMLED::u32Magic. */
1961#define PDMLED_MAGIC UINT32_C(0x11335577)
1962
1963/** Pointer to an LED ports interface. */
1964typedef struct PDMILEDPORTS *PPDMILEDPORTS;
1965/**
1966 * Interface for exporting LEDs (down).
1967 * Pair with PDMILEDCONNECTORS.
1968 */
1969typedef struct PDMILEDPORTS
1970{
1971 /**
1972 * Gets the pointer to the status LED of a unit.
1973 *
1974 * @returns VBox status code.
1975 * @param pInterface Pointer to the interface structure containing the called function pointer.
1976 * @param iLUN The unit which status LED we desire.
1977 * @param ppLed Where to store the LED pointer.
1978 */
1979 DECLR3CALLBACKMEMBER(int, pfnQueryStatusLed,(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed));
1980
1981} PDMILEDPORTS;
1982/** PDMILEDPORTS interface ID. */
1983#define PDMILEDPORTS_IID "435e0cec-8549-4ca0-8c0d-98e52f1dc038"
1984
1985
1986/** Pointer to an LED connectors interface. */
1987typedef struct PDMILEDCONNECTORS *PPDMILEDCONNECTORS;
1988/**
1989 * Interface for reading LEDs (up).
1990 * Pair with PDMILEDPORTS.
1991 */
1992typedef struct PDMILEDCONNECTORS
1993{
1994 /**
1995 * Notification about a unit which have been changed.
1996 *
1997 * The driver must discard any pointers to data owned by
1998 * the unit and requery it.
1999 *
2000 * @param pInterface Pointer to the interface structure containing the called function pointer.
2001 * @param iLUN The unit number.
2002 */
2003 DECLR3CALLBACKMEMBER(void, pfnUnitChanged,(PPDMILEDCONNECTORS pInterface, unsigned iLUN));
2004} PDMILEDCONNECTORS;
2005/** PDMILEDCONNECTORS interface ID. */
2006#define PDMILEDCONNECTORS_IID "8ed63568-82a7-4193-b57b-db8085ac4495"
2007
2008
2009/** Pointer to a Media Notification interface. */
2010typedef struct PDMIMEDIANOTIFY *PPDMIMEDIANOTIFY;
2011/**
2012 * Interface for exporting Medium eject information (up). No interface pair.
2013 */
2014typedef struct PDMIMEDIANOTIFY
2015{
2016 /**
2017 * Signals that the medium was ejected.
2018 *
2019 * @returns VBox status code.
2020 * @param pInterface Pointer to the interface structure containing the called function pointer.
2021 * @param iLUN The unit which had the medium ejected.
2022 */
2023 DECLR3CALLBACKMEMBER(int, pfnEjected,(PPDMIMEDIANOTIFY pInterface, unsigned iLUN));
2024
2025} PDMIMEDIANOTIFY;
2026/** PDMIMEDIANOTIFY interface ID. */
2027#define PDMIMEDIANOTIFY_IID "fc22d53e-feb1-4a9c-b9fb-0a990a6ab288"
2028
2029
2030/** The special status unit number */
2031#define PDM_STATUS_LUN 999
2032
2033
2034#ifdef VBOX_WITH_HGCM
2035
2036/** Abstract HGCM command structure. Used only to define a typed pointer. */
2037struct VBOXHGCMCMD;
2038
2039/** Pointer to HGCM command structure. This pointer is unique and identifies
2040 * the command being processed. The pointer is passed to HGCM connector methods,
2041 * and must be passed back to HGCM port when command is completed.
2042 */
2043typedef struct VBOXHGCMCMD *PVBOXHGCMCMD;
2044
2045/** Pointer to a HGCM port interface. */
2046typedef struct PDMIHGCMPORT *PPDMIHGCMPORT;
2047/**
2048 * Host-Guest communication manager port interface (down). Normally implemented
2049 * by VMMDev.
2050 * Pair with PDMIHGCMCONNECTOR.
2051 */
2052typedef struct PDMIHGCMPORT
2053{
2054 /**
2055 * Notify the guest on a command completion.
2056 *
2057 * @returns VINF_SUCCESS or VERR_CANCELLED if the guest canceled the call.
2058 * @param pInterface Pointer to this interface.
2059 * @param rc The return code (VBox error code).
2060 * @param pCmd A pointer that identifies the completed command.
2061 */
2062 DECLR3CALLBACKMEMBER(int, pfnCompleted,(PPDMIHGCMPORT pInterface, int32_t rc, PVBOXHGCMCMD pCmd));
2063
2064 /**
2065 * Checks if @a pCmd was restored & resubmitted from saved state.
2066 *
2067 * @returns true if restored, false if not.
2068 * @param pInterface Pointer to this interface.
2069 * @param pCmd The command we're checking on.
2070 */
2071 DECLR3CALLBACKMEMBER(bool, pfnIsCmdRestored,(PPDMIHGCMPORT pInterface, PVBOXHGCMCMD pCmd));
2072
2073 /**
2074 * Checks if @a pCmd was cancelled.
2075 *
2076 * @returns true if cancelled, false if not.
2077 * @param pInterface Pointer to this interface.
2078 * @param pCmd The command we're checking on.
2079 */
2080 DECLR3CALLBACKMEMBER(bool, pfnIsCmdCancelled,(PPDMIHGCMPORT pInterface, PVBOXHGCMCMD pCmd));
2081
2082 /**
2083 * Gets the VMMDevRequestHeader::fRequestor value for @a pCmd.
2084 *
2085 * @returns The fRequestor value, VMMDEV_REQUESTOR_LEGACY if guest does not
2086 * support it, VMMDEV_REQUESTOR_LOWEST if invalid parameters.
2087 * @param pInterface Pointer to this interface.
2088 * @param pCmd The command we're in checking on.
2089 */
2090 DECLR3CALLBACKMEMBER(uint32_t, pfnGetRequestor,(PPDMIHGCMPORT pInterface, PVBOXHGCMCMD pCmd));
2091
2092 /**
2093 * Gets the VMMDevState::idSession value.
2094 *
2095 * @returns VMMDevState::idSession.
2096 * @param pInterface Pointer to this interface.
2097 */
2098 DECLR3CALLBACKMEMBER(uint64_t, pfnGetVMMDevSessionId,(PPDMIHGCMPORT pInterface));
2099
2100} PDMIHGCMPORT;
2101/** PDMIHGCMPORT interface ID. */
2102# define PDMIHGCMPORT_IID "28c0a201-68cd-4752-9404-bb42a0c09eb7"
2103
2104/* forward decl to hgvmsvc.h. */
2105struct VBOXHGCMSVCPARM;
2106/** Pointer to a HGCM service location structure. */
2107typedef struct HGCMSERVICELOCATION *PHGCMSERVICELOCATION;
2108/** Pointer to a HGCM connector interface. */
2109typedef struct PDMIHGCMCONNECTOR *PPDMIHGCMCONNECTOR;
2110/**
2111 * The Host-Guest communication manager connector interface (up). Normally
2112 * implemented by Main::VMMDevInterface.
2113 * Pair with PDMIHGCMPORT.
2114 */
2115typedef struct PDMIHGCMCONNECTOR
2116{
2117 /**
2118 * Locate a service and inform it about a client connection.
2119 *
2120 * @param pInterface Pointer to this interface.
2121 * @param pCmd A pointer that identifies the command.
2122 * @param pServiceLocation Pointer to the service location structure.
2123 * @param pu32ClientID Where to store the client id for the connection.
2124 * @return VBox status code.
2125 * @thread The emulation thread.
2126 */
2127 DECLR3CALLBACKMEMBER(int, pfnConnect,(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, PHGCMSERVICELOCATION pServiceLocation, uint32_t *pu32ClientID));
2128
2129 /**
2130 * Disconnect from service.
2131 *
2132 * @param pInterface Pointer to this interface.
2133 * @param pCmd A pointer that identifies the command.
2134 * @param u32ClientID The client id returned by the pfnConnect call.
2135 * @return VBox status code.
2136 * @thread The emulation thread.
2137 */
2138 DECLR3CALLBACKMEMBER(int, pfnDisconnect,(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t u32ClientID));
2139
2140 /**
2141 * Process a guest issued command.
2142 *
2143 * @param pInterface Pointer to this interface.
2144 * @param pCmd A pointer that identifies the command.
2145 * @param u32ClientID The client id returned by the pfnConnect call.
2146 * @param u32Function Function to be performed by the service.
2147 * @param cParms Number of parameters in the array pointed to by paParams.
2148 * @param paParms Pointer to an array of parameters.
2149 * @param tsArrival The STAM_GET_TS() value when the request arrived.
2150 * @return VBox status code.
2151 * @thread The emulation thread.
2152 */
2153 DECLR3CALLBACKMEMBER(int, pfnCall,(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t u32ClientID, uint32_t u32Function,
2154 uint32_t cParms, struct VBOXHGCMSVCPARM *paParms, uint64_t tsArrival));
2155
2156 /**
2157 * Notification about the guest cancelling a pending request.
2158 * @param pInterface Pointer to this interface.
2159 * @param pCmd A pointer that identifies the command.
2160 * @param idclient The client id returned by the pfnConnect call.
2161 */
2162 DECLR3CALLBACKMEMBER(void, pfnCancelled,(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t idClient));
2163
2164} PDMIHGCMCONNECTOR;
2165/** PDMIHGCMCONNECTOR interface ID. */
2166# define PDMIHGCMCONNECTOR_IID "33cb5c91-6a4a-4ad9-3fec-d1f7d413c4a5"
2167
2168#endif /* VBOX_WITH_HGCM */
2169
2170
2171/** Pointer to a display VBVA callbacks interface. */
2172typedef struct PDMIDISPLAYVBVACALLBACKS *PPDMIDISPLAYVBVACALLBACKS;
2173/**
2174 * Display VBVA callbacks interface (up).
2175 */
2176typedef struct PDMIDISPLAYVBVACALLBACKS
2177{
2178
2179 /**
2180 * Informs guest about completion of processing the given Video HW Acceleration
2181 * command, does not wait for the guest to process the command.
2182 *
2183 * @returns ???
2184 * @param pInterface Pointer to this interface.
2185 * @param pCmd The Video HW Acceleration Command that was
2186 * completed.
2187 */
2188 DECLR3CALLBACKMEMBER(int, pfnVHWACommandCompleteAsync,(PPDMIDISPLAYVBVACALLBACKS pInterface,
2189 VBOXVHWACMD RT_UNTRUSTED_VOLATILE_GUEST *pCmd));
2190} PDMIDISPLAYVBVACALLBACKS;
2191/** PDMIDISPLAYVBVACALLBACKS */
2192#define PDMIDISPLAYVBVACALLBACKS_IID "37f34c9c-0491-47dc-a0b3-81697c44a416"
2193
2194/** Pointer to a PCI raw connector interface. */
2195typedef struct PDMIPCIRAWCONNECTOR *PPDMIPCIRAWCONNECTOR;
2196/**
2197 * PCI raw connector interface (up).
2198 */
2199typedef struct PDMIPCIRAWCONNECTOR
2200{
2201
2202 /**
2203 *
2204 */
2205 DECLR3CALLBACKMEMBER(int, pfnDeviceConstructComplete, (PPDMIPCIRAWCONNECTOR pInterface, const char *pcszName,
2206 uint32_t uHostPciAddress, uint32_t uGuestPciAddress,
2207 int rc));
2208
2209} PDMIPCIRAWCONNECTOR;
2210/** PDMIPCIRAWCONNECTOR interface ID. */
2211#define PDMIPCIRAWCONNECTOR_IID "14aa9c6c-8869-4782-9dfc-910071a6aebf"
2212
2213/** @} */
2214
2215RT_C_DECLS_END
2216
2217#endif /* !VBOX_INCLUDED_vmm_pdmifs_h */
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