VirtualBox

source: vbox/trunk/src/VBox/Main/DisplayImpl.cpp@ 28240

Last change on this file since 28240 was 28240, checked in by vboxsync, 15 years ago

IDisplay::InvalidateAndUpdate for multimonitor, DrawToScreen fix for non 32 bpp guest modes, DevVGA::DisplayBlt should not align source bitmap width. (xTracker 4655)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 121.5 KB
Line 
1/* $Id: DisplayImpl.cpp 28240 2010-04-13 10:26:44Z vboxsync $ */
2/** @file
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#include "DisplayImpl.h"
23#include "ConsoleImpl.h"
24#include "ConsoleVRDPServer.h"
25#include "VMMDev.h"
26
27#include "AutoCaller.h"
28#include "Logging.h"
29
30#include <iprt/semaphore.h>
31#include <iprt/thread.h>
32#include <iprt/asm.h>
33
34#include <VBox/pdmdrv.h>
35#ifdef DEBUG /* for VM_ASSERT_EMT(). */
36# include <VBox/vm.h>
37#endif
38
39#ifdef VBOX_WITH_VIDEOHWACCEL
40# include <VBox/VBoxVideo.h>
41#endif
42
43#ifdef VBOX_WITH_CROGL
44# include <VBox/HostServices/VBoxCrOpenGLSvc.h>
45#endif
46
47#include <VBox/com/array.h>
48#include <png.h>
49
50/**
51 * Display driver instance data.
52 *
53 * @implements PDMIDISPLAYCONNECTOR
54 */
55typedef struct DRVMAINDISPLAY
56{
57 /** Pointer to the display object. */
58 Display *pDisplay;
59 /** Pointer to the driver instance structure. */
60 PPDMDRVINS pDrvIns;
61 /** Pointer to the keyboard port interface of the driver/device above us. */
62 PPDMIDISPLAYPORT pUpPort;
63 /** Our display connector interface. */
64 PDMIDISPLAYCONNECTOR IConnector;
65#if defined(VBOX_WITH_VIDEOHWACCEL)
66 /** VBVA callbacks */
67 PPDMIDISPLAYVBVACALLBACKS pVBVACallbacks;
68#endif
69} DRVMAINDISPLAY, *PDRVMAINDISPLAY;
70
71/** Converts PDMIDISPLAYCONNECTOR pointer to a DRVMAINDISPLAY pointer. */
72#define PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface) RT_FROM_MEMBER(pInterface, DRVMAINDISPLAY, IConnector)
73
74#ifdef DEBUG_sunlover
75static STAMPROFILE StatDisplayRefresh;
76static int stam = 0;
77#endif /* DEBUG_sunlover */
78
79// constructor / destructor
80/////////////////////////////////////////////////////////////////////////////
81
82Display::Display()
83 : mParent(NULL)
84{
85}
86
87Display::~Display()
88{
89}
90
91
92HRESULT Display::FinalConstruct()
93{
94 mpVbvaMemory = NULL;
95 mfVideoAccelEnabled = false;
96 mfVideoAccelVRDP = false;
97 mfu32SupportedOrders = 0;
98 mcVideoAccelVRDPRefs = 0;
99
100 mpPendingVbvaMemory = NULL;
101 mfPendingVideoAccelEnable = false;
102
103 mfMachineRunning = false;
104
105 mpu8VbvaPartial = NULL;
106 mcbVbvaPartial = 0;
107
108 mpDrv = NULL;
109 mpVMMDev = NULL;
110 mfVMMDevInited = false;
111
112 mLastAddress = NULL;
113 mLastBytesPerLine = 0;
114 mLastBitsPerPixel = 0,
115 mLastWidth = 0;
116 mLastHeight = 0;
117
118#ifdef VBOX_WITH_OLD_VBVA_LOCK
119 int rc = RTCritSectInit(&mVBVALock);
120 AssertRC(rc);
121 mfu32PendingVideoAccelDisable = false;
122#endif /* VBOX_WITH_OLD_VBVA_LOCK */
123
124#ifdef VBOX_WITH_HGSMI
125 mu32UpdateVBVAFlags = 0;
126#endif
127
128 return S_OK;
129}
130
131void Display::FinalRelease()
132{
133 uninit();
134
135#ifdef VBOX_WITH_OLD_VBVA_LOCK
136 if (RTCritSectIsInitialized (&mVBVALock))
137 {
138 RTCritSectDelete (&mVBVALock);
139 memset (&mVBVALock, 0, sizeof (mVBVALock));
140 }
141#endif /* VBOX_WITH_OLD_VBVA_LOCK */
142}
143
144// public initializer/uninitializer for internal purposes only
145/////////////////////////////////////////////////////////////////////////////
146
147#define sSSMDisplayScreenshotVer 0x00010001
148#define sSSMDisplayVer 0x00010001
149
150#define kMaxSizePNG 1024
151#define kMaxSizeThumbnail 64
152
153/**
154 * Save thumbnail and screenshot of the guest screen.
155 */
156static int displayMakeThumbnail(uint8_t *pu8Data, uint32_t cx, uint32_t cy,
157 uint8_t **ppu8Thumbnail, uint32_t *pcbThumbnail, uint32_t *pcxThumbnail, uint32_t *pcyThumbnail)
158{
159 int rc = VINF_SUCCESS;
160
161 uint8_t *pu8Thumbnail = NULL;
162 uint32_t cbThumbnail = 0;
163 uint32_t cxThumbnail = 0;
164 uint32_t cyThumbnail = 0;
165
166 if (cx > cy)
167 {
168 cxThumbnail = kMaxSizeThumbnail;
169 cyThumbnail = (kMaxSizeThumbnail * cy) / cx;
170 }
171 else
172 {
173 cyThumbnail = kMaxSizeThumbnail;
174 cxThumbnail = (kMaxSizeThumbnail * cx) / cy;
175 }
176
177 LogFlowFunc(("%dx%d -> %dx%d\n", cx, cy, cxThumbnail, cyThumbnail));
178
179 cbThumbnail = cxThumbnail * 4 * cyThumbnail;
180 pu8Thumbnail = (uint8_t *)RTMemAlloc(cbThumbnail);
181
182 if (pu8Thumbnail)
183 {
184 uint8_t *dst = pu8Thumbnail;
185 uint8_t *src = pu8Data;
186 int dstX = 0;
187 int dstY = 0;
188 int srcX = 0;
189 int srcY = 0;
190 int dstW = cxThumbnail;
191 int dstH = cyThumbnail;
192 int srcW = cx;
193 int srcH = cy;
194 gdImageCopyResampled (dst,
195 src,
196 dstX, dstY,
197 srcX, srcY,
198 dstW, dstH, srcW, srcH);
199
200 *ppu8Thumbnail = pu8Thumbnail;
201 *pcbThumbnail = cbThumbnail;
202 *pcxThumbnail = cxThumbnail;
203 *pcyThumbnail = cyThumbnail;
204 }
205 else
206 {
207 rc = VERR_NO_MEMORY;
208 }
209
210 return rc;
211}
212
213typedef struct PNGWriteCtx
214{
215 uint8_t *pu8PNG;
216 uint32_t cbPNG;
217 uint32_t cbAllocated;
218 int rc;
219} PNGWriteCtx;
220
221static void PNGAPI png_write_data_fn(png_structp png_ptr, png_bytep p, png_size_t cb)
222{
223 PNGWriteCtx *pCtx = (PNGWriteCtx *)png_get_io_ptr(png_ptr);
224 LogFlowFunc(("png_ptr %p, p %p, cb %d, pCtx %p\n", png_ptr, p, cb, pCtx));
225
226 if (pCtx && RT_SUCCESS(pCtx->rc))
227 {
228 if (pCtx->cbAllocated - pCtx->cbPNG < cb)
229 {
230 uint32_t cbNew = pCtx->cbPNG + (uint32_t)cb;
231 AssertReturnVoidStmt(cbNew > pCtx->cbPNG && cbNew <= _1G, pCtx->rc = VERR_TOO_MUCH_DATA);
232 cbNew = RT_ALIGN_32(cbNew, 4096) + 4096;
233
234 void *pNew = RTMemRealloc(pCtx->pu8PNG, cbNew);
235 if (!pNew)
236 {
237 pCtx->rc = VERR_NO_MEMORY;
238 return;
239 }
240
241 pCtx->pu8PNG = (uint8_t *)pNew;
242 pCtx->cbAllocated = cbNew;
243 }
244
245 memcpy(pCtx->pu8PNG + pCtx->cbPNG, p, cb);
246 pCtx->cbPNG += (uint32_t)cb;
247 }
248}
249
250static void PNGAPI png_output_flush_fn(png_structp png_ptr)
251{
252 NOREF(png_ptr);
253 /* Do nothing. */
254}
255
256static int displayMakePNG(uint8_t *pu8Data, uint32_t cx, uint32_t cy,
257 uint8_t **ppu8PNG, uint32_t *pcbPNG, uint32_t *pcxPNG, uint32_t *pcyPNG)
258{
259 int rc = VINF_SUCCESS;
260
261 uint8_t * volatile pu8Bitmap = NULL; /* gcc setjmp warning */
262 uint32_t volatile cbBitmap = 0; /* gcc setjmp warning */
263 uint32_t volatile cxBitmap = 0; /* gcc setjmp warning */
264 uint32_t volatile cyBitmap = 0; /* gcc setjmp warning */
265
266 if (cx < kMaxSizePNG && cy < kMaxSizePNG)
267 {
268 /* Save unscaled screenshot. */
269 pu8Bitmap = pu8Data;
270 cbBitmap = cx * 4 * cy;
271 cxBitmap = cx;
272 cyBitmap = cy;
273 }
274 else
275 {
276 /* Large screenshot, scale. */
277 if (cx > cy)
278 {
279 cxBitmap = kMaxSizePNG;
280 cyBitmap = (kMaxSizePNG * cy) / cx;
281 }
282 else
283 {
284 cyBitmap = kMaxSizePNG;
285 cxBitmap = (kMaxSizePNG * cx) / cy;
286 }
287
288 cbBitmap = cxBitmap * 4 * cyBitmap;
289
290 pu8Bitmap = (uint8_t *)RTMemAlloc(cbBitmap);
291
292 if (pu8Bitmap)
293 {
294 uint8_t *dst = pu8Bitmap;
295 uint8_t *src = pu8Data;
296 int dstX = 0;
297 int dstY = 0;
298 int srcX = 0;
299 int srcY = 0;
300 int dstW = cxBitmap;
301 int dstH = cyBitmap;
302 int srcW = cx;
303 int srcH = cy;
304 gdImageCopyResampled (dst,
305 src,
306 dstX, dstY,
307 srcX, srcY,
308 dstW, dstH, srcW, srcH);
309 }
310 else
311 {
312 rc = VERR_NO_MEMORY;
313 }
314 }
315
316 LogFlowFunc(("%dx%d -> %dx%d\n", cx, cy, cxBitmap, cyBitmap));
317
318 if (RT_SUCCESS(rc))
319 {
320 png_bytep *row_pointers = (png_bytep *)RTMemAlloc(cyBitmap * sizeof(png_bytep));
321 if (row_pointers)
322 {
323 png_infop info_ptr = NULL;
324 png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING,
325 (png_voidp)NULL, /* error/warning context pointer */
326 (png_error_ptr)NULL, /* error function */
327 (png_error_ptr)NULL /* warning function */);
328 if (png_ptr)
329 {
330 info_ptr = png_create_info_struct(png_ptr);
331 if (info_ptr)
332 {
333 if (!setjmp(png_jmpbuf(png_ptr)))
334 {
335 PNGWriteCtx ctx;
336 ctx.pu8PNG = NULL;
337 ctx.cbPNG = 0;
338 ctx.cbAllocated = 0;
339 ctx.rc = VINF_SUCCESS;
340
341 png_set_write_fn(png_ptr,
342 (voidp)&ctx,
343 png_write_data_fn,
344 png_output_flush_fn);
345
346 png_set_IHDR(png_ptr, info_ptr,
347 cxBitmap, cyBitmap,
348 8, PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE,
349 PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
350
351 png_bytep row_pointer = (png_bytep)pu8Bitmap;
352 unsigned i = 0;
353 for (; i < cyBitmap; i++, row_pointer += cxBitmap * 4)
354 {
355 row_pointers[i] = row_pointer;
356 }
357 png_set_rows(png_ptr, info_ptr, &row_pointers[0]);
358
359 png_write_info(png_ptr, info_ptr);
360 png_set_filler(png_ptr, 0, PNG_FILLER_AFTER);
361 png_set_bgr(png_ptr);
362
363 if (info_ptr->valid & PNG_INFO_IDAT)
364 png_write_image(png_ptr, info_ptr->row_pointers);
365
366 png_write_end(png_ptr, info_ptr);
367
368 rc = ctx.rc;
369
370 if (RT_SUCCESS(rc))
371 {
372 *ppu8PNG = ctx.pu8PNG;
373 *pcbPNG = ctx.cbPNG;
374 *pcxPNG = cxBitmap;
375 *pcyPNG = cyBitmap;
376 LogFlowFunc(("PNG %d bytes, bitmap %d bytes\n", ctx.cbPNG, cbBitmap));
377 }
378 }
379 else
380 {
381 rc = VERR_GENERAL_FAILURE; /* Something within libpng. */
382 }
383 }
384 else
385 {
386 rc = VERR_NO_MEMORY;
387 }
388
389 png_destroy_write_struct(&png_ptr, info_ptr ? &info_ptr
390 : (png_infopp)NULL);
391 }
392 else
393 {
394 rc = VERR_NO_MEMORY;
395 }
396
397 RTMemFree(row_pointers);
398 }
399 else
400 {
401 rc = VERR_NO_MEMORY;
402 }
403 }
404
405 if (pu8Bitmap && pu8Bitmap != pu8Data)
406 {
407 RTMemFree(pu8Bitmap);
408 }
409
410 return rc;
411
412}
413
414DECLCALLBACK(void)
415Display::displaySSMSaveScreenshot(PSSMHANDLE pSSM, void *pvUser)
416{
417 Display *that = static_cast<Display*>(pvUser);
418
419 /* 32bpp small RGB image. */
420 uint8_t *pu8Thumbnail = NULL;
421 uint32_t cbThumbnail = 0;
422 uint32_t cxThumbnail = 0;
423 uint32_t cyThumbnail = 0;
424
425 /* PNG screenshot. */
426 uint8_t *pu8PNG = NULL;
427 uint32_t cbPNG = 0;
428 uint32_t cxPNG = 0;
429 uint32_t cyPNG = 0;
430
431 Console::SafeVMPtr pVM (that->mParent);
432 if (SUCCEEDED(pVM.rc()))
433 {
434 /* Query RGB bitmap. */
435 uint8_t *pu8Data = NULL;
436 size_t cbData = 0;
437 uint32_t cx = 0;
438 uint32_t cy = 0;
439
440 /* SSM code is executed on EMT(0), therefore no need to use VMR3ReqCallWait. */
441#ifdef VBOX_WITH_OLD_VBVA_LOCK
442 int rc = Display::displayTakeScreenshotEMT(that, &pu8Data, &cbData, &cx, &cy);
443#else
444 int rc = that->mpDrv->pUpPort->pfnTakeScreenshot (that->mpDrv->pUpPort, &pu8Data, &cbData, &cx, &cy);
445#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
446
447 /*
448 * It is possible that success is returned but everything is 0 or NULL.
449 * (no display attached if a VM is running with VBoxHeadless on OSE for example)
450 */
451 if (RT_SUCCESS(rc) && pu8Data)
452 {
453 Assert(cx && cy);
454
455 /* Prepare a small thumbnail and a PNG screenshot. */
456 displayMakeThumbnail(pu8Data, cx, cy, &pu8Thumbnail, &cbThumbnail, &cxThumbnail, &cyThumbnail);
457 displayMakePNG(pu8Data, cx, cy, &pu8PNG, &cbPNG, &cxPNG, &cyPNG);
458
459 /* This can be called from any thread. */
460 that->mpDrv->pUpPort->pfnFreeScreenshot (that->mpDrv->pUpPort, pu8Data);
461 }
462 }
463 else
464 {
465 LogFunc(("Failed to get VM pointer 0x%x\n", pVM.rc()));
466 }
467
468 /* Regardless of rc, save what is available:
469 * Data format:
470 * uint32_t cBlocks;
471 * [blocks]
472 *
473 * Each block is:
474 * uint32_t cbBlock; if 0 - no 'block data'.
475 * uint32_t typeOfBlock; 0 - 32bpp RGB bitmap, 1 - PNG, ignored if 'cbBlock' is 0.
476 * [block data]
477 *
478 * Block data for bitmap and PNG:
479 * uint32_t cx;
480 * uint32_t cy;
481 * [image data]
482 */
483 SSMR3PutU32(pSSM, 2); /* Write thumbnail and PNG screenshot. */
484
485 /* First block. */
486 SSMR3PutU32(pSSM, cbThumbnail + 2 * sizeof (uint32_t));
487 SSMR3PutU32(pSSM, 0); /* Block type: thumbnail. */
488
489 if (cbThumbnail)
490 {
491 SSMR3PutU32(pSSM, cxThumbnail);
492 SSMR3PutU32(pSSM, cyThumbnail);
493 SSMR3PutMem(pSSM, pu8Thumbnail, cbThumbnail);
494 }
495
496 /* Second block. */
497 SSMR3PutU32(pSSM, cbPNG + 2 * sizeof (uint32_t));
498 SSMR3PutU32(pSSM, 1); /* Block type: png. */
499
500 if (cbPNG)
501 {
502 SSMR3PutU32(pSSM, cxPNG);
503 SSMR3PutU32(pSSM, cyPNG);
504 SSMR3PutMem(pSSM, pu8PNG, cbPNG);
505 }
506
507 RTMemFree(pu8PNG);
508 RTMemFree(pu8Thumbnail);
509}
510
511DECLCALLBACK(int)
512Display::displaySSMLoadScreenshot(PSSMHANDLE pSSM, void *pvUser, uint32_t uVersion, uint32_t uPass)
513{
514 Display *that = static_cast<Display*>(pvUser);
515
516 if (uVersion != sSSMDisplayScreenshotVer)
517 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
518 Assert(uPass == SSM_PASS_FINAL); NOREF(uPass);
519
520 /* Skip data. */
521 uint32_t cBlocks;
522 int rc = SSMR3GetU32(pSSM, &cBlocks);
523 AssertRCReturn(rc, rc);
524
525 for (uint32_t i = 0; i < cBlocks; i++)
526 {
527 uint32_t cbBlock;
528 rc = SSMR3GetU32(pSSM, &cbBlock);
529 AssertRCBreak(rc);
530
531 uint32_t typeOfBlock;
532 rc = SSMR3GetU32(pSSM, &typeOfBlock);
533 AssertRCBreak(rc);
534
535 LogFlowFunc(("[%d] type %d, size %d bytes\n", i, typeOfBlock, cbBlock));
536
537 /* Note: displaySSMSaveScreenshot writes size of a block = 8 and
538 * do not write any data if the image size was 0.
539 * @todo Fix and increase saved state version.
540 */
541 if (cbBlock > 2 * sizeof (uint32_t))
542 {
543 rc = SSMR3Skip(pSSM, cbBlock);
544 AssertRCBreak(rc);
545 }
546 }
547
548 return rc;
549}
550
551/**
552 * Save/Load some important guest state
553 */
554DECLCALLBACK(void)
555Display::displaySSMSave(PSSMHANDLE pSSM, void *pvUser)
556{
557 Display *that = static_cast<Display*>(pvUser);
558
559 SSMR3PutU32(pSSM, that->mcMonitors);
560 for (unsigned i = 0; i < that->mcMonitors; i++)
561 {
562 SSMR3PutU32(pSSM, that->maFramebuffers[i].u32Offset);
563 SSMR3PutU32(pSSM, that->maFramebuffers[i].u32MaxFramebufferSize);
564 SSMR3PutU32(pSSM, that->maFramebuffers[i].u32InformationSize);
565 }
566}
567
568DECLCALLBACK(int)
569Display::displaySSMLoad(PSSMHANDLE pSSM, void *pvUser, uint32_t uVersion, uint32_t uPass)
570{
571 Display *that = static_cast<Display*>(pvUser);
572
573 if (uVersion != sSSMDisplayVer)
574 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
575 Assert(uPass == SSM_PASS_FINAL); NOREF(uPass);
576
577 uint32_t cMonitors;
578 int rc = SSMR3GetU32(pSSM, &cMonitors);
579 if (cMonitors != that->mcMonitors)
580 return SSMR3SetCfgError(pSSM, RT_SRC_POS, N_("Number of monitors changed (%d->%d)!"), cMonitors, that->mcMonitors);
581
582 for (uint32_t i = 0; i < cMonitors; i++)
583 {
584 SSMR3GetU32(pSSM, &that->maFramebuffers[i].u32Offset);
585 SSMR3GetU32(pSSM, &that->maFramebuffers[i].u32MaxFramebufferSize);
586 SSMR3GetU32(pSSM, &that->maFramebuffers[i].u32InformationSize);
587 }
588
589 return VINF_SUCCESS;
590}
591
592/**
593 * Initializes the display object.
594 *
595 * @returns COM result indicator
596 * @param parent handle of our parent object
597 * @param qemuConsoleData address of common console data structure
598 */
599HRESULT Display::init (Console *aParent)
600{
601 LogFlowThisFunc(("aParent=%p\n", aParent));
602
603 ComAssertRet(aParent, E_INVALIDARG);
604
605 /* Enclose the state transition NotReady->InInit->Ready */
606 AutoInitSpan autoInitSpan(this);
607 AssertReturn(autoInitSpan.isOk(), E_FAIL);
608
609 unconst(mParent) = aParent;
610
611 // by default, we have an internal framebuffer which is
612 // NULL, i.e. a black hole for no display output
613 mFramebufferOpened = false;
614
615 ULONG ul;
616 mParent->machine()->COMGETTER(MonitorCount)(&ul);
617 mcMonitors = ul;
618
619 for (ul = 0; ul < mcMonitors; ul++)
620 {
621 maFramebuffers[ul].u32Offset = 0;
622 maFramebuffers[ul].u32MaxFramebufferSize = 0;
623 maFramebuffers[ul].u32InformationSize = 0;
624
625 maFramebuffers[ul].pFramebuffer = NULL;
626
627 maFramebuffers[ul].xOrigin = 0;
628 maFramebuffers[ul].yOrigin = 0;
629
630 maFramebuffers[ul].w = 0;
631 maFramebuffers[ul].h = 0;
632
633 maFramebuffers[ul].u16BitsPerPixel = 0;
634 maFramebuffers[ul].pu8FramebufferVRAM = NULL;
635 maFramebuffers[ul].u32LineSize = 0;
636
637 maFramebuffers[ul].pHostEvents = NULL;
638
639 maFramebuffers[ul].u32ResizeStatus = ResizeStatus_Void;
640
641 maFramebuffers[ul].fDefaultFormat = false;
642
643 memset (&maFramebuffers[ul].dirtyRect, 0 , sizeof (maFramebuffers[ul].dirtyRect));
644 memset (&maFramebuffers[ul].pendingResize, 0 , sizeof (maFramebuffers[ul].pendingResize));
645#ifdef VBOX_WITH_HGSMI
646 maFramebuffers[ul].fVBVAEnabled = false;
647 maFramebuffers[ul].cVBVASkipUpdate = 0;
648 memset (&maFramebuffers[ul].vbvaSkippedRect, 0, sizeof (maFramebuffers[ul].vbvaSkippedRect));
649 maFramebuffers[ul].pVBVAHostFlags = NULL;
650#endif /* VBOX_WITH_HGSMI */
651 }
652
653 mParent->RegisterCallback (this);
654
655 /* Confirm a successful initialization */
656 autoInitSpan.setSucceeded();
657
658 return S_OK;
659}
660
661/**
662 * Uninitializes the instance and sets the ready flag to FALSE.
663 * Called either from FinalRelease() or by the parent when it gets destroyed.
664 */
665void Display::uninit()
666{
667 LogFlowThisFunc(("\n"));
668
669 /* Enclose the state transition Ready->InUninit->NotReady */
670 AutoUninitSpan autoUninitSpan(this);
671 if (autoUninitSpan.uninitDone())
672 return;
673
674 ULONG ul;
675 for (ul = 0; ul < mcMonitors; ul++)
676 maFramebuffers[ul].pFramebuffer = NULL;
677
678 if (mParent)
679 mParent->UnregisterCallback (this);
680
681 unconst(mParent) = NULL;
682
683 if (mpDrv)
684 mpDrv->pDisplay = NULL;
685
686 mpDrv = NULL;
687 mpVMMDev = NULL;
688 mfVMMDevInited = true;
689}
690
691/**
692 * Register the SSM methods. Called by the power up thread to be able to
693 * pass pVM
694 */
695int Display::registerSSM(PVM pVM)
696{
697 int rc = SSMR3RegisterExternal(pVM, "DisplayData", 0, sSSMDisplayVer,
698 mcMonitors * sizeof(uint32_t) * 3 + sizeof(uint32_t),
699 NULL, NULL, NULL,
700 NULL, displaySSMSave, NULL,
701 NULL, displaySSMLoad, NULL, this);
702
703 AssertRCReturn(rc, rc);
704
705 /*
706 * Register loaders for old saved states where iInstance was 3 * sizeof(uint32_t *).
707 */
708 rc = SSMR3RegisterExternal(pVM, "DisplayData", 12 /*uInstance*/, sSSMDisplayVer, 0 /*cbGuess*/,
709 NULL, NULL, NULL,
710 NULL, NULL, NULL,
711 NULL, displaySSMLoad, NULL, this);
712 AssertRCReturn(rc, rc);
713
714 rc = SSMR3RegisterExternal(pVM, "DisplayData", 24 /*uInstance*/, sSSMDisplayVer, 0 /*cbGuess*/,
715 NULL, NULL, NULL,
716 NULL, NULL, NULL,
717 NULL, displaySSMLoad, NULL, this);
718 AssertRCReturn(rc, rc);
719
720 /* uInstance is an arbitrary value greater than 1024. Such a value will ensure a quick seek in saved state file. */
721 rc = SSMR3RegisterExternal(pVM, "DisplayScreenshot", 1100 /*uInstance*/, sSSMDisplayScreenshotVer, 0 /*cbGuess*/,
722 NULL, NULL, NULL,
723 NULL, displaySSMSaveScreenshot, NULL,
724 NULL, displaySSMLoadScreenshot, NULL, this);
725
726 AssertRCReturn(rc, rc);
727
728 return VINF_SUCCESS;
729}
730
731// IConsoleCallback method
732STDMETHODIMP Display::OnStateChange(MachineState_T machineState)
733{
734 if ( machineState == MachineState_Running
735 || machineState == MachineState_Teleporting
736 || machineState == MachineState_LiveSnapshotting
737 )
738 {
739 LogFlowFunc(("Machine is running.\n"));
740
741 mfMachineRunning = true;
742 }
743 else
744 mfMachineRunning = false;
745
746 return S_OK;
747}
748
749// public methods only for internal purposes
750/////////////////////////////////////////////////////////////////////////////
751
752/**
753 * @thread EMT
754 */
755static int callFramebufferResize (IFramebuffer *pFramebuffer, unsigned uScreenId,
756 ULONG pixelFormat, void *pvVRAM,
757 uint32_t bpp, uint32_t cbLine,
758 int w, int h)
759{
760 Assert (pFramebuffer);
761
762 /* Call the framebuffer to try and set required pixelFormat. */
763 BOOL finished = TRUE;
764
765 pFramebuffer->RequestResize (uScreenId, pixelFormat, (BYTE *) pvVRAM,
766 bpp, cbLine, w, h, &finished);
767
768 if (!finished)
769 {
770 LogFlowFunc (("External framebuffer wants us to wait!\n"));
771 return VINF_VGA_RESIZE_IN_PROGRESS;
772 }
773
774 return VINF_SUCCESS;
775}
776
777/**
778 * Handles display resize event.
779 * Disables access to VGA device;
780 * calls the framebuffer RequestResize method;
781 * if framebuffer resizes synchronously,
782 * updates the display connector data and enables access to the VGA device.
783 *
784 * @param w New display width
785 * @param h New display height
786 *
787 * @thread EMT
788 */
789int Display::handleDisplayResize (unsigned uScreenId, uint32_t bpp, void *pvVRAM,
790 uint32_t cbLine, int w, int h)
791{
792 LogRel (("Display::handleDisplayResize(): uScreenId = %d, pvVRAM=%p "
793 "w=%d h=%d bpp=%d cbLine=0x%X\n",
794 uScreenId, pvVRAM, w, h, bpp, cbLine));
795
796 /* If there is no framebuffer, this call is not interesting. */
797 if ( uScreenId >= mcMonitors
798 || maFramebuffers[uScreenId].pFramebuffer.isNull())
799 {
800 return VINF_SUCCESS;
801 }
802
803 mLastAddress = pvVRAM;
804 mLastBytesPerLine = cbLine;
805 mLastBitsPerPixel = bpp,
806 mLastWidth = w;
807 mLastHeight = h;
808
809 ULONG pixelFormat;
810
811 switch (bpp)
812 {
813 case 32:
814 case 24:
815 case 16:
816 pixelFormat = FramebufferPixelFormat_FOURCC_RGB;
817 break;
818 default:
819 pixelFormat = FramebufferPixelFormat_Opaque;
820 bpp = cbLine = 0;
821 break;
822 }
823
824 /* Atomically set the resize status before calling the framebuffer. The new InProgress status will
825 * disable access to the VGA device by the EMT thread.
826 */
827 bool f = ASMAtomicCmpXchgU32 (&maFramebuffers[uScreenId].u32ResizeStatus,
828 ResizeStatus_InProgress, ResizeStatus_Void);
829 if (!f)
830 {
831 /* This could be a result of the screenshot taking call Display::TakeScreenShot:
832 * if the framebuffer is processing the resize request and GUI calls the TakeScreenShot
833 * and the guest has reprogrammed the virtual VGA devices again so a new resize is required.
834 *
835 * Save the resize information and return the pending status code.
836 *
837 * Note: the resize information is only accessed on EMT so no serialization is required.
838 */
839 LogRel (("Display::handleDisplayResize(): Warning: resize postponed.\n"));
840
841 maFramebuffers[uScreenId].pendingResize.fPending = true;
842 maFramebuffers[uScreenId].pendingResize.pixelFormat = pixelFormat;
843 maFramebuffers[uScreenId].pendingResize.pvVRAM = pvVRAM;
844 maFramebuffers[uScreenId].pendingResize.bpp = bpp;
845 maFramebuffers[uScreenId].pendingResize.cbLine = cbLine;
846 maFramebuffers[uScreenId].pendingResize.w = w;
847 maFramebuffers[uScreenId].pendingResize.h = h;
848
849 return VINF_VGA_RESIZE_IN_PROGRESS;
850 }
851
852 int rc = callFramebufferResize (maFramebuffers[uScreenId].pFramebuffer, uScreenId,
853 pixelFormat, pvVRAM, bpp, cbLine, w, h);
854 if (rc == VINF_VGA_RESIZE_IN_PROGRESS)
855 {
856 /* Immediately return to the caller. ResizeCompleted will be called back by the
857 * GUI thread. The ResizeCompleted callback will change the resize status from
858 * InProgress to UpdateDisplayData. The latter status will be checked by the
859 * display timer callback on EMT and all required adjustments will be done there.
860 */
861 return rc;
862 }
863
864 /* Set the status so the 'handleResizeCompleted' would work. */
865 f = ASMAtomicCmpXchgU32 (&maFramebuffers[uScreenId].u32ResizeStatus,
866 ResizeStatus_UpdateDisplayData, ResizeStatus_InProgress);
867 AssertRelease(f);NOREF(f);
868
869 AssertRelease(!maFramebuffers[uScreenId].pendingResize.fPending);
870
871 /* The method also unlocks the framebuffer. */
872 handleResizeCompletedEMT();
873
874 return VINF_SUCCESS;
875}
876
877/**
878 * Framebuffer has been resized.
879 * Read the new display data and unlock the framebuffer.
880 *
881 * @thread EMT
882 */
883void Display::handleResizeCompletedEMT (void)
884{
885 LogFlowFunc(("\n"));
886
887 unsigned uScreenId;
888 for (uScreenId = 0; uScreenId < mcMonitors; uScreenId++)
889 {
890 DISPLAYFBINFO *pFBInfo = &maFramebuffers[uScreenId];
891
892 /* Try to into non resizing state. */
893 bool f = ASMAtomicCmpXchgU32 (&pFBInfo->u32ResizeStatus, ResizeStatus_Void, ResizeStatus_UpdateDisplayData);
894
895 if (f == false)
896 {
897 /* This is not the display that has completed resizing. */
898 continue;
899 }
900
901 /* Check whether a resize is pending for this framebuffer. */
902 if (pFBInfo->pendingResize.fPending)
903 {
904 /* Reset the condition, call the display resize with saved data and continue.
905 *
906 * Note: handleDisplayResize can call handleResizeCompletedEMT back,
907 * but infinite recursion is not possible, because when the handleResizeCompletedEMT
908 * is called, the pFBInfo->pendingResize.fPending is equal to false.
909 */
910 pFBInfo->pendingResize.fPending = false;
911 handleDisplayResize (uScreenId, pFBInfo->pendingResize.bpp, pFBInfo->pendingResize.pvVRAM,
912 pFBInfo->pendingResize.cbLine, pFBInfo->pendingResize.w, pFBInfo->pendingResize.h);
913 continue;
914 }
915
916 if (uScreenId == VBOX_VIDEO_PRIMARY_SCREEN && !pFBInfo->pFramebuffer.isNull())
917 {
918 /* Primary framebuffer has completed the resize. Update the connector data for VGA device. */
919 updateDisplayData();
920
921 /* Check the framebuffer pixel format to setup the rendering in VGA device. */
922 BOOL usesGuestVRAM = FALSE;
923 pFBInfo->pFramebuffer->COMGETTER(UsesGuestVRAM) (&usesGuestVRAM);
924
925 pFBInfo->fDefaultFormat = (usesGuestVRAM == FALSE);
926
927 mpDrv->pUpPort->pfnSetRenderVRAM (mpDrv->pUpPort, pFBInfo->fDefaultFormat);
928 }
929 else if (!pFBInfo->pFramebuffer.isNull())
930 {
931 BOOL usesGuestVRAM = FALSE;
932 pFBInfo->pFramebuffer->COMGETTER(UsesGuestVRAM) (&usesGuestVRAM);
933
934 pFBInfo->fDefaultFormat = (usesGuestVRAM == FALSE);
935 }
936 LogFlow(("[%d]: default format %d\n", uScreenId, pFBInfo->fDefaultFormat));
937
938#ifdef DEBUG_sunlover
939 if (!stam)
940 {
941 /* protect mpVM */
942 Console::SafeVMPtr pVM (mParent);
943 AssertComRC (pVM.rc());
944
945 STAM_REG(pVM, &StatDisplayRefresh, STAMTYPE_PROFILE, "/PROF/Display/Refresh", STAMUNIT_TICKS_PER_CALL, "Time spent in EMT for display updates.");
946 stam = 1;
947 }
948#endif /* DEBUG_sunlover */
949
950 /* Inform VRDP server about the change of display parameters. */
951 LogFlowFunc (("Calling VRDP\n"));
952 mParent->consoleVRDPServer()->SendResize();
953
954#if defined(VBOX_WITH_HGCM) && defined(VBOX_WITH_CROGL)
955 {
956 BOOL is3denabled;
957 mParent->machine()->COMGETTER(Accelerate3DEnabled)(&is3denabled);
958
959 if (is3denabled)
960 {
961 VBOXHGCMSVCPARM parm;
962
963 parm.type = VBOX_HGCM_SVC_PARM_32BIT;
964 parm.u.uint32 = uScreenId;
965
966 mParent->getVMMDev()->hgcmHostCall("VBoxSharedCrOpenGL", SHCRGL_HOST_FN_SCREEN_CHANGED,
967 SHCRGL_CPARMS_SCREEN_CHANGED, &parm);
968 }
969 }
970#endif /* VBOX_WITH_CROGL */
971 }
972}
973
974static void checkCoordBounds (int *px, int *py, int *pw, int *ph, int cx, int cy)
975{
976 /* Correct negative x and y coordinates. */
977 if (*px < 0)
978 {
979 *px += *pw; /* Compute xRight which is also the new width. */
980
981 *pw = (*px < 0)? 0: *px;
982
983 *px = 0;
984 }
985
986 if (*py < 0)
987 {
988 *py += *ph; /* Compute xBottom, which is also the new height. */
989
990 *ph = (*py < 0)? 0: *py;
991
992 *py = 0;
993 }
994
995 /* Also check if coords are greater than the display resolution. */
996 if (*px + *pw > cx)
997 {
998 *pw = cx > *px? cx - *px: 0;
999 }
1000
1001 if (*py + *ph > cy)
1002 {
1003 *ph = cy > *py? cy - *py: 0;
1004 }
1005}
1006
1007unsigned mapCoordsToScreen(DISPLAYFBINFO *pInfos, unsigned cInfos, int *px, int *py, int *pw, int *ph)
1008{
1009 DISPLAYFBINFO *pInfo = pInfos;
1010 unsigned uScreenId;
1011 LogSunlover (("mapCoordsToScreen: %d,%d %dx%d\n", *px, *py, *pw, *ph));
1012 for (uScreenId = 0; uScreenId < cInfos; uScreenId++, pInfo++)
1013 {
1014 LogSunlover ((" [%d] %d,%d %dx%d\n", uScreenId, pInfo->xOrigin, pInfo->yOrigin, pInfo->w, pInfo->h));
1015 if ( (pInfo->xOrigin <= *px && *px < pInfo->xOrigin + (int)pInfo->w)
1016 && (pInfo->yOrigin <= *py && *py < pInfo->yOrigin + (int)pInfo->h))
1017 {
1018 /* The rectangle belongs to the screen. Correct coordinates. */
1019 *px -= pInfo->xOrigin;
1020 *py -= pInfo->yOrigin;
1021 LogSunlover ((" -> %d,%d", *px, *py));
1022 break;
1023 }
1024 }
1025 if (uScreenId == cInfos)
1026 {
1027 /* Map to primary screen. */
1028 uScreenId = 0;
1029 }
1030 LogSunlover ((" scr %d\n", uScreenId));
1031 return uScreenId;
1032}
1033
1034
1035/**
1036 * Handles display update event.
1037 *
1038 * @param x Update area x coordinate
1039 * @param y Update area y coordinate
1040 * @param w Update area width
1041 * @param h Update area height
1042 *
1043 * @thread EMT
1044 */
1045void Display::handleDisplayUpdate (int x, int y, int w, int h)
1046{
1047#ifdef VBOX_WITH_OLD_VBVA_LOCK
1048 /*
1049 * Always runs under either VBVA lock or, for HGSMI, DevVGA lock.
1050 * Safe to use VBVA vars and take the framebuffer lock.
1051 */
1052#endif /* VBOX_WITH_OLD_VBVA_LOCK */
1053
1054#ifdef DEBUG_sunlover
1055 LogFlowFunc (("%d,%d %dx%d (%d,%d)\n",
1056 x, y, w, h, mpDrv->IConnector.cx, mpDrv->IConnector.cy));
1057#endif /* DEBUG_sunlover */
1058
1059 unsigned uScreenId = mapCoordsToScreen(maFramebuffers, mcMonitors, &x, &y, &w, &h);
1060
1061#ifdef DEBUG_sunlover
1062 LogFlowFunc (("%d,%d %dx%d (checked)\n", x, y, w, h));
1063#endif /* DEBUG_sunlover */
1064
1065 IFramebuffer *pFramebuffer = maFramebuffers[uScreenId].pFramebuffer;
1066
1067 // if there is no framebuffer, this call is not interesting
1068 if (pFramebuffer == NULL)
1069 return;
1070
1071 pFramebuffer->Lock();
1072
1073 if (uScreenId == VBOX_VIDEO_PRIMARY_SCREEN)
1074 checkCoordBounds (&x, &y, &w, &h, mpDrv->IConnector.cx, mpDrv->IConnector.cy);
1075 else
1076 checkCoordBounds (&x, &y, &w, &h, maFramebuffers[uScreenId].w,
1077 maFramebuffers[uScreenId].h);
1078
1079 if (w != 0 && h != 0)
1080 pFramebuffer->NotifyUpdate(x, y, w, h);
1081
1082 pFramebuffer->Unlock();
1083
1084#ifndef VBOX_WITH_HGSMI
1085 if (!mfVideoAccelEnabled)
1086 {
1087#else
1088 if (!mfVideoAccelEnabled && !maFramebuffers[uScreenId].fVBVAEnabled)
1089 {
1090#endif /* VBOX_WITH_HGSMI */
1091 /* When VBVA is enabled, the VRDP server is informed in the VideoAccelFlush.
1092 * Inform the server here only if VBVA is disabled.
1093 */
1094 if (maFramebuffers[uScreenId].u32ResizeStatus == ResizeStatus_Void)
1095 mParent->consoleVRDPServer()->SendUpdateBitmap(uScreenId, x, y, w, h);
1096 }
1097}
1098
1099typedef struct _VBVADIRTYREGION
1100{
1101 /* Copies of object's pointers used by vbvaRgn functions. */
1102 DISPLAYFBINFO *paFramebuffers;
1103 unsigned cMonitors;
1104 Display *pDisplay;
1105 PPDMIDISPLAYPORT pPort;
1106
1107} VBVADIRTYREGION;
1108
1109static void vbvaRgnInit (VBVADIRTYREGION *prgn, DISPLAYFBINFO *paFramebuffers, unsigned cMonitors, Display *pd, PPDMIDISPLAYPORT pp)
1110{
1111 prgn->paFramebuffers = paFramebuffers;
1112 prgn->cMonitors = cMonitors;
1113 prgn->pDisplay = pd;
1114 prgn->pPort = pp;
1115
1116 unsigned uScreenId;
1117 for (uScreenId = 0; uScreenId < cMonitors; uScreenId++)
1118 {
1119 DISPLAYFBINFO *pFBInfo = &prgn->paFramebuffers[uScreenId];
1120
1121 memset (&pFBInfo->dirtyRect, 0, sizeof (pFBInfo->dirtyRect));
1122 }
1123}
1124
1125static void vbvaRgnDirtyRect (VBVADIRTYREGION *prgn, unsigned uScreenId, VBVACMDHDR *phdr)
1126{
1127 LogSunlover (("x = %d, y = %d, w = %d, h = %d\n",
1128 phdr->x, phdr->y, phdr->w, phdr->h));
1129
1130 /*
1131 * Here update rectangles are accumulated to form an update area.
1132 * @todo
1133 * Now the simpliest method is used which builds one rectangle that
1134 * includes all update areas. A bit more advanced method can be
1135 * employed here. The method should be fast however.
1136 */
1137 if (phdr->w == 0 || phdr->h == 0)
1138 {
1139 /* Empty rectangle. */
1140 return;
1141 }
1142
1143 int32_t xRight = phdr->x + phdr->w;
1144 int32_t yBottom = phdr->y + phdr->h;
1145
1146 DISPLAYFBINFO *pFBInfo = &prgn->paFramebuffers[uScreenId];
1147
1148 if (pFBInfo->dirtyRect.xRight == 0)
1149 {
1150 /* This is the first rectangle to be added. */
1151 pFBInfo->dirtyRect.xLeft = phdr->x;
1152 pFBInfo->dirtyRect.yTop = phdr->y;
1153 pFBInfo->dirtyRect.xRight = xRight;
1154 pFBInfo->dirtyRect.yBottom = yBottom;
1155 }
1156 else
1157 {
1158 /* Adjust region coordinates. */
1159 if (pFBInfo->dirtyRect.xLeft > phdr->x)
1160 {
1161 pFBInfo->dirtyRect.xLeft = phdr->x;
1162 }
1163
1164 if (pFBInfo->dirtyRect.yTop > phdr->y)
1165 {
1166 pFBInfo->dirtyRect.yTop = phdr->y;
1167 }
1168
1169 if (pFBInfo->dirtyRect.xRight < xRight)
1170 {
1171 pFBInfo->dirtyRect.xRight = xRight;
1172 }
1173
1174 if (pFBInfo->dirtyRect.yBottom < yBottom)
1175 {
1176 pFBInfo->dirtyRect.yBottom = yBottom;
1177 }
1178 }
1179
1180 if (pFBInfo->fDefaultFormat)
1181 {
1182 //@todo pfnUpdateDisplayRect must take the vram offset parameter for the framebuffer
1183 prgn->pPort->pfnUpdateDisplayRect (prgn->pPort, phdr->x, phdr->y, phdr->w, phdr->h);
1184 prgn->pDisplay->handleDisplayUpdate (phdr->x + pFBInfo->xOrigin,
1185 phdr->y + pFBInfo->yOrigin, phdr->w, phdr->h);
1186 }
1187
1188 return;
1189}
1190
1191static void vbvaRgnUpdateFramebuffer (VBVADIRTYREGION *prgn, unsigned uScreenId)
1192{
1193 DISPLAYFBINFO *pFBInfo = &prgn->paFramebuffers[uScreenId];
1194
1195 uint32_t w = pFBInfo->dirtyRect.xRight - pFBInfo->dirtyRect.xLeft;
1196 uint32_t h = pFBInfo->dirtyRect.yBottom - pFBInfo->dirtyRect.yTop;
1197
1198 if (!pFBInfo->fDefaultFormat && pFBInfo->pFramebuffer && w != 0 && h != 0)
1199 {
1200 //@todo pfnUpdateDisplayRect must take the vram offset parameter for the framebuffer
1201 prgn->pPort->pfnUpdateDisplayRect (prgn->pPort, pFBInfo->dirtyRect.xLeft, pFBInfo->dirtyRect.yTop, w, h);
1202 prgn->pDisplay->handleDisplayUpdate (pFBInfo->dirtyRect.xLeft + pFBInfo->xOrigin,
1203 pFBInfo->dirtyRect.yTop + pFBInfo->yOrigin, w, h);
1204 }
1205}
1206
1207static void vbvaSetMemoryFlags (VBVAMEMORY *pVbvaMemory,
1208 bool fVideoAccelEnabled,
1209 bool fVideoAccelVRDP,
1210 uint32_t fu32SupportedOrders,
1211 DISPLAYFBINFO *paFBInfos,
1212 unsigned cFBInfos)
1213{
1214 if (pVbvaMemory)
1215 {
1216 /* This called only on changes in mode. So reset VRDP always. */
1217 uint32_t fu32Flags = VBVA_F_MODE_VRDP_RESET;
1218
1219 if (fVideoAccelEnabled)
1220 {
1221 fu32Flags |= VBVA_F_MODE_ENABLED;
1222
1223 if (fVideoAccelVRDP)
1224 {
1225 fu32Flags |= VBVA_F_MODE_VRDP | VBVA_F_MODE_VRDP_ORDER_MASK;
1226
1227 pVbvaMemory->fu32SupportedOrders = fu32SupportedOrders;
1228 }
1229 }
1230
1231 pVbvaMemory->fu32ModeFlags = fu32Flags;
1232 }
1233
1234 unsigned uScreenId;
1235 for (uScreenId = 0; uScreenId < cFBInfos; uScreenId++)
1236 {
1237 if (paFBInfos[uScreenId].pHostEvents)
1238 {
1239 paFBInfos[uScreenId].pHostEvents->fu32Events |= VBOX_VIDEO_INFO_HOST_EVENTS_F_VRDP_RESET;
1240 }
1241 }
1242}
1243
1244#ifdef VBOX_WITH_HGSMI
1245static void vbvaSetMemoryFlagsHGSMI (unsigned uScreenId,
1246 uint32_t fu32SupportedOrders,
1247 bool fVideoAccelVRDP,
1248 DISPLAYFBINFO *pFBInfo)
1249{
1250 LogFlowFunc(("HGSMI[%d]: %p\n", uScreenId, pFBInfo->pVBVAHostFlags));
1251
1252 if (pFBInfo->pVBVAHostFlags)
1253 {
1254 uint32_t fu32HostEvents = VBOX_VIDEO_INFO_HOST_EVENTS_F_VRDP_RESET;
1255
1256 if (pFBInfo->fVBVAEnabled)
1257 {
1258 fu32HostEvents |= VBVA_F_MODE_ENABLED;
1259
1260 if (fVideoAccelVRDP)
1261 {
1262 fu32HostEvents |= VBVA_F_MODE_VRDP;
1263 }
1264 }
1265
1266 ASMAtomicOrU32(&pFBInfo->pVBVAHostFlags->u32HostEvents, fu32HostEvents);
1267 ASMAtomicWriteU32(&pFBInfo->pVBVAHostFlags->u32SupportedOrders, fu32SupportedOrders);
1268
1269 LogFlowFunc((" fu32HostEvents = 0x%08X, fu32SupportedOrders = 0x%08X\n", fu32HostEvents, fu32SupportedOrders));
1270 }
1271}
1272
1273static void vbvaSetMemoryFlagsAllHGSMI (uint32_t fu32SupportedOrders,
1274 bool fVideoAccelVRDP,
1275 DISPLAYFBINFO *paFBInfos,
1276 unsigned cFBInfos)
1277{
1278 unsigned uScreenId;
1279
1280 for (uScreenId = 0; uScreenId < cFBInfos; uScreenId++)
1281 {
1282 vbvaSetMemoryFlagsHGSMI(uScreenId, fu32SupportedOrders, fVideoAccelVRDP, &paFBInfos[uScreenId]);
1283 }
1284}
1285#endif /* VBOX_WITH_HGSMI */
1286
1287bool Display::VideoAccelAllowed (void)
1288{
1289 return true;
1290}
1291
1292#ifdef VBOX_WITH_OLD_VBVA_LOCK
1293int Display::vbvaLock(void)
1294{
1295 return RTCritSectEnter(&mVBVALock);
1296}
1297
1298void Display::vbvaUnlock(void)
1299{
1300 RTCritSectLeave(&mVBVALock);
1301}
1302#endif /* VBOX_WITH_OLD_VBVA_LOCK */
1303
1304/**
1305 * @thread EMT
1306 */
1307#ifdef VBOX_WITH_OLD_VBVA_LOCK
1308int Display::VideoAccelEnable (bool fEnable, VBVAMEMORY *pVbvaMemory)
1309{
1310 int rc;
1311 vbvaLock();
1312 rc = videoAccelEnable (fEnable, pVbvaMemory);
1313 vbvaUnlock();
1314 return rc;
1315}
1316#endif /* VBOX_WITH_OLD_VBVA_LOCK */
1317
1318#ifdef VBOX_WITH_OLD_VBVA_LOCK
1319int Display::videoAccelEnable (bool fEnable, VBVAMEMORY *pVbvaMemory)
1320#else
1321int Display::VideoAccelEnable (bool fEnable, VBVAMEMORY *pVbvaMemory)
1322#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
1323{
1324 int rc = VINF_SUCCESS;
1325
1326 /* Called each time the guest wants to use acceleration,
1327 * or when the VGA device disables acceleration,
1328 * or when restoring the saved state with accel enabled.
1329 *
1330 * VGA device disables acceleration on each video mode change
1331 * and on reset.
1332 *
1333 * Guest enabled acceleration at will. And it has to enable
1334 * acceleration after a mode change.
1335 */
1336 LogFlowFunc (("mfVideoAccelEnabled = %d, fEnable = %d, pVbvaMemory = %p\n",
1337 mfVideoAccelEnabled, fEnable, pVbvaMemory));
1338
1339 /* Strictly check parameters. Callers must not pass anything in the case. */
1340 Assert((fEnable && pVbvaMemory) || (!fEnable && pVbvaMemory == NULL));
1341
1342 if (!VideoAccelAllowed ())
1343 {
1344 return VERR_NOT_SUPPORTED;
1345 }
1346
1347 /*
1348 * Verify that the VM is in running state. If it is not,
1349 * then this must be postponed until it goes to running.
1350 */
1351 if (!mfMachineRunning)
1352 {
1353 Assert (!mfVideoAccelEnabled);
1354
1355 LogFlowFunc (("Machine is not yet running.\n"));
1356
1357 if (fEnable)
1358 {
1359 mfPendingVideoAccelEnable = fEnable;
1360 mpPendingVbvaMemory = pVbvaMemory;
1361 }
1362
1363 return rc;
1364 }
1365
1366 /* Check that current status is not being changed */
1367 if (mfVideoAccelEnabled == fEnable)
1368 {
1369 return rc;
1370 }
1371
1372 if (mfVideoAccelEnabled)
1373 {
1374 /* Process any pending orders and empty the VBVA ring buffer. */
1375#ifdef VBOX_WITH_OLD_VBVA_LOCK
1376 videoAccelFlush ();
1377#else
1378 VideoAccelFlush ();
1379#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
1380 }
1381
1382 if (!fEnable && mpVbvaMemory)
1383 {
1384 mpVbvaMemory->fu32ModeFlags &= ~VBVA_F_MODE_ENABLED;
1385 }
1386
1387 /* Safety precaution. There is no more VBVA until everything is setup! */
1388 mpVbvaMemory = NULL;
1389 mfVideoAccelEnabled = false;
1390
1391 /* Update entire display. */
1392 if (maFramebuffers[VBOX_VIDEO_PRIMARY_SCREEN].u32ResizeStatus == ResizeStatus_Void)
1393 {
1394 mpDrv->pUpPort->pfnUpdateDisplayAll(mpDrv->pUpPort);
1395 }
1396
1397 /* Everything OK. VBVA status can be changed. */
1398
1399 /* Notify the VMMDev, which saves VBVA status in the saved state,
1400 * and needs to know current status.
1401 */
1402 PPDMIVMMDEVPORT pVMMDevPort = mParent->getVMMDev()->getVMMDevPort ();
1403
1404 if (pVMMDevPort)
1405 {
1406 pVMMDevPort->pfnVBVAChange (pVMMDevPort, fEnable);
1407 }
1408
1409 if (fEnable)
1410 {
1411 mpVbvaMemory = pVbvaMemory;
1412 mfVideoAccelEnabled = true;
1413
1414 /* Initialize the hardware memory. */
1415 vbvaSetMemoryFlags (mpVbvaMemory, mfVideoAccelEnabled, mfVideoAccelVRDP, mfu32SupportedOrders, maFramebuffers, mcMonitors);
1416 mpVbvaMemory->off32Data = 0;
1417 mpVbvaMemory->off32Free = 0;
1418
1419 memset (mpVbvaMemory->aRecords, 0, sizeof (mpVbvaMemory->aRecords));
1420 mpVbvaMemory->indexRecordFirst = 0;
1421 mpVbvaMemory->indexRecordFree = 0;
1422
1423#ifdef VBOX_WITH_OLD_VBVA_LOCK
1424 mfu32PendingVideoAccelDisable = false;
1425#endif /* VBOX_WITH_OLD_VBVA_LOCK */
1426
1427 LogRel(("VBVA: Enabled.\n"));
1428 }
1429 else
1430 {
1431 LogRel(("VBVA: Disabled.\n"));
1432 }
1433
1434 LogFlowFunc (("VideoAccelEnable: rc = %Rrc.\n", rc));
1435
1436 return rc;
1437}
1438
1439#ifdef VBOX_WITH_VRDP
1440/* Called always by one VRDP server thread. Can be thread-unsafe.
1441 */
1442void Display::VideoAccelVRDP (bool fEnable)
1443{
1444 LogFlowFunc(("fEnable = %d\n", fEnable));
1445
1446#ifdef VBOX_WITH_OLD_VBVA_LOCK
1447 vbvaLock();
1448#endif /* VBOX_WITH_OLD_VBVA_LOCK */
1449
1450 int c = fEnable?
1451 ASMAtomicIncS32 (&mcVideoAccelVRDPRefs):
1452 ASMAtomicDecS32 (&mcVideoAccelVRDPRefs);
1453
1454 Assert (c >= 0);
1455
1456 if (c == 0)
1457 {
1458 /* The last client has disconnected, and the accel can be
1459 * disabled.
1460 */
1461 Assert (fEnable == false);
1462
1463 mfVideoAccelVRDP = false;
1464 mfu32SupportedOrders = 0;
1465
1466 vbvaSetMemoryFlags (mpVbvaMemory, mfVideoAccelEnabled, mfVideoAccelVRDP, mfu32SupportedOrders, maFramebuffers, mcMonitors);
1467#ifdef VBOX_WITH_HGSMI
1468 /* Here is VRDP-IN thread. Process the request in vbvaUpdateBegin under DevVGA lock on an EMT. */
1469 ASMAtomicIncU32(&mu32UpdateVBVAFlags);
1470#endif /* VBOX_WITH_HGSMI */
1471
1472 LogRel(("VBVA: VRDP acceleration has been disabled.\n"));
1473 }
1474 else if ( c == 1
1475 && !mfVideoAccelVRDP)
1476 {
1477 /* The first client has connected. Enable the accel.
1478 */
1479 Assert (fEnable == true);
1480
1481 mfVideoAccelVRDP = true;
1482 /* Supporting all orders. */
1483 mfu32SupportedOrders = ~0;
1484
1485 vbvaSetMemoryFlags (mpVbvaMemory, mfVideoAccelEnabled, mfVideoAccelVRDP, mfu32SupportedOrders, maFramebuffers, mcMonitors);
1486#ifdef VBOX_WITH_HGSMI
1487 /* Here is VRDP-IN thread. Process the request in vbvaUpdateBegin under DevVGA lock on an EMT. */
1488 ASMAtomicIncU32(&mu32UpdateVBVAFlags);
1489#endif /* VBOX_WITH_HGSMI */
1490
1491 LogRel(("VBVA: VRDP acceleration has been requested.\n"));
1492 }
1493 else
1494 {
1495 /* A client is connected or disconnected but there is no change in the
1496 * accel state. It remains enabled.
1497 */
1498 Assert (mfVideoAccelVRDP == true);
1499 }
1500#ifdef VBOX_WITH_OLD_VBVA_LOCK
1501 vbvaUnlock();
1502#endif /* VBOX_WITH_OLD_VBVA_LOCK */
1503}
1504#endif /* VBOX_WITH_VRDP */
1505
1506static bool vbvaVerifyRingBuffer (VBVAMEMORY *pVbvaMemory)
1507{
1508 return true;
1509}
1510
1511static void vbvaFetchBytes (VBVAMEMORY *pVbvaMemory, uint8_t *pu8Dst, uint32_t cbDst)
1512{
1513 if (cbDst >= VBVA_RING_BUFFER_SIZE)
1514 {
1515 AssertMsgFailed (("cbDst = 0x%08X, ring buffer size 0x%08X", cbDst, VBVA_RING_BUFFER_SIZE));
1516 return;
1517 }
1518
1519 uint32_t u32BytesTillBoundary = VBVA_RING_BUFFER_SIZE - pVbvaMemory->off32Data;
1520 uint8_t *src = &pVbvaMemory->au8RingBuffer[pVbvaMemory->off32Data];
1521 int32_t i32Diff = cbDst - u32BytesTillBoundary;
1522
1523 if (i32Diff <= 0)
1524 {
1525 /* Chunk will not cross buffer boundary. */
1526 memcpy (pu8Dst, src, cbDst);
1527 }
1528 else
1529 {
1530 /* Chunk crosses buffer boundary. */
1531 memcpy (pu8Dst, src, u32BytesTillBoundary);
1532 memcpy (pu8Dst + u32BytesTillBoundary, &pVbvaMemory->au8RingBuffer[0], i32Diff);
1533 }
1534
1535 /* Advance data offset. */
1536 pVbvaMemory->off32Data = (pVbvaMemory->off32Data + cbDst) % VBVA_RING_BUFFER_SIZE;
1537
1538 return;
1539}
1540
1541
1542static bool vbvaPartialRead (uint8_t **ppu8, uint32_t *pcb, uint32_t cbRecord, VBVAMEMORY *pVbvaMemory)
1543{
1544 uint8_t *pu8New;
1545
1546 LogFlow(("MAIN::DisplayImpl::vbvaPartialRead: p = %p, cb = %d, cbRecord 0x%08X\n",
1547 *ppu8, *pcb, cbRecord));
1548
1549 if (*ppu8)
1550 {
1551 Assert (*pcb);
1552 pu8New = (uint8_t *)RTMemRealloc (*ppu8, cbRecord);
1553 }
1554 else
1555 {
1556 Assert (!*pcb);
1557 pu8New = (uint8_t *)RTMemAlloc (cbRecord);
1558 }
1559
1560 if (!pu8New)
1561 {
1562 /* Memory allocation failed, fail the function. */
1563 Log(("MAIN::vbvaPartialRead: failed to (re)alocate memory for partial record!!! cbRecord 0x%08X\n",
1564 cbRecord));
1565
1566 if (*ppu8)
1567 {
1568 RTMemFree (*ppu8);
1569 }
1570
1571 *ppu8 = NULL;
1572 *pcb = 0;
1573
1574 return false;
1575 }
1576
1577 /* Fetch data from the ring buffer. */
1578 vbvaFetchBytes (pVbvaMemory, pu8New + *pcb, cbRecord - *pcb);
1579
1580 *ppu8 = pu8New;
1581 *pcb = cbRecord;
1582
1583 return true;
1584}
1585
1586/* For contiguous chunks just return the address in the buffer.
1587 * For crossing boundary - allocate a buffer from heap.
1588 */
1589bool Display::vbvaFetchCmd (VBVACMDHDR **ppHdr, uint32_t *pcbCmd)
1590{
1591 uint32_t indexRecordFirst = mpVbvaMemory->indexRecordFirst;
1592 uint32_t indexRecordFree = mpVbvaMemory->indexRecordFree;
1593
1594#ifdef DEBUG_sunlover
1595 LogFlowFunc (("first = %d, free = %d\n",
1596 indexRecordFirst, indexRecordFree));
1597#endif /* DEBUG_sunlover */
1598
1599 if (!vbvaVerifyRingBuffer (mpVbvaMemory))
1600 {
1601 return false;
1602 }
1603
1604 if (indexRecordFirst == indexRecordFree)
1605 {
1606 /* No records to process. Return without assigning output variables. */
1607 return true;
1608 }
1609
1610 VBVARECORD *pRecord = &mpVbvaMemory->aRecords[indexRecordFirst];
1611
1612#ifdef DEBUG_sunlover
1613 LogFlowFunc (("cbRecord = 0x%08X\n", pRecord->cbRecord));
1614#endif /* DEBUG_sunlover */
1615
1616 uint32_t cbRecord = pRecord->cbRecord & ~VBVA_F_RECORD_PARTIAL;
1617
1618 if (mcbVbvaPartial)
1619 {
1620 /* There is a partial read in process. Continue with it. */
1621
1622 Assert (mpu8VbvaPartial);
1623
1624 LogFlowFunc (("continue partial record mcbVbvaPartial = %d cbRecord 0x%08X, first = %d, free = %d\n",
1625 mcbVbvaPartial, pRecord->cbRecord, indexRecordFirst, indexRecordFree));
1626
1627 if (cbRecord > mcbVbvaPartial)
1628 {
1629 /* New data has been added to the record. */
1630 if (!vbvaPartialRead (&mpu8VbvaPartial, &mcbVbvaPartial, cbRecord, mpVbvaMemory))
1631 {
1632 return false;
1633 }
1634 }
1635
1636 if (!(pRecord->cbRecord & VBVA_F_RECORD_PARTIAL))
1637 {
1638 /* The record is completed by guest. Return it to the caller. */
1639 *ppHdr = (VBVACMDHDR *)mpu8VbvaPartial;
1640 *pcbCmd = mcbVbvaPartial;
1641
1642 mpu8VbvaPartial = NULL;
1643 mcbVbvaPartial = 0;
1644
1645 /* Advance the record index. */
1646 mpVbvaMemory->indexRecordFirst = (indexRecordFirst + 1) % VBVA_MAX_RECORDS;
1647
1648#ifdef DEBUG_sunlover
1649 LogFlowFunc (("partial done ok, data = %d, free = %d\n",
1650 mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
1651#endif /* DEBUG_sunlover */
1652 }
1653
1654 return true;
1655 }
1656
1657 /* A new record need to be processed. */
1658 if (pRecord->cbRecord & VBVA_F_RECORD_PARTIAL)
1659 {
1660 /* Current record is being written by guest. '=' is important here. */
1661 if (cbRecord >= VBVA_RING_BUFFER_SIZE - VBVA_RING_BUFFER_THRESHOLD)
1662 {
1663 /* Partial read must be started. */
1664 if (!vbvaPartialRead (&mpu8VbvaPartial, &mcbVbvaPartial, cbRecord, mpVbvaMemory))
1665 {
1666 return false;
1667 }
1668
1669 LogFlowFunc (("started partial record mcbVbvaPartial = 0x%08X cbRecord 0x%08X, first = %d, free = %d\n",
1670 mcbVbvaPartial, pRecord->cbRecord, indexRecordFirst, indexRecordFree));
1671 }
1672
1673 return true;
1674 }
1675
1676 /* Current record is complete. If it is not empty, process it. */
1677 if (cbRecord)
1678 {
1679 /* The size of largest contiguos chunk in the ring biffer. */
1680 uint32_t u32BytesTillBoundary = VBVA_RING_BUFFER_SIZE - mpVbvaMemory->off32Data;
1681
1682 /* The ring buffer pointer. */
1683 uint8_t *au8RingBuffer = &mpVbvaMemory->au8RingBuffer[0];
1684
1685 /* The pointer to data in the ring buffer. */
1686 uint8_t *src = &au8RingBuffer[mpVbvaMemory->off32Data];
1687
1688 /* Fetch or point the data. */
1689 if (u32BytesTillBoundary >= cbRecord)
1690 {
1691 /* The command does not cross buffer boundary. Return address in the buffer. */
1692 *ppHdr = (VBVACMDHDR *)src;
1693
1694 /* Advance data offset. */
1695 mpVbvaMemory->off32Data = (mpVbvaMemory->off32Data + cbRecord) % VBVA_RING_BUFFER_SIZE;
1696 }
1697 else
1698 {
1699 /* The command crosses buffer boundary. Rare case, so not optimized. */
1700 uint8_t *dst = (uint8_t *)RTMemAlloc (cbRecord);
1701
1702 if (!dst)
1703 {
1704 LogFlowFunc (("could not allocate %d bytes from heap!!!\n", cbRecord));
1705 mpVbvaMemory->off32Data = (mpVbvaMemory->off32Data + cbRecord) % VBVA_RING_BUFFER_SIZE;
1706 return false;
1707 }
1708
1709 vbvaFetchBytes (mpVbvaMemory, dst, cbRecord);
1710
1711 *ppHdr = (VBVACMDHDR *)dst;
1712
1713#ifdef DEBUG_sunlover
1714 LogFlowFunc (("Allocated from heap %p\n", dst));
1715#endif /* DEBUG_sunlover */
1716 }
1717 }
1718
1719 *pcbCmd = cbRecord;
1720
1721 /* Advance the record index. */
1722 mpVbvaMemory->indexRecordFirst = (indexRecordFirst + 1) % VBVA_MAX_RECORDS;
1723
1724#ifdef DEBUG_sunlover
1725 LogFlowFunc (("done ok, data = %d, free = %d\n",
1726 mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
1727#endif /* DEBUG_sunlover */
1728
1729 return true;
1730}
1731
1732void Display::vbvaReleaseCmd (VBVACMDHDR *pHdr, int32_t cbCmd)
1733{
1734 uint8_t *au8RingBuffer = mpVbvaMemory->au8RingBuffer;
1735
1736 if ( (uint8_t *)pHdr >= au8RingBuffer
1737 && (uint8_t *)pHdr < &au8RingBuffer[VBVA_RING_BUFFER_SIZE])
1738 {
1739 /* The pointer is inside ring buffer. Must be continuous chunk. */
1740 Assert (VBVA_RING_BUFFER_SIZE - ((uint8_t *)pHdr - au8RingBuffer) >= cbCmd);
1741
1742 /* Do nothing. */
1743
1744 Assert (!mpu8VbvaPartial && mcbVbvaPartial == 0);
1745 }
1746 else
1747 {
1748 /* The pointer is outside. It is then an allocated copy. */
1749
1750#ifdef DEBUG_sunlover
1751 LogFlowFunc (("Free heap %p\n", pHdr));
1752#endif /* DEBUG_sunlover */
1753
1754 if ((uint8_t *)pHdr == mpu8VbvaPartial)
1755 {
1756 mpu8VbvaPartial = NULL;
1757 mcbVbvaPartial = 0;
1758 }
1759 else
1760 {
1761 Assert (!mpu8VbvaPartial && mcbVbvaPartial == 0);
1762 }
1763
1764 RTMemFree (pHdr);
1765 }
1766
1767 return;
1768}
1769
1770
1771/**
1772 * Called regularly on the DisplayRefresh timer.
1773 * Also on behalf of guest, when the ring buffer is full.
1774 *
1775 * @thread EMT
1776 */
1777#ifdef VBOX_WITH_OLD_VBVA_LOCK
1778void Display::VideoAccelFlush (void)
1779{
1780 vbvaLock();
1781 videoAccelFlush();
1782 vbvaUnlock();
1783}
1784#endif /* VBOX_WITH_OLD_VBVA_LOCK */
1785
1786#ifdef VBOX_WITH_OLD_VBVA_LOCK
1787/* Under VBVA lock. DevVGA is not taken. */
1788void Display::videoAccelFlush (void)
1789#else
1790void Display::VideoAccelFlush (void)
1791#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
1792{
1793#ifdef DEBUG_sunlover_2
1794 LogFlowFunc (("mfVideoAccelEnabled = %d\n", mfVideoAccelEnabled));
1795#endif /* DEBUG_sunlover_2 */
1796
1797 if (!mfVideoAccelEnabled)
1798 {
1799 Log(("Display::VideoAccelFlush: called with disabled VBVA!!! Ignoring.\n"));
1800 return;
1801 }
1802
1803 /* Here VBVA is enabled and we have the accelerator memory pointer. */
1804 Assert(mpVbvaMemory);
1805
1806#ifdef DEBUG_sunlover_2
1807 LogFlowFunc (("indexRecordFirst = %d, indexRecordFree = %d, off32Data = %d, off32Free = %d\n",
1808 mpVbvaMemory->indexRecordFirst, mpVbvaMemory->indexRecordFree, mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
1809#endif /* DEBUG_sunlover_2 */
1810
1811 /* Quick check for "nothing to update" case. */
1812 if (mpVbvaMemory->indexRecordFirst == mpVbvaMemory->indexRecordFree)
1813 {
1814 return;
1815 }
1816
1817 /* Process the ring buffer */
1818 unsigned uScreenId;
1819#ifndef VBOX_WITH_OLD_VBVA_LOCK
1820 for (uScreenId = 0; uScreenId < mcMonitors; uScreenId++)
1821 {
1822 if (!maFramebuffers[uScreenId].pFramebuffer.isNull())
1823 {
1824 maFramebuffers[uScreenId].pFramebuffer->Lock ();
1825 }
1826 }
1827#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
1828
1829 /* Initialize dirty rectangles accumulator. */
1830 VBVADIRTYREGION rgn;
1831 vbvaRgnInit (&rgn, maFramebuffers, mcMonitors, this, mpDrv->pUpPort);
1832
1833 for (;;)
1834 {
1835 VBVACMDHDR *phdr = NULL;
1836 uint32_t cbCmd = ~0;
1837
1838 /* Fetch the command data. */
1839 if (!vbvaFetchCmd (&phdr, &cbCmd))
1840 {
1841 Log(("Display::VideoAccelFlush: unable to fetch command. off32Data = %d, off32Free = %d. Disabling VBVA!!!\n",
1842 mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
1843
1844 /* Disable VBVA on those processing errors. */
1845#ifdef VBOX_WITH_OLD_VBVA_LOCK
1846 videoAccelEnable (false, NULL);
1847#else
1848 VideoAccelEnable (false, NULL);
1849#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
1850
1851 break;
1852 }
1853
1854 if (cbCmd == uint32_t(~0))
1855 {
1856 /* No more commands yet in the queue. */
1857 break;
1858 }
1859
1860 if (cbCmd != 0)
1861 {
1862#ifdef DEBUG_sunlover
1863 LogFlowFunc (("hdr: cbCmd = %d, x=%d, y=%d, w=%d, h=%d\n",
1864 cbCmd, phdr->x, phdr->y, phdr->w, phdr->h));
1865#endif /* DEBUG_sunlover */
1866
1867 VBVACMDHDR hdrSaved = *phdr;
1868
1869 int x = phdr->x;
1870 int y = phdr->y;
1871 int w = phdr->w;
1872 int h = phdr->h;
1873
1874 uScreenId = mapCoordsToScreen(maFramebuffers, mcMonitors, &x, &y, &w, &h);
1875
1876 phdr->x = (int16_t)x;
1877 phdr->y = (int16_t)y;
1878 phdr->w = (uint16_t)w;
1879 phdr->h = (uint16_t)h;
1880
1881 DISPLAYFBINFO *pFBInfo = &maFramebuffers[uScreenId];
1882
1883 if (pFBInfo->u32ResizeStatus == ResizeStatus_Void)
1884 {
1885 /* Handle the command.
1886 *
1887 * Guest is responsible for updating the guest video memory.
1888 * The Windows guest does all drawing using Eng*.
1889 *
1890 * For local output, only dirty rectangle information is used
1891 * to update changed areas.
1892 *
1893 * Dirty rectangles are accumulated to exclude overlapping updates and
1894 * group small updates to a larger one.
1895 */
1896
1897 /* Accumulate the update. */
1898 vbvaRgnDirtyRect (&rgn, uScreenId, phdr);
1899
1900 /* Forward the command to VRDP server. */
1901 mParent->consoleVRDPServer()->SendUpdate (uScreenId, phdr, cbCmd);
1902
1903 *phdr = hdrSaved;
1904 }
1905 }
1906
1907 vbvaReleaseCmd (phdr, cbCmd);
1908 }
1909
1910 for (uScreenId = 0; uScreenId < mcMonitors; uScreenId++)
1911 {
1912#ifndef VBOX_WITH_OLD_VBVA_LOCK
1913 if (!maFramebuffers[uScreenId].pFramebuffer.isNull())
1914 {
1915 maFramebuffers[uScreenId].pFramebuffer->Unlock ();
1916 }
1917#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
1918
1919 if (maFramebuffers[uScreenId].u32ResizeStatus == ResizeStatus_Void)
1920 {
1921 /* Draw the framebuffer. */
1922 vbvaRgnUpdateFramebuffer (&rgn, uScreenId);
1923 }
1924 }
1925}
1926
1927#ifdef VBOX_WITH_OLD_VBVA_LOCK
1928int Display::videoAccelRefreshProcess(void)
1929{
1930 int rc = VWRN_INVALID_STATE; /* Default is to do a display update in VGA device. */
1931
1932 vbvaLock();
1933
1934 if (ASMAtomicCmpXchgU32(&mfu32PendingVideoAccelDisable, false, true))
1935 {
1936 videoAccelEnable (false, NULL);
1937 }
1938 else if (mfPendingVideoAccelEnable)
1939 {
1940 /* Acceleration was enabled while machine was not yet running
1941 * due to restoring from saved state. Update entire display and
1942 * actually enable acceleration.
1943 */
1944 Assert(mpPendingVbvaMemory);
1945
1946 /* Acceleration can not be yet enabled.*/
1947 Assert(mpVbvaMemory == NULL);
1948 Assert(!mfVideoAccelEnabled);
1949
1950 if (mfMachineRunning)
1951 {
1952 videoAccelEnable (mfPendingVideoAccelEnable,
1953 mpPendingVbvaMemory);
1954
1955 /* Reset the pending state. */
1956 mfPendingVideoAccelEnable = false;
1957 mpPendingVbvaMemory = NULL;
1958 }
1959
1960 rc = VINF_TRY_AGAIN;
1961 }
1962 else
1963 {
1964 Assert(mpPendingVbvaMemory == NULL);
1965
1966 if (mfVideoAccelEnabled)
1967 {
1968 Assert(mpVbvaMemory);
1969 videoAccelFlush ();
1970
1971 rc = VINF_SUCCESS; /* VBVA processed, no need to a display update. */
1972 }
1973 }
1974
1975 vbvaUnlock();
1976
1977 return rc;
1978}
1979#endif /* VBOX_WITH_OLD_VBVA_LOCK */
1980
1981
1982// IDisplay methods
1983/////////////////////////////////////////////////////////////////////////////
1984STDMETHODIMP Display::GetScreenResolution (ULONG aScreenId,
1985 ULONG *aWidth, ULONG *aHeight, ULONG *aBitsPerPixel)
1986{
1987 LogFlowFunc (("aScreenId = %d\n", aScreenId));
1988
1989 AutoCaller autoCaller(this);
1990 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1991
1992 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1993
1994 uint32_t u32Width = 0;
1995 uint32_t u32Height = 0;
1996 uint32_t u32BitsPerPixel = 0;
1997
1998 if (aScreenId == VBOX_VIDEO_PRIMARY_SCREEN)
1999 {
2000 CHECK_CONSOLE_DRV (mpDrv);
2001
2002 u32Width = mpDrv->IConnector.cx;
2003 u32Height = mpDrv->IConnector.cy;
2004 int rc = mpDrv->pUpPort->pfnQueryColorDepth(mpDrv->pUpPort, &u32BitsPerPixel);
2005 AssertRC(rc);
2006 }
2007 else if (aScreenId < mcMonitors)
2008 {
2009 DISPLAYFBINFO *pFBInfo = &maFramebuffers[aScreenId];
2010 u32Width = pFBInfo->w;
2011 u32Height = pFBInfo->h;
2012 u32BitsPerPixel = pFBInfo->u16BitsPerPixel;
2013 }
2014 else
2015 {
2016 return E_INVALIDARG;
2017 }
2018
2019 if (aWidth)
2020 *aWidth = u32Width;
2021 if (aHeight)
2022 *aHeight = u32Height;
2023 if (aBitsPerPixel)
2024 *aBitsPerPixel = u32BitsPerPixel;
2025
2026 return S_OK;
2027}
2028
2029STDMETHODIMP Display::SetFramebuffer (ULONG aScreenId,
2030 IFramebuffer *aFramebuffer)
2031{
2032 LogFlowFunc (("\n"));
2033
2034 if (aFramebuffer != NULL)
2035 CheckComArgOutPointerValid(aFramebuffer);
2036
2037 AutoCaller autoCaller(this);
2038 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2039
2040 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2041
2042 Console::SafeVMPtrQuiet pVM (mParent);
2043 if (pVM.isOk())
2044 {
2045 /* Must leave the lock here because the changeFramebuffer will
2046 * also obtain it. */
2047 alock.leave ();
2048
2049 /* send request to the EMT thread */
2050 int vrc = VMR3ReqCallWait (pVM, VMCPUID_ANY,
2051 (PFNRT) changeFramebuffer, 3, this, aFramebuffer, aScreenId);
2052
2053 alock.enter ();
2054
2055 ComAssertRCRet (vrc, E_FAIL);
2056
2057#if defined(VBOX_WITH_HGCM) && defined(VBOX_WITH_CROGL)
2058 {
2059 BOOL is3denabled;
2060 mParent->machine()->COMGETTER(Accelerate3DEnabled)(&is3denabled);
2061
2062 if (is3denabled)
2063 {
2064 VBOXHGCMSVCPARM parm;
2065
2066 parm.type = VBOX_HGCM_SVC_PARM_32BIT;
2067 parm.u.uint32 = aScreenId;
2068
2069 alock.leave ();
2070
2071 vrc = mParent->getVMMDev()->hgcmHostCall("VBoxSharedCrOpenGL", SHCRGL_HOST_FN_SCREEN_CHANGED,
2072 SHCRGL_CPARMS_SCREEN_CHANGED, &parm);
2073 /*ComAssertRCRet (vrc, E_FAIL);*/
2074
2075 alock.enter ();
2076 }
2077 }
2078#endif /* VBOX_WITH_CROGL */
2079 }
2080 else
2081 {
2082 /* No VM is created (VM is powered off), do a direct call */
2083 int vrc = changeFramebuffer (this, aFramebuffer, aScreenId);
2084 ComAssertRCRet (vrc, E_FAIL);
2085 }
2086
2087 return S_OK;
2088}
2089
2090STDMETHODIMP Display::GetFramebuffer (ULONG aScreenId,
2091 IFramebuffer **aFramebuffer, LONG *aXOrigin, LONG *aYOrigin)
2092{
2093 LogFlowFunc (("aScreenId = %d\n", aScreenId));
2094
2095 CheckComArgOutPointerValid(aFramebuffer);
2096
2097 AutoCaller autoCaller(this);
2098 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2099
2100 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2101
2102 /* @todo this should be actually done on EMT. */
2103 DISPLAYFBINFO *pFBInfo = &maFramebuffers[aScreenId];
2104
2105 *aFramebuffer = pFBInfo->pFramebuffer;
2106 if (*aFramebuffer)
2107 (*aFramebuffer)->AddRef ();
2108 if (aXOrigin)
2109 *aXOrigin = pFBInfo->xOrigin;
2110 if (aYOrigin)
2111 *aYOrigin = pFBInfo->yOrigin;
2112
2113 return S_OK;
2114}
2115
2116STDMETHODIMP Display::SetVideoModeHint(ULONG aWidth, ULONG aHeight,
2117 ULONG aBitsPerPixel, ULONG aDisplay)
2118{
2119 AutoCaller autoCaller(this);
2120 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2121
2122 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2123
2124 CHECK_CONSOLE_DRV (mpDrv);
2125
2126 /*
2127 * Do some rough checks for valid input
2128 */
2129 ULONG width = aWidth;
2130 if (!width)
2131 width = mpDrv->IConnector.cx;
2132 ULONG height = aHeight;
2133 if (!height)
2134 height = mpDrv->IConnector.cy;
2135 ULONG bpp = aBitsPerPixel;
2136 if (!bpp)
2137 {
2138 uint32_t cBits = 0;
2139 int rc = mpDrv->pUpPort->pfnQueryColorDepth(mpDrv->pUpPort, &cBits);
2140 AssertRC(rc);
2141 bpp = cBits;
2142 }
2143 ULONG cMonitors;
2144 mParent->machine()->COMGETTER(MonitorCount)(&cMonitors);
2145 if (cMonitors == 0 && aDisplay > 0)
2146 return E_INVALIDARG;
2147 if (aDisplay >= cMonitors)
2148 return E_INVALIDARG;
2149
2150// sunlover 20070614: It is up to the guest to decide whether the hint is valid.
2151// ULONG vramSize;
2152// mParent->machine()->COMGETTER(VRAMSize)(&vramSize);
2153// /* enough VRAM? */
2154// if ((width * height * (bpp / 8)) > (vramSize * 1024 * 1024))
2155// return setError(E_FAIL, tr("Not enough VRAM for the selected video mode"));
2156
2157 /* Have to leave the lock because the pfnRequestDisplayChange
2158 * will call EMT. */
2159 alock.leave ();
2160 if (mParent->getVMMDev())
2161 mParent->getVMMDev()->getVMMDevPort()->
2162 pfnRequestDisplayChange (mParent->getVMMDev()->getVMMDevPort(),
2163 aWidth, aHeight, aBitsPerPixel, aDisplay);
2164 return S_OK;
2165}
2166
2167STDMETHODIMP Display::SetSeamlessMode (BOOL enabled)
2168{
2169 AutoCaller autoCaller(this);
2170 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2171
2172 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2173
2174 /* Have to leave the lock because the pfnRequestSeamlessChange will call EMT. */
2175 alock.leave ();
2176 if (mParent->getVMMDev())
2177 mParent->getVMMDev()->getVMMDevPort()->
2178 pfnRequestSeamlessChange (mParent->getVMMDev()->getVMMDevPort(),
2179 !!enabled);
2180 return S_OK;
2181}
2182
2183#ifdef VBOX_WITH_OLD_VBVA_LOCK
2184int Display::displayTakeScreenshotEMT(Display *pDisplay, uint8_t **ppu8Data, size_t *pcbData, uint32_t *pu32Width, uint32_t *pu32Height)
2185{
2186 int rc;
2187 pDisplay->vbvaLock();
2188 rc = pDisplay->mpDrv->pUpPort->pfnTakeScreenshot(pDisplay->mpDrv->pUpPort, ppu8Data, pcbData, pu32Width, pu32Height);
2189 pDisplay->vbvaUnlock();
2190 return rc;
2191}
2192#endif /* VBOX_WITH_OLD_VBVA_LOCK */
2193
2194#ifdef VBOX_WITH_OLD_VBVA_LOCK
2195static int displayTakeScreenshot(PVM pVM, Display *pDisplay, struct DRVMAINDISPLAY *pDrv, BYTE *address, ULONG width, ULONG height)
2196#else
2197static int displayTakeScreenshot(PVM pVM, struct DRVMAINDISPLAY *pDrv, BYTE *address, ULONG width, ULONG height)
2198#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
2199{
2200 uint8_t *pu8Data = NULL;
2201 size_t cbData = 0;
2202 uint32_t cx = 0;
2203 uint32_t cy = 0;
2204
2205#ifdef VBOX_WITH_OLD_VBVA_LOCK
2206 int vrc = VMR3ReqCallWait(pVM, VMCPUID_ANY, (PFNRT)Display::displayTakeScreenshotEMT, 5,
2207 pDisplay, &pu8Data, &cbData, &cx, &cy);
2208#else
2209 /* @todo pfnTakeScreenshot is probably callable from any thread, because it uses the VGA device lock. */
2210 int vrc = VMR3ReqCallWait(pVM, VMCPUID_ANY, (PFNRT)pDrv->pUpPort->pfnTakeScreenshot, 5,
2211 pDrv->pUpPort, &pu8Data, &cbData, &cx, &cy);
2212#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
2213
2214 if (RT_SUCCESS(vrc))
2215 {
2216 if (cx == width && cy == height)
2217 {
2218 /* No scaling required. */
2219 memcpy(address, pu8Data, cbData);
2220 }
2221 else
2222 {
2223 /* Scale. */
2224 LogFlowFunc(("SCALE: %dx%d -> %dx%d\n", cx, cy, width, height));
2225
2226 uint8_t *dst = address;
2227 uint8_t *src = pu8Data;
2228 int dstX = 0;
2229 int dstY = 0;
2230 int srcX = 0;
2231 int srcY = 0;
2232 int dstW = width;
2233 int dstH = height;
2234 int srcW = cx;
2235 int srcH = cy;
2236 gdImageCopyResampled (dst,
2237 src,
2238 dstX, dstY,
2239 srcX, srcY,
2240 dstW, dstH, srcW, srcH);
2241 }
2242
2243 /* This can be called from any thread. */
2244 pDrv->pUpPort->pfnFreeScreenshot (pDrv->pUpPort, pu8Data);
2245 }
2246
2247 return vrc;
2248}
2249
2250STDMETHODIMP Display::TakeScreenShot (ULONG aScreenId, BYTE *address, ULONG width, ULONG height)
2251{
2252 /// @todo (r=dmik) this function may take too long to complete if the VM
2253 // is doing something like saving state right now. Which, in case if it
2254 // is called on the GUI thread, will make it unresponsive. We should
2255 // check the machine state here (by enclosing the check and VMRequCall
2256 // within the Console lock to make it atomic).
2257
2258 LogFlowFuncEnter();
2259 LogFlowFunc (("address=%p, width=%d, height=%d\n",
2260 address, width, height));
2261
2262 CheckComArgNotNull(address);
2263 CheckComArgExpr(width, width != 0);
2264 CheckComArgExpr(height, height != 0);
2265
2266 AutoCaller autoCaller(this);
2267 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2268
2269 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2270
2271 CHECK_CONSOLE_DRV (mpDrv);
2272
2273 Console::SafeVMPtr pVM(mParent);
2274 if (FAILED(pVM.rc())) return pVM.rc();
2275
2276 HRESULT rc = S_OK;
2277
2278 LogFlowFunc (("Sending SCREENSHOT request\n"));
2279
2280 /* Leave lock because other thread (EMT) is called and it may initiate a resize
2281 * which also needs lock.
2282 *
2283 * This method does not need the lock anymore.
2284 */
2285 alock.leave();
2286
2287#ifdef VBOX_WITH_OLD_VBVA_LOCK
2288 int vrc = displayTakeScreenshot(pVM, this, mpDrv, address, width, height);
2289#else
2290 int vrc = displayTakeScreenshot(pVM, mpDrv, address, width, height);
2291#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
2292
2293 if (vrc == VERR_NOT_IMPLEMENTED)
2294 rc = setError(E_NOTIMPL,
2295 tr("This feature is not implemented"));
2296 else if (RT_FAILURE(vrc))
2297 rc = setError(VBOX_E_IPRT_ERROR,
2298 tr("Could not take a screenshot (%Rrc)"), vrc);
2299
2300 LogFlowFunc (("rc=%08X\n", rc));
2301 LogFlowFuncLeave();
2302 return rc;
2303}
2304
2305STDMETHODIMP Display::TakeScreenShotToArray (ULONG aScreenId, ULONG width, ULONG height,
2306 ComSafeArrayOut(BYTE, aScreenData))
2307{
2308 LogFlowFuncEnter();
2309 LogFlowFunc (("width=%d, height=%d\n",
2310 width, height));
2311
2312 CheckComArgSafeArrayNotNull(aScreenData);
2313 CheckComArgExpr(width, width != 0);
2314 CheckComArgExpr(height, height != 0);
2315
2316 AutoCaller autoCaller(this);
2317 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2318
2319 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2320
2321 CHECK_CONSOLE_DRV (mpDrv);
2322
2323 Console::SafeVMPtr pVM(mParent);
2324 if (FAILED(pVM.rc())) return pVM.rc();
2325
2326 HRESULT rc = S_OK;
2327
2328 LogFlowFunc (("Sending SCREENSHOT request\n"));
2329
2330 /* Leave lock because other thread (EMT) is called and it may initiate a resize
2331 * which also needs lock.
2332 *
2333 * This method does not need the lock anymore.
2334 */
2335 alock.leave();
2336
2337 size_t cbData = width * 4 * height;
2338 uint8_t *pu8Data = (uint8_t *)RTMemAlloc(cbData);
2339
2340 if (!pu8Data)
2341 return E_OUTOFMEMORY;
2342
2343#ifdef VBOX_WITH_OLD_VBVA_LOCK
2344 int vrc = displayTakeScreenshot(pVM, this, mpDrv, pu8Data, width, height);
2345#else
2346 int vrc = displayTakeScreenshot(pVM, mpDrv, pu8Data, width, height);
2347#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
2348
2349 if (RT_SUCCESS(vrc))
2350 {
2351 /* Convert pixels to format expected by the API caller: [0] R, [1] G, [2] B, [3] A. */
2352 uint8_t *pu8 = pu8Data;
2353 unsigned cPixels = width * height;
2354 while (cPixels)
2355 {
2356 uint8_t u8 = pu8[0];
2357 pu8[0] = pu8[2];
2358 pu8[2] = u8;
2359 pu8[3] = 0xff;
2360 cPixels--;
2361 pu8 += 4;
2362 }
2363
2364 com::SafeArray<BYTE> screenData (cbData);
2365 for (unsigned i = 0; i < cbData; i++)
2366 screenData[i] = pu8Data[i];
2367 screenData.detachTo(ComSafeArrayOutArg(aScreenData));
2368 }
2369 else if (vrc == VERR_NOT_IMPLEMENTED)
2370 rc = setError(E_NOTIMPL,
2371 tr("This feature is not implemented"));
2372 else
2373 rc = setError(VBOX_E_IPRT_ERROR,
2374 tr("Could not take a screenshot (%Rrc)"), vrc);
2375
2376 LogFlowFunc (("rc=%08X\n", rc));
2377 LogFlowFuncLeave();
2378 return rc;
2379}
2380
2381#ifdef VBOX_WITH_OLD_VBVA_LOCK
2382int Display::drawToScreenEMT(Display *pDisplay, ULONG aScreenId, BYTE *address, ULONG x, ULONG y, ULONG width, ULONG height)
2383{
2384 int rc;
2385 pDisplay->vbvaLock();
2386 if (aScreenId == VBOX_VIDEO_PRIMARY_SCREEN)
2387 {
2388 rc = pDisplay->mpDrv->pUpPort->pfnDisplayBlt(pDisplay->mpDrv->pUpPort, address, x, y, width, height);
2389 }
2390 else if (aScreenId < pDisplay->mcMonitors)
2391 {
2392 DISPLAYFBINFO *pFBInfo = &pDisplay->maFramebuffers[aScreenId];
2393
2394 /* Copy the bitmap to the guest VRAM. */
2395 const uint8_t *pu8Src = address;
2396 int32_t xSrc = 0;
2397 int32_t ySrc = 0;
2398 uint32_t u32SrcWidth = width;
2399 uint32_t u32SrcHeight = height;
2400 uint32_t u32SrcLineSize = width * 4;
2401 uint32_t u32SrcBitsPerPixel = 32;
2402
2403 uint8_t *pu8Dst = pFBInfo->pu8FramebufferVRAM;
2404 int32_t xDst = x;
2405 int32_t yDst = y;
2406 uint32_t u32DstWidth = pFBInfo->w;
2407 uint32_t u32DstHeight = pFBInfo->h;
2408 uint32_t u32DstLineSize = pFBInfo->u32LineSize;
2409 uint32_t u32DstBitsPerPixel = pFBInfo->u16BitsPerPixel;
2410
2411 rc = pDisplay->mpDrv->pUpPort->pfnCopyRect(pDisplay->mpDrv->pUpPort,
2412 width, height,
2413 pu8Src,
2414 xSrc, ySrc,
2415 u32SrcWidth, u32SrcHeight,
2416 u32SrcLineSize, u32SrcBitsPerPixel,
2417 pu8Dst,
2418 xDst, yDst,
2419 u32DstWidth, u32DstHeight,
2420 u32DstLineSize, u32DstBitsPerPixel);
2421 if (RT_SUCCESS(rc))
2422 {
2423 if (!pFBInfo->pFramebuffer.isNull())
2424 {
2425 /* Update the changed screen area. When framebuffer uses VRAM directly, just notify
2426 * it to update. And for default format, render the guest VRAM to framebuffer.
2427 */
2428 if (pFBInfo->fDefaultFormat)
2429 {
2430 BYTE *address = NULL;
2431 HRESULT hrc = pFBInfo->pFramebuffer->COMGETTER(Address) (&address);
2432 if (SUCCEEDED(hrc) && address != NULL)
2433 {
2434 const uint8_t *pu8Src = pFBInfo->pu8FramebufferVRAM;
2435 int32_t xSrc = x;
2436 int32_t ySrc = y;
2437 uint32_t u32SrcWidth = pFBInfo->w;
2438 uint32_t u32SrcHeight = pFBInfo->h;
2439 uint32_t u32SrcLineSize = pFBInfo->u32LineSize;
2440 uint32_t u32SrcBitsPerPixel = pFBInfo->u16BitsPerPixel;
2441
2442 /* Default format is 32 bpp. */
2443 uint8_t *pu8Dst = address;
2444 int32_t xDst = xSrc;
2445 int32_t yDst = ySrc;
2446 uint32_t u32DstWidth = u32SrcWidth;
2447 uint32_t u32DstHeight = u32SrcHeight;
2448 uint32_t u32DstLineSize = u32DstWidth * 4;
2449 uint32_t u32DstBitsPerPixel = 32;
2450
2451 pDisplay->mpDrv->pUpPort->pfnCopyRect(pDisplay->mpDrv->pUpPort,
2452 width, height,
2453 pu8Src,
2454 xSrc, ySrc,
2455 u32SrcWidth, u32SrcHeight,
2456 u32SrcLineSize, u32SrcBitsPerPixel,
2457 pu8Dst,
2458 xDst, yDst,
2459 u32DstWidth, u32DstHeight,
2460 u32DstLineSize, u32DstBitsPerPixel);
2461 }
2462 }
2463
2464 pDisplay->handleDisplayUpdate(x + pFBInfo->xOrigin, y + pFBInfo->yOrigin, width, height);
2465 }
2466 }
2467 }
2468 else
2469 {
2470 rc = VERR_INVALID_PARAMETER;
2471 }
2472 pDisplay->vbvaUnlock();
2473 return rc;
2474}
2475#endif /* VBOX_WITH_OLD_VBVA_LOCK */
2476
2477STDMETHODIMP Display::DrawToScreen (ULONG aScreenId, BYTE *address, ULONG x, ULONG y,
2478 ULONG width, ULONG height)
2479{
2480 /// @todo (r=dmik) this function may take too long to complete if the VM
2481 // is doing something like saving state right now. Which, in case if it
2482 // is called on the GUI thread, will make it unresponsive. We should
2483 // check the machine state here (by enclosing the check and VMRequCall
2484 // within the Console lock to make it atomic).
2485
2486 LogFlowFuncEnter();
2487 LogFlowFunc (("address=%p, x=%d, y=%d, width=%d, height=%d\n",
2488 (void *)address, x, y, width, height));
2489
2490 CheckComArgNotNull(address);
2491 CheckComArgExpr(width, width != 0);
2492 CheckComArgExpr(height, height != 0);
2493
2494 AutoCaller autoCaller(this);
2495 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2496
2497 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2498
2499 CHECK_CONSOLE_DRV (mpDrv);
2500
2501 Console::SafeVMPtr pVM(mParent);
2502 if (FAILED(pVM.rc())) return pVM.rc();
2503
2504 /*
2505 * Again we're lazy and make the graphics device do all the
2506 * dirty conversion work.
2507 */
2508#ifdef VBOX_WITH_OLD_VBVA_LOCK
2509 int rcVBox = VMR3ReqCallWait(pVM, VMCPUID_ANY, (PFNRT)Display::drawToScreenEMT, 7,
2510 this, aScreenId, address, x, y, width, height);
2511#else
2512 int rcVBox = VMR3ReqCallWait(pVM, VMCPUID_ANY, (PFNRT)mpDrv->pUpPort->pfnDisplayBlt, 6,
2513 mpDrv->pUpPort, address, x, y, width, height);
2514#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
2515
2516 /*
2517 * If the function returns not supported, we'll have to do all the
2518 * work ourselves using the framebuffer.
2519 */
2520 HRESULT rc = S_OK;
2521 if (rcVBox == VERR_NOT_SUPPORTED || rcVBox == VERR_NOT_IMPLEMENTED)
2522 {
2523 /** @todo implement generic fallback for screen blitting. */
2524 rc = E_NOTIMPL;
2525 }
2526 else if (RT_FAILURE(rcVBox))
2527 rc = setError(VBOX_E_IPRT_ERROR,
2528 tr("Could not draw to the screen (%Rrc)"), rcVBox);
2529//@todo
2530// else
2531// {
2532// /* All ok. Redraw the screen. */
2533// handleDisplayUpdate (x, y, width, height);
2534// }
2535
2536 LogFlowFunc (("rc=%08X\n", rc));
2537 LogFlowFuncLeave();
2538 return rc;
2539}
2540
2541#ifdef VBOX_WITH_OLD_VBVA_LOCK
2542void Display::InvalidateAndUpdateEMT(Display *pDisplay)
2543{
2544 pDisplay->vbvaLock();
2545 unsigned uScreenId;
2546 for (uScreenId = 0; uScreenId < pDisplay->mcMonitors; uScreenId++)
2547 {
2548 if (uScreenId == VBOX_VIDEO_PRIMARY_SCREEN)
2549 {
2550 pDisplay->mpDrv->pUpPort->pfnUpdateDisplayAll(pDisplay->mpDrv->pUpPort);
2551 }
2552 else
2553 {
2554 DISPLAYFBINFO *pFBInfo = &pDisplay->maFramebuffers[uScreenId];
2555
2556 if (!pFBInfo->pFramebuffer.isNull())
2557 {
2558 /* Render complete VRAM screen to the framebuffer.
2559 * When framebuffer uses VRAM directly, just notify it to update.
2560 */
2561 if (pFBInfo->fDefaultFormat)
2562 {
2563 BYTE *address = NULL;
2564 HRESULT hrc = pFBInfo->pFramebuffer->COMGETTER(Address) (&address);
2565 if (SUCCEEDED(hrc) && address != NULL)
2566 {
2567 uint32_t width = pFBInfo->w;
2568 uint32_t height = pFBInfo->h;
2569
2570 const uint8_t *pu8Src = pFBInfo->pu8FramebufferVRAM;
2571 int32_t xSrc = 0;
2572 int32_t ySrc = 0;
2573 uint32_t u32SrcWidth = pFBInfo->w;
2574 uint32_t u32SrcHeight = pFBInfo->h;
2575 uint32_t u32SrcLineSize = pFBInfo->u32LineSize;
2576 uint32_t u32SrcBitsPerPixel = pFBInfo->u16BitsPerPixel;
2577
2578 /* Default format is 32 bpp. */
2579 uint8_t *pu8Dst = address;
2580 int32_t xDst = xSrc;
2581 int32_t yDst = ySrc;
2582 uint32_t u32DstWidth = u32SrcWidth;
2583 uint32_t u32DstHeight = u32SrcHeight;
2584 uint32_t u32DstLineSize = u32DstWidth * 4;
2585 uint32_t u32DstBitsPerPixel = 32;
2586
2587 pDisplay->mpDrv->pUpPort->pfnCopyRect(pDisplay->mpDrv->pUpPort,
2588 width, height,
2589 pu8Src,
2590 xSrc, ySrc,
2591 u32SrcWidth, u32SrcHeight,
2592 u32SrcLineSize, u32SrcBitsPerPixel,
2593 pu8Dst,
2594 xDst, yDst,
2595 u32DstWidth, u32DstHeight,
2596 u32DstLineSize, u32DstBitsPerPixel);
2597 }
2598 }
2599
2600 pDisplay->handleDisplayUpdate (pFBInfo->xOrigin, pFBInfo->yOrigin, pFBInfo->w, pFBInfo->h);
2601 }
2602 }
2603 }
2604 pDisplay->vbvaUnlock();
2605}
2606#endif /* VBOX_WITH_OLD_VBVA_LOCK */
2607
2608/**
2609 * Does a full invalidation of the VM display and instructs the VM
2610 * to update it immediately.
2611 *
2612 * @returns COM status code
2613 */
2614STDMETHODIMP Display::InvalidateAndUpdate()
2615{
2616 LogFlowFuncEnter();
2617
2618 AutoCaller autoCaller(this);
2619 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2620
2621 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2622
2623 CHECK_CONSOLE_DRV (mpDrv);
2624
2625 Console::SafeVMPtr pVM(mParent);
2626 if (FAILED(pVM.rc())) return pVM.rc();
2627
2628 HRESULT rc = S_OK;
2629
2630 LogFlowFunc (("Sending DPYUPDATE request\n"));
2631
2632 /* Have to leave the lock when calling EMT. */
2633 alock.leave ();
2634
2635 /* pdm.h says that this has to be called from the EMT thread */
2636#ifdef VBOX_WITH_OLD_VBVA_LOCK
2637 int rcVBox = VMR3ReqCallVoidWait(pVM, VMCPUID_ANY, (PFNRT)Display::InvalidateAndUpdateEMT,
2638 1, this);
2639#else
2640 int rcVBox = VMR3ReqCallVoidWait(pVM, VMCPUID_ANY,
2641 (PFNRT)mpDrv->pUpPort->pfnUpdateDisplayAll, 1, mpDrv->pUpPort);
2642#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
2643 alock.enter ();
2644
2645 if (RT_FAILURE(rcVBox))
2646 rc = setError(VBOX_E_IPRT_ERROR,
2647 tr("Could not invalidate and update the screen (%Rrc)"), rcVBox);
2648
2649 LogFlowFunc (("rc=%08X\n", rc));
2650 LogFlowFuncLeave();
2651 return rc;
2652}
2653
2654/**
2655 * Notification that the framebuffer has completed the
2656 * asynchronous resize processing
2657 *
2658 * @returns COM status code
2659 */
2660STDMETHODIMP Display::ResizeCompleted(ULONG aScreenId)
2661{
2662 LogFlowFunc (("\n"));
2663
2664 /// @todo (dmik) can we AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); here?
2665 // do it when we switch this class to VirtualBoxBase_NEXT.
2666 // This will require general code review and may add some details.
2667 // In particular, we may want to check whether EMT is really waiting for
2668 // this notification, etc. It might be also good to obey the caller to make
2669 // sure this method is not called from more than one thread at a time
2670 // (and therefore don't use Display lock at all here to save some
2671 // milliseconds).
2672 AutoCaller autoCaller(this);
2673 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2674
2675 /* this is only valid for external framebuffers */
2676 if (maFramebuffers[aScreenId].pFramebuffer == NULL)
2677 return setError(VBOX_E_NOT_SUPPORTED,
2678 tr("Resize completed notification is valid only for external framebuffers"));
2679
2680 /* Set the flag indicating that the resize has completed and display
2681 * data need to be updated. */
2682 bool f = ASMAtomicCmpXchgU32 (&maFramebuffers[aScreenId].u32ResizeStatus,
2683 ResizeStatus_UpdateDisplayData, ResizeStatus_InProgress);
2684 AssertRelease(f);NOREF(f);
2685
2686 return S_OK;
2687}
2688
2689STDMETHODIMP Display::CompleteVHWACommand(BYTE *pCommand)
2690{
2691#ifdef VBOX_WITH_VIDEOHWACCEL
2692 mpDrv->pVBVACallbacks->pfnVHWACommandCompleteAsynch(mpDrv->pVBVACallbacks, (PVBOXVHWACMD)pCommand);
2693 return S_OK;
2694#else
2695 return E_NOTIMPL;
2696#endif
2697}
2698
2699// private methods
2700/////////////////////////////////////////////////////////////////////////////
2701
2702/**
2703 * Helper to update the display information from the framebuffer.
2704 *
2705 * @param aCheckParams true to compare the parameters of the current framebuffer
2706 * and the new one and issue handleDisplayResize()
2707 * if they differ.
2708 * @thread EMT
2709 */
2710void Display::updateDisplayData (bool aCheckParams /* = false */)
2711{
2712 /* the driver might not have been constructed yet */
2713 if (!mpDrv)
2714 return;
2715
2716#if DEBUG
2717 /*
2718 * Sanity check. Note that this method may be called on EMT after Console
2719 * has started the power down procedure (but before our #drvDestruct() is
2720 * called, in which case pVM will aleady be NULL but mpDrv will not). Since
2721 * we don't really need pVM to proceed, we avoid this check in the release
2722 * build to save some ms (necessary to construct SafeVMPtrQuiet) in this
2723 * time-critical method.
2724 */
2725 Console::SafeVMPtrQuiet pVM (mParent);
2726 if (pVM.isOk())
2727 VM_ASSERT_EMT (pVM.raw());
2728#endif
2729
2730 /* The method is only relevant to the primary framebuffer. */
2731 IFramebuffer *pFramebuffer = maFramebuffers[VBOX_VIDEO_PRIMARY_SCREEN].pFramebuffer;
2732
2733 if (pFramebuffer)
2734 {
2735 HRESULT rc;
2736 BYTE *address = 0;
2737 rc = pFramebuffer->COMGETTER(Address) (&address);
2738 AssertComRC (rc);
2739 ULONG bytesPerLine = 0;
2740 rc = pFramebuffer->COMGETTER(BytesPerLine) (&bytesPerLine);
2741 AssertComRC (rc);
2742 ULONG bitsPerPixel = 0;
2743 rc = pFramebuffer->COMGETTER(BitsPerPixel) (&bitsPerPixel);
2744 AssertComRC (rc);
2745 ULONG width = 0;
2746 rc = pFramebuffer->COMGETTER(Width) (&width);
2747 AssertComRC (rc);
2748 ULONG height = 0;
2749 rc = pFramebuffer->COMGETTER(Height) (&height);
2750 AssertComRC (rc);
2751
2752 /*
2753 * Check current parameters with new ones and issue handleDisplayResize()
2754 * to let the new frame buffer adjust itself properly. Note that it will
2755 * result into a recursive updateDisplayData() call but with
2756 * aCheckOld = false.
2757 */
2758 if (aCheckParams &&
2759 (mLastAddress != address ||
2760 mLastBytesPerLine != bytesPerLine ||
2761 mLastBitsPerPixel != bitsPerPixel ||
2762 mLastWidth != (int) width ||
2763 mLastHeight != (int) height))
2764 {
2765 handleDisplayResize (VBOX_VIDEO_PRIMARY_SCREEN, mLastBitsPerPixel,
2766 mLastAddress,
2767 mLastBytesPerLine,
2768 mLastWidth,
2769 mLastHeight);
2770 return;
2771 }
2772
2773 mpDrv->IConnector.pu8Data = (uint8_t *) address;
2774 mpDrv->IConnector.cbScanline = bytesPerLine;
2775 mpDrv->IConnector.cBits = bitsPerPixel;
2776 mpDrv->IConnector.cx = width;
2777 mpDrv->IConnector.cy = height;
2778 }
2779 else
2780 {
2781 /* black hole */
2782 mpDrv->IConnector.pu8Data = NULL;
2783 mpDrv->IConnector.cbScanline = 0;
2784 mpDrv->IConnector.cBits = 0;
2785 mpDrv->IConnector.cx = 0;
2786 mpDrv->IConnector.cy = 0;
2787 }
2788}
2789
2790/**
2791 * Changes the current frame buffer. Called on EMT to avoid both
2792 * race conditions and excessive locking.
2793 *
2794 * @note locks this object for writing
2795 * @thread EMT
2796 */
2797/* static */
2798DECLCALLBACK(int) Display::changeFramebuffer (Display *that, IFramebuffer *aFB,
2799 unsigned uScreenId)
2800{
2801 LogFlowFunc (("uScreenId = %d\n", uScreenId));
2802
2803 AssertReturn(that, VERR_INVALID_PARAMETER);
2804 AssertReturn(uScreenId < that->mcMonitors, VERR_INVALID_PARAMETER);
2805
2806 AutoCaller autoCaller(that);
2807 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2808
2809 AutoWriteLock alock(that COMMA_LOCKVAL_SRC_POS);
2810
2811 DISPLAYFBINFO *pDisplayFBInfo = &that->maFramebuffers[uScreenId];
2812 pDisplayFBInfo->pFramebuffer = aFB;
2813
2814 that->mParent->consoleVRDPServer()->SendResize ();
2815
2816 that->updateDisplayData (true /* aCheckParams */);
2817
2818 return VINF_SUCCESS;
2819}
2820
2821/**
2822 * Handle display resize event issued by the VGA device for the primary screen.
2823 *
2824 * @see PDMIDISPLAYCONNECTOR::pfnResize
2825 */
2826DECLCALLBACK(int) Display::displayResizeCallback(PPDMIDISPLAYCONNECTOR pInterface,
2827 uint32_t bpp, void *pvVRAM, uint32_t cbLine, uint32_t cx, uint32_t cy)
2828{
2829 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
2830
2831 LogFlowFunc (("bpp %d, pvVRAM %p, cbLine %d, cx %d, cy %d\n",
2832 bpp, pvVRAM, cbLine, cx, cy));
2833
2834 return pDrv->pDisplay->handleDisplayResize(VBOX_VIDEO_PRIMARY_SCREEN, bpp, pvVRAM, cbLine, cx, cy);
2835}
2836
2837/**
2838 * Handle display update.
2839 *
2840 * @see PDMIDISPLAYCONNECTOR::pfnUpdateRect
2841 */
2842DECLCALLBACK(void) Display::displayUpdateCallback(PPDMIDISPLAYCONNECTOR pInterface,
2843 uint32_t x, uint32_t y, uint32_t cx, uint32_t cy)
2844{
2845 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
2846
2847#ifdef DEBUG_sunlover
2848 LogFlowFunc (("mfVideoAccelEnabled = %d, %d,%d %dx%d\n",
2849 pDrv->pDisplay->mfVideoAccelEnabled, x, y, cx, cy));
2850#endif /* DEBUG_sunlover */
2851
2852 /* This call does update regardless of VBVA status.
2853 * But in VBVA mode this is called only as result of
2854 * pfnUpdateDisplayAll in the VGA device.
2855 */
2856
2857 pDrv->pDisplay->handleDisplayUpdate(x, y, cx, cy);
2858}
2859
2860/**
2861 * Periodic display refresh callback.
2862 *
2863 * @see PDMIDISPLAYCONNECTOR::pfnRefresh
2864 */
2865DECLCALLBACK(void) Display::displayRefreshCallback(PPDMIDISPLAYCONNECTOR pInterface)
2866{
2867 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
2868
2869#ifdef DEBUG_sunlover
2870 STAM_PROFILE_START(&StatDisplayRefresh, a);
2871#endif /* DEBUG_sunlover */
2872
2873#ifdef DEBUG_sunlover_2
2874 LogFlowFunc (("pDrv->pDisplay->mfVideoAccelEnabled = %d\n",
2875 pDrv->pDisplay->mfVideoAccelEnabled));
2876#endif /* DEBUG_sunlover_2 */
2877
2878 Display *pDisplay = pDrv->pDisplay;
2879 bool fNoUpdate = false; /* Do not update the display if any of the framebuffers is being resized. */
2880 unsigned uScreenId;
2881
2882 for (uScreenId = 0; uScreenId < pDisplay->mcMonitors; uScreenId++)
2883 {
2884 DISPLAYFBINFO *pFBInfo = &pDisplay->maFramebuffers[uScreenId];
2885
2886 /* Check the resize status. The status can be checked normally because
2887 * the status affects only the EMT.
2888 */
2889 uint32_t u32ResizeStatus = pFBInfo->u32ResizeStatus;
2890
2891 if (u32ResizeStatus == ResizeStatus_UpdateDisplayData)
2892 {
2893 LogFlowFunc (("ResizeStatus_UpdateDisplayData %d\n", uScreenId));
2894 fNoUpdate = true; /* Always set it here, because pfnUpdateDisplayAll can cause a new resize. */
2895 /* The framebuffer was resized and display data need to be updated. */
2896 pDisplay->handleResizeCompletedEMT ();
2897 if (pFBInfo->u32ResizeStatus != ResizeStatus_Void)
2898 {
2899 /* The resize status could be not Void here because a pending resize is issued. */
2900 continue;
2901 }
2902 /* Continue with normal processing because the status here is ResizeStatus_Void. */
2903 if (uScreenId == VBOX_VIDEO_PRIMARY_SCREEN)
2904 {
2905 /* Repaint the display because VM continued to run during the framebuffer resize. */
2906 if (!pFBInfo->pFramebuffer.isNull())
2907#ifdef VBOX_WITH_OLD_VBVA_LOCK
2908 {
2909 pDisplay->vbvaLock();
2910#endif /* VBOX_WITH_OLD_VBVA_LOCK */
2911 pDrv->pUpPort->pfnUpdateDisplayAll(pDrv->pUpPort);
2912#ifdef VBOX_WITH_OLD_VBVA_LOCK
2913 pDisplay->vbvaUnlock();
2914 }
2915#endif /* VBOX_WITH_OLD_VBVA_LOCK */
2916 }
2917 }
2918 else if (u32ResizeStatus == ResizeStatus_InProgress)
2919 {
2920 /* The framebuffer is being resized. Do not call the VGA device back. Immediately return. */
2921 LogFlowFunc (("ResizeStatus_InProcess\n"));
2922 fNoUpdate = true;
2923 continue;
2924 }
2925 }
2926
2927 if (!fNoUpdate)
2928 {
2929#ifdef VBOX_WITH_OLD_VBVA_LOCK
2930 int rc = pDisplay->videoAccelRefreshProcess();
2931
2932 if (rc != VINF_TRY_AGAIN) /* Means 'do nothing' here. */
2933 {
2934 if (rc == VWRN_INVALID_STATE)
2935 {
2936 /* No VBVA do a display update. */
2937 DISPLAYFBINFO *pFBInfo = &pDisplay->maFramebuffers[VBOX_VIDEO_PRIMARY_SCREEN];
2938 if (!pFBInfo->pFramebuffer.isNull() && pFBInfo->u32ResizeStatus == ResizeStatus_Void)
2939 {
2940 Assert(pDrv->IConnector.pu8Data);
2941 pDisplay->vbvaLock();
2942 pDrv->pUpPort->pfnUpdateDisplay(pDrv->pUpPort);
2943 pDisplay->vbvaUnlock();
2944 }
2945 }
2946
2947 /* Inform the VRDP server that the current display update sequence is
2948 * completed. At this moment the framebuffer memory contains a definite
2949 * image, that is synchronized with the orders already sent to VRDP client.
2950 * The server can now process redraw requests from clients or initial
2951 * fullscreen updates for new clients.
2952 */
2953 for (uScreenId = 0; uScreenId < pDisplay->mcMonitors; uScreenId++)
2954 {
2955 DISPLAYFBINFO *pFBInfo = &pDisplay->maFramebuffers[uScreenId];
2956
2957 if (!pFBInfo->pFramebuffer.isNull() && pFBInfo->u32ResizeStatus == ResizeStatus_Void)
2958 {
2959 Assert (pDisplay->mParent && pDisplay->mParent->consoleVRDPServer());
2960 pDisplay->mParent->consoleVRDPServer()->SendUpdate (uScreenId, NULL, 0);
2961 }
2962 }
2963 }
2964#else
2965 if (pDisplay->mfPendingVideoAccelEnable)
2966 {
2967 /* Acceleration was enabled while machine was not yet running
2968 * due to restoring from saved state. Update entire display and
2969 * actually enable acceleration.
2970 */
2971 Assert(pDisplay->mpPendingVbvaMemory);
2972
2973 /* Acceleration can not be yet enabled.*/
2974 Assert(pDisplay->mpVbvaMemory == NULL);
2975 Assert(!pDisplay->mfVideoAccelEnabled);
2976
2977 if (pDisplay->mfMachineRunning)
2978 {
2979 pDisplay->VideoAccelEnable (pDisplay->mfPendingVideoAccelEnable,
2980 pDisplay->mpPendingVbvaMemory);
2981
2982 /* Reset the pending state. */
2983 pDisplay->mfPendingVideoAccelEnable = false;
2984 pDisplay->mpPendingVbvaMemory = NULL;
2985 }
2986 }
2987 else
2988 {
2989 Assert(pDisplay->mpPendingVbvaMemory == NULL);
2990
2991 if (pDisplay->mfVideoAccelEnabled)
2992 {
2993 Assert(pDisplay->mpVbvaMemory);
2994 pDisplay->VideoAccelFlush ();
2995 }
2996 else
2997 {
2998 DISPLAYFBINFO *pFBInfo = &pDisplay->maFramebuffers[VBOX_VIDEO_PRIMARY_SCREEN];
2999 if (!pFBInfo->pFramebuffer.isNull())
3000 {
3001 Assert(pDrv->IConnector.pu8Data);
3002 Assert(pFBInfo->u32ResizeStatus == ResizeStatus_Void);
3003 pDrv->pUpPort->pfnUpdateDisplay(pDrv->pUpPort);
3004 }
3005 }
3006
3007 /* Inform the VRDP server that the current display update sequence is
3008 * completed. At this moment the framebuffer memory contains a definite
3009 * image, that is synchronized with the orders already sent to VRDP client.
3010 * The server can now process redraw requests from clients or initial
3011 * fullscreen updates for new clients.
3012 */
3013 for (uScreenId = 0; uScreenId < pDisplay->mcMonitors; uScreenId++)
3014 {
3015 DISPLAYFBINFO *pFBInfo = &pDisplay->maFramebuffers[uScreenId];
3016
3017 if (!pFBInfo->pFramebuffer.isNull() && pFBInfo->u32ResizeStatus == ResizeStatus_Void)
3018 {
3019 Assert (pDisplay->mParent && pDisplay->mParent->consoleVRDPServer());
3020 pDisplay->mParent->consoleVRDPServer()->SendUpdate (uScreenId, NULL, 0);
3021 }
3022 }
3023 }
3024#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
3025 }
3026
3027#ifdef DEBUG_sunlover
3028 STAM_PROFILE_STOP(&StatDisplayRefresh, a);
3029#endif /* DEBUG_sunlover */
3030#ifdef DEBUG_sunlover_2
3031 LogFlowFunc (("leave\n"));
3032#endif /* DEBUG_sunlover_2 */
3033}
3034
3035/**
3036 * Reset notification
3037 *
3038 * @see PDMIDISPLAYCONNECTOR::pfnReset
3039 */
3040DECLCALLBACK(void) Display::displayResetCallback(PPDMIDISPLAYCONNECTOR pInterface)
3041{
3042 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
3043
3044 LogFlowFunc (("\n"));
3045
3046 /* Disable VBVA mode. */
3047 pDrv->pDisplay->VideoAccelEnable (false, NULL);
3048}
3049
3050/**
3051 * LFBModeChange notification
3052 *
3053 * @see PDMIDISPLAYCONNECTOR::pfnLFBModeChange
3054 */
3055DECLCALLBACK(void) Display::displayLFBModeChangeCallback(PPDMIDISPLAYCONNECTOR pInterface, bool fEnabled)
3056{
3057 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
3058
3059 LogFlowFunc (("fEnabled=%d\n", fEnabled));
3060
3061 NOREF(fEnabled);
3062
3063 /* Disable VBVA mode in any case. The guest driver reenables VBVA mode if necessary. */
3064#ifdef VBOX_WITH_OLD_VBVA_LOCK
3065 /* This is called under DevVGA lock. Postpone disabling VBVA, do it in the refresh timer. */
3066 ASMAtomicWriteU32(&pDrv->pDisplay->mfu32PendingVideoAccelDisable, true);
3067#else
3068 pDrv->pDisplay->VideoAccelEnable (false, NULL);
3069#endif /* !VBOX_WITH_OLD_VBVA_LOCK */
3070}
3071
3072/**
3073 * Adapter information change notification.
3074 *
3075 * @see PDMIDISPLAYCONNECTOR::pfnProcessAdapterData
3076 */
3077DECLCALLBACK(void) Display::displayProcessAdapterDataCallback(PPDMIDISPLAYCONNECTOR pInterface, void *pvVRAM, uint32_t u32VRAMSize)
3078{
3079 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
3080
3081 if (pvVRAM == NULL)
3082 {
3083 unsigned i;
3084 for (i = 0; i < pDrv->pDisplay->mcMonitors; i++)
3085 {
3086 DISPLAYFBINFO *pFBInfo = &pDrv->pDisplay->maFramebuffers[i];
3087
3088 pFBInfo->u32Offset = 0;
3089 pFBInfo->u32MaxFramebufferSize = 0;
3090 pFBInfo->u32InformationSize = 0;
3091 }
3092 }
3093#ifndef VBOX_WITH_HGSMI
3094 else
3095 {
3096 uint8_t *pu8 = (uint8_t *)pvVRAM;
3097 pu8 += u32VRAMSize - VBOX_VIDEO_ADAPTER_INFORMATION_SIZE;
3098
3099 // @todo
3100 uint8_t *pu8End = pu8 + VBOX_VIDEO_ADAPTER_INFORMATION_SIZE;
3101
3102 VBOXVIDEOINFOHDR *pHdr;
3103
3104 for (;;)
3105 {
3106 pHdr = (VBOXVIDEOINFOHDR *)pu8;
3107 pu8 += sizeof (VBOXVIDEOINFOHDR);
3108
3109 if (pu8 >= pu8End)
3110 {
3111 LogRel(("VBoxVideo: Guest adapter information overflow!!!\n"));
3112 break;
3113 }
3114
3115 if (pHdr->u8Type == VBOX_VIDEO_INFO_TYPE_DISPLAY)
3116 {
3117 if (pHdr->u16Length != sizeof (VBOXVIDEOINFODISPLAY))
3118 {
3119 LogRel(("VBoxVideo: Guest adapter information %s invalid length %d!!!\n", "DISPLAY", pHdr->u16Length));
3120 break;
3121 }
3122
3123 VBOXVIDEOINFODISPLAY *pDisplay = (VBOXVIDEOINFODISPLAY *)pu8;
3124
3125 if (pDisplay->u32Index >= pDrv->pDisplay->mcMonitors)
3126 {
3127 LogRel(("VBoxVideo: Guest adapter information invalid display index %d!!!\n", pDisplay->u32Index));
3128 break;
3129 }
3130
3131 DISPLAYFBINFO *pFBInfo = &pDrv->pDisplay->maFramebuffers[pDisplay->u32Index];
3132
3133 pFBInfo->u32Offset = pDisplay->u32Offset;
3134 pFBInfo->u32MaxFramebufferSize = pDisplay->u32FramebufferSize;
3135 pFBInfo->u32InformationSize = pDisplay->u32InformationSize;
3136
3137 LogFlow(("VBOX_VIDEO_INFO_TYPE_DISPLAY: %d: at 0x%08X, size 0x%08X, info 0x%08X\n", pDisplay->u32Index, pDisplay->u32Offset, pDisplay->u32FramebufferSize, pDisplay->u32InformationSize));
3138 }
3139 else if (pHdr->u8Type == VBOX_VIDEO_INFO_TYPE_QUERY_CONF32)
3140 {
3141 if (pHdr->u16Length != sizeof (VBOXVIDEOINFOQUERYCONF32))
3142 {
3143 LogRel(("VBoxVideo: Guest adapter information %s invalid length %d!!!\n", "CONF32", pHdr->u16Length));
3144 break;
3145 }
3146
3147 VBOXVIDEOINFOQUERYCONF32 *pConf32 = (VBOXVIDEOINFOQUERYCONF32 *)pu8;
3148
3149 switch (pConf32->u32Index)
3150 {
3151 case VBOX_VIDEO_QCI32_MONITOR_COUNT:
3152 {
3153 pConf32->u32Value = pDrv->pDisplay->mcMonitors;
3154 } break;
3155
3156 case VBOX_VIDEO_QCI32_OFFSCREEN_HEAP_SIZE:
3157 {
3158 /* @todo make configurable. */
3159 pConf32->u32Value = _1M;
3160 } break;
3161
3162 default:
3163 LogRel(("VBoxVideo: CONF32 %d not supported!!! Skipping.\n", pConf32->u32Index));
3164 }
3165 }
3166 else if (pHdr->u8Type == VBOX_VIDEO_INFO_TYPE_END)
3167 {
3168 if (pHdr->u16Length != 0)
3169 {
3170 LogRel(("VBoxVideo: Guest adapter information %s invalid length %d!!!\n", "END", pHdr->u16Length));
3171 break;
3172 }
3173
3174 break;
3175 }
3176 else if (pHdr->u8Type != VBOX_VIDEO_INFO_TYPE_NV_HEAP) /** @todo why is Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp pushing this to us? */
3177 {
3178 LogRel(("Guest adapter information contains unsupported type %d. The block has been skipped.\n", pHdr->u8Type));
3179 }
3180
3181 pu8 += pHdr->u16Length;
3182 }
3183 }
3184#endif /* !VBOX_WITH_HGSMI */
3185}
3186
3187/**
3188 * Display information change notification.
3189 *
3190 * @see PDMIDISPLAYCONNECTOR::pfnProcessDisplayData
3191 */
3192DECLCALLBACK(void) Display::displayProcessDisplayDataCallback(PPDMIDISPLAYCONNECTOR pInterface, void *pvVRAM, unsigned uScreenId)
3193{
3194 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
3195
3196 if (uScreenId >= pDrv->pDisplay->mcMonitors)
3197 {
3198 LogRel(("VBoxVideo: Guest display information invalid display index %d!!!\n", uScreenId));
3199 return;
3200 }
3201
3202 /* Get the display information structure. */
3203 DISPLAYFBINFO *pFBInfo = &pDrv->pDisplay->maFramebuffers[uScreenId];
3204
3205 uint8_t *pu8 = (uint8_t *)pvVRAM;
3206 pu8 += pFBInfo->u32Offset + pFBInfo->u32MaxFramebufferSize;
3207
3208 // @todo
3209 uint8_t *pu8End = pu8 + pFBInfo->u32InformationSize;
3210
3211 VBOXVIDEOINFOHDR *pHdr;
3212
3213 for (;;)
3214 {
3215 pHdr = (VBOXVIDEOINFOHDR *)pu8;
3216 pu8 += sizeof (VBOXVIDEOINFOHDR);
3217
3218 if (pu8 >= pu8End)
3219 {
3220 LogRel(("VBoxVideo: Guest display information overflow!!!\n"));
3221 break;
3222 }
3223
3224 if (pHdr->u8Type == VBOX_VIDEO_INFO_TYPE_SCREEN)
3225 {
3226 if (pHdr->u16Length != sizeof (VBOXVIDEOINFOSCREEN))
3227 {
3228 LogRel(("VBoxVideo: Guest display information %s invalid length %d!!!\n", "SCREEN", pHdr->u16Length));
3229 break;
3230 }
3231
3232 VBOXVIDEOINFOSCREEN *pScreen = (VBOXVIDEOINFOSCREEN *)pu8;
3233
3234 pFBInfo->xOrigin = pScreen->xOrigin;
3235 pFBInfo->yOrigin = pScreen->yOrigin;
3236
3237 pFBInfo->w = pScreen->u16Width;
3238 pFBInfo->h = pScreen->u16Height;
3239
3240 LogFlow(("VBOX_VIDEO_INFO_TYPE_SCREEN: (%p) %d: at %d,%d, linesize 0x%X, size %dx%d, bpp %d, flags 0x%02X\n",
3241 pHdr, uScreenId, pScreen->xOrigin, pScreen->yOrigin, pScreen->u32LineSize, pScreen->u16Width, pScreen->u16Height, pScreen->bitsPerPixel, pScreen->u8Flags));
3242
3243 if (uScreenId != VBOX_VIDEO_PRIMARY_SCREEN)
3244 {
3245 /* Primary screen resize is initiated by the VGA device. */
3246 pDrv->pDisplay->handleDisplayResize(uScreenId, pScreen->bitsPerPixel, (uint8_t *)pvVRAM + pFBInfo->u32Offset, pScreen->u32LineSize, pScreen->u16Width, pScreen->u16Height);
3247 }
3248 }
3249 else if (pHdr->u8Type == VBOX_VIDEO_INFO_TYPE_END)
3250 {
3251 if (pHdr->u16Length != 0)
3252 {
3253 LogRel(("VBoxVideo: Guest adapter information %s invalid length %d!!!\n", "END", pHdr->u16Length));
3254 break;
3255 }
3256
3257 break;
3258 }
3259 else if (pHdr->u8Type == VBOX_VIDEO_INFO_TYPE_HOST_EVENTS)
3260 {
3261 if (pHdr->u16Length != sizeof (VBOXVIDEOINFOHOSTEVENTS))
3262 {
3263 LogRel(("VBoxVideo: Guest display information %s invalid length %d!!!\n", "HOST_EVENTS", pHdr->u16Length));
3264 break;
3265 }
3266
3267 VBOXVIDEOINFOHOSTEVENTS *pHostEvents = (VBOXVIDEOINFOHOSTEVENTS *)pu8;
3268
3269 pFBInfo->pHostEvents = pHostEvents;
3270
3271 LogFlow(("VBOX_VIDEO_INFO_TYPE_HOSTEVENTS: (%p)\n",
3272 pHostEvents));
3273 }
3274 else if (pHdr->u8Type == VBOX_VIDEO_INFO_TYPE_LINK)
3275 {
3276 if (pHdr->u16Length != sizeof (VBOXVIDEOINFOLINK))
3277 {
3278 LogRel(("VBoxVideo: Guest adapter information %s invalid length %d!!!\n", "LINK", pHdr->u16Length));
3279 break;
3280 }
3281
3282 VBOXVIDEOINFOLINK *pLink = (VBOXVIDEOINFOLINK *)pu8;
3283 pu8 += pLink->i32Offset;
3284 }
3285 else
3286 {
3287 LogRel(("Guest display information contains unsupported type %d\n", pHdr->u8Type));
3288 }
3289
3290 pu8 += pHdr->u16Length;
3291 }
3292}
3293
3294#ifdef VBOX_WITH_VIDEOHWACCEL
3295
3296void Display::handleVHWACommandProcess(PPDMIDISPLAYCONNECTOR pInterface, PVBOXVHWACMD pCommand)
3297{
3298 unsigned id = (unsigned)pCommand->iDisplay;
3299 int rc = VINF_SUCCESS;
3300 if (id < mcMonitors)
3301 {
3302 IFramebuffer *pFramebuffer = maFramebuffers[id].pFramebuffer;
3303 Assert (pFramebuffer);
3304
3305 if (pFramebuffer != NULL)
3306 {
3307 pFramebuffer->Lock();
3308
3309 HRESULT hr = pFramebuffer->ProcessVHWACommand((BYTE*)pCommand);
3310 if (FAILED(hr))
3311 {
3312 rc = (hr == E_NOTIMPL) ? VERR_NOT_IMPLEMENTED : VERR_GENERAL_FAILURE;
3313 }
3314
3315 pFramebuffer->Unlock();
3316 }
3317 else
3318 {
3319 rc = VERR_NOT_IMPLEMENTED;
3320 }
3321 }
3322 else
3323 {
3324 rc = VERR_INVALID_PARAMETER;
3325 }
3326
3327 if (RT_FAILURE(rc))
3328 {
3329 /* tell the guest the command is complete */
3330 pCommand->Flags &= (~VBOXVHWACMD_FLAG_HG_ASYNCH);
3331 pCommand->rc = rc;
3332 }
3333}
3334
3335DECLCALLBACK(void) Display::displayVHWACommandProcess(PPDMIDISPLAYCONNECTOR pInterface, PVBOXVHWACMD pCommand)
3336{
3337 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
3338
3339 pDrv->pDisplay->handleVHWACommandProcess(pInterface, pCommand);
3340}
3341#endif
3342
3343#ifdef VBOX_WITH_HGSMI
3344DECLCALLBACK(int) Display::displayVBVAEnable(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId, PVBVAHOSTFLAGS pHostFlags)
3345{
3346 LogFlowFunc(("uScreenId %d\n", uScreenId));
3347
3348 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
3349 Display *pThis = pDrv->pDisplay;
3350
3351 pThis->maFramebuffers[uScreenId].fVBVAEnabled = true;
3352 pThis->maFramebuffers[uScreenId].pVBVAHostFlags = pHostFlags;
3353
3354 vbvaSetMemoryFlagsHGSMI(uScreenId, pThis->mfu32SupportedOrders, pThis->mfVideoAccelVRDP, &pThis->maFramebuffers[uScreenId]);
3355
3356 return VINF_SUCCESS;
3357}
3358
3359DECLCALLBACK(void) Display::displayVBVADisable(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId)
3360{
3361 LogFlowFunc(("uScreenId %d\n", uScreenId));
3362
3363 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
3364 Display *pThis = pDrv->pDisplay;
3365
3366 pThis->maFramebuffers[uScreenId].fVBVAEnabled = false;
3367
3368 vbvaSetMemoryFlagsHGSMI(uScreenId, 0, false, &pThis->maFramebuffers[uScreenId]);
3369
3370 pThis->maFramebuffers[uScreenId].pVBVAHostFlags = NULL;
3371}
3372
3373DECLCALLBACK(void) Display::displayVBVAUpdateBegin(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId)
3374{
3375 LogFlowFunc(("uScreenId %d\n", uScreenId));
3376
3377 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
3378 Display *pThis = pDrv->pDisplay;
3379 DISPLAYFBINFO *pFBInfo = &pThis->maFramebuffers[uScreenId];
3380
3381 if (ASMAtomicReadU32(&pThis->mu32UpdateVBVAFlags) > 0)
3382 {
3383 vbvaSetMemoryFlagsAllHGSMI(pThis->mfu32SupportedOrders, pThis->mfVideoAccelVRDP, pThis->maFramebuffers, pThis->mcMonitors);
3384 ASMAtomicDecU32(&pThis->mu32UpdateVBVAFlags);
3385 }
3386
3387 if (RT_LIKELY(pFBInfo->u32ResizeStatus == ResizeStatus_Void))
3388 {
3389 if (RT_UNLIKELY(pFBInfo->cVBVASkipUpdate != 0))
3390 {
3391 /* Some updates were skipped. Note: displayVBVAUpdate* callbacks are called
3392 * under display device lock, so thread safe.
3393 */
3394 pFBInfo->cVBVASkipUpdate = 0;
3395 pThis->handleDisplayUpdate(pFBInfo->vbvaSkippedRect.xLeft,
3396 pFBInfo->vbvaSkippedRect.yTop,
3397 pFBInfo->vbvaSkippedRect.xRight - pFBInfo->vbvaSkippedRect.xLeft,
3398 pFBInfo->vbvaSkippedRect.yBottom - pFBInfo->vbvaSkippedRect.yTop);
3399 }
3400 }
3401 else
3402 {
3403 /* The framebuffer is being resized. */
3404 pFBInfo->cVBVASkipUpdate++;
3405 }
3406}
3407
3408DECLCALLBACK(void) Display::displayVBVAUpdateProcess(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId, const PVBVACMDHDR pCmd, size_t cbCmd)
3409{
3410 LogFlowFunc(("uScreenId %d pCmd %p cbCmd %d\n", uScreenId, pCmd, cbCmd));
3411
3412 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
3413 Display *pThis = pDrv->pDisplay;
3414 DISPLAYFBINFO *pFBInfo = &pThis->maFramebuffers[uScreenId];
3415
3416 if (RT_LIKELY(pFBInfo->cVBVASkipUpdate == 0))
3417 {
3418 if (pFBInfo->fDefaultFormat)
3419 {
3420 if (uScreenId == VBOX_VIDEO_PRIMARY_SCREEN)
3421 {
3422 pDrv->pUpPort->pfnUpdateDisplayRect (pDrv->pUpPort, pCmd->x, pCmd->y, pCmd->w, pCmd->h);
3423 }
3424 else if (!pFBInfo->pFramebuffer.isNull())
3425 {
3426 /* Render VRAM content to the framebuffer. */
3427 BYTE *address = NULL;
3428 HRESULT hrc = pFBInfo->pFramebuffer->COMGETTER(Address) (&address);
3429 if (SUCCEEDED(hrc) && address != NULL)
3430 {
3431 uint32_t width = pCmd->w;
3432 uint32_t height = pCmd->h;
3433
3434 const uint8_t *pu8Src = pFBInfo->pu8FramebufferVRAM;
3435 int32_t xSrc = pCmd->x - pFBInfo->xOrigin;
3436 int32_t ySrc = pCmd->y - pFBInfo->yOrigin;
3437 uint32_t u32SrcWidth = pFBInfo->w;
3438 uint32_t u32SrcHeight = pFBInfo->h;
3439 uint32_t u32SrcLineSize = pFBInfo->u32LineSize;
3440 uint32_t u32SrcBitsPerPixel = pFBInfo->u16BitsPerPixel;
3441
3442 uint8_t *pu8Dst = address;
3443 int32_t xDst = xSrc;
3444 int32_t yDst = ySrc;
3445 uint32_t u32DstWidth = u32SrcWidth;
3446 uint32_t u32DstHeight = u32SrcHeight;
3447 uint32_t u32DstLineSize = u32DstWidth * 4;
3448 uint32_t u32DstBitsPerPixel = 32;
3449
3450 pDrv->pUpPort->pfnCopyRect(pDrv->pUpPort,
3451 width, height,
3452 pu8Src,
3453 xSrc, ySrc,
3454 u32SrcWidth, u32SrcHeight,
3455 u32SrcLineSize, u32SrcBitsPerPixel,
3456 pu8Dst,
3457 xDst, yDst,
3458 u32DstWidth, u32DstHeight,
3459 u32DstLineSize, u32DstBitsPerPixel);
3460 }
3461 }
3462 pThis->handleDisplayUpdate (pCmd->x + pFBInfo->xOrigin,
3463 pCmd->y + pFBInfo->yOrigin, pCmd->w, pCmd->h);
3464 }
3465
3466 pThis->mParent->consoleVRDPServer()->SendUpdate (uScreenId, pCmd, cbCmd);
3467 }
3468}
3469
3470DECLCALLBACK(void) Display::displayVBVAUpdateEnd(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId, int32_t x, int32_t y, uint32_t cx, uint32_t cy)
3471{
3472 LogFlowFunc(("uScreenId %d %d,%d %dx%d\n", uScreenId, x, y, cx, cy));
3473
3474 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
3475 Display *pThis = pDrv->pDisplay;
3476 DISPLAYFBINFO *pFBInfo = &pThis->maFramebuffers[uScreenId];
3477
3478 /* @todo handleFramebufferUpdate (uScreenId,
3479 * x - pThis->maFramebuffers[uScreenId].xOrigin,
3480 * y - pThis->maFramebuffers[uScreenId].yOrigin,
3481 * cx, cy);
3482 */
3483 if (RT_LIKELY(pFBInfo->cVBVASkipUpdate == 0))
3484 {
3485 pThis->handleDisplayUpdate(x, y, cx, cy);
3486 }
3487 else
3488 {
3489 /* Save the updated rectangle. */
3490 int32_t xRight = x + cx;
3491 int32_t yBottom = y + cy;
3492
3493 if (pFBInfo->cVBVASkipUpdate == 1)
3494 {
3495 pFBInfo->vbvaSkippedRect.xLeft = x;
3496 pFBInfo->vbvaSkippedRect.yTop = y;
3497 pFBInfo->vbvaSkippedRect.xRight = xRight;
3498 pFBInfo->vbvaSkippedRect.yBottom = yBottom;
3499 }
3500 else
3501 {
3502 if (pFBInfo->vbvaSkippedRect.xLeft > x)
3503 {
3504 pFBInfo->vbvaSkippedRect.xLeft = x;
3505 }
3506 if (pFBInfo->vbvaSkippedRect.yTop > y)
3507 {
3508 pFBInfo->vbvaSkippedRect.yTop = y;
3509 }
3510 if (pFBInfo->vbvaSkippedRect.xRight < xRight)
3511 {
3512 pFBInfo->vbvaSkippedRect.xRight = xRight;
3513 }
3514 if (pFBInfo->vbvaSkippedRect.yBottom < yBottom)
3515 {
3516 pFBInfo->vbvaSkippedRect.yBottom = yBottom;
3517 }
3518 }
3519 }
3520}
3521
3522DECLCALLBACK(int) Display::displayVBVAResize(PPDMIDISPLAYCONNECTOR pInterface, const PVBVAINFOVIEW pView, const PVBVAINFOSCREEN pScreen, void *pvVRAM)
3523{
3524 LogFlowFunc(("pScreen %p, pvVRAM %p\n", pScreen, pvVRAM));
3525
3526 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
3527 Display *pThis = pDrv->pDisplay;
3528
3529 DISPLAYFBINFO *pFBInfo = &pThis->maFramebuffers[pScreen->u32ViewIndex];
3530
3531 /* Check if this is a real resize or a notification about the screen origin.
3532 * The guest uses this VBVAResize call for both.
3533 */
3534 bool fResize = pFBInfo->u16BitsPerPixel != pScreen->u16BitsPerPixel
3535 || pFBInfo->pu8FramebufferVRAM != (uint8_t *)pvVRAM + pScreen->u32StartOffset
3536 || pFBInfo->u32LineSize != pScreen->u32LineSize
3537 || pFBInfo->w != pScreen->u32Width
3538 || pFBInfo->h != pScreen->u32Height;
3539
3540 bool fNewOrigin = pFBInfo->xOrigin != pScreen->i32OriginX
3541 || pFBInfo->yOrigin != pScreen->i32OriginY;
3542
3543 pFBInfo->u32Offset = pView->u32ViewOffset; /* Not used in HGSMI. */
3544 pFBInfo->u32MaxFramebufferSize = pView->u32MaxScreenSize; /* Not used in HGSMI. */
3545 pFBInfo->u32InformationSize = 0; /* Not used in HGSMI. */
3546
3547 pFBInfo->xOrigin = pScreen->i32OriginX;
3548 pFBInfo->yOrigin = pScreen->i32OriginY;
3549
3550 pFBInfo->w = pScreen->u32Width;
3551 pFBInfo->h = pScreen->u32Height;
3552
3553 pFBInfo->u16BitsPerPixel = pScreen->u16BitsPerPixel;
3554 pFBInfo->pu8FramebufferVRAM = (uint8_t *)pvVRAM + pScreen->u32StartOffset;
3555 pFBInfo->u32LineSize = pScreen->u32LineSize;
3556
3557 if (fNewOrigin)
3558 {
3559 /* @todo May be framebuffer/display should be notified in this case. */
3560 }
3561
3562#if defined(VBOX_WITH_HGCM) && defined(VBOX_WITH_CROGL)
3563 if (fNewOrigin && !fResize)
3564 {
3565 BOOL is3denabled;
3566 pThis->mParent->machine()->COMGETTER(Accelerate3DEnabled)(&is3denabled);
3567
3568 if (is3denabled)
3569 {
3570 VBOXHGCMSVCPARM parm;
3571
3572 parm.type = VBOX_HGCM_SVC_PARM_32BIT;
3573 parm.u.uint32 = pScreen->u32ViewIndex;
3574
3575 pThis->mParent->getVMMDev()->hgcmHostCall("VBoxSharedCrOpenGL", SHCRGL_HOST_FN_SCREEN_CHANGED,
3576 SHCRGL_CPARMS_SCREEN_CHANGED, &parm);
3577 }
3578 }
3579#endif /* VBOX_WITH_CROGL */
3580
3581 if (!fResize)
3582 {
3583 /* No paramaters of the framebuffer have actually changed. */
3584 return VINF_SUCCESS;
3585 }
3586
3587 return pThis->handleDisplayResize(pScreen->u32ViewIndex, pScreen->u16BitsPerPixel,
3588 (uint8_t *)pvVRAM + pScreen->u32StartOffset,
3589 pScreen->u32LineSize, pScreen->u32Width, pScreen->u32Height);
3590}
3591
3592DECLCALLBACK(int) Display::displayVBVAMousePointerShape(PPDMIDISPLAYCONNECTOR pInterface, bool fVisible, bool fAlpha,
3593 uint32_t xHot, uint32_t yHot,
3594 uint32_t cx, uint32_t cy,
3595 const void *pvShape)
3596{
3597 LogFlowFunc(("\n"));
3598
3599 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
3600 Display *pThis = pDrv->pDisplay;
3601
3602 /* Tell the console about it */
3603 pDrv->pDisplay->mParent->onMousePointerShapeChange(fVisible, fAlpha,
3604 xHot, yHot, cx, cy, (void *)pvShape);
3605
3606 return VINF_SUCCESS;
3607}
3608#endif /* VBOX_WITH_HGSMI */
3609
3610/**
3611 * @interface_method_impl{PDMIBASE,pfnQueryInterface}
3612 */
3613DECLCALLBACK(void *) Display::drvQueryInterface(PPDMIBASE pInterface, const char *pszIID)
3614{
3615 PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
3616 PDRVMAINDISPLAY pDrv = PDMINS_2_DATA(pDrvIns, PDRVMAINDISPLAY);
3617 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pDrvIns->IBase);
3618 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIDISPLAYCONNECTOR, &pDrv->IConnector);
3619 return NULL;
3620}
3621
3622
3623/**
3624 * Destruct a display driver instance.
3625 *
3626 * @returns VBox status.
3627 * @param pDrvIns The driver instance data.
3628 */
3629DECLCALLBACK(void) Display::drvDestruct(PPDMDRVINS pDrvIns)
3630{
3631 PDRVMAINDISPLAY pData = PDMINS_2_DATA(pDrvIns, PDRVMAINDISPLAY);
3632 LogFlowFunc (("iInstance=%d\n", pDrvIns->iInstance));
3633 PDMDRV_CHECK_VERSIONS_RETURN_VOID(pDrvIns);
3634
3635 if (pData->pDisplay)
3636 {
3637 AutoWriteLock displayLock(pData->pDisplay COMMA_LOCKVAL_SRC_POS);
3638 pData->pDisplay->mpDrv = NULL;
3639 pData->pDisplay->mpVMMDev = NULL;
3640 pData->pDisplay->mLastAddress = NULL;
3641 pData->pDisplay->mLastBytesPerLine = 0;
3642 pData->pDisplay->mLastBitsPerPixel = 0,
3643 pData->pDisplay->mLastWidth = 0;
3644 pData->pDisplay->mLastHeight = 0;
3645 }
3646}
3647
3648
3649/**
3650 * Construct a display driver instance.
3651 *
3652 * @copydoc FNPDMDRVCONSTRUCT
3653 */
3654DECLCALLBACK(int) Display::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags)
3655{
3656 PDRVMAINDISPLAY pData = PDMINS_2_DATA(pDrvIns, PDRVMAINDISPLAY);
3657 LogFlowFunc (("iInstance=%d\n", pDrvIns->iInstance));
3658 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns);
3659
3660 /*
3661 * Validate configuration.
3662 */
3663 if (!CFGMR3AreValuesValid(pCfg, "Object\0"))
3664 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
3665 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER,
3666 ("Configuration error: Not possible to attach anything to this driver!\n"),
3667 VERR_PDM_DRVINS_NO_ATTACH);
3668
3669 /*
3670 * Init Interfaces.
3671 */
3672 pDrvIns->IBase.pfnQueryInterface = Display::drvQueryInterface;
3673
3674 pData->IConnector.pfnResize = Display::displayResizeCallback;
3675 pData->IConnector.pfnUpdateRect = Display::displayUpdateCallback;
3676 pData->IConnector.pfnRefresh = Display::displayRefreshCallback;
3677 pData->IConnector.pfnReset = Display::displayResetCallback;
3678 pData->IConnector.pfnLFBModeChange = Display::displayLFBModeChangeCallback;
3679 pData->IConnector.pfnProcessAdapterData = Display::displayProcessAdapterDataCallback;
3680 pData->IConnector.pfnProcessDisplayData = Display::displayProcessDisplayDataCallback;
3681#ifdef VBOX_WITH_VIDEOHWACCEL
3682 pData->IConnector.pfnVHWACommandProcess = Display::displayVHWACommandProcess;
3683#endif
3684#ifdef VBOX_WITH_HGSMI
3685 pData->IConnector.pfnVBVAEnable = Display::displayVBVAEnable;
3686 pData->IConnector.pfnVBVADisable = Display::displayVBVADisable;
3687 pData->IConnector.pfnVBVAUpdateBegin = Display::displayVBVAUpdateBegin;
3688 pData->IConnector.pfnVBVAUpdateProcess = Display::displayVBVAUpdateProcess;
3689 pData->IConnector.pfnVBVAUpdateEnd = Display::displayVBVAUpdateEnd;
3690 pData->IConnector.pfnVBVAResize = Display::displayVBVAResize;
3691 pData->IConnector.pfnVBVAMousePointerShape = Display::displayVBVAMousePointerShape;
3692#endif
3693
3694
3695 /*
3696 * Get the IDisplayPort interface of the above driver/device.
3697 */
3698 pData->pUpPort = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMIDISPLAYPORT);
3699 if (!pData->pUpPort)
3700 {
3701 AssertMsgFailed(("Configuration error: No display port interface above!\n"));
3702 return VERR_PDM_MISSING_INTERFACE_ABOVE;
3703 }
3704#if defined(VBOX_WITH_VIDEOHWACCEL)
3705 pData->pVBVACallbacks = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMIDISPLAYVBVACALLBACKS);
3706 if (!pData->pVBVACallbacks)
3707 {
3708 AssertMsgFailed(("Configuration error: No VBVA callback interface above!\n"));
3709 return VERR_PDM_MISSING_INTERFACE_ABOVE;
3710 }
3711#endif
3712 /*
3713 * Get the Display object pointer and update the mpDrv member.
3714 */
3715 void *pv;
3716 int rc = CFGMR3QueryPtr(pCfg, "Object", &pv);
3717 if (RT_FAILURE(rc))
3718 {
3719 AssertMsgFailed(("Configuration error: No/bad \"Object\" value! rc=%Rrc\n", rc));
3720 return rc;
3721 }
3722 pData->pDisplay = (Display *)pv; /** @todo Check this cast! */
3723 pData->pDisplay->mpDrv = pData;
3724
3725 /*
3726 * Update our display information according to the framebuffer
3727 */
3728 pData->pDisplay->updateDisplayData();
3729
3730 /*
3731 * Start periodic screen refreshes
3732 */
3733 pData->pUpPort->pfnSetRefreshRate(pData->pUpPort, 20);
3734
3735 return VINF_SUCCESS;
3736}
3737
3738
3739/**
3740 * Display driver registration record.
3741 */
3742const PDMDRVREG Display::DrvReg =
3743{
3744 /* u32Version */
3745 PDM_DRVREG_VERSION,
3746 /* szName */
3747 "MainDisplay",
3748 /* szRCMod */
3749 "",
3750 /* szR0Mod */
3751 "",
3752 /* pszDescription */
3753 "Main display driver (Main as in the API).",
3754 /* fFlags */
3755 PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
3756 /* fClass. */
3757 PDM_DRVREG_CLASS_DISPLAY,
3758 /* cMaxInstances */
3759 ~0,
3760 /* cbInstance */
3761 sizeof(DRVMAINDISPLAY),
3762 /* pfnConstruct */
3763 Display::drvConstruct,
3764 /* pfnDestruct */
3765 Display::drvDestruct,
3766 /* pfnRelocate */
3767 NULL,
3768 /* pfnIOCtl */
3769 NULL,
3770 /* pfnPowerOn */
3771 NULL,
3772 /* pfnReset */
3773 NULL,
3774 /* pfnSuspend */
3775 NULL,
3776 /* pfnResume */
3777 NULL,
3778 /* pfnAttach */
3779 NULL,
3780 /* pfnDetach */
3781 NULL,
3782 /* pfnPowerOff */
3783 NULL,
3784 /* pfnSoftReset */
3785 NULL,
3786 /* u32EndVersion */
3787 PDM_DRVREG_VERSION
3788};
3789/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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