VirtualBox

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

Last change on this file since 87542 was 84740, checked in by vboxsync, 4 years ago

Main,include: provide a new method for the graphics device to pass notifications to a frontend

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 93.4 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 3D graphics notification. */
740typedef struct VBOX3DNOTIFY VBOX3DNOTIFY;
741/** Pointer to a 2D graphics acceleration command. */
742typedef struct VBOXVHWACMD VBOXVHWACMD;
743/** Pointer to a VBVA command header. */
744typedef struct VBVACMDHDR *PVBVACMDHDR;
745/** Pointer to a const VBVA command header. */
746typedef const struct VBVACMDHDR *PCVBVACMDHDR;
747/** Pointer to a VBVA screen information. */
748typedef struct VBVAINFOSCREEN *PVBVAINFOSCREEN;
749/** Pointer to a const VBVA screen information. */
750typedef const struct VBVAINFOSCREEN *PCVBVAINFOSCREEN;
751/** Pointer to a VBVA guest VRAM area information. */
752typedef struct VBVAINFOVIEW *PVBVAINFOVIEW;
753/** Pointer to a const VBVA guest VRAM area information. */
754typedef const struct VBVAINFOVIEW *PCVBVAINFOVIEW;
755typedef struct VBVAHOSTFLAGS *PVBVAHOSTFLAGS;
756
757/** Pointer to a display connector interface. */
758typedef struct PDMIDISPLAYCONNECTOR *PPDMIDISPLAYCONNECTOR;
759
760/**
761 * Display connector interface (up).
762 * Pair with PDMIDISPLAYPORT.
763 */
764typedef struct PDMIDISPLAYCONNECTOR
765{
766 /**
767 * Resize the display.
768 * This is called when the resolution changes. This usually happens on
769 * request from the guest os, but may also happen as the result of a reset.
770 * If the callback returns VINF_VGA_RESIZE_IN_PROGRESS, the caller (VGA device)
771 * must not access the connector and return.
772 *
773 * @returns VINF_SUCCESS if the framebuffer resize was completed,
774 * VINF_VGA_RESIZE_IN_PROGRESS if resize takes time and not yet finished.
775 * @param pInterface Pointer to this interface.
776 * @param cBits Color depth (bits per pixel) of the new video mode.
777 * @param pvVRAM Address of the guest VRAM.
778 * @param cbLine Size in bytes of a single scan line.
779 * @param cx New display width.
780 * @param cy New display height.
781 * @thread The emulation thread.
782 */
783 DECLR3CALLBACKMEMBER(int, pfnResize,(PPDMIDISPLAYCONNECTOR pInterface, uint32_t cBits, void *pvVRAM, uint32_t cbLine,
784 uint32_t cx, uint32_t cy));
785
786 /**
787 * Update a rectangle of the display.
788 * PDMIDISPLAYPORT::pfnUpdateDisplay is the caller.
789 *
790 * @param pInterface Pointer to this interface.
791 * @param x The upper left corner x coordinate of the rectangle.
792 * @param y The upper left corner y coordinate of the rectangle.
793 * @param cx The width of the rectangle.
794 * @param cy The height of the rectangle.
795 * @thread The emulation thread.
796 */
797 DECLR3CALLBACKMEMBER(void, pfnUpdateRect,(PPDMIDISPLAYCONNECTOR pInterface, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy));
798
799 /**
800 * Refresh the display.
801 *
802 * The interval between these calls is set by
803 * PDMIDISPLAYPORT::pfnSetRefreshRate(). The driver should call
804 * PDMIDISPLAYPORT::pfnUpdateDisplay() if it wishes to refresh the
805 * display. PDMIDISPLAYPORT::pfnUpdateDisplay calls pfnUpdateRect with
806 * the changed rectangles.
807 *
808 * @param pInterface Pointer to this interface.
809 * @thread The emulation thread.
810 */
811 DECLR3CALLBACKMEMBER(void, pfnRefresh,(PPDMIDISPLAYCONNECTOR pInterface));
812
813 /**
814 * Reset the display.
815 *
816 * Notification message when the graphics card has been reset.
817 *
818 * @param pInterface Pointer to this interface.
819 * @thread The emulation thread.
820 */
821 DECLR3CALLBACKMEMBER(void, pfnReset,(PPDMIDISPLAYCONNECTOR pInterface));
822
823 /**
824 * LFB video mode enter/exit.
825 *
826 * Notification message when LinearFrameBuffer video mode is enabled/disabled.
827 *
828 * @param pInterface Pointer to this interface.
829 * @param fEnabled false - LFB mode was disabled,
830 * true - an LFB mode was disabled
831 * @thread The emulation thread.
832 */
833 DECLR3CALLBACKMEMBER(void, pfnLFBModeChange,(PPDMIDISPLAYCONNECTOR pInterface, bool fEnabled));
834
835 /**
836 * Process the guest graphics adapter information.
837 *
838 * Direct notification from guest to the display connector.
839 *
840 * @param pInterface Pointer to this interface.
841 * @param pvVRAM Address of the guest VRAM.
842 * @param u32VRAMSize Size of the guest VRAM.
843 * @thread The emulation thread.
844 */
845 DECLR3CALLBACKMEMBER(void, pfnProcessAdapterData,(PPDMIDISPLAYCONNECTOR pInterface, void *pvVRAM, uint32_t u32VRAMSize));
846
847 /**
848 * Process the guest display information.
849 *
850 * Direct notification from guest to the display connector.
851 *
852 * @param pInterface Pointer to this interface.
853 * @param pvVRAM Address of the guest VRAM.
854 * @param uScreenId The index of the guest display to be processed.
855 * @thread The emulation thread.
856 */
857 DECLR3CALLBACKMEMBER(void, pfnProcessDisplayData,(PPDMIDISPLAYCONNECTOR pInterface, void *pvVRAM, unsigned uScreenId));
858
859 /**
860 * Process the guest Video HW Acceleration command.
861 *
862 * @param pInterface Pointer to this interface.
863 * @param enmCmd The command type (don't re-read from pCmd).
864 * @param fGuestCmd Set if the command origins with the guest and
865 * pCmd must be considered volatile.
866 * @param pCmd Video HW Acceleration Command to be processed.
867 * @retval VINF_SUCCESS - command is completed,
868 * @retval VINF_CALLBACK_RETURN if command will by asynchronously completed via
869 * complete callback.
870 * @retval VERR_INVALID_STATE if the command could not be processed (most
871 * likely because the framebuffer was disconnected) - the post should
872 * be retried later.
873 * @thread EMT
874 */
875 DECLR3CALLBACKMEMBER(int, pfnVHWACommandProcess,(PPDMIDISPLAYCONNECTOR pInterface, int enmCmd, bool fGuestCmd,
876 VBOXVHWACMD RT_UNTRUSTED_VOLATILE_GUEST *pCmd));
877
878 /**
879 * The specified screen enters VBVA mode.
880 *
881 * @param pInterface Pointer to this interface.
882 * @param uScreenId The screen updates are for.
883 * @param pHostFlags Undocumented!
884 * @thread The emulation thread.
885 */
886 DECLR3CALLBACKMEMBER(int, pfnVBVAEnable,(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId,
887 struct VBVAHOSTFLAGS RT_UNTRUSTED_VOLATILE_GUEST *pHostFlags));
888
889 /**
890 * The specified screen leaves VBVA mode.
891 *
892 * @param pInterface Pointer to this interface.
893 * @param uScreenId The screen updates are for.
894 * @thread if render thread mode is on (fRenderThreadMode that was passed to pfnVBVAEnable is TRUE) - the render thread pfnVBVAEnable was called in,
895 * otherwise - the emulation thread.
896 */
897 DECLR3CALLBACKMEMBER(void, pfnVBVADisable,(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId));
898
899 /**
900 * A sequence of pfnVBVAUpdateProcess calls begins.
901 *
902 * @param pInterface Pointer to this interface.
903 * @param uScreenId The screen updates are for.
904 * @thread if render thread mode is on (fRenderThreadMode that was passed to pfnVBVAEnable is TRUE) - the render thread pfnVBVAEnable was called in,
905 * otherwise - the emulation thread.
906 */
907 DECLR3CALLBACKMEMBER(void, pfnVBVAUpdateBegin,(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId));
908
909 /**
910 * Process the guest VBVA command.
911 *
912 * @param pInterface Pointer to this interface.
913 * @param uScreenId The screen updates are for.
914 * @param pCmd Video HW Acceleration Command to be processed.
915 * @param cbCmd Undocumented!
916 * @thread if render thread mode is on (fRenderThreadMode that was passed to pfnVBVAEnable is TRUE) - the render thread pfnVBVAEnable was called in,
917 * otherwise - the emulation thread.
918 */
919 DECLR3CALLBACKMEMBER(void, pfnVBVAUpdateProcess,(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId,
920 struct VBVACMDHDR const RT_UNTRUSTED_VOLATILE_GUEST *pCmd, size_t cbCmd));
921
922 /**
923 * A sequence of pfnVBVAUpdateProcess calls ends.
924 *
925 * @param pInterface Pointer to this interface.
926 * @param uScreenId The screen updates are for.
927 * @param x The upper left corner x coordinate of the combined rectangle of all VBVA updates.
928 * @param y The upper left corner y coordinate of the rectangle.
929 * @param cx The width of the rectangle.
930 * @param cy The height of the rectangle.
931 * @thread if render thread mode is on (fRenderThreadMode that was passed to pfnVBVAEnable is TRUE) - the render thread pfnVBVAEnable was called in,
932 * otherwise - the emulation thread.
933 */
934 DECLR3CALLBACKMEMBER(void, pfnVBVAUpdateEnd,(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId, int32_t x, int32_t y,
935 uint32_t cx, uint32_t cy));
936
937 /**
938 * Resize the display.
939 * This is called when the resolution changes. This usually happens on
940 * request from the guest os, but may also happen as the result of a reset.
941 * If the callback returns VINF_VGA_RESIZE_IN_PROGRESS, the caller (VGA device)
942 * must not access the connector and return.
943 *
944 * @todo Merge with pfnResize.
945 *
946 * @returns VINF_SUCCESS if the framebuffer resize was completed,
947 * VINF_VGA_RESIZE_IN_PROGRESS if resize takes time and not yet finished.
948 * @param pInterface Pointer to this interface.
949 * @param pView The description of VRAM block for this screen.
950 * @param pScreen The data of screen being resized.
951 * @param pvVRAM Address of the guest VRAM.
952 * @param fResetInputMapping Whether to reset the absolute pointing device to screen position co-ordinate
953 * mapping. Needed for real resizes, as the caller on the guest may not know how
954 * to set the mapping. Not wanted when we restore a saved state and are resetting
955 * the mode.
956 * @thread if render thread mode is on (fRenderThreadMode that was passed to pfnVBVAEnable is TRUE) - the render thread pfnVBVAEnable was called in,
957 * otherwise - the emulation thread.
958 */
959 DECLR3CALLBACKMEMBER(int, pfnVBVAResize,(PPDMIDISPLAYCONNECTOR pInterface, PCVBVAINFOVIEW pView, PCVBVAINFOSCREEN pScreen,
960 void *pvVRAM, bool fResetInputMapping));
961
962 /**
963 * Update the pointer shape.
964 * This is called when the mouse pointer shape changes. The new shape
965 * is passed as a caller allocated buffer that will be freed after returning
966 *
967 * @param pInterface Pointer to this interface.
968 * @param fVisible Visibility indicator (if false, the other parameters are undefined).
969 * @param fAlpha Flag whether alpha channel is being passed.
970 * @param xHot Pointer hot spot x coordinate.
971 * @param yHot Pointer hot spot y coordinate.
972 * @param cx Pointer width in pixels.
973 * @param cy Pointer height in pixels.
974 * @param pvShape New shape buffer.
975 * @thread The emulation thread.
976 */
977 DECLR3CALLBACKMEMBER(int, pfnVBVAMousePointerShape,(PPDMIDISPLAYCONNECTOR pInterface, bool fVisible, bool fAlpha,
978 uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy,
979 const void *pvShape));
980
981 /**
982 * The guest capabilities were updated.
983 *
984 * @param pInterface Pointer to this interface.
985 * @param fCapabilities The new capability flag state.
986 * @thread The emulation thread.
987 */
988 DECLR3CALLBACKMEMBER(void, pfnVBVAGuestCapabilityUpdate,(PPDMIDISPLAYCONNECTOR pInterface, uint32_t fCapabilities));
989
990 /** Read-only attributes.
991 * For preformance reasons some readonly attributes are kept in the interface.
992 * We trust the interface users to respect the readonlyness of these.
993 * @{
994 */
995 /** Pointer to the display data buffer. */
996 uint8_t *pbData;
997 /** Size of a scanline in the data buffer. */
998 uint32_t cbScanline;
999 /** The color depth (in bits) the graphics card is supposed to provide. */
1000 uint32_t cBits;
1001 /** The display width. */
1002 uint32_t cx;
1003 /** The display height. */
1004 uint32_t cy;
1005 /** @} */
1006
1007 /**
1008 * The guest display input mapping rectangle was updated.
1009 *
1010 * @param pInterface Pointer to this interface.
1011 * @param xOrigin Upper left X co-ordinate relative to the first screen.
1012 * @param yOrigin Upper left Y co-ordinate relative to the first screen.
1013 * @param cx Rectangle width.
1014 * @param cy Rectangle height.
1015 * @thread The emulation thread.
1016 */
1017 DECLR3CALLBACKMEMBER(void, pfnVBVAInputMappingUpdate,(PPDMIDISPLAYCONNECTOR pInterface, int32_t xOrigin, int32_t yOrigin, uint32_t cx, uint32_t cy));
1018
1019 /**
1020 * The guest is reporting the requested location of the host pointer.
1021 *
1022 * @param pInterface Pointer to this interface.
1023 * @param fFlags VBVA_CURSOR_*
1024 * @param uScreenId The screen to which X and Y are relative if VBVA_CURSOR_SCREEN_RELATIVE is set.
1025 * @param x Cursor X offset.
1026 * @param y Cursor Y offset.
1027 * @thread The emulation thread.
1028 */
1029 DECLR3CALLBACKMEMBER(void, pfnVBVAReportCursorPosition,(PPDMIDISPLAYCONNECTOR pInterface, uint32_t fFlags, uint32_t uScreen, uint32_t x, uint32_t y));
1030
1031 /**
1032 * Process the graphics device HW Acceleration command.
1033 *
1034 * @param pInterface Pointer to this interface.
1035 * @param p3DNotify Acceleration Command to be processed.
1036 * @thread The graphics device thread: FIFO for the VMSVGA device.
1037 */
1038 DECLR3CALLBACKMEMBER(int, pfn3DNotifyProcess,(PPDMIDISPLAYCONNECTOR pInterface,
1039 VBOX3DNOTIFY *p3DNotify));
1040} PDMIDISPLAYCONNECTOR;
1041/** PDMIDISPLAYCONNECTOR interface ID. */
1042#define PDMIDISPLAYCONNECTOR_IID "cdd562e4-8030-11ea-8d40-bbc8e146c565"
1043
1044
1045/** Pointer to a secret key interface. */
1046typedef struct PDMISECKEY *PPDMISECKEY;
1047
1048/**
1049 * Secret key interface to retrieve secret keys.
1050 */
1051typedef struct PDMISECKEY
1052{
1053 /**
1054 * Retains a key identified by the ID. The caller will only hold a reference
1055 * to the key and must not modify the key buffer in any way.
1056 *
1057 * @returns VBox status code.
1058 * @param pInterface Pointer to this interface.
1059 * @param pszId The alias/id for the key to retrieve.
1060 * @param ppbKey Where to store the pointer to the key buffer on success.
1061 * @param pcbKey Where to store the size of the key in bytes on success.
1062 */
1063 DECLR3CALLBACKMEMBER(int, pfnKeyRetain, (PPDMISECKEY pInterface, const char *pszId,
1064 const uint8_t **pbKey, size_t *pcbKey));
1065
1066 /**
1067 * Releases one reference of the key identified by the given identifier.
1068 * The caller must not access the key buffer after calling this operation.
1069 *
1070 * @returns VBox status code.
1071 * @param pInterface Pointer to this interface.
1072 * @param pszId The alias/id for the key to release.
1073 *
1074 * @note: It is advised to release the key whenever it is not used anymore so the entity
1075 * storing the key can do anything to make retrieving the key from memory more
1076 * difficult like scrambling the memory buffer for instance.
1077 */
1078 DECLR3CALLBACKMEMBER(int, pfnKeyRelease, (PPDMISECKEY pInterface, const char *pszId));
1079
1080 /**
1081 * Retains a password identified by the ID. The caller will only hold a reference
1082 * to the password and must not modify the buffer in any way.
1083 *
1084 * @returns VBox status code.
1085 * @param pInterface Pointer to this interface.
1086 * @param pszId The alias/id for the password to retrieve.
1087 * @param ppszPassword Where to store the pointer to the password on success.
1088 */
1089 DECLR3CALLBACKMEMBER(int, pfnPasswordRetain, (PPDMISECKEY pInterface, const char *pszId,
1090 const char **ppszPassword));
1091
1092 /**
1093 * Releases one reference of the password identified by the given identifier.
1094 * The caller must not access the password after calling this operation.
1095 *
1096 * @returns VBox status code.
1097 * @param pInterface Pointer to this interface.
1098 * @param pszId The alias/id for the password to release.
1099 *
1100 * @note: It is advised to release the password whenever it is not used anymore so the entity
1101 * storing the password can do anything to make retrieving the password from memory more
1102 * difficult like scrambling the memory buffer for instance.
1103 */
1104 DECLR3CALLBACKMEMBER(int, pfnPasswordRelease, (PPDMISECKEY pInterface, const char *pszId));
1105} PDMISECKEY;
1106/** PDMISECKEY interface ID. */
1107#define PDMISECKEY_IID "3d698355-d995-453d-960f-31566a891df2"
1108
1109/** Pointer to a secret key helper interface. */
1110typedef struct PDMISECKEYHLP *PPDMISECKEYHLP;
1111
1112/**
1113 * Secret key helper interface for non critical functionality.
1114 */
1115typedef struct PDMISECKEYHLP
1116{
1117 /**
1118 * Notifies the interface provider that a key couldn't be retrieved from the key store.
1119 *
1120 * @returns VBox status code.
1121 * @param pInterface Pointer to this interface.
1122 */
1123 DECLR3CALLBACKMEMBER(int, pfnKeyMissingNotify, (PPDMISECKEYHLP pInterface));
1124
1125} PDMISECKEYHLP;
1126/** PDMISECKEY interface ID. */
1127#define PDMISECKEYHLP_IID "7be96168-4156-40ac-86d2-3073bf8b318e"
1128
1129
1130/** Pointer to a stream interface. */
1131typedef struct PDMISTREAM *PPDMISTREAM;
1132/**
1133 * Stream interface (up).
1134 * Makes up the foundation for PDMICHARCONNECTOR. No pair interface.
1135 */
1136typedef struct PDMISTREAM
1137{
1138 /**
1139 * Polls for the specified events.
1140 *
1141 * @returns VBox status code.
1142 * @retval VERR_INTERRUPTED if the poll was interrupted.
1143 * @retval VERR_TIMEOUT if the maximum waiting time was reached.
1144 * @param pInterface Pointer to the interface structure containing the called function pointer.
1145 * @param fEvts The events to poll for, see RTPOLL_EVT_XXX.
1146 * @param pfEvts Where to return details about the events that occurred.
1147 * @param cMillies Number of milliseconds to wait. Use
1148 * RT_INDEFINITE_WAIT to wait for ever.
1149 */
1150 DECLR3CALLBACKMEMBER(int, pfnPoll,(PPDMISTREAM pInterface, uint32_t fEvts, uint32_t *pfEvts, RTMSINTERVAL cMillies));
1151
1152 /**
1153 * Interrupts the current poll call.
1154 *
1155 * @returns VBox status code.
1156 * @param pInterface Pointer to the interface structure containing the called function pointer.
1157 */
1158 DECLR3CALLBACKMEMBER(int, pfnPollInterrupt,(PPDMISTREAM pInterface));
1159
1160 /**
1161 * Read bits.
1162 *
1163 * @returns VBox status code.
1164 * @param pInterface Pointer to the interface structure containing the called function pointer.
1165 * @param pvBuf Where to store the read bits.
1166 * @param pcbRead Number of bytes to read/bytes actually read.
1167 * @thread Any thread.
1168 *
1169 * @note: This is non blocking, use the poll callback to block when there is nothing to read.
1170 */
1171 DECLR3CALLBACKMEMBER(int, pfnRead,(PPDMISTREAM pInterface, void *pvBuf, size_t *pcbRead));
1172
1173 /**
1174 * Write bits.
1175 *
1176 * @returns VBox status code.
1177 * @param pInterface Pointer to the interface structure containing the called function pointer.
1178 * @param pvBuf Where to store the write bits.
1179 * @param pcbWrite Number of bytes to write/bytes actually written.
1180 * @thread Any thread.
1181 *
1182 * @note: This is non blocking, use the poll callback to block until there is room to write.
1183 */
1184 DECLR3CALLBACKMEMBER(int, pfnWrite,(PPDMISTREAM pInterface, const void *pvBuf, size_t *pcbWrite));
1185} PDMISTREAM;
1186/** PDMISTREAM interface ID. */
1187#define PDMISTREAM_IID "f9bd1ba6-c134-44cc-8259-febe14393952"
1188
1189
1190/** Mode of the parallel port */
1191typedef enum PDMPARALLELPORTMODE
1192{
1193 /** First invalid mode. */
1194 PDM_PARALLEL_PORT_MODE_INVALID = 0,
1195 /** SPP (Compatibility mode). */
1196 PDM_PARALLEL_PORT_MODE_SPP,
1197 /** EPP Data mode. */
1198 PDM_PARALLEL_PORT_MODE_EPP_DATA,
1199 /** EPP Address mode. */
1200 PDM_PARALLEL_PORT_MODE_EPP_ADDR,
1201 /** ECP mode (not implemented yet). */
1202 PDM_PARALLEL_PORT_MODE_ECP,
1203 /** 32bit hack. */
1204 PDM_PARALLEL_PORT_MODE_32BIT_HACK = 0x7fffffff
1205} PDMPARALLELPORTMODE;
1206
1207/** Pointer to a host parallel port interface. */
1208typedef struct PDMIHOSTPARALLELPORT *PPDMIHOSTPARALLELPORT;
1209/**
1210 * Host parallel port interface (down).
1211 * Pair with PDMIHOSTPARALLELCONNECTOR.
1212 */
1213typedef struct PDMIHOSTPARALLELPORT
1214{
1215 /**
1216 * Notify device/driver that an interrupt has occurred.
1217 *
1218 * @returns VBox status code.
1219 * @param pInterface Pointer to the interface structure containing the called function pointer.
1220 * @thread Any thread.
1221 */
1222 DECLR3CALLBACKMEMBER(int, pfnNotifyInterrupt,(PPDMIHOSTPARALLELPORT pInterface));
1223} PDMIHOSTPARALLELPORT;
1224/** PDMIHOSTPARALLELPORT interface ID. */
1225#define PDMIHOSTPARALLELPORT_IID "f24b8668-e7f6-4eaa-a14c-4aa2a5f7048e"
1226
1227
1228
1229/** Pointer to a Host Parallel connector interface. */
1230typedef struct PDMIHOSTPARALLELCONNECTOR *PPDMIHOSTPARALLELCONNECTOR;
1231/**
1232 * Host parallel connector interface (up).
1233 * Pair with PDMIHOSTPARALLELPORT.
1234 */
1235typedef struct PDMIHOSTPARALLELCONNECTOR
1236{
1237 /**
1238 * Write bits.
1239 *
1240 * @returns VBox status code.
1241 * @param pInterface Pointer to the interface structure containing the called function pointer.
1242 * @param pvBuf Where to store the write bits.
1243 * @param cbWrite Number of bytes to write.
1244 * @param enmMode Mode to write the data.
1245 * @thread Any thread.
1246 * @todo r=klaus cbWrite only defines buffer length, method needs a way top return actually written amount of data.
1247 */
1248 DECLR3CALLBACKMEMBER(int, pfnWrite,(PPDMIHOSTPARALLELCONNECTOR pInterface, const void *pvBuf,
1249 size_t cbWrite, PDMPARALLELPORTMODE enmMode));
1250
1251 /**
1252 * Read bits.
1253 *
1254 * @returns VBox status code.
1255 * @param pInterface Pointer to the interface structure containing the called function pointer.
1256 * @param pvBuf Where to store the read bits.
1257 * @param cbRead Number of bytes to read.
1258 * @param enmMode Mode to read the data.
1259 * @thread Any thread.
1260 * @todo r=klaus cbRead only defines buffer length, method needs a way top return actually read amount of data.
1261 */
1262 DECLR3CALLBACKMEMBER(int, pfnRead,(PPDMIHOSTPARALLELCONNECTOR pInterface, void *pvBuf,
1263 size_t cbRead, PDMPARALLELPORTMODE enmMode));
1264
1265 /**
1266 * Set data direction of the port (forward/reverse).
1267 *
1268 * @returns VBox status code.
1269 * @param pInterface Pointer to the interface structure containing the called function pointer.
1270 * @param fForward Flag whether to indicate whether the port is operated in forward or reverse mode.
1271 * @thread Any thread.
1272 */
1273 DECLR3CALLBACKMEMBER(int, pfnSetPortDirection,(PPDMIHOSTPARALLELCONNECTOR pInterface, bool fForward));
1274
1275 /**
1276 * Write control register bits.
1277 *
1278 * @returns VBox status code.
1279 * @param pInterface Pointer to the interface structure containing the called function pointer.
1280 * @param fReg The new control register value.
1281 * @thread Any thread.
1282 */
1283 DECLR3CALLBACKMEMBER(int, pfnWriteControl,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t fReg));
1284
1285 /**
1286 * Read control register bits.
1287 *
1288 * @returns VBox status code.
1289 * @param pInterface Pointer to the interface structure containing the called function pointer.
1290 * @param pfReg Where to store the control register bits.
1291 * @thread Any thread.
1292 */
1293 DECLR3CALLBACKMEMBER(int, pfnReadControl,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t *pfReg));
1294
1295 /**
1296 * Read status register bits.
1297 *
1298 * @returns VBox status code.
1299 * @param pInterface Pointer to the interface structure containing the called function pointer.
1300 * @param pfReg Where to store the status register bits.
1301 * @thread Any thread.
1302 */
1303 DECLR3CALLBACKMEMBER(int, pfnReadStatus,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t *pfReg));
1304
1305} PDMIHOSTPARALLELCONNECTOR;
1306/** PDMIHOSTPARALLELCONNECTOR interface ID. */
1307#define PDMIHOSTPARALLELCONNECTOR_IID "7c532602-7438-4fbc-9265-349d9f0415f9"
1308
1309
1310/** ACPI power source identifier */
1311typedef enum PDMACPIPOWERSOURCE
1312{
1313 PDM_ACPI_POWER_SOURCE_UNKNOWN = 0,
1314 PDM_ACPI_POWER_SOURCE_OUTLET,
1315 PDM_ACPI_POWER_SOURCE_BATTERY
1316} PDMACPIPOWERSOURCE;
1317/** Pointer to ACPI battery state. */
1318typedef PDMACPIPOWERSOURCE *PPDMACPIPOWERSOURCE;
1319
1320/** ACPI battey capacity */
1321typedef enum PDMACPIBATCAPACITY
1322{
1323 PDM_ACPI_BAT_CAPACITY_MIN = 0,
1324 PDM_ACPI_BAT_CAPACITY_MAX = 100,
1325 PDM_ACPI_BAT_CAPACITY_UNKNOWN = 255
1326} PDMACPIBATCAPACITY;
1327/** Pointer to ACPI battery capacity. */
1328typedef PDMACPIBATCAPACITY *PPDMACPIBATCAPACITY;
1329
1330/** ACPI battery state. See ACPI 3.0 spec '_BST (Battery Status)' */
1331typedef enum PDMACPIBATSTATE
1332{
1333 PDM_ACPI_BAT_STATE_CHARGED = 0x00,
1334 PDM_ACPI_BAT_STATE_DISCHARGING = 0x01,
1335 PDM_ACPI_BAT_STATE_CHARGING = 0x02,
1336 PDM_ACPI_BAT_STATE_CRITICAL = 0x04
1337} PDMACPIBATSTATE;
1338/** Pointer to ACPI battery state. */
1339typedef PDMACPIBATSTATE *PPDMACPIBATSTATE;
1340
1341/** Pointer to an ACPI port interface. */
1342typedef struct PDMIACPIPORT *PPDMIACPIPORT;
1343/**
1344 * ACPI port interface (down). Used by both the ACPI driver and (grumble) main.
1345 * Pair with PDMIACPICONNECTOR.
1346 */
1347typedef struct PDMIACPIPORT
1348{
1349 /**
1350 * Send an ACPI power off event.
1351 *
1352 * @returns VBox status code
1353 * @param pInterface Pointer to the interface structure containing the called function pointer.
1354 */
1355 DECLR3CALLBACKMEMBER(int, pfnPowerButtonPress,(PPDMIACPIPORT pInterface));
1356
1357 /**
1358 * Send an ACPI sleep button event.
1359 *
1360 * @returns VBox status code
1361 * @param pInterface Pointer to the interface structure containing the called function pointer.
1362 */
1363 DECLR3CALLBACKMEMBER(int, pfnSleepButtonPress,(PPDMIACPIPORT pInterface));
1364
1365 /**
1366 * Check if the last power button event was handled by the guest.
1367 *
1368 * @returns VBox status code
1369 * @param pInterface Pointer to the interface structure containing the called function pointer.
1370 * @param pfHandled Is set to true if the last power button event was handled, false otherwise.
1371 */
1372 DECLR3CALLBACKMEMBER(int, pfnGetPowerButtonHandled,(PPDMIACPIPORT pInterface, bool *pfHandled));
1373
1374 /**
1375 * Check if the guest entered the ACPI mode.
1376 *
1377 * @returns VBox status code
1378 * @param pInterface Pointer to the interface structure containing the called function pointer.
1379 * @param pfEntered Is set to true if the guest entered the ACPI mode, false otherwise.
1380 */
1381 DECLR3CALLBACKMEMBER(int, pfnGetGuestEnteredACPIMode,(PPDMIACPIPORT pInterface, bool *pfEntered));
1382
1383 /**
1384 * Check if the given CPU is still locked by the guest.
1385 *
1386 * @returns VBox status code
1387 * @param pInterface Pointer to the interface structure containing the called function pointer.
1388 * @param uCpu The CPU to check for.
1389 * @param pfLocked Is set to true if the CPU is still locked by the guest, false otherwise.
1390 */
1391 DECLR3CALLBACKMEMBER(int, pfnGetCpuStatus,(PPDMIACPIPORT pInterface, unsigned uCpu, bool *pfLocked));
1392
1393 /**
1394 * Send an ACPI monitor hot-plug event.
1395 *
1396 * @returns VBox status code
1397 * @param pInterface Pointer to the interface structure containing
1398 * the called function pointer.
1399 */
1400 DECLR3CALLBACKMEMBER(int, pfnMonitorHotPlugEvent,(PPDMIACPIPORT pInterface));
1401
1402 /**
1403 * Send a battery status change event.
1404 *
1405 * @returns VBox status code
1406 * @param pInterface Pointer to the interface structure containing
1407 * the called function pointer.
1408 */
1409 DECLR3CALLBACKMEMBER(int, pfnBatteryStatusChangeEvent,(PPDMIACPIPORT pInterface));
1410} PDMIACPIPORT;
1411/** PDMIACPIPORT interface ID. */
1412#define PDMIACPIPORT_IID "974cb8fb-7fda-408c-f9b4-7ff4e3b2a699"
1413
1414
1415/** Pointer to an ACPI connector interface. */
1416typedef struct PDMIACPICONNECTOR *PPDMIACPICONNECTOR;
1417/**
1418 * ACPI connector interface (up).
1419 * Pair with PDMIACPIPORT.
1420 */
1421typedef struct PDMIACPICONNECTOR
1422{
1423 /**
1424 * Get the current power source of the host system.
1425 *
1426 * @returns VBox status code
1427 * @param pInterface Pointer to the interface structure containing the called function pointer.
1428 * @param penmPowerSource Pointer to the power source result variable.
1429 */
1430 DECLR3CALLBACKMEMBER(int, pfnQueryPowerSource,(PPDMIACPICONNECTOR, PPDMACPIPOWERSOURCE penmPowerSource));
1431
1432 /**
1433 * Query the current battery status of the host system.
1434 *
1435 * @returns VBox status code?
1436 * @param pInterface Pointer to the interface structure containing the called function pointer.
1437 * @param pfPresent Is set to true if battery is present, false otherwise.
1438 * @param penmRemainingCapacity Pointer to the battery remaining capacity (0 - 100 or 255 for unknown).
1439 * @param penmBatteryState Pointer to the battery status.
1440 * @param pu32PresentRate Pointer to the present rate (0..1000 of the total capacity).
1441 */
1442 DECLR3CALLBACKMEMBER(int, pfnQueryBatteryStatus,(PPDMIACPICONNECTOR, bool *pfPresent, PPDMACPIBATCAPACITY penmRemainingCapacity,
1443 PPDMACPIBATSTATE penmBatteryState, uint32_t *pu32PresentRate));
1444} PDMIACPICONNECTOR;
1445/** PDMIACPICONNECTOR interface ID. */
1446#define PDMIACPICONNECTOR_IID "5f14bf8d-1edf-4e3a-a1e1-cca9fd08e359"
1447
1448struct VMMDevDisplayDef;
1449
1450/** Pointer to a VMMDevice port interface. */
1451typedef struct PDMIVMMDEVPORT *PPDMIVMMDEVPORT;
1452/**
1453 * VMMDevice port interface (down).
1454 * Pair with PDMIVMMDEVCONNECTOR.
1455 */
1456typedef struct PDMIVMMDEVPORT
1457{
1458 /**
1459 * Return the current absolute mouse position in pixels
1460 *
1461 * @returns VBox status code
1462 * @param pInterface Pointer to the interface structure containing the called function pointer.
1463 * @param pxAbs Pointer of result value, can be NULL
1464 * @param pyAbs Pointer of result value, can be NULL
1465 */
1466 DECLR3CALLBACKMEMBER(int, pfnQueryAbsoluteMouse,(PPDMIVMMDEVPORT pInterface, int32_t *pxAbs, int32_t *pyAbs));
1467
1468 /**
1469 * Set the new absolute mouse position in pixels
1470 *
1471 * @returns VBox status code
1472 * @param pInterface Pointer to the interface structure containing the called function pointer.
1473 * @param xAbs New absolute X position
1474 * @param yAbs New absolute Y position
1475 */
1476 DECLR3CALLBACKMEMBER(int, pfnSetAbsoluteMouse,(PPDMIVMMDEVPORT pInterface, int32_t xAbs, int32_t yAbs));
1477
1478 /**
1479 * Return the current mouse capability flags
1480 *
1481 * @returns VBox status code
1482 * @param pInterface Pointer to the interface structure containing the called function pointer.
1483 * @param pfCapabilities Pointer of result value
1484 */
1485 DECLR3CALLBACKMEMBER(int, pfnQueryMouseCapabilities,(PPDMIVMMDEVPORT pInterface, uint32_t *pfCapabilities));
1486
1487 /**
1488 * Set the current mouse capability flag (host side)
1489 *
1490 * @returns VBox status code
1491 * @param pInterface Pointer to the interface structure containing the called function pointer.
1492 * @param fCapsAdded Mask of capabilities to add to the flag
1493 * @param fCapsRemoved Mask of capabilities to remove from the flag
1494 */
1495 DECLR3CALLBACKMEMBER(int, pfnUpdateMouseCapabilities,(PPDMIVMMDEVPORT pInterface, uint32_t fCapsAdded, uint32_t fCapsRemoved));
1496
1497 /**
1498 * Issue a display resolution change request.
1499 *
1500 * Note that there can only one request in the queue and that in case the guest does
1501 * not process it, issuing another request will overwrite the previous.
1502 *
1503 * @returns VBox status code
1504 * @param pInterface Pointer to the interface structure containing the called function pointer.
1505 * @param cDisplays Number of displays. Can be either 1 or the number of VM virtual monitors.
1506 * @param paDisplays Definitions of guest screens to be applied. See VMMDev.h
1507 * @param fForce Whether to deliver the request to the guest even if the guest has
1508 * the requested resolution already.
1509 * @param fMayNotify Whether to send a hotplug notification to the guest if appropriate.
1510 */
1511 DECLR3CALLBACKMEMBER(int, pfnRequestDisplayChange,(PPDMIVMMDEVPORT pInterface, uint32_t cDisplays,
1512 struct VMMDevDisplayDef const *paDisplays, bool fForce, bool fMayNotify));
1513
1514 /**
1515 * Pass credentials to guest.
1516 *
1517 * Note that there can only be one set of credentials and the guest may or may not
1518 * query them and may do whatever it wants with them.
1519 *
1520 * @returns VBox status code.
1521 * @param pInterface Pointer to the interface structure containing the called function pointer.
1522 * @param pszUsername User name, may be empty (UTF-8).
1523 * @param pszPassword Password, may be empty (UTF-8).
1524 * @param pszDomain Domain name, may be empty (UTF-8).
1525 * @param fFlags VMMDEV_SETCREDENTIALS_*.
1526 */
1527 DECLR3CALLBACKMEMBER(int, pfnSetCredentials,(PPDMIVMMDEVPORT pInterface, const char *pszUsername,
1528 const char *pszPassword, const char *pszDomain,
1529 uint32_t fFlags));
1530
1531 /**
1532 * Notify the driver about a VBVA status change.
1533 *
1534 * @returns Nothing. Because it is informational callback.
1535 * @param pInterface Pointer to the interface structure containing the called function pointer.
1536 * @param fEnabled Current VBVA status.
1537 */
1538 DECLR3CALLBACKMEMBER(void, pfnVBVAChange, (PPDMIVMMDEVPORT pInterface, bool fEnabled));
1539
1540 /**
1541 * Issue a seamless mode 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 fEnabled Seamless mode enabled or not
1549 */
1550 DECLR3CALLBACKMEMBER(int, pfnRequestSeamlessChange,(PPDMIVMMDEVPORT pInterface, bool fEnabled));
1551
1552 /**
1553 * Issue a memory balloon 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 cMbBalloon Balloon size in megabytes
1561 */
1562 DECLR3CALLBACKMEMBER(int, pfnSetMemoryBalloon,(PPDMIVMMDEVPORT pInterface, uint32_t cMbBalloon));
1563
1564 /**
1565 * Issue a statistcs interval change request.
1566 *
1567 * Note that there can only one request in the queue and that in case the guest does
1568 * not process it, issuing another request will overwrite the previous.
1569 *
1570 * @returns VBox status code
1571 * @param pInterface Pointer to the interface structure containing the called function pointer.
1572 * @param cSecsStatInterval Statistics query interval in seconds
1573 * (0=disable).
1574 */
1575 DECLR3CALLBACKMEMBER(int, pfnSetStatisticsInterval,(PPDMIVMMDEVPORT pInterface, uint32_t cSecsStatInterval));
1576
1577 /**
1578 * Notify the guest about a VRDP status change.
1579 *
1580 * @returns VBox status code
1581 * @param pInterface Pointer to the interface structure containing the called function pointer.
1582 * @param fVRDPEnabled Current VRDP status.
1583 * @param uVRDPExperienceLevel Which visual effects to be disabled in
1584 * the guest.
1585 */
1586 DECLR3CALLBACKMEMBER(int, pfnVRDPChange, (PPDMIVMMDEVPORT pInterface, bool fVRDPEnabled, uint32_t uVRDPExperienceLevel));
1587
1588 /**
1589 * Notify the guest of CPU hot-unplug event.
1590 *
1591 * @returns VBox status code
1592 * @param pInterface Pointer to the interface structure containing the called function pointer.
1593 * @param idCpuCore The core id of the CPU to remove.
1594 * @param idCpuPackage The package id of the CPU to remove.
1595 */
1596 DECLR3CALLBACKMEMBER(int, pfnCpuHotUnplug, (PPDMIVMMDEVPORT pInterface, uint32_t idCpuCore, uint32_t idCpuPackage));
1597
1598 /**
1599 * Notify the guest of CPU hot-plug event.
1600 *
1601 * @returns VBox status code
1602 * @param pInterface Pointer to the interface structure containing the called function pointer.
1603 * @param idCpuCore The core id of the CPU to add.
1604 * @param idCpuPackage The package id of the CPU to add.
1605 */
1606 DECLR3CALLBACKMEMBER(int, pfnCpuHotPlug, (PPDMIVMMDEVPORT pInterface, uint32_t idCpuCore, uint32_t idCpuPackage));
1607
1608} PDMIVMMDEVPORT;
1609/** PDMIVMMDEVPORT interface ID. */
1610#define PDMIVMMDEVPORT_IID "9e004f1a-875d-11e9-a673-c77c30f53623"
1611
1612
1613/** Pointer to a HPET legacy notification interface. */
1614typedef struct PDMIHPETLEGACYNOTIFY *PPDMIHPETLEGACYNOTIFY;
1615/**
1616 * HPET legacy notification interface.
1617 */
1618typedef struct PDMIHPETLEGACYNOTIFY
1619{
1620 /**
1621 * Notify about change of HPET legacy mode.
1622 *
1623 * @param pInterface Pointer to the interface structure containing the
1624 * called function pointer.
1625 * @param fActivated If HPET legacy mode is activated (@c true) or
1626 * deactivated (@c false).
1627 */
1628 DECLR3CALLBACKMEMBER(void, pfnModeChanged,(PPDMIHPETLEGACYNOTIFY pInterface, bool fActivated));
1629} PDMIHPETLEGACYNOTIFY;
1630/** PDMIHPETLEGACYNOTIFY interface ID. */
1631#define PDMIHPETLEGACYNOTIFY_IID "c9ada595-4b65-4311-8b21-b10498997774"
1632
1633
1634/** @name Flags for PDMIVMMDEVPORT::pfnSetCredentials.
1635 * @{ */
1636/** The guest should perform a logon with the credentials. */
1637#define VMMDEV_SETCREDENTIALS_GUESTLOGON RT_BIT(0)
1638/** The guest should prevent local logons. */
1639#define VMMDEV_SETCREDENTIALS_NOLOCALLOGON RT_BIT(1)
1640/** The guest should verify the credentials. */
1641#define VMMDEV_SETCREDENTIALS_JUDGE RT_BIT(15)
1642/** @} */
1643
1644/** Forward declaration of the guest information structure. */
1645struct VBoxGuestInfo;
1646/** Forward declaration of the guest information-2 structure. */
1647struct VBoxGuestInfo2;
1648/** Forward declaration of the guest statistics structure */
1649struct VBoxGuestStatistics;
1650/** Forward declaration of the guest status structure */
1651struct VBoxGuestStatus;
1652
1653/** Forward declaration of the video accelerator command memory. */
1654struct VBVAMEMORY;
1655/** Pointer to video accelerator command memory. */
1656typedef struct VBVAMEMORY *PVBVAMEMORY;
1657
1658/** Pointer to a VMMDev connector interface. */
1659typedef struct PDMIVMMDEVCONNECTOR *PPDMIVMMDEVCONNECTOR;
1660/**
1661 * VMMDev connector interface (up).
1662 * Pair with PDMIVMMDEVPORT.
1663 */
1664typedef struct PDMIVMMDEVCONNECTOR
1665{
1666 /**
1667 * Update guest facility status.
1668 *
1669 * Called in response to VMMDevReq_ReportGuestStatus, reset or state restore.
1670 *
1671 * @param pInterface Pointer to this interface.
1672 * @param uFacility The facility.
1673 * @param uStatus The status.
1674 * @param fFlags Flags assoicated with the update. Currently
1675 * reserved and should be ignored.
1676 * @param pTimeSpecTS Pointer to the timestamp of this report.
1677 * @thread The emulation thread.
1678 */
1679 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestStatus,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t uFacility, uint16_t uStatus,
1680 uint32_t fFlags, PCRTTIMESPEC pTimeSpecTS));
1681
1682 /**
1683 * Updates a guest user state.
1684 *
1685 * Called in response to VMMDevReq_ReportGuestUserState.
1686 *
1687 * @param pInterface Pointer to this interface.
1688 * @param pszUser Guest user name to update status for.
1689 * @param pszDomain Domain the guest user is bound to. Optional.
1690 * @param uState New guest user state to notify host about.
1691 * @param pabDetails Pointer to optional state data.
1692 * @param cbDetails Size (in bytes) of optional state data.
1693 * @thread The emulation thread.
1694 */
1695 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestUserState,(PPDMIVMMDEVCONNECTOR pInterface, const char *pszUser,
1696 const char *pszDomain, uint32_t uState,
1697 const uint8_t *pabDetails, uint32_t cbDetails));
1698
1699 /**
1700 * Reports the guest API and OS version.
1701 * Called whenever the Additions issue a guest info report request.
1702 *
1703 * @param pInterface Pointer to this interface.
1704 * @param pGuestInfo Pointer to guest information structure
1705 * @thread The emulation thread.
1706 */
1707 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestInfo,(PPDMIVMMDEVCONNECTOR pInterface, const struct VBoxGuestInfo *pGuestInfo));
1708
1709 /**
1710 * Reports the detailed Guest Additions version.
1711 *
1712 * @param pInterface Pointer to this interface.
1713 * @param uFullVersion The guest additions version as a full version.
1714 * Use VBOX_FULL_VERSION_GET_MAJOR,
1715 * VBOX_FULL_VERSION_GET_MINOR and
1716 * VBOX_FULL_VERSION_GET_BUILD to access it.
1717 * (This will not be zero, so turn down the
1718 * paranoia level a notch.)
1719 * @param pszName Pointer to the sanitized version name. This can
1720 * be empty, but will not be NULL. If not empty,
1721 * it will contain a build type tag and/or a
1722 * publisher tag. If both, then they are separated
1723 * by an underscore (VBOX_VERSION_STRING fashion).
1724 * @param uRevision The SVN revision. Can be 0.
1725 * @param fFeatures Feature mask, currently none are defined.
1726 *
1727 * @thread The emulation thread.
1728 */
1729 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestInfo2,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t uFullVersion,
1730 const char *pszName, uint32_t uRevision, uint32_t fFeatures));
1731
1732 /**
1733 * Update the guest additions capabilities.
1734 * This is called when the guest additions capabilities change. The new capabilities
1735 * are given and the connector should update its internal state.
1736 *
1737 * @param pInterface Pointer to this interface.
1738 * @param newCapabilities New capabilities.
1739 * @thread The emulation thread.
1740 */
1741 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestCapabilities,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities));
1742
1743 /**
1744 * Update the mouse capabilities.
1745 * This is called when the mouse capabilities change. The new capabilities
1746 * are given and the connector should update its internal state.
1747 *
1748 * @param pInterface Pointer to this interface.
1749 * @param newCapabilities New capabilities.
1750 * @thread The emulation thread.
1751 */
1752 DECLR3CALLBACKMEMBER(void, pfnUpdateMouseCapabilities,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities));
1753
1754 /**
1755 * Update the pointer shape.
1756 * This is called when the mouse pointer shape changes. The new shape
1757 * is passed as a caller allocated buffer that will be freed after returning
1758 *
1759 * @param pInterface Pointer to this interface.
1760 * @param fVisible Visibility indicator (if false, the other parameters are undefined).
1761 * @param fAlpha Flag whether alpha channel is being passed.
1762 * @param xHot Pointer hot spot x coordinate.
1763 * @param yHot Pointer hot spot y coordinate.
1764 * @param x Pointer new x coordinate on screen.
1765 * @param y Pointer new y coordinate on screen.
1766 * @param cx Pointer width in pixels.
1767 * @param cy Pointer height in pixels.
1768 * @param cbScanline Size of one scanline in bytes.
1769 * @param pvShape New shape buffer.
1770 * @thread The emulation thread.
1771 */
1772 DECLR3CALLBACKMEMBER(void, pfnUpdatePointerShape,(PPDMIVMMDEVCONNECTOR pInterface, bool fVisible, bool fAlpha,
1773 uint32_t xHot, uint32_t yHot,
1774 uint32_t cx, uint32_t cy,
1775 void *pvShape));
1776
1777 /**
1778 * Enable or disable video acceleration on behalf of guest.
1779 *
1780 * @param pInterface Pointer to this interface.
1781 * @param fEnable Whether to enable acceleration.
1782 * @param pVbvaMemory Video accelerator memory.
1783
1784 * @return VBox rc. VINF_SUCCESS if VBVA was enabled.
1785 * @thread The emulation thread.
1786 */
1787 DECLR3CALLBACKMEMBER(int, pfnVideoAccelEnable,(PPDMIVMMDEVCONNECTOR pInterface, bool fEnable, PVBVAMEMORY pVbvaMemory));
1788
1789 /**
1790 * Force video queue processing.
1791 *
1792 * @param pInterface Pointer to this interface.
1793 * @thread The emulation thread.
1794 */
1795 DECLR3CALLBACKMEMBER(void, pfnVideoAccelFlush,(PPDMIVMMDEVCONNECTOR pInterface));
1796
1797 /**
1798 * Return whether the given video mode is supported/wanted by the host.
1799 *
1800 * @returns VBox status code
1801 * @param pInterface Pointer to this interface.
1802 * @param display The guest monitor, 0 for primary.
1803 * @param cy Video mode horizontal resolution in pixels.
1804 * @param cx Video mode vertical resolution in pixels.
1805 * @param cBits Video mode bits per pixel.
1806 * @param pfSupported Where to put the indicator for whether this mode is supported. (output)
1807 * @thread The emulation thread.
1808 */
1809 DECLR3CALLBACKMEMBER(int, pfnVideoModeSupported,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t display, uint32_t cx, uint32_t cy, uint32_t cBits, bool *pfSupported));
1810
1811 /**
1812 * Queries by how many pixels the height should be reduced when calculating video modes
1813 *
1814 * @returns VBox status code
1815 * @param pInterface Pointer to this interface.
1816 * @param pcyReduction Pointer to the result value.
1817 * @thread The emulation thread.
1818 */
1819 DECLR3CALLBACKMEMBER(int, pfnGetHeightReduction,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pcyReduction));
1820
1821 /**
1822 * Informs about a credentials judgement result from the guest.
1823 *
1824 * @returns VBox status code
1825 * @param pInterface Pointer to this interface.
1826 * @param fFlags Judgement result flags.
1827 * @thread The emulation thread.
1828 */
1829 DECLR3CALLBACKMEMBER(int, pfnSetCredentialsJudgementResult,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t fFlags));
1830
1831 /**
1832 * Set the visible region of the display
1833 *
1834 * @returns VBox status code.
1835 * @param pInterface Pointer to this interface.
1836 * @param cRect Number of rectangles in pRect
1837 * @param pRect Rectangle array
1838 * @thread The emulation thread.
1839 */
1840 DECLR3CALLBACKMEMBER(int, pfnSetVisibleRegion,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t cRect, PRTRECT pRect));
1841
1842 /**
1843 * Update monitor positions (offsets). Passing monitor positions from the guest to host
1844 * exclusively since vmwgfx fails to do so (thru FIFO).
1845 *
1846 * @returns VBox status code.
1847 * @param pInterface Pointer to this interface.
1848 * @param cPositions Number of monitor positions
1849 * @param pPosition Positions array
1850 * @thread The emulation thread.
1851 *
1852 * @remarks Is allowed to be NULL.
1853 */
1854 DECLR3CALLBACKMEMBER(int, pfnUpdateMonitorPositions,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t cPositions, PRTPOINT pPosition));
1855
1856 /**
1857 * Query the visible region of the display
1858 *
1859 * @returns VBox status code.
1860 * @param pInterface Pointer to this interface.
1861 * @param pcRects Where to return the number of rectangles in
1862 * paRects.
1863 * @param paRects Rectangle array (set to NULL to query the number
1864 * of rectangles)
1865 * @thread The emulation thread.
1866 */
1867 DECLR3CALLBACKMEMBER(int, pfnQueryVisibleRegion,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pcRects, PRTRECT paRects));
1868
1869 /**
1870 * Request the statistics interval
1871 *
1872 * @returns VBox status code.
1873 * @param pInterface Pointer to this interface.
1874 * @param pulInterval Pointer to interval in seconds
1875 * @thread The emulation thread.
1876 */
1877 DECLR3CALLBACKMEMBER(int, pfnQueryStatisticsInterval,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pulInterval));
1878
1879 /**
1880 * Report new guest statistics
1881 *
1882 * @returns VBox status code.
1883 * @param pInterface Pointer to this interface.
1884 * @param pGuestStats Guest statistics
1885 * @thread The emulation thread.
1886 */
1887 DECLR3CALLBACKMEMBER(int, pfnReportStatistics,(PPDMIVMMDEVCONNECTOR pInterface, struct VBoxGuestStatistics *pGuestStats));
1888
1889 /**
1890 * Query the current balloon size
1891 *
1892 * @returns VBox status code.
1893 * @param pInterface Pointer to this interface.
1894 * @param pcbBalloon Balloon size
1895 * @thread The emulation thread.
1896 */
1897 DECLR3CALLBACKMEMBER(int, pfnQueryBalloonSize,(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pcbBalloon));
1898
1899 /**
1900 * Query the current page fusion setting
1901 *
1902 * @returns VBox status code.
1903 * @param pInterface Pointer to this interface.
1904 * @param pfPageFusionEnabled Pointer to boolean
1905 * @thread The emulation thread.
1906 */
1907 DECLR3CALLBACKMEMBER(int, pfnIsPageFusionEnabled,(PPDMIVMMDEVCONNECTOR pInterface, bool *pfPageFusionEnabled));
1908
1909} PDMIVMMDEVCONNECTOR;
1910/** PDMIVMMDEVCONNECTOR interface ID. */
1911#define PDMIVMMDEVCONNECTOR_IID "aff90240-a443-434e-9132-80c186ab97d4"
1912
1913
1914/**
1915 * Generic status LED core.
1916 * Note that a unit doesn't have to support all the indicators.
1917 */
1918typedef union PDMLEDCORE
1919{
1920 /** 32-bit view. */
1921 uint32_t volatile u32;
1922 /** Bit view. */
1923 struct
1924 {
1925 /** Reading/Receiving indicator. */
1926 uint32_t fReading : 1;
1927 /** Writing/Sending indicator. */
1928 uint32_t fWriting : 1;
1929 /** Busy indicator. */
1930 uint32_t fBusy : 1;
1931 /** Error indicator. */
1932 uint32_t fError : 1;
1933 } s;
1934} PDMLEDCORE;
1935
1936/** LED bit masks for the u32 view.
1937 * @{ */
1938/** Reading/Receiving indicator. */
1939#define PDMLED_READING RT_BIT(0)
1940/** Writing/Sending indicator. */
1941#define PDMLED_WRITING RT_BIT(1)
1942/** Busy indicator. */
1943#define PDMLED_BUSY RT_BIT(2)
1944/** Error indicator. */
1945#define PDMLED_ERROR RT_BIT(3)
1946/** @} */
1947
1948
1949/**
1950 * Generic status LED.
1951 * Note that a unit doesn't have to support all the indicators.
1952 */
1953typedef struct PDMLED
1954{
1955 /** Just a magic for sanity checking. */
1956 uint32_t u32Magic;
1957 uint32_t u32Alignment; /**< structure size alignment. */
1958 /** The actual LED status.
1959 * Only the device is allowed to change this. */
1960 PDMLEDCORE Actual;
1961 /** The asserted LED status which is cleared by the reader.
1962 * The device will assert the bits but never clear them.
1963 * The driver clears them as it sees fit. */
1964 PDMLEDCORE Asserted;
1965} PDMLED;
1966
1967/** Pointer to an LED. */
1968typedef PDMLED *PPDMLED;
1969/** Pointer to a const LED. */
1970typedef const PDMLED *PCPDMLED;
1971
1972/** Magic value for PDMLED::u32Magic. */
1973#define PDMLED_MAGIC UINT32_C(0x11335577)
1974
1975/** Pointer to an LED ports interface. */
1976typedef struct PDMILEDPORTS *PPDMILEDPORTS;
1977/**
1978 * Interface for exporting LEDs (down).
1979 * Pair with PDMILEDCONNECTORS.
1980 */
1981typedef struct PDMILEDPORTS
1982{
1983 /**
1984 * Gets the pointer to the status LED of a unit.
1985 *
1986 * @returns VBox status code.
1987 * @param pInterface Pointer to the interface structure containing the called function pointer.
1988 * @param iLUN The unit which status LED we desire.
1989 * @param ppLed Where to store the LED pointer.
1990 */
1991 DECLR3CALLBACKMEMBER(int, pfnQueryStatusLed,(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed));
1992
1993} PDMILEDPORTS;
1994/** PDMILEDPORTS interface ID. */
1995#define PDMILEDPORTS_IID "435e0cec-8549-4ca0-8c0d-98e52f1dc038"
1996
1997
1998/** Pointer to an LED connectors interface. */
1999typedef struct PDMILEDCONNECTORS *PPDMILEDCONNECTORS;
2000/**
2001 * Interface for reading LEDs (up).
2002 * Pair with PDMILEDPORTS.
2003 */
2004typedef struct PDMILEDCONNECTORS
2005{
2006 /**
2007 * Notification about a unit which have been changed.
2008 *
2009 * The driver must discard any pointers to data owned by
2010 * the unit and requery it.
2011 *
2012 * @param pInterface Pointer to the interface structure containing the called function pointer.
2013 * @param iLUN The unit number.
2014 */
2015 DECLR3CALLBACKMEMBER(void, pfnUnitChanged,(PPDMILEDCONNECTORS pInterface, unsigned iLUN));
2016} PDMILEDCONNECTORS;
2017/** PDMILEDCONNECTORS interface ID. */
2018#define PDMILEDCONNECTORS_IID "8ed63568-82a7-4193-b57b-db8085ac4495"
2019
2020
2021/** Pointer to a Media Notification interface. */
2022typedef struct PDMIMEDIANOTIFY *PPDMIMEDIANOTIFY;
2023/**
2024 * Interface for exporting Medium eject information (up). No interface pair.
2025 */
2026typedef struct PDMIMEDIANOTIFY
2027{
2028 /**
2029 * Signals that the medium was ejected.
2030 *
2031 * @returns VBox status code.
2032 * @param pInterface Pointer to the interface structure containing the called function pointer.
2033 * @param iLUN The unit which had the medium ejected.
2034 */
2035 DECLR3CALLBACKMEMBER(int, pfnEjected,(PPDMIMEDIANOTIFY pInterface, unsigned iLUN));
2036
2037} PDMIMEDIANOTIFY;
2038/** PDMIMEDIANOTIFY interface ID. */
2039#define PDMIMEDIANOTIFY_IID "fc22d53e-feb1-4a9c-b9fb-0a990a6ab288"
2040
2041
2042/** The special status unit number */
2043#define PDM_STATUS_LUN 999
2044
2045
2046#ifdef VBOX_WITH_HGCM
2047
2048/** Abstract HGCM command structure. Used only to define a typed pointer. */
2049struct VBOXHGCMCMD;
2050
2051/** Pointer to HGCM command structure. This pointer is unique and identifies
2052 * the command being processed. The pointer is passed to HGCM connector methods,
2053 * and must be passed back to HGCM port when command is completed.
2054 */
2055typedef struct VBOXHGCMCMD *PVBOXHGCMCMD;
2056
2057/** Pointer to a HGCM port interface. */
2058typedef struct PDMIHGCMPORT *PPDMIHGCMPORT;
2059/**
2060 * Host-Guest communication manager port interface (down). Normally implemented
2061 * by VMMDev.
2062 * Pair with PDMIHGCMCONNECTOR.
2063 */
2064typedef struct PDMIHGCMPORT
2065{
2066 /**
2067 * Notify the guest on a command completion.
2068 *
2069 * @returns VINF_SUCCESS or VERR_CANCELLED if the guest canceled the call.
2070 * @param pInterface Pointer to this interface.
2071 * @param rc The return code (VBox error code).
2072 * @param pCmd A pointer that identifies the completed command.
2073 */
2074 DECLR3CALLBACKMEMBER(int, pfnCompleted,(PPDMIHGCMPORT pInterface, int32_t rc, PVBOXHGCMCMD pCmd));
2075
2076 /**
2077 * Checks if @a pCmd was restored & resubmitted from saved state.
2078 *
2079 * @returns true if restored, false if not.
2080 * @param pInterface Pointer to this interface.
2081 * @param pCmd The command we're checking on.
2082 */
2083 DECLR3CALLBACKMEMBER(bool, pfnIsCmdRestored,(PPDMIHGCMPORT pInterface, PVBOXHGCMCMD pCmd));
2084
2085 /**
2086 * Checks if @a pCmd was cancelled.
2087 *
2088 * @returns true if cancelled, false if not.
2089 * @param pInterface Pointer to this interface.
2090 * @param pCmd The command we're checking on.
2091 */
2092 DECLR3CALLBACKMEMBER(bool, pfnIsCmdCancelled,(PPDMIHGCMPORT pInterface, PVBOXHGCMCMD pCmd));
2093
2094 /**
2095 * Gets the VMMDevRequestHeader::fRequestor value for @a pCmd.
2096 *
2097 * @returns The fRequestor value, VMMDEV_REQUESTOR_LEGACY if guest does not
2098 * support it, VMMDEV_REQUESTOR_LOWEST if invalid parameters.
2099 * @param pInterface Pointer to this interface.
2100 * @param pCmd The command we're in checking on.
2101 */
2102 DECLR3CALLBACKMEMBER(uint32_t, pfnGetRequestor,(PPDMIHGCMPORT pInterface, PVBOXHGCMCMD pCmd));
2103
2104 /**
2105 * Gets the VMMDevState::idSession value.
2106 *
2107 * @returns VMMDevState::idSession.
2108 * @param pInterface Pointer to this interface.
2109 */
2110 DECLR3CALLBACKMEMBER(uint64_t, pfnGetVMMDevSessionId,(PPDMIHGCMPORT pInterface));
2111
2112} PDMIHGCMPORT;
2113/** PDMIHGCMPORT interface ID. */
2114# define PDMIHGCMPORT_IID "28c0a201-68cd-4752-9404-bb42a0c09eb7"
2115
2116/* forward decl to hgvmsvc.h. */
2117struct VBOXHGCMSVCPARM;
2118/** Pointer to a HGCM service location structure. */
2119typedef struct HGCMSERVICELOCATION *PHGCMSERVICELOCATION;
2120/** Pointer to a HGCM connector interface. */
2121typedef struct PDMIHGCMCONNECTOR *PPDMIHGCMCONNECTOR;
2122/**
2123 * The Host-Guest communication manager connector interface (up). Normally
2124 * implemented by Main::VMMDevInterface.
2125 * Pair with PDMIHGCMPORT.
2126 */
2127typedef struct PDMIHGCMCONNECTOR
2128{
2129 /**
2130 * Locate a service and inform it about a client connection.
2131 *
2132 * @param pInterface Pointer to this interface.
2133 * @param pCmd A pointer that identifies the command.
2134 * @param pServiceLocation Pointer to the service location structure.
2135 * @param pu32ClientID Where to store the client id for the connection.
2136 * @return VBox status code.
2137 * @thread The emulation thread.
2138 */
2139 DECLR3CALLBACKMEMBER(int, pfnConnect,(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, PHGCMSERVICELOCATION pServiceLocation, uint32_t *pu32ClientID));
2140
2141 /**
2142 * Disconnect from service.
2143 *
2144 * @param pInterface Pointer to this interface.
2145 * @param pCmd A pointer that identifies the command.
2146 * @param u32ClientID The client id returned by the pfnConnect call.
2147 * @return VBox status code.
2148 * @thread The emulation thread.
2149 */
2150 DECLR3CALLBACKMEMBER(int, pfnDisconnect,(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t u32ClientID));
2151
2152 /**
2153 * Process a guest issued command.
2154 *
2155 * @param pInterface Pointer to this interface.
2156 * @param pCmd A pointer that identifies the command.
2157 * @param u32ClientID The client id returned by the pfnConnect call.
2158 * @param u32Function Function to be performed by the service.
2159 * @param cParms Number of parameters in the array pointed to by paParams.
2160 * @param paParms Pointer to an array of parameters.
2161 * @param tsArrival The STAM_GET_TS() value when the request arrived.
2162 * @return VBox status code.
2163 * @thread The emulation thread.
2164 */
2165 DECLR3CALLBACKMEMBER(int, pfnCall,(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t u32ClientID, uint32_t u32Function,
2166 uint32_t cParms, struct VBOXHGCMSVCPARM *paParms, uint64_t tsArrival));
2167
2168 /**
2169 * Notification about the guest cancelling a pending request.
2170 * @param pInterface Pointer to this interface.
2171 * @param pCmd A pointer that identifies the command.
2172 * @param idclient The client id returned by the pfnConnect call.
2173 */
2174 DECLR3CALLBACKMEMBER(void, pfnCancelled,(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t idClient));
2175
2176} PDMIHGCMCONNECTOR;
2177/** PDMIHGCMCONNECTOR interface ID. */
2178# define PDMIHGCMCONNECTOR_IID "33cb5c91-6a4a-4ad9-3fec-d1f7d413c4a5"
2179
2180#endif /* VBOX_WITH_HGCM */
2181
2182
2183/** Pointer to a display VBVA callbacks interface. */
2184typedef struct PDMIDISPLAYVBVACALLBACKS *PPDMIDISPLAYVBVACALLBACKS;
2185/**
2186 * Display VBVA callbacks interface (up).
2187 */
2188typedef struct PDMIDISPLAYVBVACALLBACKS
2189{
2190
2191 /**
2192 * Informs guest about completion of processing the given Video HW Acceleration
2193 * command, does not wait for the guest to process the command.
2194 *
2195 * @returns ???
2196 * @param pInterface Pointer to this interface.
2197 * @param pCmd The Video HW Acceleration Command that was
2198 * completed.
2199 */
2200 DECLR3CALLBACKMEMBER(int, pfnVHWACommandCompleteAsync,(PPDMIDISPLAYVBVACALLBACKS pInterface,
2201 VBOXVHWACMD RT_UNTRUSTED_VOLATILE_GUEST *pCmd));
2202} PDMIDISPLAYVBVACALLBACKS;
2203/** PDMIDISPLAYVBVACALLBACKS */
2204#define PDMIDISPLAYVBVACALLBACKS_IID "37f34c9c-0491-47dc-a0b3-81697c44a416"
2205
2206/** Pointer to a PCI raw connector interface. */
2207typedef struct PDMIPCIRAWCONNECTOR *PPDMIPCIRAWCONNECTOR;
2208/**
2209 * PCI raw connector interface (up).
2210 */
2211typedef struct PDMIPCIRAWCONNECTOR
2212{
2213
2214 /**
2215 *
2216 */
2217 DECLR3CALLBACKMEMBER(int, pfnDeviceConstructComplete, (PPDMIPCIRAWCONNECTOR pInterface, const char *pcszName,
2218 uint32_t uHostPciAddress, uint32_t uGuestPciAddress,
2219 int rc));
2220
2221} PDMIPCIRAWCONNECTOR;
2222/** PDMIPCIRAWCONNECTOR interface ID. */
2223#define PDMIPCIRAWCONNECTOR_IID "14aa9c6c-8869-4782-9dfc-910071a6aebf"
2224
2225/** @} */
2226
2227RT_C_DECLS_END
2228
2229#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