VirtualBox

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

Last change on this file since 1939 was 1904, checked in by vboxsync, 18 years ago

warning

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 56.6 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006 InnoTek Systemberatung GmbH
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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22#include "DisplayImpl.h"
23#include "FramebufferImpl.h"
24#include "ConsoleImpl.h"
25#include "ConsoleVRDPServer.h"
26#include "VMMDev.h"
27
28#include "Logging.h"
29
30#include <iprt/semaphore.h>
31#include <iprt/thread.h>
32#include <iprt/asm.h>
33
34#include <VBox/pdm.h>
35#include <VBox/cfgm.h>
36#include <VBox/err.h>
37#include <VBox/vm.h>
38
39/**
40 * Display driver instance data.
41 */
42typedef struct DRVMAINDISPLAY
43{
44 /** Pointer to the display object. */
45 Display *pDisplay;
46 /** Pointer to the driver instance structure. */
47 PPDMDRVINS pDrvIns;
48 /** Pointer to the keyboard port interface of the driver/device above us. */
49 PPDMIDISPLAYPORT pUpPort;
50 /** Our display connector interface. */
51 PDMIDISPLAYCONNECTOR Connector;
52} DRVMAINDISPLAY, *PDRVMAINDISPLAY;
53
54/** Converts PDMIDISPLAYCONNECTOR pointer to a DRVMAINDISPLAY pointer. */
55#define PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface) ( (PDRVMAINDISPLAY) ((uintptr_t)pInterface - RT_OFFSETOF(DRVMAINDISPLAY, Connector)) )
56
57#ifdef DEBUG_sunlover
58static STAMPROFILE StatDisplayRefresh;
59static int stam = 0;
60#endif /* DEBUG_sunlover */
61
62// constructor / destructor
63/////////////////////////////////////////////////////////////////////////////
64
65HRESULT Display::FinalConstruct()
66{
67 mpVbvaMemory = NULL;
68 mfVideoAccelEnabled = false;
69 mfVideoAccelVRDP = false;
70 mfu32SupportedOrders = 0;
71 mcVideoAccelVRDPRefs = 0;
72
73 mpPendingVbvaMemory = NULL;
74 mfPendingVideoAccelEnable = false;
75
76 mfMachineRunning = false;
77
78 mpu8VbvaPartial = NULL;
79 mcbVbvaPartial = 0;
80
81 mParent = NULL;
82 mpDrv = NULL;
83 mpVMMDev = NULL;
84 mfVMMDevInited = false;
85 RTSemEventMultiCreate(&mResizeSem);
86 RTSemEventMultiCreate(&mUpdateSem);
87
88 mLastAddress = NULL;
89 mLastLineSize = 0;
90 mLastColorDepth = 0,
91 mLastWidth = 0;
92 mLastHeight = 0;
93
94 return S_OK;
95}
96
97void Display::FinalRelease()
98{
99 if (isReady())
100 uninit();
101}
102
103// public initializer/uninitializer for internal purposes only
104/////////////////////////////////////////////////////////////////////////////
105
106/**
107 * Initializes the display object.
108 *
109 * @returns COM result indicator
110 * @param parent handle of our parent object
111 * @param qemuConsoleData address of common console data structure
112 */
113HRESULT Display::init (Console *parent)
114{
115 LogFlowFunc (("isReady=%d", isReady()));
116
117 ComAssertRet (parent, E_INVALIDARG);
118
119 AutoLock alock (this);
120 ComAssertRet (!isReady(), E_UNEXPECTED);
121
122 mParent = parent;
123
124 /* reset the event sems */
125 RTSemEventMultiReset(mResizeSem);
126 RTSemEventMultiReset(mUpdateSem);
127
128 // by default, we have an internal framebuffer which is
129 // NULL, i.e. a black hole for no display output
130 mFramebuffer = 0;
131 mInternalFramebuffer = true;
132 mFramebufferOpened = false;
133 mSupportedAccelOps = 0;
134
135 mParent->RegisterCallback(this);
136
137 setReady (true);
138 return S_OK;
139}
140
141/**
142 * Uninitializes the instance and sets the ready flag to FALSE.
143 * Called either from FinalRelease() or by the parent when it gets destroyed.
144 */
145void Display::uninit()
146{
147 LogFlowFunc (("isReady=%d\n", isReady()));
148
149 AutoLock alock (this);
150 AssertReturn (isReady(), (void) 0);
151
152 mFramebuffer.setNull();
153 RTSemEventMultiDestroy(mResizeSem);
154 RTSemEventMultiDestroy(mUpdateSem);
155
156 if (mParent)
157 {
158 mParent->UnregisterCallback(this);
159 }
160
161 if (mpDrv)
162 mpDrv->pDisplay = NULL;
163 mpDrv = NULL;
164 mpVMMDev = NULL;
165 mfVMMDevInited = true;
166
167 setReady (false);
168}
169
170// IConsoleCallback method
171STDMETHODIMP Display::OnStateChange(MachineState_T machineState)
172{
173 if (machineState == MachineState_Running)
174 {
175 LogFlowFunc (("Machine running\n"));
176
177 mfMachineRunning = true;
178 }
179 else
180 {
181 mfMachineRunning = false;
182 }
183 return S_OK;
184}
185
186// public methods only for internal purposes
187/////////////////////////////////////////////////////////////////////////////
188
189void Display::callFramebufferResize (FramebufferPixelFormat_T pixelFormat, void *pvVRAM, uint32_t cbLine, int w, int h)
190{
191 Assert (!mFramebuffer.isNull());
192
193 /* Call the framebuffer to try and set required pixelFormat. */
194 BOOL finished = TRUE;
195
196 /* Reset the event here. It could be signalled before it gets to after 'if (!finished)' */
197 RTSemEventMultiReset(mResizeSem);
198
199 mFramebuffer->RequestResize (pixelFormat, (BYTE *) pvVRAM, cbLine, w, h, &finished);
200
201 if (!finished)
202 {
203 LogFlowFunc (("External framebuffer wants us to wait!\n"));
204
205 /* Note: The previously obtained framebuffer lock is preserved.
206 * The EMT keeps the lock until the resize process completes.
207 */
208
209 /* The framebuffer needs more time to process
210 * the event so we have to halt the VM until it's done.
211 */
212 RTSemEventMultiWait(mResizeSem, RT_INDEFINITE_WAIT); /** @todo r=bird: this is a serious deadlock point, where EMT is stuck while the main thread is doing VMR3Req for some reason. */
213 }
214}
215
216/**
217 * Handles display resize event.
218 *
219 * @param w New display width
220 * @param h New display height
221 *
222 * @thread EMT
223 */
224void Display::handleDisplayResize (uint32_t bpp, void *pvVRAM, uint32_t cbLine, int w, int h)
225{
226 LogRel (("Display::handleDisplayResize(): pvVRAM=%p w=%d h=%d bpp=%d cbLine=0x%X\n",
227 pvVRAM, w, h, bpp, cbLine));
228
229 /* If there is no framebuffer, this call is not interesting. */
230 if (mFramebuffer.isNull())
231 {
232 return;
233 }
234
235 mLastAddress = pvVRAM;
236 mLastLineSize = cbLine;
237 mLastColorDepth = bpp,
238 mLastWidth = w;
239 mLastHeight = h;
240
241 FramebufferPixelFormat_T pixelFormat;
242
243 switch (bpp)
244 {
245 case 32: pixelFormat = FramebufferPixelFormat_PixelFormatRGB32; break;
246 case 24: pixelFormat = FramebufferPixelFormat_PixelFormatRGB24; break;
247 case 16: pixelFormat = FramebufferPixelFormat_PixelFormatRGB16; break;
248 default: pixelFormat = FramebufferPixelFormat_PixelFormatDefault; cbLine = 0;
249 }
250
251 mFramebuffer->Lock();
252
253 callFramebufferResize (pixelFormat, pvVRAM, cbLine, w, h);
254
255 /* Indicated whether the FB should be set to a default format in case something went wrong. */
256 bool fResetFormat = false;
257
258 /* Check the framebuffer pixel format. */
259 FramebufferPixelFormat_T newPixelFormat;
260
261 mFramebuffer->COMGETTER(PixelFormat) (&newPixelFormat);
262
263 if (newPixelFormat == FramebufferPixelFormat_PixelFormatDefault)
264 {
265 mpDrv->pUpPort->pfnSetupVRAM (mpDrv->pUpPort, NULL, 0);
266 }
267 else
268 {
269 Assert(pixelFormat == newPixelFormat);
270
271 /* Framebuffer successfully set the requested format. */
272 BYTE *address;
273 mFramebuffer->COMGETTER(Address) (&address);
274
275 ULONG lineSize;
276 mFramebuffer->COMGETTER(LineSize) (&lineSize);
277 Assert(lineSize == cbLine);
278
279 /* Trust Framebuffer implementation that it allocated a buffer,
280 * which size is a multiple of PAGE_SIZE.
281 */
282 uint32_t cbBuffer = cbLine * h;
283
284 int rc = mpDrv->pUpPort->pfnSetupVRAM (mpDrv->pUpPort, address, cbBuffer);
285
286 if (VBOX_FAILURE(rc))
287 {
288 LogFlowFunc (("pfnSetupVRAM returns %Vrc\n", rc));
289 fResetFormat = true;
290 }
291
292#ifdef DEBUG_sunlover
293 if (!stam)
294 {
295 /* protect mpVM */
296 Console::SafeVMPtr pVM (mParent);
297 AssertComRC (pVM.rc());
298
299 STAM_REG(pVM, &StatDisplayRefresh, STAMTYPE_PROFILE, "/PROF/Display/Refresh", STAMUNIT_TICKS_PER_CALL, "Time spent in EMT for display updates.");
300 stam = 1;
301 }
302#endif /* DEBUG_sunlover */
303 }
304
305 if (fResetFormat)
306 {
307 callFramebufferResize (FramebufferPixelFormat_PixelFormatDefault, NULL, 0, w, h);
308 }
309
310 updateDisplayData();
311
312 LogFlowFunc (("Calling VRDP\n"));
313
314 mParent->consoleVRDPServer()->SendResize();
315
316 mFramebuffer->Unlock();
317
318 return;
319}
320
321static void checkCoordBounds (int *px, int *py, int *pw, int *ph, int cx, int cy)
322{
323 /* Correct negative x and y coordinates. */
324 if (*px < 0)
325 {
326 *px += *pw; /* Compute xRight which is also the new width. */
327
328 *pw = (*px < 0)? 0: *px;
329
330 *px = 0;
331 }
332
333 if (*py < 0)
334 {
335 *py += *ph; /* Compute xBottom, which is also the new height. */
336
337 *ph = (*py < 0)? 0: *py;
338
339 *py = 0;
340 }
341
342 /* Also check if coords are greater than the display resolution. */
343 if (*px + *pw > cx)
344 {
345 *pw = cx > *px? cx - *px: 0;
346 }
347
348 if (*py + *ph > cy)
349 {
350 *ph = cy > *py? cy - *py: 0;
351 }
352}
353
354/**
355 * Handles display update event.
356 *
357 * @param x Update area x coordinate
358 * @param y Update area y coordinate
359 * @param w Update area width
360 * @param h Update area height
361 *
362 * @thread EMT
363 */
364void Display::handleDisplayUpdate (int x, int y, int w, int h)
365{
366 // if there is no framebuffer, this call is not interesting
367 if (mFramebuffer.isNull())
368 return;
369
370 mFramebuffer->Lock();
371
372#ifdef DEBUG_sunlover
373 LogFlowFunc (("%d,%d %dx%d (%d,%d)\n",
374 x, y, w, h, mpDrv->Connector.cx, mpDrv->Connector.cy));
375#endif /* DEBUG_sunlover */
376
377 checkCoordBounds (&x, &y, &w, &h, mpDrv->Connector.cx, mpDrv->Connector.cy);
378
379#ifdef DEBUG_sunlover
380 LogFlowFunc (("%d,%d %dx%d (checked)\n", x, y, w, h));
381#endif /* DEBUG_sunlover */
382
383 /* special processing for the internal framebuffer */
384 if (mInternalFramebuffer)
385 {
386 mFramebuffer->Unlock();
387 } else
388 {
389 /* callback into the framebuffer to notify it */
390 BOOL finished = FALSE;
391
392 RTSemEventMultiReset(mUpdateSem);
393
394 mFramebuffer->NotifyUpdate(x, y, w, h, &finished);
395
396 if (!finished)
397 {
398 /*
399 * the framebuffer needs more time to process
400 * the event so we have to halt the VM until it's done
401 */
402 mFramebuffer->Unlock();
403 RTSemEventMultiWait(mUpdateSem, RT_INDEFINITE_WAIT);
404 } else
405 {
406 mFramebuffer->Unlock();
407 }
408
409 if (!mfVideoAccelEnabled)
410 {
411 /* When VBVA is enabled, the VRDP server is informed in the VideoAccelFlush.
412 * Inform the server here only if VBVA is disabled.
413 */
414 mParent->consoleVRDPServer()->SendUpdateBitmap(x, y, w, h);
415 }
416 }
417 return;
418}
419
420typedef struct _VBVADIRTYREGION
421{
422 /* Copies of object's pointers used by vbvaRgn functions. */
423 IFramebuffer *pFramebuffer;
424 Display *pDisplay;
425 PPDMIDISPLAYPORT pPort;
426
427 /* Merged rectangles. */
428 int32_t xLeft;
429 int32_t xRight;
430 int32_t yTop;
431 int32_t yBottom;
432
433} VBVADIRTYREGION;
434
435static void vbvaRgnInit (VBVADIRTYREGION *prgn, IFramebuffer *pfb, Display *pd, PPDMIDISPLAYPORT pp)
436{
437 memset (prgn, 0, sizeof (VBVADIRTYREGION));
438
439 prgn->pFramebuffer = pfb;
440 prgn->pDisplay = pd;
441 prgn->pPort = pp;
442
443 return;
444}
445
446static void vbvaRgnDirtyRect (VBVADIRTYREGION *prgn, VBVACMDHDR *phdr)
447{
448 LogFlowFunc (("x = %d, y = %d, w = %d, h = %d\n",
449 phdr->x, phdr->y, phdr->w, phdr->h));
450
451 /*
452 * Here update rectangles are accumulated to form an update area.
453 * @todo
454 * Now the simpliest method is used which builds one rectangle that
455 * includes all update areas. A bit more advanced method can be
456 * employed here. The method should be fast however.
457 */
458 if (phdr->w == 0 || phdr->h == 0)
459 {
460 /* Empty rectangle. */
461 return;
462 }
463
464 int32_t xRight = phdr->x + phdr->w;
465 int32_t yBottom = phdr->y + phdr->h;
466
467 if (prgn->xRight == 0)
468 {
469 /* This is the first rectangle to be added. */
470 prgn->xLeft = phdr->x;
471 prgn->yTop = phdr->y;
472 prgn->xRight = xRight;
473 prgn->yBottom = yBottom;
474 }
475 else
476 {
477 /* Adjust region coordinates. */
478 if (prgn->xLeft > phdr->x)
479 {
480 prgn->xLeft = phdr->x;
481 }
482
483 if (prgn->yTop > phdr->y)
484 {
485 prgn->yTop = phdr->y;
486 }
487
488 if (prgn->xRight < xRight)
489 {
490 prgn->xRight = xRight;
491 }
492
493 if (prgn->yBottom < yBottom)
494 {
495 prgn->yBottom = yBottom;
496 }
497 }
498
499 return;
500}
501
502static void vbvaRgnUpdateFramebuffer (VBVADIRTYREGION *prgn)
503{
504 uint32_t w = prgn->xRight - prgn->xLeft;
505 uint32_t h = prgn->yBottom - prgn->yTop;
506
507 if (prgn->pFramebuffer && w != 0 && h != 0)
508 {
509 prgn->pPort->pfnUpdateDisplayRect (prgn->pPort, prgn->xLeft, prgn->yTop, w, h);
510 prgn->pDisplay->handleDisplayUpdate (prgn->xLeft, prgn->yTop, w, h);
511 }
512}
513
514static void vbvaSetMemoryFlags (VBVAMEMORY *pVbvaMemory,
515 bool fVideoAccelEnabled,
516 bool fVideoAccelVRDP,
517 uint32_t fu32SupportedOrders)
518{
519 if (pVbvaMemory)
520 {
521 /* This called only on changes in mode. So reset VRDP always. */
522 uint32_t fu32Flags = VBVA_F_MODE_VRDP_RESET;
523
524 if (fVideoAccelEnabled)
525 {
526 fu32Flags |= VBVA_F_MODE_ENABLED;
527
528 if (fVideoAccelVRDP)
529 {
530 fu32Flags |= VBVA_F_MODE_VRDP | VBVA_F_MODE_VRDP_ORDER_MASK;
531
532 pVbvaMemory->fu32SupportedOrders = fu32SupportedOrders;
533 }
534 }
535
536 pVbvaMemory->fu32ModeFlags = fu32Flags;
537 }
538}
539
540bool Display::VideoAccelAllowed (void)
541{
542 return true;
543}
544
545/**
546 * @thread EMT
547 */
548int Display::VideoAccelEnable (bool fEnable, VBVAMEMORY *pVbvaMemory)
549{
550 int rc = VINF_SUCCESS;
551
552 /* Called each time the guest wants to use acceleration,
553 * or when the VGA device disables acceleration,
554 * or when restoring the saved state with accel enabled.
555 *
556 * VGA device disables acceleration on each video mode change
557 * and on reset.
558 *
559 * Guest enabled acceleration at will. And it has to enable
560 * acceleration after a mode change.
561 */
562 LogFlowFunc (("mfVideoAccelEnabled = %d, fEnable = %d, pVbvaMemory = %p\n",
563 mfVideoAccelEnabled, fEnable, pVbvaMemory));
564
565 /* Strictly check parameters. Callers must not pass anything in the case. */
566 Assert((fEnable && pVbvaMemory) || (!fEnable && pVbvaMemory == NULL));
567
568 if (!VideoAccelAllowed ())
569 {
570 return VERR_NOT_SUPPORTED;
571 }
572
573 /*
574 * Verify that the VM is in running state. If it is not,
575 * then this must be postponed until it goes to running.
576 */
577 if (!mfMachineRunning)
578 {
579 Assert (!mfVideoAccelEnabled);
580
581 LogFlowFunc (("Machine is not yet running.\n"));
582
583 if (fEnable)
584 {
585 mfPendingVideoAccelEnable = fEnable;
586 mpPendingVbvaMemory = pVbvaMemory;
587 }
588
589 return rc;
590 }
591
592 /* Check that current status is not being changed */
593 if (mfVideoAccelEnabled == fEnable)
594 {
595 return rc;
596 }
597
598 if (mfVideoAccelEnabled)
599 {
600 /* Process any pending orders and empty the VBVA ring buffer. */
601 VideoAccelFlush ();
602 }
603
604 if (!fEnable && mpVbvaMemory)
605 {
606 mpVbvaMemory->fu32ModeFlags &= ~VBVA_F_MODE_ENABLED;
607 }
608
609 /* Safety precaution. There is no more VBVA until everything is setup! */
610 mpVbvaMemory = NULL;
611 mfVideoAccelEnabled = false;
612
613 /* Update entire display. */
614 mpDrv->pUpPort->pfnUpdateDisplayAll(mpDrv->pUpPort);
615
616 /* Everything OK. VBVA status can be changed. */
617
618 /* Notify the VMMDev, which saves VBVA status in the saved state,
619 * and needs to know current status.
620 */
621 PPDMIVMMDEVPORT pVMMDevPort = mParent->getVMMDev()->getVMMDevPort ();
622
623 if (pVMMDevPort)
624 {
625 pVMMDevPort->pfnVBVAChange (pVMMDevPort, fEnable);
626 }
627
628 if (fEnable)
629 {
630 mpVbvaMemory = pVbvaMemory;
631 mfVideoAccelEnabled = true;
632
633 /* Initialize the hardware memory. */
634 vbvaSetMemoryFlags (mpVbvaMemory, mfVideoAccelEnabled, mfVideoAccelVRDP, mfu32SupportedOrders);
635 mpVbvaMemory->off32Data = 0;
636 mpVbvaMemory->off32Free = 0;
637
638 memset (mpVbvaMemory->aRecords, 0, sizeof (mpVbvaMemory->aRecords));
639 mpVbvaMemory->indexRecordFirst = 0;
640 mpVbvaMemory->indexRecordFree = 0;
641
642 LogRel(("VBVA: Enabled.\n"));
643 }
644 else
645 {
646 LogRel(("VBVA: Disabled.\n"));
647 }
648
649 LogFlowFunc (("VideoAccelEnable: rc = %Vrc.\n", rc));
650
651 return rc;
652}
653
654#ifdef VBOX_VRDP
655#ifdef VRDP_MC
656/* Called always by one VRDP server thread. Can be thread-unsafe.
657 */
658void Display::VideoAccelVRDP (bool fEnable)
659{
660#if 0
661 /* Supporting all orders. */
662 uint32_t fu32SupportedOrders = ~0;
663#endif
664
665 int c = fEnable?
666 ASMAtomicIncS32 (&mcVideoAccelVRDPRefs):
667 ASMAtomicDecS32 (&mcVideoAccelVRDPRefs);
668
669 Assert (c >= 0);
670
671 if (c == 0)
672 {
673 /* The last client has disconnected, and the accel can be
674 * disabled.
675 */
676 Assert (fEnable == false);
677
678 mfVideoAccelVRDP = false;
679 mfu32SupportedOrders = 0;
680
681 vbvaSetMemoryFlags (mpVbvaMemory, mfVideoAccelEnabled, mfVideoAccelVRDP, mfu32SupportedOrders);
682
683 LogRel(("VBVA: VRDP acceleration has been disabled.\n"));
684 }
685 else if ( c == 1
686 && !mfVideoAccelVRDP)
687 {
688 /* The first client has connected. Enable the accel.
689 */
690 Assert (fEnable == true);
691
692 mfVideoAccelVRDP = true;
693 /* Supporting all orders. */
694 mfu32SupportedOrders = ~0;
695
696 vbvaSetMemoryFlags (mpVbvaMemory, mfVideoAccelEnabled, mfVideoAccelVRDP, mfu32SupportedOrders);
697
698 LogRel(("VBVA: VRDP acceleration has been requested.\n"));
699 }
700 else
701 {
702 /* A client is connected or disconnected but there is no change in the
703 * accel state. It remains enabled.
704 */
705 Assert (mfVideoAccelVRDP == true);
706 }
707}
708#else
709void Display::VideoAccelVRDP (bool fEnable, uint32_t fu32SupportedOrders)
710{
711 Assert (mfVideoAccelVRDP != fEnable);
712
713 mfVideoAccelVRDP = fEnable;
714
715 if (fEnable)
716 {
717 mfu32SupportedOrders = fu32SupportedOrders;
718 }
719 else
720 {
721 mfu32SupportedOrders = 0;
722 }
723
724 vbvaSetMemoryFlags (mpVbvaMemory, mfVideoAccelEnabled, mfVideoAccelVRDP, mfu32SupportedOrders);
725
726 LogRel(("VBVA: VRDP acceleration has been %s.\n", fEnable? "requested": "disabled"));
727}
728#endif /* VRDP_MC */
729#endif /* VBOX_VRDP */
730
731static bool vbvaVerifyRingBuffer (VBVAMEMORY *pVbvaMemory)
732{
733 return true;
734}
735
736static void vbvaFetchBytes (VBVAMEMORY *pVbvaMemory, uint8_t *pu8Dst, uint32_t cbDst)
737{
738 if (cbDst >= VBVA_RING_BUFFER_SIZE)
739 {
740 AssertMsgFailed (("cbDst = 0x%08X, ring buffer size 0x%08X", cbDst, VBVA_RING_BUFFER_SIZE));
741 return;
742 }
743
744 uint32_t u32BytesTillBoundary = VBVA_RING_BUFFER_SIZE - pVbvaMemory->off32Data;
745 uint8_t *src = &pVbvaMemory->au8RingBuffer[pVbvaMemory->off32Data];
746 int32_t i32Diff = cbDst - u32BytesTillBoundary;
747
748 if (i32Diff <= 0)
749 {
750 /* Chunk will not cross buffer boundary. */
751 memcpy (pu8Dst, src, cbDst);
752 }
753 else
754 {
755 /* Chunk crosses buffer boundary. */
756 memcpy (pu8Dst, src, u32BytesTillBoundary);
757 memcpy (pu8Dst + u32BytesTillBoundary, &pVbvaMemory->au8RingBuffer[0], i32Diff);
758 }
759
760 /* Advance data offset. */
761 pVbvaMemory->off32Data = (pVbvaMemory->off32Data + cbDst) % VBVA_RING_BUFFER_SIZE;
762
763 return;
764}
765
766
767static bool vbvaPartialRead (uint8_t **ppu8, uint32_t *pcb, uint32_t cbRecord, VBVAMEMORY *pVbvaMemory)
768{
769 uint8_t *pu8New;
770
771 LogFlow(("MAIN::DisplayImpl::vbvaPartialRead: p = %p, cb = %d, cbRecord 0x%08X\n",
772 *ppu8, *pcb, cbRecord));
773
774 if (*ppu8)
775 {
776 Assert (*pcb);
777 pu8New = (uint8_t *)RTMemRealloc (*ppu8, cbRecord);
778 }
779 else
780 {
781 Assert (!*pcb);
782 pu8New = (uint8_t *)RTMemAlloc (cbRecord);
783 }
784
785 if (!pu8New)
786 {
787 /* Memory allocation failed, fail the function. */
788 Log(("MAIN::vbvaPartialRead: failed to (re)alocate memory for partial record!!! cbRecord 0x%08X\n",
789 cbRecord));
790
791 if (*ppu8)
792 {
793 RTMemFree (*ppu8);
794 }
795
796 *ppu8 = NULL;
797 *pcb = 0;
798
799 return false;
800 }
801
802 /* Fetch data from the ring buffer. */
803 vbvaFetchBytes (pVbvaMemory, pu8New + *pcb, cbRecord - *pcb);
804
805 *ppu8 = pu8New;
806 *pcb = cbRecord;
807
808 return true;
809}
810
811/* For contiguous chunks just return the address in the buffer.
812 * For crossing boundary - allocate a buffer from heap.
813 */
814bool Display::vbvaFetchCmd (VBVACMDHDR **ppHdr, uint32_t *pcbCmd)
815{
816 uint32_t indexRecordFirst = mpVbvaMemory->indexRecordFirst;
817 uint32_t indexRecordFree = mpVbvaMemory->indexRecordFree;
818
819#ifdef DEBUG_sunlover
820 LogFlowFunc (("first = %d, free = %d\n",
821 indexRecordFirst, indexRecordFree));
822#endif /* DEBUG_sunlover */
823
824 if (!vbvaVerifyRingBuffer (mpVbvaMemory))
825 {
826 return false;
827 }
828
829 if (indexRecordFirst == indexRecordFree)
830 {
831 /* No records to process. Return without assigning output variables. */
832 return true;
833 }
834
835 VBVARECORD *pRecord = &mpVbvaMemory->aRecords[indexRecordFirst];
836
837#ifdef DEBUG_sunlover
838 LogFlowFunc (("cbRecord = 0x%08X\n", pRecord->cbRecord));
839#endif /* DEBUG_sunlover */
840
841 uint32_t cbRecord = pRecord->cbRecord & ~VBVA_F_RECORD_PARTIAL;
842
843 if (mcbVbvaPartial)
844 {
845 /* There is a partial read in process. Continue with it. */
846
847 Assert (mpu8VbvaPartial);
848
849 LogFlowFunc (("continue partial record mcbVbvaPartial = %d cbRecord 0x%08X, first = %d, free = %d\n",
850 mcbVbvaPartial, pRecord->cbRecord, indexRecordFirst, indexRecordFree));
851
852 if (cbRecord > mcbVbvaPartial)
853 {
854 /* New data has been added to the record. */
855 if (!vbvaPartialRead (&mpu8VbvaPartial, &mcbVbvaPartial, cbRecord, mpVbvaMemory))
856 {
857 return false;
858 }
859 }
860
861 if (!(pRecord->cbRecord & VBVA_F_RECORD_PARTIAL))
862 {
863 /* The record is completed by guest. Return it to the caller. */
864 *ppHdr = (VBVACMDHDR *)mpu8VbvaPartial;
865 *pcbCmd = mcbVbvaPartial;
866
867 mpu8VbvaPartial = NULL;
868 mcbVbvaPartial = 0;
869
870 /* Advance the record index. */
871 mpVbvaMemory->indexRecordFirst = (indexRecordFirst + 1) % VBVA_MAX_RECORDS;
872
873#ifdef DEBUG_sunlover
874 LogFlowFunc (("partial done ok, data = %d, free = %d\n",
875 mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
876#endif /* DEBUG_sunlover */
877 }
878
879 return true;
880 }
881
882 /* A new record need to be processed. */
883 if (pRecord->cbRecord & VBVA_F_RECORD_PARTIAL)
884 {
885 /* Current record is being written by guest. '=' is important here. */
886 if (cbRecord >= VBVA_RING_BUFFER_SIZE - VBVA_RING_BUFFER_THRESHOLD)
887 {
888 /* Partial read must be started. */
889 if (!vbvaPartialRead (&mpu8VbvaPartial, &mcbVbvaPartial, cbRecord, mpVbvaMemory))
890 {
891 return false;
892 }
893
894 LogFlowFunc (("started partial record mcbVbvaPartial = 0x%08X cbRecord 0x%08X, first = %d, free = %d\n",
895 mcbVbvaPartial, pRecord->cbRecord, indexRecordFirst, indexRecordFree));
896 }
897
898 return true;
899 }
900
901 /* Current record is complete. If it is not empty, process it. */
902 if (cbRecord)
903 {
904 /* The size of largest contiguos chunk in the ring biffer. */
905 uint32_t u32BytesTillBoundary = VBVA_RING_BUFFER_SIZE - mpVbvaMemory->off32Data;
906
907 /* The ring buffer pointer. */
908 uint8_t *au8RingBuffer = &mpVbvaMemory->au8RingBuffer[0];
909
910 /* The pointer to data in the ring buffer. */
911 uint8_t *src = &au8RingBuffer[mpVbvaMemory->off32Data];
912
913 /* Fetch or point the data. */
914 if (u32BytesTillBoundary >= cbRecord)
915 {
916 /* The command does not cross buffer boundary. Return address in the buffer. */
917 *ppHdr = (VBVACMDHDR *)src;
918
919 /* Advance data offset. */
920 mpVbvaMemory->off32Data = (mpVbvaMemory->off32Data + cbRecord) % VBVA_RING_BUFFER_SIZE;
921 }
922 else
923 {
924 /* The command crosses buffer boundary. Rare case, so not optimized. */
925 uint8_t *dst = (uint8_t *)RTMemAlloc (cbRecord);
926
927 if (!dst)
928 {
929 LogFlowFunc (("could not allocate %d bytes from heap!!!\n", cbRecord));
930 mpVbvaMemory->off32Data = (mpVbvaMemory->off32Data + cbRecord) % VBVA_RING_BUFFER_SIZE;
931 return false;
932 }
933
934 vbvaFetchBytes (mpVbvaMemory, dst, cbRecord);
935
936 *ppHdr = (VBVACMDHDR *)dst;
937
938#ifdef DEBUG_sunlover
939 LogFlowFunc (("Allocated from heap %p\n", dst));
940#endif /* DEBUG_sunlover */
941 }
942 }
943
944 *pcbCmd = cbRecord;
945
946 /* Advance the record index. */
947 mpVbvaMemory->indexRecordFirst = (indexRecordFirst + 1) % VBVA_MAX_RECORDS;
948
949#ifdef DEBUG_sunlover
950 LogFlowFunc (("done ok, data = %d, free = %d\n",
951 mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
952#endif /* DEBUG_sunlover */
953
954 return true;
955}
956
957void Display::vbvaReleaseCmd (VBVACMDHDR *pHdr, int32_t cbCmd)
958{
959 uint8_t *au8RingBuffer = mpVbvaMemory->au8RingBuffer;
960
961 if ( (uint8_t *)pHdr >= au8RingBuffer
962 && (uint8_t *)pHdr < &au8RingBuffer[VBVA_RING_BUFFER_SIZE])
963 {
964 /* The pointer is inside ring buffer. Must be continuous chunk. */
965 Assert (VBVA_RING_BUFFER_SIZE - ((uint8_t *)pHdr - au8RingBuffer) >= cbCmd);
966
967 /* Do nothing. */
968
969 Assert (!mpu8VbvaPartial && mcbVbvaPartial == 0);
970 }
971 else
972 {
973 /* The pointer is outside. It is then an allocated copy. */
974
975#ifdef DEBUG_sunlover
976 LogFlowFunc (("Free heap %p\n", pHdr));
977#endif /* DEBUG_sunlover */
978
979 if ((uint8_t *)pHdr == mpu8VbvaPartial)
980 {
981 mpu8VbvaPartial = NULL;
982 mcbVbvaPartial = 0;
983 }
984 else
985 {
986 Assert (!mpu8VbvaPartial && mcbVbvaPartial == 0);
987 }
988
989 RTMemFree (pHdr);
990 }
991
992 return;
993}
994
995
996/**
997 * Called regularly on the DisplayRefresh timer.
998 * Also on behalf of guest, when the ring buffer is full.
999 *
1000 * @thread EMT
1001 */
1002void Display::VideoAccelFlush (void)
1003{
1004#ifdef DEBUG_sunlover
1005 LogFlowFunc (("mfVideoAccelEnabled = %d\n", mfVideoAccelEnabled));
1006#endif /* DEBUG_sunlover */
1007
1008 if (!mfVideoAccelEnabled)
1009 {
1010 Log(("Display::VideoAccelFlush: called with disabled VBVA!!! Ignoring.\n"));
1011 return;
1012 }
1013
1014 /* Here VBVA is enabled and we have the accelerator memory pointer. */
1015 Assert(mpVbvaMemory);
1016
1017#ifdef DEBUG_sunlover
1018 LogFlowFunc (("indexRecordFirst = %d, indexRecordFree = %d, off32Data = %d, off32Free = %d\n",
1019 mpVbvaMemory->indexRecordFirst, mpVbvaMemory->indexRecordFree, mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
1020#endif /* DEBUG_sunlover */
1021
1022 /* Quick check for "nothing to update" case. */
1023 if (mpVbvaMemory->indexRecordFirst == mpVbvaMemory->indexRecordFree)
1024 {
1025 return;
1026 }
1027
1028 /* Process the ring buffer */
1029
1030 bool fFramebufferIsNull = mFramebuffer.isNull();
1031
1032 if (!fFramebufferIsNull)
1033 {
1034 mFramebuffer->Lock();
1035 }
1036
1037 /* Initialize dirty rectangles accumulator. */
1038 VBVADIRTYREGION rgn;
1039 vbvaRgnInit (&rgn, mFramebuffer, this, mpDrv->pUpPort);
1040
1041 for (;;)
1042 {
1043 VBVACMDHDR *phdr = NULL;
1044 uint32_t cbCmd = ~0;
1045
1046 /* Fetch the command data. */
1047 if (!vbvaFetchCmd (&phdr, &cbCmd))
1048 {
1049 Log(("Display::VideoAccelFlush: unable to fetch command. off32Data = %d, off32Free = %d. Disabling VBVA!!!\n",
1050 mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
1051
1052 /* Disable VBVA on those processing errors. */
1053 VideoAccelEnable (false, NULL);
1054
1055 break;
1056 }
1057
1058 if (cbCmd == uint32_t(~0))
1059 {
1060 /* No more commands yet in the queue. */
1061 break;
1062 }
1063
1064 if (cbCmd != 0 && !fFramebufferIsNull)
1065 {
1066#ifdef DEBUG_sunlover
1067 LogFlowFunc (("hdr: cbCmd = %d, x=%d, y=%d, w=%d, h=%d\n",
1068 cbCmd, phdr->x, phdr->y, phdr->w, phdr->h));
1069#endif /* DEBUG_sunlover */
1070
1071 /* Handle the command.
1072 *
1073 * Guest is responsible for updating the guest video memory.
1074 * The Windows guest does all drawing using Eng*.
1075 *
1076 * For local output, only dirty rectangle information is used
1077 * to update changed areas.
1078 *
1079 * Dirty rectangles are accumulated to exclude overlapping updates and
1080 * group small updates to a larger one.
1081 */
1082
1083 /* Accumulate the update. */
1084 vbvaRgnDirtyRect (&rgn, phdr);
1085
1086 /* Forward the command to VRDP server. */
1087 mParent->consoleVRDPServer()->SendUpdate (phdr, cbCmd);
1088 }
1089
1090 vbvaReleaseCmd (phdr, cbCmd);
1091 }
1092
1093 if (!fFramebufferIsNull)
1094 {
1095 mFramebuffer->Unlock ();
1096 }
1097
1098 /* Draw the framebuffer. */
1099 vbvaRgnUpdateFramebuffer (&rgn);
1100}
1101
1102
1103// IDisplay properties
1104/////////////////////////////////////////////////////////////////////////////
1105
1106/**
1107 * Returns the current display width in pixel
1108 *
1109 * @returns COM status code
1110 * @param width Address of result variable.
1111 */
1112STDMETHODIMP Display::COMGETTER(Width) (ULONG *width)
1113{
1114 if (!width)
1115 return E_POINTER;
1116
1117 AutoLock alock (this);
1118 CHECK_READY();
1119
1120 CHECK_CONSOLE_DRV (mpDrv);
1121
1122 *width = mpDrv->Connector.cx;
1123 return S_OK;
1124}
1125
1126/**
1127 * Returns the current display height in pixel
1128 *
1129 * @returns COM status code
1130 * @param height Address of result variable.
1131 */
1132STDMETHODIMP Display::COMGETTER(Height) (ULONG *height)
1133{
1134 if (!height)
1135 return E_POINTER;
1136
1137 AutoLock alock (this);
1138 CHECK_READY();
1139
1140 CHECK_CONSOLE_DRV (mpDrv);
1141
1142 *height = mpDrv->Connector.cy;
1143 return S_OK;
1144}
1145
1146/**
1147 * Returns the current display color depth in bits
1148 *
1149 * @returns COM status code
1150 * @param colorDepth Address of result variable.
1151 */
1152STDMETHODIMP Display::COMGETTER(ColorDepth) (ULONG *colorDepth)
1153{
1154 if (!colorDepth)
1155 return E_INVALIDARG;
1156
1157 AutoLock alock (this);
1158 CHECK_READY();
1159
1160 CHECK_CONSOLE_DRV (mpDrv);
1161
1162 uint32_t cBits = 0;
1163 int rc = mpDrv->pUpPort->pfnQueryColorDepth(mpDrv->pUpPort, &cBits);
1164 AssertRC(rc);
1165 *colorDepth = cBits;
1166 return S_OK;
1167}
1168
1169
1170// IDisplay methods
1171/////////////////////////////////////////////////////////////////////////////
1172
1173STDMETHODIMP Display::SetupInternalFramebuffer (ULONG depth)
1174{
1175 LogFlowFunc (("\n"));
1176
1177 AutoLock lock (this);
1178 CHECK_READY();
1179
1180 /*
1181 * Create an internal framebuffer only if depth is not zero. Otherwise, we
1182 * reset back to the "black hole" state as it was at Display construction.
1183 */
1184 ComPtr <IFramebuffer> frameBuf;
1185 if (depth)
1186 {
1187 ComObjPtr <InternalFramebuffer> internal;
1188 internal.createObject();
1189 internal->init (640, 480, depth);
1190 frameBuf = internal; // query interface
1191 }
1192
1193 Console::SafeVMPtrQuiet pVM (mParent);
1194 if (pVM.isOk())
1195 {
1196 /* Must leave the lock here because the changeFramebuffer will also obtain it. */
1197 lock.leave ();
1198
1199 /* send request to the EMT thread */
1200 PVMREQ pReq = NULL;
1201 int vrc = VMR3ReqCall (pVM, &pReq, RT_INDEFINITE_WAIT,
1202 (PFNRT) changeFramebuffer, 3,
1203 this, static_cast <IFramebuffer *> (frameBuf),
1204 true /* aInternal */);
1205 if (VBOX_SUCCESS (vrc))
1206 vrc = pReq->iStatus;
1207 VMR3ReqFree (pReq);
1208
1209 lock.enter ();
1210
1211 ComAssertRCRet (vrc, E_FAIL);
1212 }
1213 else
1214 {
1215 /* No VM is created (VM is powered off), do a direct call */
1216 int vrc = changeFramebuffer (this, frameBuf, true /* aInternal */);
1217 ComAssertRCRet (vrc, E_FAIL);
1218 }
1219
1220 return S_OK;
1221}
1222
1223STDMETHODIMP Display::LockFramebuffer (BYTE **address)
1224{
1225 if (!address)
1226 return E_POINTER;
1227
1228 AutoLock lock(this);
1229 CHECK_READY();
1230
1231 /* only allowed for internal framebuffers */
1232 if (mInternalFramebuffer && !mFramebufferOpened && !mFramebuffer.isNull())
1233 {
1234 CHECK_CONSOLE_DRV (mpDrv);
1235
1236 mFramebuffer->Lock();
1237 mFramebufferOpened = true;
1238 *address = mpDrv->Connector.pu8Data;
1239 return S_OK;
1240 }
1241
1242 return setError (E_FAIL,
1243 tr ("Framebuffer locking is allowed only for the internal framebuffer"));
1244}
1245
1246STDMETHODIMP Display::UnlockFramebuffer()
1247{
1248 AutoLock lock(this);
1249 CHECK_READY();
1250
1251 if (mFramebufferOpened)
1252 {
1253 CHECK_CONSOLE_DRV (mpDrv);
1254
1255 mFramebuffer->Unlock();
1256 mFramebufferOpened = false;
1257 return S_OK;
1258 }
1259
1260 return setError (E_FAIL,
1261 tr ("Framebuffer locking is allowed only for the internal framebuffer"));
1262}
1263
1264STDMETHODIMP Display::RegisterExternalFramebuffer (IFramebuffer *frameBuf)
1265{
1266 LogFlowFunc (("\n"));
1267
1268 if (!frameBuf)
1269 return E_POINTER;
1270
1271 AutoLock lock (this);
1272 CHECK_READY();
1273
1274 Console::SafeVMPtrQuiet pVM (mParent);
1275 if (pVM.isOk())
1276 {
1277 /* Must leave the lock here because the changeFramebuffer will also obtain it. */
1278 lock.leave ();
1279
1280 /* send request to the EMT thread */
1281 PVMREQ pReq = NULL;
1282 int vrc = VMR3ReqCall (pVM, &pReq, RT_INDEFINITE_WAIT,
1283 (PFNRT) changeFramebuffer, 3,
1284 this, frameBuf, false /* aInternal */);
1285 if (VBOX_SUCCESS (vrc))
1286 vrc = pReq->iStatus;
1287 VMR3ReqFree (pReq);
1288
1289 lock.enter ();
1290
1291 ComAssertRCRet (vrc, E_FAIL);
1292 }
1293 else
1294 {
1295 /* No VM is created (VM is powered off), do a direct call */
1296 int vrc = changeFramebuffer (this, frameBuf, false /* aInternal */);
1297 ComAssertRCRet (vrc, E_FAIL);
1298 }
1299
1300 return S_OK;
1301}
1302
1303STDMETHODIMP Display::SetVideoModeHint(ULONG aWidth, ULONG aHeight, ULONG aColorDepth)
1304{
1305 AutoLock lock(this);
1306 CHECK_READY();
1307
1308 CHECK_CONSOLE_DRV (mpDrv);
1309
1310 /*
1311 * Do some rough checks for valid input
1312 */
1313 ULONG width = aWidth;
1314 if (!width)
1315 width = mpDrv->Connector.cx;
1316 ULONG height = aHeight;
1317 if (!height)
1318 height = mpDrv->Connector.cy;
1319 ULONG bpp = aColorDepth;
1320 if (!bpp)
1321 {
1322 uint32_t cBits = 0;
1323 int rc = mpDrv->pUpPort->pfnQueryColorDepth(mpDrv->pUpPort, &cBits);
1324 AssertRC(rc);
1325 bpp = cBits;
1326 }
1327 ULONG vramSize;
1328 mParent->machine()->COMGETTER(VRAMSize)(&vramSize);
1329 /* enough VRAM? */
1330 if ((width * height * (bpp / 8)) > (vramSize * 1024 * 1024))
1331 return setError(E_FAIL, tr("Not enough VRAM for the selected video mode"));
1332
1333 if (mParent->getVMMDev())
1334 mParent->getVMMDev()->getVMMDevPort()->pfnRequestDisplayChange(mParent->getVMMDev()->getVMMDevPort(), aWidth, aHeight, aColorDepth);
1335 return S_OK;
1336}
1337
1338STDMETHODIMP Display::TakeScreenShot (BYTE *address, ULONG width, ULONG height)
1339{
1340 /// @todo (r=dmik) this function may take too long to complete if the VM
1341 // is doing something like saving state right now. Which, in case if it
1342 // is called on the GUI thread, will make it unresponsive. We should
1343 // check the machine state here (by enclosing the check and VMRequCall
1344 // within the Console lock to make it atomic).
1345
1346 LogFlowFuncEnter();
1347 LogFlowFunc (("address=%p, width=%d, height=%d\n",
1348 address, width, height));
1349
1350 if (!address)
1351 return E_POINTER;
1352 if (!width || !height)
1353 return E_INVALIDARG;
1354
1355 AutoLock lock(this);
1356 CHECK_READY();
1357
1358 CHECK_CONSOLE_DRV (mpDrv);
1359
1360 Console::SafeVMPtr pVM (mParent);
1361 CheckComRCReturnRC (pVM.rc());
1362
1363 HRESULT rc = S_OK;
1364
1365 LogFlowFunc (("Sending SCREENSHOT request\n"));
1366
1367 /*
1368 * First try use the graphics device features for making a snapshot.
1369 * This does not support streatching, is an optional feature (returns not supported).
1370 *
1371 * Note: It may cause a display resize. Watch out for deadlocks.
1372 */
1373 int rcVBox = VERR_NOT_SUPPORTED;
1374 if ( mpDrv->Connector.cx == width
1375 && mpDrv->Connector.cy == height)
1376 {
1377 PVMREQ pReq;
1378 size_t cbData = RT_ALIGN_Z(width, 4) * 4 * height;
1379 rcVBox = VMR3ReqCall(pVM, &pReq, RT_INDEFINITE_WAIT,
1380 (PFNRT)mpDrv->pUpPort->pfnSnapshot, 6, mpDrv->pUpPort,
1381 address, cbData, NULL, NULL, NULL);
1382 if (VBOX_SUCCESS(rcVBox))
1383 {
1384 rcVBox = pReq->iStatus;
1385 VMR3ReqFree(pReq);
1386 }
1387 }
1388
1389 /*
1390 * If the function returns not supported, or if streaching is requested,
1391 * we'll have to do all the work ourselves using the framebuffer data.
1392 */
1393 if (rcVBox == VERR_NOT_SUPPORTED || rcVBox == VERR_NOT_IMPLEMENTED)
1394 {
1395 /** @todo implement snapshot streching and generic snapshot fallback. */
1396 rc = setError (E_NOTIMPL, tr ("This feature is not implemented"));
1397 }
1398 else if (VBOX_FAILURE(rcVBox))
1399 rc = setError (E_FAIL,
1400 tr ("Could not take a screenshot (%Vrc)"), rcVBox);
1401
1402 LogFlowFunc (("rc=%08X\n", rc));
1403 LogFlowFuncLeave();
1404 return rc;
1405}
1406
1407STDMETHODIMP Display::DrawToScreen (BYTE *address, ULONG x, ULONG y,
1408 ULONG width, ULONG height)
1409{
1410 /// @todo (r=dmik) this function may take too long to complete if the VM
1411 // is doing something like saving state right now. Which, in case if it
1412 // is called on the GUI thread, will make it unresponsive. We should
1413 // check the machine state here (by enclosing the check and VMRequCall
1414 // within the Console lock to make it atomic).
1415
1416 LogFlowFuncEnter();
1417 LogFlowFunc (("address=%p, x=%d, y=%d, width=%d, height=%d\n",
1418 address, x, y, width, height));
1419
1420 if (!address)
1421 return E_POINTER;
1422 if (!width || !height)
1423 return E_INVALIDARG;
1424
1425 AutoLock lock(this);
1426 CHECK_READY();
1427
1428 CHECK_CONSOLE_DRV (mpDrv);
1429
1430 Console::SafeVMPtr pVM (mParent);
1431 CheckComRCReturnRC (pVM.rc());
1432
1433 /*
1434 * Again we're lazy and make the graphics device do all the
1435 * dirty convertion work.
1436 */
1437 PVMREQ pReq;
1438 int rcVBox = VMR3ReqCall(pVM, &pReq, RT_INDEFINITE_WAIT,
1439 (PFNRT)mpDrv->pUpPort->pfnDisplayBlt, 6, mpDrv->pUpPort,
1440 address, x, y, width, height);
1441 if (VBOX_SUCCESS(rcVBox))
1442 {
1443 rcVBox = pReq->iStatus;
1444 VMR3ReqFree(pReq);
1445 }
1446
1447 /*
1448 * If the function returns not supported, we'll have to do all the
1449 * work ourselves using the framebuffer.
1450 */
1451 HRESULT rc = S_OK;
1452 if (rcVBox == VERR_NOT_SUPPORTED || rcVBox == VERR_NOT_IMPLEMENTED)
1453 {
1454 /** @todo implement generic fallback for screen blitting. */
1455 rc = E_NOTIMPL;
1456 }
1457 else if (VBOX_FAILURE(rcVBox))
1458 rc = setError (E_FAIL,
1459 tr ("Could not draw to the screen (%Vrc)"), rcVBox);
1460//@todo
1461// else
1462// {
1463// /* All ok. Redraw the screen. */
1464// handleDisplayUpdate (x, y, width, height);
1465// }
1466
1467 LogFlowFunc (("rc=%08X\n", rc));
1468 LogFlowFuncLeave();
1469 return rc;
1470}
1471
1472/**
1473 * Does a full invalidation of the VM display and instructs the VM
1474 * to update it immediately.
1475 *
1476 * @returns COM status code
1477 */
1478STDMETHODIMP Display::InvalidateAndUpdate()
1479{
1480 LogFlowFuncEnter();
1481
1482 AutoLock lock(this);
1483 CHECK_READY();
1484
1485 CHECK_CONSOLE_DRV (mpDrv);
1486
1487 Console::SafeVMPtr pVM (mParent);
1488 CheckComRCReturnRC (pVM.rc());
1489
1490 HRESULT rc = S_OK;
1491
1492 LogFlowFunc (("Sending DPYUPDATE request\n"));
1493
1494 /* pdm.h says that this has to be called from the EMT thread */
1495 PVMREQ pReq;
1496 int rcVBox = VMR3ReqCallVoid(pVM, &pReq, RT_INDEFINITE_WAIT,
1497 (PFNRT)mpDrv->pUpPort->pfnUpdateDisplayAll, 1, mpDrv->pUpPort);
1498 if (VBOX_SUCCESS(rcVBox))
1499 VMR3ReqFree(pReq);
1500
1501 if (VBOX_FAILURE(rcVBox))
1502 rc = setError (E_FAIL,
1503 tr ("Could not invalidate and update the screen (%Vrc)"), rcVBox);
1504
1505 LogFlowFunc (("rc=%08X\n", rc));
1506 LogFlowFuncLeave();
1507 return rc;
1508}
1509
1510/**
1511 * Notification that the framebuffer has completed the
1512 * asynchronous resize processing
1513 *
1514 * @returns COM status code
1515 */
1516STDMETHODIMP Display::ResizeCompleted()
1517{
1518 LogFlowFunc (("\n"));
1519
1520 /// @todo (dmik) can we AutoLock alock (this); here?
1521 // do it when we switch this class to VirtualBoxBase_NEXT.
1522 // This will require general code review and may add some details.
1523 // In particular, we may want to check whether EMT is really waiting for
1524 // this notification, etc. It might be also good to obey the caller to make
1525 // sure this method is not called from more than one thread at a time
1526 // (and therefore don't use Display lock at all here to save some
1527 // milliseconds).
1528 CHECK_READY();
1529
1530 /* this is only valid for external framebuffers */
1531 if (mInternalFramebuffer)
1532 return setError (E_FAIL,
1533 tr ("Resize completed notification is valid only "
1534 "for external framebuffers"));
1535
1536 /* signal our semaphore */
1537 RTSemEventMultiSignal(mResizeSem);
1538
1539 return S_OK;
1540}
1541
1542/**
1543 * Notification that the framebuffer has completed the
1544 * asynchronous update processing
1545 *
1546 * @returns COM status code
1547 */
1548STDMETHODIMP Display::UpdateCompleted()
1549{
1550 LogFlowFunc (("\n"));
1551
1552 /// @todo (dmik) can we AutoLock alock (this); here?
1553 // do it when we switch this class to VirtualBoxBase_NEXT.
1554 // Tthis will require general code review and may add some details.
1555 // In particular, we may want to check whether EMT is really waiting for
1556 // this notification, etc. It might be also good to obey the caller to make
1557 // sure this method is not called from more than one thread at a time
1558 // (and therefore don't use Display lock at all here to save some
1559 // milliseconds).
1560 CHECK_READY();
1561
1562 /* this is only valid for external framebuffers */
1563 if (mInternalFramebuffer)
1564 return setError (E_FAIL,
1565 tr ("Resize completed notification is valid only "
1566 "for external framebuffers"));
1567
1568 mFramebuffer->Lock();
1569 /* signal our semaphore */
1570 RTSemEventMultiSignal(mUpdateSem);
1571 mFramebuffer->Unlock();
1572
1573 return S_OK;
1574}
1575
1576// private methods
1577/////////////////////////////////////////////////////////////////////////////
1578
1579/**
1580 * Helper to update the display information from the framebuffer.
1581 *
1582 * @param aCheckParams true to compare the parameters of the current framebuffer
1583 * and the new one and issue handleDisplayResize()
1584 * if they differ.
1585 * @thread EMT
1586 */
1587void Display::updateDisplayData (bool aCheckParams /* = false */)
1588{
1589 /* the driver might not have been constructed yet */
1590 if (!mpDrv)
1591 return;
1592
1593#if DEBUG
1594 /*
1595 * Sanity check. Note that this method may be called on EMT after Console
1596 * has started the power down procedure (but before our #drvDestruct() is
1597 * called, in which case pVM will aleady be NULL but mpDrv will not). Since
1598 * we don't really need pVM to proceed, we avoid this check in the release
1599 * build to save some ms (necessary to construct SafeVMPtrQuiet) in this
1600 * time-critical method.
1601 */
1602 Console::SafeVMPtrQuiet pVM (mParent);
1603 if (pVM.isOk())
1604 VM_ASSERT_EMT (pVM.raw());
1605#endif
1606
1607 if (mFramebuffer)
1608 {
1609 HRESULT rc;
1610 BYTE *address = 0;
1611 rc = mFramebuffer->COMGETTER(Address) (&address);
1612 AssertComRC (rc);
1613 ULONG lineSize = 0;
1614 rc = mFramebuffer->COMGETTER(LineSize) (&lineSize);
1615 AssertComRC (rc);
1616 ULONG colorDepth = 0;
1617 rc = mFramebuffer->COMGETTER(ColorDepth) (&colorDepth);
1618 AssertComRC (rc);
1619 ULONG width = 0;
1620 rc = mFramebuffer->COMGETTER(Width) (&width);
1621 AssertComRC (rc);
1622 ULONG height = 0;
1623 rc = mFramebuffer->COMGETTER(Height) (&height);
1624 AssertComRC (rc);
1625
1626 /*
1627 * Check current parameters with new ones and issue handleDisplayResize()
1628 * to let the new frame buffer adjust itself properly. Note that it will
1629 * result into a recursive updateDisplayData() call but with
1630 * aCheckOld = false.
1631 */
1632 if (aCheckParams &&
1633 (mLastAddress != address ||
1634 mLastLineSize != lineSize ||
1635 mLastColorDepth != colorDepth ||
1636 mLastWidth != (int) width ||
1637 mLastHeight != (int) height))
1638 {
1639 handleDisplayResize (mLastColorDepth,
1640 mLastAddress,
1641 mLastLineSize,
1642 mLastWidth,
1643 mLastHeight);
1644 return;
1645 }
1646
1647 mpDrv->Connector.pu8Data = (uint8_t *) address;
1648 mpDrv->Connector.cbScanline = lineSize;
1649 mpDrv->Connector.cBits = colorDepth;
1650 mpDrv->Connector.cx = width;
1651 mpDrv->Connector.cy = height;
1652 }
1653 else
1654 {
1655 /* black hole */
1656 mpDrv->Connector.pu8Data = NULL;
1657 mpDrv->Connector.cbScanline = 0;
1658 mpDrv->Connector.cBits = 0;
1659 mpDrv->Connector.cx = 0;
1660 mpDrv->Connector.cy = 0;
1661 }
1662}
1663
1664/**
1665 * Changes the current frame buffer. Called on EMT to avoid both
1666 * race conditions and excessive locking.
1667 *
1668 * @note locks this object for writing
1669 * @thread EMT
1670 */
1671/* static */
1672DECLCALLBACK(int) Display::changeFramebuffer (Display *that, IFramebuffer *aFB,
1673 bool aInternal)
1674{
1675 LogFlowFunc (("\n"));
1676
1677 AssertReturn (that, VERR_INVALID_PARAMETER);
1678 AssertReturn (aFB || aInternal, VERR_INVALID_PARAMETER);
1679
1680 /// @todo (r=dmik) AutoCaller
1681
1682 AutoLock alock (that);
1683
1684 that->mFramebuffer = aFB;
1685 that->mInternalFramebuffer = aInternal;
1686 that->mSupportedAccelOps = 0;
1687
1688 /* determine which acceleration functions are supported by this framebuffer */
1689 if (aFB && !aInternal)
1690 {
1691 HRESULT rc;
1692 BOOL accelSupported = FALSE;
1693 rc = aFB->OperationSupported (
1694 FramebufferAccelerationOperation_SolidFillAcceleration, &accelSupported);
1695 AssertComRC (rc);
1696 if (accelSupported)
1697 that->mSupportedAccelOps |=
1698 FramebufferAccelerationOperation_SolidFillAcceleration;
1699 accelSupported = FALSE;
1700 rc = aFB->OperationSupported (
1701 FramebufferAccelerationOperation_ScreenCopyAcceleration, &accelSupported);
1702 AssertComRC (rc);
1703 if (accelSupported)
1704 that->mSupportedAccelOps |=
1705 FramebufferAccelerationOperation_ScreenCopyAcceleration;
1706 }
1707
1708 that->mParent->consoleVRDPServer()->
1709 SetFramebuffer (aFB, aFB ? VRDP_EXTERNAL_FRAMEBUFFER :
1710 VRDP_INTERNAL_FRAMEBUFFER);
1711
1712 that->updateDisplayData (true /* aCheckParams */);
1713
1714 return VINF_SUCCESS;
1715}
1716
1717/**
1718 * Handle display resize event.
1719 *
1720 * @see PDMIDISPLAYCONNECTOR::pfnResize
1721 */
1722DECLCALLBACK(void) Display::displayResizeCallback(PPDMIDISPLAYCONNECTOR pInterface,
1723 uint32_t bpp, void *pvVRAM, uint32_t cbLine, uint32_t cx, uint32_t cy)
1724{
1725 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
1726
1727 LogFlowFunc (("bpp %d, pvVRAM %p, cbLine %d, cx %d, cy %d\n",
1728 bpp, pvVRAM, cbLine, cx, cy));
1729
1730 pDrv->pDisplay->handleDisplayResize(bpp, pvVRAM, cbLine, cx, cy);
1731}
1732
1733/**
1734 * Handle display update.
1735 *
1736 * @see PDMIDISPLAYCONNECTOR::pfnUpdateRect
1737 */
1738DECLCALLBACK(void) Display::displayUpdateCallback(PPDMIDISPLAYCONNECTOR pInterface,
1739 uint32_t x, uint32_t y, uint32_t cx, uint32_t cy)
1740{
1741 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
1742
1743#ifdef DEBUG_sunlover
1744 LogFlowFunc (("pDrv->pDisplay->mfVideoAccelEnabled = %d, %d,%d %dx%d\n",
1745 pDrv->pDisplay->mfVideoAccelEnabled, x, y, cx, cy));
1746#endif /* DEBUG_sunlover */
1747
1748 /* This call does update regardless of VBVA status.
1749 * But in VBVA mode this is called only as result of
1750 * pfnUpdateDisplayAll in the VGA device.
1751 */
1752
1753 pDrv->pDisplay->handleDisplayUpdate(x, y, cx, cy);
1754}
1755
1756/**
1757 * Periodic display refresh callback.
1758 *
1759 * @see PDMIDISPLAYCONNECTOR::pfnRefresh
1760 */
1761DECLCALLBACK(void) Display::displayRefreshCallback(PPDMIDISPLAYCONNECTOR pInterface)
1762{
1763 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
1764
1765#ifdef DEBUG_sunlover
1766 STAM_PROFILE_START(&StatDisplayRefresh, a);
1767#endif /* DEBUG_sunlover */
1768
1769#ifdef DEBUG_sunlover
1770 LogFlowFunc (("pDrv->pDisplay->mfVideoAccelEnabled = %d\n",
1771 pDrv->pDisplay->mfVideoAccelEnabled));
1772#endif /* DEBUG_sunlover */
1773
1774 Display *pDisplay = pDrv->pDisplay;
1775
1776 if (pDisplay->mFramebuffer.isNull())
1777 {
1778 /*
1779 * Do nothing in the "black hole" mode to avoid copying guest
1780 * video memory to the frame buffer
1781 */
1782 }
1783 else
1784 {
1785 if (pDisplay->mfPendingVideoAccelEnable)
1786 {
1787 /* Acceleration was enabled while machine was not yet running
1788 * due to restoring from saved state. Update entire display and
1789 * actually enable acceleration.
1790 */
1791 Assert(pDisplay->mpPendingVbvaMemory);
1792
1793 /* Acceleration can not be yet enabled.*/
1794 Assert(pDisplay->mpVbvaMemory == NULL);
1795 Assert(!pDisplay->mfVideoAccelEnabled);
1796
1797 if (pDisplay->mfMachineRunning)
1798 {
1799 pDisplay->VideoAccelEnable (pDisplay->mfPendingVideoAccelEnable,
1800 pDisplay->mpPendingVbvaMemory);
1801
1802 /* Reset the pending state. */
1803 pDisplay->mfPendingVideoAccelEnable = false;
1804 pDisplay->mpPendingVbvaMemory = NULL;
1805 }
1806 }
1807 else
1808 {
1809 Assert(pDisplay->mpPendingVbvaMemory == NULL);
1810
1811 if (pDisplay->mfVideoAccelEnabled)
1812 {
1813 Assert(pDisplay->mpVbvaMemory);
1814 pDisplay->VideoAccelFlush ();
1815 }
1816 else
1817 {
1818 Assert(pDrv->Connector.pu8Data);
1819 pDrv->pUpPort->pfnUpdateDisplay(pDrv->pUpPort);
1820 }
1821 }
1822#ifdef VRDP_MC
1823 /* Inform to VRDP server that the current display update sequence is
1824 * completed. At this moment the framebuffer memory contains a definite
1825 * image, that is synchronized with the orders already sent to VRDP client.
1826 * The server can now process redraw requests from clients or initial
1827 * fullscreen updates for new clients.
1828 */
1829 Assert (pDisplay->mParent && pDisplay->mParent->consoleVRDPServer());
1830 pDisplay->mParent->consoleVRDPServer()->SendUpdate (NULL, 0);
1831#endif /* VRDP_MC */
1832 }
1833
1834#ifdef DEBUG_sunlover
1835 STAM_PROFILE_STOP(&StatDisplayRefresh, a);
1836#endif /* DEBUG_sunlover */
1837}
1838
1839/**
1840 * Reset notification
1841 *
1842 * @see PDMIDISPLAYCONNECTOR::pfnReset
1843 */
1844DECLCALLBACK(void) Display::displayResetCallback(PPDMIDISPLAYCONNECTOR pInterface)
1845{
1846 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
1847
1848 LogFlowFunc (("\n"));
1849
1850 /* Disable VBVA mode. */
1851 pDrv->pDisplay->VideoAccelEnable (false, NULL);
1852}
1853
1854/**
1855 * LFBModeChange notification
1856 *
1857 * @see PDMIDISPLAYCONNECTOR::pfnLFBModeChange
1858 */
1859DECLCALLBACK(void) Display::displayLFBModeChangeCallback(PPDMIDISPLAYCONNECTOR pInterface, bool fEnabled)
1860{
1861 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
1862
1863 LogFlowFunc (("fEnabled=%d\n", fEnabled));
1864
1865 NOREF(fEnabled);
1866
1867 /* Disable VBVA mode in any case. The guest driver reenables VBVA mode if necessary. */
1868 pDrv->pDisplay->VideoAccelEnable (false, NULL);
1869}
1870
1871/**
1872 * Queries an interface to the driver.
1873 *
1874 * @returns Pointer to interface.
1875 * @returns NULL if the interface was not supported by the driver.
1876 * @param pInterface Pointer to this interface structure.
1877 * @param enmInterface The requested interface identification.
1878 */
1879DECLCALLBACK(void *) Display::drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface)
1880{
1881 PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
1882 PDRVMAINDISPLAY pDrv = PDMINS2DATA(pDrvIns, PDRVMAINDISPLAY);
1883 switch (enmInterface)
1884 {
1885 case PDMINTERFACE_BASE:
1886 return &pDrvIns->IBase;
1887 case PDMINTERFACE_DISPLAY_CONNECTOR:
1888 return &pDrv->Connector;
1889 default:
1890 return NULL;
1891 }
1892}
1893
1894
1895/**
1896 * Destruct a display driver instance.
1897 *
1898 * @returns VBox status.
1899 * @param pDrvIns The driver instance data.
1900 */
1901DECLCALLBACK(void) Display::drvDestruct(PPDMDRVINS pDrvIns)
1902{
1903 PDRVMAINDISPLAY pData = PDMINS2DATA(pDrvIns, PDRVMAINDISPLAY);
1904 LogFlowFunc (("iInstance=%d\n", pDrvIns->iInstance));
1905 if (pData->pDisplay)
1906 {
1907 AutoLock displayLock (pData->pDisplay);
1908 pData->pDisplay->mpDrv = NULL;
1909 pData->pDisplay->mpVMMDev = NULL;
1910 pData->pDisplay->mLastAddress = NULL;
1911 pData->pDisplay->mLastLineSize = 0;
1912 pData->pDisplay->mLastColorDepth = 0,
1913 pData->pDisplay->mLastWidth = 0;
1914 pData->pDisplay->mLastHeight = 0;
1915 }
1916}
1917
1918
1919/**
1920 * Construct a display driver instance.
1921 *
1922 * @returns VBox status.
1923 * @param pDrvIns The driver instance data.
1924 * If the registration structure is needed, pDrvIns->pDrvReg points to it.
1925 * @param pCfgHandle Configuration node handle for the driver. Use this to obtain the configuration
1926 * of the driver instance. It's also found in pDrvIns->pCfgHandle, but like
1927 * iInstance it's expected to be used a bit in this function.
1928 */
1929DECLCALLBACK(int) Display::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle)
1930{
1931 PDRVMAINDISPLAY pData = PDMINS2DATA(pDrvIns, PDRVMAINDISPLAY);
1932 LogFlowFunc (("iInstance=%d\n", pDrvIns->iInstance));
1933
1934 /*
1935 * Validate configuration.
1936 */
1937 if (!CFGMR3AreValuesValid(pCfgHandle, "Object\0"))
1938 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
1939 PPDMIBASE pBaseIgnore;
1940 int rc = pDrvIns->pDrvHlp->pfnAttach(pDrvIns, &pBaseIgnore);
1941 if (rc != VERR_PDM_NO_ATTACHED_DRIVER)
1942 {
1943 AssertMsgFailed(("Configuration error: Not possible to attach anything to this driver!\n"));
1944 return VERR_PDM_DRVINS_NO_ATTACH;
1945 }
1946
1947 /*
1948 * Init Interfaces.
1949 */
1950 pDrvIns->IBase.pfnQueryInterface = Display::drvQueryInterface;
1951
1952 pData->Connector.pfnResize = Display::displayResizeCallback;
1953 pData->Connector.pfnUpdateRect = Display::displayUpdateCallback;
1954 pData->Connector.pfnRefresh = Display::displayRefreshCallback;
1955 pData->Connector.pfnReset = Display::displayResetCallback;
1956 pData->Connector.pfnLFBModeChange = Display::displayLFBModeChangeCallback;
1957
1958 /*
1959 * Get the IDisplayPort interface of the above driver/device.
1960 */
1961 pData->pUpPort = (PPDMIDISPLAYPORT)pDrvIns->pUpBase->pfnQueryInterface(pDrvIns->pUpBase, PDMINTERFACE_DISPLAY_PORT);
1962 if (!pData->pUpPort)
1963 {
1964 AssertMsgFailed(("Configuration error: No display port interface above!\n"));
1965 return VERR_PDM_MISSING_INTERFACE_ABOVE;
1966 }
1967
1968 /*
1969 * Get the Display object pointer and update the mpDrv member.
1970 */
1971 void *pv;
1972 rc = CFGMR3QueryPtr(pCfgHandle, "Object", &pv);
1973 if (VBOX_FAILURE(rc))
1974 {
1975 AssertMsgFailed(("Configuration error: No/bad \"Object\" value! rc=%Vrc\n", rc));
1976 return rc;
1977 }
1978 pData->pDisplay = (Display *)pv; /** @todo Check this cast! */
1979 pData->pDisplay->mpDrv = pData;
1980
1981 /*
1982 * Update our display information according to the framebuffer
1983 */
1984 pData->pDisplay->updateDisplayData();
1985
1986 /*
1987 * Start periodic screen refreshes
1988 */
1989 pData->pUpPort->pfnSetRefreshRate(pData->pUpPort, 20);
1990
1991 return VINF_SUCCESS;
1992}
1993
1994
1995/**
1996 * Display driver registration record.
1997 */
1998const PDMDRVREG Display::DrvReg =
1999{
2000 /* u32Version */
2001 PDM_DRVREG_VERSION,
2002 /* szDriverName */
2003 "MainDisplay",
2004 /* pszDescription */
2005 "Main display driver (Main as in the API).",
2006 /* fFlags */
2007 PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
2008 /* fClass. */
2009 PDM_DRVREG_CLASS_DISPLAY,
2010 /* cMaxInstances */
2011 ~0,
2012 /* cbInstance */
2013 sizeof(DRVMAINDISPLAY),
2014 /* pfnConstruct */
2015 Display::drvConstruct,
2016 /* pfnDestruct */
2017 Display::drvDestruct,
2018 /* pfnIOCtl */
2019 NULL,
2020 /* pfnPowerOn */
2021 NULL,
2022 /* pfnReset */
2023 NULL,
2024 /* pfnSuspend */
2025 NULL,
2026 /* pfnResume */
2027 NULL,
2028 /* pfnDetach */
2029 NULL
2030};
Note: See TracBrowser for help on using the repository browser.

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