VirtualBox

source: vbox/trunk/src/VBox/Main/src-client/DisplayImpl.cpp@ 45662

Last change on this file since 45662 was 45132, checked in by vboxsync, 12 years ago

crOpenGL: seamles mode support impl; bugfizes & cleanup

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

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