VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp@ 254

Last change on this file since 254 was 238, checked in by vboxsync, 18 years ago

Keep the framebuffer locked during resizing

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 34.8 KB
Line 
1/** @file
2 *
3 * VBox frontends: Basic Frontend (BFE):
4 * Implementation of VMDisplay class
5 */
6
7/*
8 * Copyright (C) 2006 InnoTek Systemberatung GmbH
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License as published by the Free Software Foundation,
14 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
15 * distribution. VirtualBox OSE is distributed in the hope that it will
16 * be useful, but WITHOUT ANY WARRANTY of any kind.
17 *
18 * If you received this file as part of a commercial VirtualBox
19 * distribution, then only the terms of your commercial VirtualBox
20 * license agreement apply instead of the previous paragraph.
21 */
22
23#define LOG_GROUP LOG_GROUP_MAIN
24
25#ifdef VBOXBFE_WITHOUT_COM
26# include "COMDefs.h"
27# include <iprt/string.h>
28#else
29# include <VBox/com/defs.h>
30#endif
31
32#include <iprt/alloc.h>
33#include <iprt/semaphore.h>
34#include <iprt/thread.h>
35#include <VBox/pdm.h>
36#include <VBox/cfgm.h>
37#include <VBox/err.h>
38#include <iprt/assert.h>
39#include <VBox/log.h>
40#include <iprt/asm.h>
41
42#ifdef __L4__
43#include <stdio.h>
44#include <l4/util/util.h>
45#include <l4/log/l4log.h>
46#endif
47
48#include "DisplayImpl.h"
49#include "Framebuffer.h"
50#include "VMMDevInterface.h"
51
52
53/*******************************************************************************
54* Structures and Typedefs *
55*******************************************************************************/
56
57/**
58 * VMDisplay driver instance data.
59 */
60typedef struct DRVMAINDISPLAY
61{
62 /** Pointer to the display object. */
63 VMDisplay *pDisplay;
64 /** Pointer to the driver instance structure. */
65 PPDMDRVINS pDrvIns;
66 /** Pointer to the keyboard port interface of the driver/device above us. */
67 PPDMIDISPLAYPORT pUpPort;
68 /** Our display connector interface. */
69 PDMIDISPLAYCONNECTOR Connector;
70} DRVMAINDISPLAY, *PDRVMAINDISPLAY;
71
72/** Converts PDMIDISPLAYCONNECTOR pointer to a DRVMAINDISPLAY pointer. */
73#define PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface) ( (PDRVMAINDISPLAY) ((uintptr_t)pInterface - RT_OFFSETOF(DRVMAINDISPLAY, Connector)) )
74
75
76// constructor / destructor
77/////////////////////////////////////////////////////////////////////////////
78
79VMDisplay::VMDisplay()
80{
81 mpDrv = NULL;
82
83 mpVbvaMemory = NULL;
84 mfVideoAccelEnabled = false;
85
86 mpPendingVbvaMemory = NULL;
87 mfPendingVideoAccelEnable = false;
88
89 mfMachineRunning = false;
90
91 mpu8VbvaPartial = NULL;
92 mcbVbvaPartial = 0;
93
94 RTSemEventMultiCreate(&mResizeSem);
95 RTSemEventMultiCreate(&mUpdateSem);
96
97 // reset the event sems
98 RTSemEventMultiReset(mResizeSem);
99 RTSemEventMultiReset(mUpdateSem);
100
101 // by default, we have an internal Framebuffer which is
102 // NULL, i.e. a black hole for no display output
103 mFramebuffer = 0;
104 mInternalFramebuffer = true;
105 mFramebufferOpened = false;
106}
107
108VMDisplay::~VMDisplay()
109{
110 mFramebuffer = 0;
111 RTSemEventMultiDestroy(mResizeSem);
112 RTSemEventMultiDestroy(mUpdateSem);
113}
114
115// public methods only for internal purposes
116/////////////////////////////////////////////////////////////////////////////
117
118/**
119 * Handle display resize event.
120 *
121 * @returns COM status code
122 * @param w New display width
123 * @param h New display height
124 */
125void VMDisplay::handleDisplayResize (int w, int h)
126{
127 LogFlow(("VMDisplay::handleDisplayResize(): w=%d, h=%d\n", w, h));
128
129 // if there is no Framebuffer, this call is not interesting
130 if (mFramebuffer == NULL)
131 return;
132
133 // callback into the Framebuffer to notify it
134 BOOL finished;
135
136 mFramebuffer->Lock();
137 mFramebuffer->RequestResize(w, h, &finished);
138
139 if (!finished)
140 {
141 LogFlow(("VMDisplay::handleDisplayResize: external framebuffer wants us to wait!\n"));
142
143 /* Note: The previously obtained framebuffer lock must be preserved.
144 * The EMT keeps the framebuffer lock until the resize process completes.
145 */
146
147 /// @todo is this compatible with VBOX_NEXT_STEP?
148 // the framebuffer needs more time to process
149 // the event so we have to halt the VM until it's done
150 RTSemEventMultiReset(mResizeSem);
151 RTSemEventMultiWait(mResizeSem, RT_INDEFINITE_WAIT);
152 }
153
154 updateDisplayData();
155
156 mFramebuffer->Unlock();
157 return;
158}
159
160/**
161 * Notification that the framebuffer has completed the
162 * asynchronous resize processing
163 *
164 * @returns COM status code
165 */
166STDMETHODIMP VMDisplay::ResizeCompleted()
167{
168 LogFlow(("VMDisplay::ResizeCompleted\n"));
169
170 // this is only valid for external framebuffers
171 if (mInternalFramebuffer)
172 return E_FAIL;
173
174 /* The framebuffer can already be locked by the thread waiting for completion; due to recent
175 * changes when calling the VGA device. We don't really need to lock it here, so just don't
176 * bother.
177 */
178 //mFramebuffer->Lock();
179 // signal our semaphore
180 RTSemEventMultiSignal(mResizeSem);
181 //mFramebuffer->Unlock();
182
183 return S_OK;
184}
185
186static void checkCoordBounds (int *px, int *py, int *pw, int *ph, int cx, int cy)
187{
188 /* Correct negative x and y coordinates. */
189 if (*px < 0)
190 {
191 *px += *pw; /* Compute xRight which is also the new width. */
192
193 *pw = (*px < 0)? 0: *px;
194
195 *px = 0;
196 }
197
198 if (*py < 0)
199 {
200 *py += *ph; /* Compute xBottom, which is also the new height. */
201
202 *ph = (*py < 0)? 0: *py;
203
204 *py = 0;
205 }
206
207 /* Also check if coords are greater than the display resolution. */
208 if (*px + *pw > cx)
209 {
210 *pw = cx > *px? cx - *px: 0;
211 }
212
213 if (*py + *ph > cy)
214 {
215 *ph = cy > *py? cy - *py: 0;
216 }
217}
218
219/**
220 * Handle display update
221 *
222 * @returns COM status code
223 * @param w New display width
224 * @param h New display height
225 */
226void VMDisplay::handleDisplayUpdate (int x, int y, int w, int h)
227{
228 // if there is no Framebuffer, this call is not interesting
229 if (mFramebuffer == NULL)
230 return;
231
232 mFramebuffer->Lock();
233
234 checkCoordBounds (&x, &y, &w, &h, mpDrv->Connector.cx, mpDrv->Connector.cy);
235
236 // special processing for the internal Framebuffer
237 if (mInternalFramebuffer)
238 {
239 mFramebuffer->Unlock();
240 }
241 else
242 {
243 // callback into the Framebuffer to notify it
244 BOOL finished;
245
246 mFramebuffer->NotifyUpdate(x, y, w, h, &finished);
247 if (!finished)
248 {
249 // the Framebuffer needs more time to process
250 // the event so we have to halt the VM until it's done
251 RTSemEventMultiReset(mUpdateSem);
252 mFramebuffer->Unlock();
253 RTSemEventMultiWait(mUpdateSem, RT_INDEFINITE_WAIT);
254 } else
255 {
256 mFramebuffer->Unlock();
257 }
258 }
259 return;
260}
261
262// IDisplay properties
263/////////////////////////////////////////////////////////////////////////////
264
265/**
266 * Returns the current display width in pixel
267 *
268 * @returns COM status code
269 * @param width Address of result variable.
270 */
271uint32_t VMDisplay::getWidth()
272{
273 Assert(mpDrv);
274 return mpDrv->Connector.cx;
275}
276
277/**
278 * Returns the current display height in pixel
279 *
280 * @returns COM status code
281 * @param height Address of result variable.
282 */
283uint32_t VMDisplay::getHeight()
284{
285 Assert(mpDrv);
286 return mpDrv->Connector.cy;
287}
288
289/**
290 * Returns the current display color depth in bits
291 *
292 * @returns COM status code
293 * @param colorDepth Address of result variable.
294 */
295uint32_t VMDisplay::getColorDepth()
296{
297 Assert(mpDrv);
298 return mpDrv->Connector.cBits;
299}
300
301void VMDisplay::updatePointerShape(bool fVisible, bool fAlpha, uint32_t xHot, uint32_t yHot, uint32_t width, uint32_t height, void *pShape)
302{
303}
304
305
306// IDisplay methods
307/////////////////////////////////////////////////////////////////////////////
308
309/**
310 * Registers an external Framebuffer
311 *
312 * @returns COM status code
313 * @param Framebuffer external Framebuffer object
314 */
315STDMETHODIMP VMDisplay::RegisterExternalFramebuffer(Framebuffer *Framebuffer)
316{
317 if (!Framebuffer)
318 return E_POINTER;
319
320 // free current Framebuffer (if there is any)
321 mFramebuffer = 0;
322 mInternalFramebuffer = false;
323 mFramebuffer = Framebuffer;
324 updateDisplayData();
325 return S_OK;
326}
327
328/* InvalidateAndUpdate schedules a request that eventually calls */
329/* mpDrv->pUpPort->pfnUpdateDisplayAll which in turns accesses the */
330/* framebuffer. In order to synchronize with other framebuffer */
331/* related activities this call needs to be framed by Lock/Unlock. */
332void
333VMDisplay::doInvalidateAndUpdate(struct DRVMAINDISPLAY *mpDrv)
334{
335 mpDrv->pDisplay->mFramebuffer->Lock();
336 mpDrv->pUpPort->pfnUpdateDisplayAll( mpDrv->pUpPort);
337 mpDrv->pDisplay->mFramebuffer->Unlock();
338}
339
340/**
341 * Does a full invalidation of the VM display and instructs the VM
342 * to update it immediately.
343 *
344 * @returns COM status code
345 */
346STDMETHODIMP VMDisplay::InvalidateAndUpdate()
347{
348 LogFlow (("VMDisplay::InvalidateAndUpdate(): BEGIN\n"));
349
350 HRESULT rc = S_OK;
351
352 LogFlow (("VMDisplay::InvalidateAndUpdate(): sending DPYUPDATE request\n"));
353
354 Assert(pVM);
355 /* pdm.h says that this has to be called from the EMT thread */
356 PVMREQ pReq;
357 int rcVBox = VMR3ReqCallVoid(pVM, &pReq, RT_INDEFINITE_WAIT,
358 (PFNRT)VMDisplay::doInvalidateAndUpdate, 1, mpDrv);
359 if (VBOX_SUCCESS(rcVBox))
360 VMR3ReqFree(pReq);
361
362 if (VBOX_FAILURE(rcVBox))
363 rc = E_FAIL;
364
365 LogFlow (("VMDisplay::InvalidateAndUpdate(): END: rc=%08X\n", rc));
366 return rc;
367}
368
369// private methods
370/////////////////////////////////////////////////////////////////////////////
371
372/**
373 * Helper to update the display information from the Framebuffer
374 *
375 */
376void VMDisplay::updateDisplayData()
377{
378
379 while(!mFramebuffer)
380 {
381#if __L4__
382 asm volatile ("nop":::"memory");
383 l4_sleep(5);
384#else
385 RTThreadYield();
386#endif
387 }
388 Assert(mFramebuffer);
389 // the driver might not have been constructed yet
390 if (mpDrv)
391 {
392 mFramebuffer->getAddress ((uintptr_t *)&mpDrv->Connector.pu8Data);
393 mFramebuffer->getLineSize ((ULONG*)&mpDrv->Connector.cbScanline);
394 mFramebuffer->getColorDepth ((ULONG*)&mpDrv->Connector.cBits);
395 mFramebuffer->getWidth ((ULONG*)&mpDrv->Connector.cx);
396 mFramebuffer->getHeight ((ULONG*)&mpDrv->Connector.cy);
397 }
398}
399
400void VMDisplay::resetFramebuffer()
401{
402 if (!mFramebuffer)
403 return;
404
405 // the driver might not have been constructed yet
406 if (mpDrv)
407 {
408 mFramebuffer->getAddress ((uintptr_t *)&mpDrv->Connector.pu8Data);
409 mFramebuffer->getColorDepth ((ULONG*)&mpDrv->Connector.cBits);
410 }
411}
412
413/**
414 * Handle display resize event
415 *
416 * @param pInterface VMDisplay connector.
417 * @param cx New width in pixels.
418 * @param cy New height in pixels.
419 */
420DECLCALLBACK(void) VMDisplay::displayResizeCallback(PPDMIDISPLAYCONNECTOR pInterface, uint32_t bpp, void *pvVRAM, uint32_t cbLine, uint32_t cx, uint32_t cy)
421{
422 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
423
424 // forward call to instance handler
425 pDrv->pDisplay->handleDisplayResize(cx, cy);
426}
427
428/**
429 * Handle display update
430 *
431 * @param pInterface VMDisplay connector.
432 * @param x Left upper boundary x.
433 * @param y Left upper boundary y.
434 * @param cx Update rect width.
435 * @param cy Update rect height.
436 */
437DECLCALLBACK(void) VMDisplay::displayUpdateCallback(PPDMIDISPLAYCONNECTOR pInterface,
438 uint32_t x, uint32_t y, uint32_t cx, uint32_t cy)
439{
440 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
441
442 // forward call to instance handler
443 pDrv->pDisplay->handleDisplayUpdate(x, y, cx, cy);
444}
445
446/**
447 * Periodic display refresh callback.
448 *
449 * @param pInterface VMDisplay connector.
450 */
451DECLCALLBACK(void) VMDisplay::displayRefreshCallback(PPDMIDISPLAYCONNECTOR pInterface)
452{
453 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
454
455
456 /* Contrary to displayUpdateCallback and displayResizeCallback
457 * the framebuffer lock must be taken since the the function
458 * pointed to by pDrv->pUpPort->pfnUpdateDisplay is anaware
459 * of any locking issues. */
460
461 VMDisplay *pDisplay = pDrv->pDisplay;
462
463 if (pDisplay->mfPendingVideoAccelEnable)
464 {
465 /* Acceleration was enabled while machine was not yet running
466 * due to restoring from saved state. Update entire display and
467 * actually enable acceleration.
468 */
469 Assert(pDisplay->mpPendingVbvaMemory);
470
471 /* Acceleration can not be yet enabled.*/
472 Assert(pDisplay->mpVbvaMemory == NULL);
473 Assert(!pDisplay->mfVideoAccelEnabled);
474
475 if (pDisplay->mfMachineRunning)
476 {
477 pDisplay->VideoAccelEnable (pDisplay->mfPendingVideoAccelEnable, pDisplay->mpPendingVbvaMemory);
478
479 /* Reset the pending state. */
480 pDisplay->mfPendingVideoAccelEnable = false;
481 pDisplay->mpPendingVbvaMemory = NULL;
482 }
483 }
484 else
485 {
486 Assert(pDisplay->mpPendingVbvaMemory == NULL);
487
488 if (pDisplay->mfVideoAccelEnabled)
489 {
490 Assert(pDisplay->mpVbvaMemory);
491 pDisplay->VideoAccelFlush ();
492 }
493 else
494 {
495 Assert(pDrv->Connector.pu8Data);
496 pDisplay->mFramebuffer->Lock();
497 pDrv->pUpPort->pfnUpdateDisplay(pDrv->pUpPort);
498 pDisplay->mFramebuffer->Unlock();
499 }
500 }
501}
502
503/**
504 * Reset notification
505 *
506 * @param pInterface Display connector.
507 */
508DECLCALLBACK(void) VMDisplay::displayResetCallback(PPDMIDISPLAYCONNECTOR pInterface)
509{
510 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
511
512 LogFlow(("Display::displayResetCallback\n"));
513
514 /* Disable VBVA mode. */
515 pDrv->pDisplay->VideoAccelEnable (false, NULL);
516}
517
518/**
519 * LFBModeChange notification
520 *
521 * @see PDMIDISPLAYCONNECTOR::pfnLFBModeChange
522 */
523DECLCALLBACK(void) VMDisplay::displayLFBModeChangeCallback(PPDMIDISPLAYCONNECTOR pInterface, bool fEnabled)
524{
525 PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
526
527 LogFlow(("Display::displayLFBModeChangeCallback: %d\n", fEnabled));
528
529 NOREF(fEnabled);
530
531 /**
532 * @todo: If we got the callback then VM if definitely running.
533 * But a better method should be implemented.
534 */
535 pDrv->pDisplay->mfMachineRunning = true;
536
537 /* Disable VBVA mode in any case. The guest driver reenables VBVA mode if necessary. */
538 pDrv->pDisplay->VideoAccelEnable (false, NULL);
539}
540
541typedef struct _VBVADIRTYREGION
542{
543 /* Copies of object's pointers used by vbvaRgn functions. */
544 Framebuffer *pFramebuffer;
545 VMDisplay *pDisplay;
546 PPDMIDISPLAYPORT pPort;
547
548 /* Merged rectangles. */
549 int32_t xLeft;
550 int32_t xRight;
551 int32_t yTop;
552 int32_t yBottom;
553
554} VBVADIRTYREGION;
555
556void vbvaRgnInit (VBVADIRTYREGION *prgn, Framebuffer *pfb, VMDisplay *pd, PPDMIDISPLAYPORT pp)
557{
558 memset (prgn, 0, sizeof (VBVADIRTYREGION));
559
560 prgn->pFramebuffer = pfb;
561 prgn->pDisplay = pd;
562 prgn->pPort = pp;
563
564 return;
565}
566
567void vbvaRgnDirtyRect (VBVADIRTYREGION *prgn, VBVACMDHDR *phdr)
568{
569 LogFlow(("vbvaRgnDirtyRect: x = %d, y = %d, w = %d, h = %d\n", phdr->x, phdr->y, phdr->w, phdr->h));
570
571 /*
572 * Here update rectangles are accumulated to form an update area.
573 * @todo
574 * Now the simplies method is used which builds one rectangle that
575 * includes all update areas. A bit more advanced method can be
576 * employed here. The method should be fast however.
577 */
578 if (phdr->w == 0 || phdr->h == 0)
579 {
580 /* Empty rectangle. */
581 return;
582 }
583
584 int32_t xRight = phdr->x + phdr->w;
585 int32_t yBottom = phdr->y + phdr->h;
586
587 if (prgn->xRight == 0)
588 {
589 /* This is the first rectangle to be added. */
590 prgn->xLeft = phdr->x;
591 prgn->yTop = phdr->y;
592 prgn->xRight = xRight;
593 prgn->yBottom = yBottom;
594 }
595 else
596 {
597 /* Adjust region coordinates. */
598 if (prgn->xLeft > phdr->x)
599 {
600 prgn->xLeft = phdr->x;
601 }
602
603 if (prgn->yTop > phdr->y)
604 {
605 prgn->yTop = phdr->y;
606 }
607
608 if (prgn->xRight < xRight)
609 {
610 prgn->xRight = xRight;
611 }
612
613 if (prgn->yBottom < yBottom)
614 {
615 prgn->yBottom = yBottom;
616 }
617 }
618}
619
620void vbvaRgnUpdateFramebuffer (VBVADIRTYREGION *prgn)
621{
622 uint32_t w = prgn->xRight - prgn->xLeft;
623 uint32_t h = prgn->yBottom - prgn->yTop;
624
625 if (prgn->pFramebuffer && w != 0 && h != 0)
626 {
627 prgn->pPort->pfnUpdateDisplayRect (prgn->pPort, prgn->xLeft, prgn->yTop, w, h);
628 prgn->pDisplay->handleDisplayUpdate (prgn->xLeft, prgn->yTop, w, h);
629 }
630}
631
632static void vbvaSetMemoryFlags (VBVAMEMORY *pVbvaMemory, bool fVideoAccelEnabled, bool fVideoAccelVRDP)
633{
634 if (pVbvaMemory)
635 {
636 /* This called only on changes in mode. So reset VRDP always. */
637 uint32_t fu32Flags = VBVA_F_MODE_VRDP_RESET;
638
639 if (fVideoAccelEnabled)
640 {
641 fu32Flags |= VBVA_F_MODE_ENABLED;
642
643 if (fVideoAccelVRDP)
644 {
645 fu32Flags |= VBVA_F_MODE_VRDP;
646 }
647 }
648
649 pVbvaMemory->fu32ModeFlags = fu32Flags;
650 }
651}
652
653bool VMDisplay::VideoAccelAllowed (void)
654{
655 return true;
656}
657
658/**
659 * @thread EMT
660 */
661int VMDisplay::VideoAccelEnable (bool fEnable, VBVAMEMORY *pVbvaMemory)
662{
663 int rc = VINF_SUCCESS;
664
665 /* Called each time the guest wants to use acceleration,
666 * or when the VGA device disables acceleration,
667 * or when restoring the saved state with accel enabled.
668 *
669 * VGA device disables acceleration on each video mode change
670 * and on reset.
671 *
672 * Guest enabled acceleration at will. And it needs to enable
673 * acceleration after a mode change.
674 */
675 LogFlow(("Display::VideoAccelEnable: mfVideoAccelEnabled = %d, fEnable = %d, pVbvaMemory = %p\n",
676 mfVideoAccelEnabled, fEnable, pVbvaMemory));
677
678 /* Strictly check parameters. Callers must not pass anything in the case. */
679 Assert((fEnable && pVbvaMemory) || (!fEnable && pVbvaMemory == NULL));
680
681 if (!VideoAccelAllowed ())
682 {
683 return VERR_NOT_SUPPORTED;
684 }
685
686 /*
687 * Verify that the VM is in running state. If it is not,
688 * then this must be postponed until it goes to running.
689 */
690 if (!mfMachineRunning)
691 {
692 Assert (!mfVideoAccelEnabled);
693
694 LogFlow(("Display::VideoAccelEnable: Machine is not yet running.\n"));
695
696 if (fEnable)
697 {
698 mfPendingVideoAccelEnable = fEnable;
699 mpPendingVbvaMemory = pVbvaMemory;
700 }
701
702 return rc;
703 }
704
705 /* Check that current status is not being changed */
706 if (mfVideoAccelEnabled == fEnable)
707 {
708 return rc;
709 }
710
711 if (mfVideoAccelEnabled)
712 {
713 /* Process any pending orders and empty the VBVA ring buffer. */
714 VideoAccelFlush ();
715 }
716
717 if (!fEnable && mpVbvaMemory)
718 {
719 mpVbvaMemory->fu32ModeFlags &= ~VBVA_F_MODE_ENABLED;
720 }
721
722 /* Safety precaution. There is no more VBVA until everything is setup! */
723 mpVbvaMemory = NULL;
724 mfVideoAccelEnabled = false;
725
726 /* Update entire display. */
727 mpDrv->pUpPort->pfnUpdateDisplayAll(mpDrv->pUpPort);
728
729 /* Everything OK. VBVA status can be changed. */
730
731 /* Notify the VMMDev, which saves VBVA status in the saved state,
732 * and needs to know current status.
733 */
734 PPDMIVMMDEVPORT pVMMDevPort = gVMMDev->getVMMDevPort ();
735
736 if (pVMMDevPort)
737 {
738 pVMMDevPort->pfnVBVAChange (pVMMDevPort, fEnable);
739 }
740
741 if (fEnable)
742 {
743 mpVbvaMemory = pVbvaMemory;
744 mfVideoAccelEnabled = true;
745
746 /* Initialize the hardware memory. */
747 vbvaSetMemoryFlags (mpVbvaMemory, mfVideoAccelEnabled, false);
748 mpVbvaMemory->off32Data = 0;
749 mpVbvaMemory->off32Free = 0;
750
751 memset (mpVbvaMemory->aRecords, 0, sizeof (mpVbvaMemory->aRecords));
752 mpVbvaMemory->indexRecordFirst = 0;
753 mpVbvaMemory->indexRecordFree = 0;
754
755 LogRel(("VBVA: Enabled.\n"));
756 }
757 else
758 {
759 LogRel(("VBVA: Disabled.\n"));
760 }
761
762 LogFlow(("Display::VideoAccelEnable: rc = %Vrc.\n", rc));
763
764 return rc;
765}
766
767static bool vbvaVerifyRingBuffer (VBVAMEMORY *pVbvaMemory)
768{
769 return true;
770}
771
772static void vbvaFetchBytes (VBVAMEMORY *pVbvaMemory, uint8_t *pu8Dst, uint32_t cbDst)
773{
774 if (cbDst >= VBVA_RING_BUFFER_SIZE)
775 {
776 AssertFailed ();
777 return;
778 }
779
780 uint32_t u32BytesTillBoundary = VBVA_RING_BUFFER_SIZE - pVbvaMemory->off32Data;
781 uint8_t *src = &pVbvaMemory->au8RingBuffer[pVbvaMemory->off32Data];
782 int32_t i32Diff = cbDst - u32BytesTillBoundary;
783
784 if (i32Diff <= 0)
785 {
786 /* Chunk will not cross buffer boundary. */
787 memcpy (pu8Dst, src, cbDst);
788 }
789 else
790 {
791 /* Chunk crosses buffer boundary. */
792 memcpy (pu8Dst, src, u32BytesTillBoundary);
793 memcpy (pu8Dst + u32BytesTillBoundary, &pVbvaMemory->au8RingBuffer[0], i32Diff);
794 }
795
796 /* Advance data offset. */
797 pVbvaMemory->off32Data = (pVbvaMemory->off32Data + cbDst) % VBVA_RING_BUFFER_SIZE;
798
799 return;
800}
801
802
803static bool vbvaPartialRead (uint8_t **ppu8, uint32_t *pcb, uint32_t cbRecord, VBVAMEMORY *pVbvaMemory)
804{
805 uint8_t *pu8New;
806
807 LogFlow(("MAIN::DisplayImpl::vbvaPartialRead: p = %p, cb = %d, cbRecord 0x%08X\n",
808 *ppu8, *pcb, cbRecord));
809
810 if (*ppu8)
811 {
812 Assert (*pcb);
813 pu8New = (uint8_t *)RTMemRealloc (*ppu8, cbRecord);
814 }
815 else
816 {
817 Assert (!*pcb);
818 pu8New = (uint8_t *)RTMemAlloc (cbRecord);
819 }
820
821 if (!pu8New)
822 {
823 /* Memory allocation failed, fail the function. */
824 Log(("MAIN::vbvaPartialRead: failed to (re)alocate memory for partial record!!! cbRecord 0x%08X\n",
825 cbRecord));
826
827 if (*ppu8)
828 {
829 RTMemFree (*ppu8);
830 }
831
832 *ppu8 = NULL;
833 *pcb = 0;
834
835 return false;
836 }
837
838 /* Fetch data from the ring buffer. */
839 vbvaFetchBytes (pVbvaMemory, pu8New + *pcb, cbRecord - *pcb);
840
841 *ppu8 = pu8New;
842 *pcb = cbRecord;
843
844 return true;
845}
846
847/* For contiguous chunks just return the address in the buffer.
848 * For crossing boundary - allocate a buffer from heap.
849 */
850bool VMDisplay::vbvaFetchCmd (VBVACMDHDR **ppHdr, uint32_t *pcbCmd)
851{
852 uint32_t indexRecordFirst = mpVbvaMemory->indexRecordFirst;
853 uint32_t indexRecordFree = mpVbvaMemory->indexRecordFree;
854
855#ifdef DEBUG_sunlover
856 LogFlow(("MAIN::DisplayImpl::vbvaFetchCmd:first = %d, free = %d\n",
857 indexRecordFirst, indexRecordFree));
858#endif /* DEBUG_sunlover */
859
860 if (!vbvaVerifyRingBuffer (mpVbvaMemory))
861 {
862 return false;
863 }
864
865 if (indexRecordFirst == indexRecordFree)
866 {
867 /* No records to process. Return without assigning output variables. */
868 return true;
869 }
870
871 VBVARECORD *pRecord = &mpVbvaMemory->aRecords[indexRecordFirst];
872
873#ifdef DEBUG_sunlover
874 LogFlow(("MAIN::DisplayImpl::vbvaFetchCmd: cbRecord = 0x%08X\n",
875 pRecord->cbRecord));
876#endif /* DEBUG_sunlover */
877
878 uint32_t cbRecord = pRecord->cbRecord & ~VBVA_F_RECORD_PARTIAL;
879
880 if (mcbVbvaPartial)
881 {
882 /* There is a partial read in process. Continue with it. */
883
884 Assert (mpu8VbvaPartial);
885
886 LogFlow(("MAIN::DisplayImpl::vbvaFetchCmd: continue partial record mcbVbvaPartial = %d cbRecord 0x%08X, first = %d, free = %d\n",
887 mcbVbvaPartial, pRecord->cbRecord, indexRecordFirst, indexRecordFree));
888
889 if (cbRecord > mcbVbvaPartial)
890 {
891 /* New data has been added to the record. */
892 if (!vbvaPartialRead (&mpu8VbvaPartial, &mcbVbvaPartial, cbRecord, mpVbvaMemory))
893 {
894 return false;
895 }
896 }
897
898 if (!(pRecord->cbRecord & VBVA_F_RECORD_PARTIAL))
899 {
900 /* The record is completed by guest. Return it to the caller. */
901 *ppHdr = (VBVACMDHDR *)mpu8VbvaPartial;
902 *pcbCmd = mcbVbvaPartial;
903
904 mpu8VbvaPartial = NULL;
905 mcbVbvaPartial = 0;
906
907 /* Advance the record index. */
908 mpVbvaMemory->indexRecordFirst = (indexRecordFirst + 1) % VBVA_MAX_RECORDS;
909
910#ifdef DEBUG_sunlover
911 LogFlow(("MAIN::DisplayImpl::vbvaFetchBytes: partial done ok, data = %d, free = %d\n",
912 mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
913#endif /* DEBUG_sunlover */
914 }
915
916 return true;
917 }
918
919 /* A new record need to be processed. */
920 if (pRecord->cbRecord & VBVA_F_RECORD_PARTIAL)
921 {
922 /* Current record is being written by guest. '=' is important here. */
923 if (cbRecord >= VBVA_RING_BUFFER_SIZE - VBVA_RING_BUFFER_THRESHOLD)
924 {
925 /* Partial read must be started. */
926 if (!vbvaPartialRead (&mpu8VbvaPartial, &mcbVbvaPartial, cbRecord, mpVbvaMemory))
927 {
928 return false;
929 }
930
931 LogFlow(("MAIN::DisplayImpl::vbvaFetchCmd: started partial record mcbVbvaPartial = 0x%08X cbRecord 0x%08X, first = %d, free = %d\n",
932 mcbVbvaPartial, pRecord->cbRecord, indexRecordFirst, indexRecordFree));
933 }
934
935 return true;
936 }
937
938 /* Current record is complete. */
939
940 /* The size of largest contiguos chunk in the ring biffer. */
941 uint32_t u32BytesTillBoundary = VBVA_RING_BUFFER_SIZE - mpVbvaMemory->off32Data;
942
943 /* The ring buffer pointer. */
944 uint8_t *au8RingBuffer = &mpVbvaMemory->au8RingBuffer[0];
945
946 /* The pointer to data in the ring buffer. */
947 uint8_t *src = &au8RingBuffer[mpVbvaMemory->off32Data];
948
949 /* Fetch or point the data. */
950 if (u32BytesTillBoundary >= cbRecord)
951 {
952 /* The command does not cross buffer boundary. Return address in the buffer. */
953 *ppHdr = (VBVACMDHDR *)src;
954
955 /* Advance data offset. */
956 mpVbvaMemory->off32Data = (mpVbvaMemory->off32Data + cbRecord) % VBVA_RING_BUFFER_SIZE;
957 }
958 else
959 {
960 /* The command crosses buffer boundary. Rare case, so not optimized. */
961 uint8_t *dst = (uint8_t *)RTMemAlloc (cbRecord);
962
963 if (!dst)
964 {
965 LogFlow(("MAIN::DisplayImpl::vbvaFetchCmd: could not allocate %d bytes from heap!!!\n", cbRecord));
966 mpVbvaMemory->off32Data = (mpVbvaMemory->off32Data + cbRecord) % VBVA_RING_BUFFER_SIZE;
967 return false;
968 }
969
970 vbvaFetchBytes (mpVbvaMemory, dst, cbRecord);
971
972 *ppHdr = (VBVACMDHDR *)dst;
973
974#ifdef DEBUG_sunlover
975 LogFlow(("MAIN::DisplayImpl::vbvaFetchBytes: Allocated from heap %p\n", dst));
976#endif /* DEBUG_sunlover */
977 }
978
979 *pcbCmd = cbRecord;
980
981 /* Advance the record index. */
982 mpVbvaMemory->indexRecordFirst = (indexRecordFirst + 1) % VBVA_MAX_RECORDS;
983
984#ifdef DEBUG_sunlover
985 LogFlow(("MAIN::DisplayImpl::vbvaFetchBytes: done ok, data = %d, free = %d\n",
986 mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
987#endif /* DEBUG_sunlover */
988
989 return true;
990}
991
992void VMDisplay::vbvaReleaseCmd (VBVACMDHDR *pHdr, int32_t cbCmd)
993{
994 uint8_t *au8RingBuffer = mpVbvaMemory->au8RingBuffer;
995
996 if ( (uint8_t *)pHdr >= au8RingBuffer
997 && (uint8_t *)pHdr < &au8RingBuffer[VBVA_RING_BUFFER_SIZE])
998 {
999 /* The pointer is inside ring buffer. Must be continuous chunk. */
1000 Assert (VBVA_RING_BUFFER_SIZE - ((uint8_t *)pHdr - au8RingBuffer) >= cbCmd);
1001
1002 /* Do nothing. */
1003
1004 Assert (!mpu8VbvaPartial && mcbVbvaPartial == 0);
1005 }
1006 else
1007 {
1008 /* The pointer is outside. It is then an allocated copy. */
1009
1010#ifdef DEBUG_sunlover
1011 LogFlow(("MAIN::DisplayImpl::vbvaReleaseCmd: Free heap %p\n", pHdr));
1012#endif /* DEBUG_sunlover */
1013
1014 if ((uint8_t *)pHdr == mpu8VbvaPartial)
1015 {
1016 mpu8VbvaPartial = NULL;
1017 mcbVbvaPartial = 0;
1018 }
1019 else
1020 {
1021 Assert (!mpu8VbvaPartial && mcbVbvaPartial == 0);
1022 }
1023
1024 RTMemFree (pHdr);
1025 }
1026
1027 return;
1028}
1029
1030/**
1031 * Called regularly on the DisplayRefresh timer.
1032 * Also on behalf of guest, when the ring buffer is full.
1033 *
1034 * @thread EMT
1035 */
1036void VMDisplay::VideoAccelFlush (void)
1037{
1038#ifdef DEBUG_sunlover
1039 LogFlow(("Display::VideoAccelFlush: mfVideoAccelEnabled = %d\n", mfVideoAccelEnabled));
1040#endif /* DEBUG_sunlover */
1041
1042 if (!mfVideoAccelEnabled)
1043 {
1044 Log(("Display::VideoAccelFlush: called with disabled VBVA!!! Ignoring.\n"));
1045 return;
1046 }
1047
1048 /* Here VBVA is enabled and we have the accelerator memory pointer. */
1049 Assert(mpVbvaMemory);
1050
1051#ifdef DEBUG_sunlover
1052 LogFlow(("Display::VideoAccelFlush: indexRecordFirst = %d, indexRecordFree = %d, off32Data = %d, off32Free = %d\n",
1053 mpVbvaMemory->indexRecordFirst, mpVbvaMemory->indexRecordFree, mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
1054#endif /* DEBUG_sunlover */
1055
1056 /* Quick check for "nothing to update" case. */
1057 if (mpVbvaMemory->indexRecordFirst == mpVbvaMemory->indexRecordFree)
1058 {
1059 return;
1060 }
1061
1062 /* Process the ring buffer */
1063
1064 bool fFramebufferIsNull = (mFramebuffer == NULL);
1065
1066 if (!fFramebufferIsNull)
1067 {
1068 mFramebuffer->Lock();
1069 }
1070
1071 /* Initialize dirty rectangles accumulator. */
1072 VBVADIRTYREGION rgn;
1073 vbvaRgnInit (&rgn, mFramebuffer, this, mpDrv->pUpPort);
1074
1075 for (;;)
1076 {
1077 VBVACMDHDR *phdr = NULL;
1078 uint32_t cbCmd = 0;
1079
1080 /* Fetch the command data. */
1081 if (!vbvaFetchCmd (&phdr, &cbCmd))
1082 {
1083 Log(("Display::VideoAccelFlush: unable to fetch command. off32Data = %d, off32Free = %d. Disabling VBVA!!!\n",
1084 mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
1085
1086 /* Disable VBVA on those processing errors. */
1087 VideoAccelEnable (false, NULL);
1088
1089 break;
1090 }
1091
1092 if (!cbCmd)
1093 {
1094 /* No more commands yet in the queue. */
1095 break;
1096 }
1097
1098 if (!fFramebufferIsNull)
1099 {
1100#ifdef DEBUG_sunlover
1101 LogFlow(("MAIN::DisplayImpl::VideoAccelFlush: hdr: cbCmd = %d, x=%d, y=%d, w=%d, h=%d\n", cbCmd, phdr->x, phdr->y, phdr->w, phdr->h));
1102#endif /* DEBUG_sunlover */
1103
1104 /* Handle the command.
1105 *
1106 * Guest is responsible for updating the guest video memory.
1107 * The Windows guest does all drawing using Eng*.
1108 *
1109 * For local output, only dirty rectangle information is used
1110 * to update changed areas.
1111 *
1112 * Dirty rectangles are accumulated to exclude overlapping updates and
1113 * group small updates to a larger one.
1114 */
1115
1116 /* Accumulate the update. */
1117 vbvaRgnDirtyRect (&rgn, phdr);
1118
1119// /* Forward the command to VRDP server. */
1120// mParent->consoleVRDPServer()->SendUpdate (phdr, cbCmd);
1121 }
1122
1123 vbvaReleaseCmd (phdr, cbCmd);
1124 }
1125
1126 if (!fFramebufferIsNull)
1127 {
1128 mFramebuffer->Unlock ();
1129 }
1130
1131 /* Draw the framebuffer. */
1132 vbvaRgnUpdateFramebuffer (&rgn);
1133}
1134
1135/**
1136 * Queries an interface to the driver.
1137 *
1138 * @returns Pointer to interface.
1139 * @returns NULL if the interface was not supported by the driver.
1140 * @param pInterface Pointer to this interface structure.
1141 * @param enmInterface The requested interface identification.
1142 */
1143DECLCALLBACK(void *) VMDisplay::drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface)
1144{
1145 PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
1146 PDRVMAINDISPLAY pDrv = PDMINS2DATA(pDrvIns, PDRVMAINDISPLAY);
1147 switch (enmInterface)
1148 {
1149 case PDMINTERFACE_BASE:
1150 return &pDrvIns->IBase;
1151 case PDMINTERFACE_DISPLAY_CONNECTOR:
1152 return &pDrv->Connector;
1153 default:
1154 return NULL;
1155 }
1156}
1157
1158
1159/**
1160 * Construct a display driver instance.
1161 *
1162 * @returns VBox status.
1163 * @param pDrvIns The driver instance data.
1164 * If the registration structure is needed, pDrvIns->pDrvReg points to it.
1165 * @param pCfgHandle Configuration node handle for the driver. Use this to obtain the configuration
1166 * of the driver instance. It's also found in pDrvIns->pCfgHandle, but like
1167 * iInstance it's expected to be used a bit in this function.
1168 */
1169DECLCALLBACK(int) VMDisplay::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle)
1170{
1171 PDRVMAINDISPLAY pData = PDMINS2DATA(pDrvIns, PDRVMAINDISPLAY);
1172 LogFlow(("VMDisplay::drvConstruct: iInstance=%d\n", pDrvIns->iInstance));
1173
1174
1175 /*
1176 * Validate configuration.
1177 */
1178 if (!CFGMR3AreValuesValid(pCfgHandle, "Object\0"))
1179 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
1180 PPDMIBASE pBaseIgnore;
1181 int rc = pDrvIns->pDrvHlp->pfnAttach(pDrvIns, &pBaseIgnore);
1182 if (rc != VERR_PDM_NO_ATTACHED_DRIVER)
1183 {
1184 AssertMsgFailed(("Configuration error: Not possible to attach anything to this driver!\n"));
1185 return VERR_PDM_DRVINS_NO_ATTACH;
1186 }
1187
1188 /*
1189 * Init Interfaces.
1190 */
1191 pDrvIns->IBase.pfnQueryInterface = VMDisplay::drvQueryInterface;
1192
1193 pData->Connector.pfnResize = VMDisplay::displayResizeCallback;
1194 pData->Connector.pfnUpdateRect = VMDisplay::displayUpdateCallback;
1195 pData->Connector.pfnRefresh = VMDisplay::displayRefreshCallback;
1196 pData->Connector.pfnReset = VMDisplay::displayResetCallback;
1197 pData->Connector.pfnLFBModeChange = VMDisplay::displayLFBModeChangeCallback;
1198
1199 /*
1200 * Get the IDisplayPort interface of the above driver/device.
1201 */
1202 pData->pUpPort = (PPDMIDISPLAYPORT)pDrvIns->pUpBase->pfnQueryInterface(pDrvIns->pUpBase, PDMINTERFACE_DISPLAY_PORT);
1203 if (!pData->pUpPort)
1204 {
1205 AssertMsgFailed(("Configuration error: No display port interface above!\n"));
1206 return VERR_PDM_MISSING_INTERFACE_ABOVE;
1207 }
1208
1209 /*
1210 * Get the VMDisplay object pointer and update the mpDrv member.
1211 */
1212 void *pv;
1213 rc = CFGMR3QueryPtr(pCfgHandle, "Object", &pv);
1214 if (VBOX_FAILURE(rc))
1215 {
1216 AssertMsgFailed(("Configuration error: No/bad \"Object\" value! rc=%Vrc\n", rc));
1217 return rc;
1218 }
1219 pData->pDisplay = (VMDisplay *)pv; /** @todo Check this cast! */
1220 pData->pDisplay->mpDrv = pData;
1221
1222 /*
1223 * If there is a Framebuffer, we have to update our display information
1224 */
1225 if (pData->pDisplay->mFramebuffer)
1226 {
1227 pData->pDisplay->updateDisplayData();
1228 }
1229
1230 /*
1231 * Start periodic screen refreshes
1232 */
1233 pData->pUpPort->pfnSetRefreshRate(pData->pUpPort, 50);
1234
1235 return VINF_SUCCESS;
1236}
1237
1238
1239/**
1240 * VMDisplay driver registration record.
1241 */
1242const PDMDRVREG VMDisplay::DrvReg =
1243{
1244 /* u32Version */
1245 PDM_DRVREG_VERSION,
1246 /* szDriverName */
1247 "MainDisplay",
1248 /* pszDescription */
1249 "Main display driver (Main as in the API).",
1250 /* fFlags */
1251 PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
1252 /* fClass. */
1253 PDM_DRVREG_CLASS_DISPLAY,
1254 /* cMaxInstances */
1255 ~0,
1256 /* cbInstance */
1257 sizeof(DRVMAINDISPLAY),
1258 /* pfnConstruct */
1259 VMDisplay::drvConstruct,
1260 /* pfnDestruct */
1261 NULL,
1262 /* pfnIOCtl */
1263 NULL,
1264 /* pfnPowerOn */
1265 NULL,
1266 /* pfnReset */
1267 NULL,
1268 /* pfnSuspend */
1269 NULL,
1270 /* pfnResume */
1271 NULL,
1272 /* pfnDetach */
1273 NULL
1274};
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