VirtualBox

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

Last change on this file since 76585 was 76585, checked in by vboxsync, 6 years ago

*: scm --fix-header-guard-endif

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