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 | */
|
---|
42 | typedef 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
|
---|
58 | static STAMPROFILE StatDisplayRefresh;
|
---|
59 | static int stam = 0;
|
---|
60 | #endif /* DEBUG_sunlover */
|
---|
61 |
|
---|
62 | // constructor / destructor
|
---|
63 | /////////////////////////////////////////////////////////////////////////////
|
---|
64 |
|
---|
65 | HRESULT 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 |
|
---|
97 | void 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 | */
|
---|
113 | HRESULT 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 | */
|
---|
145 | void 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
|
---|
171 | STDMETHODIMP 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 |
|
---|
189 | void 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 | */
|
---|
224 | void 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 |
|
---|
321 | static 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 | */
|
---|
364 | void 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 |
|
---|
420 | typedef 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 |
|
---|
435 | static 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 |
|
---|
446 | static 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 |
|
---|
502 | static 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 |
|
---|
514 | static 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 |
|
---|
540 | bool Display::VideoAccelAllowed (void)
|
---|
541 | {
|
---|
542 | return true;
|
---|
543 | }
|
---|
544 |
|
---|
545 | /**
|
---|
546 | * @thread EMT
|
---|
547 | */
|
---|
548 | int 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 | */
|
---|
658 | void Display::VideoAccelVRDP (bool fEnable)
|
---|
659 | {
|
---|
660 | /* Supporting all orders. */
|
---|
661 | uint32_t fu32SupportedOrders = ~0;
|
---|
662 |
|
---|
663 | int c = fEnable?
|
---|
664 | ASMAtomicIncS32 (&mcVideoAccelVRDPRefs):
|
---|
665 | ASMAtomicDecS32 (&mcVideoAccelVRDPRefs);
|
---|
666 |
|
---|
667 | Assert (c >= 0);
|
---|
668 |
|
---|
669 | if (c == 0)
|
---|
670 | {
|
---|
671 | /* The last client has disconnected, and the accel can be
|
---|
672 | * disabled.
|
---|
673 | */
|
---|
674 | Assert (fEnable == false);
|
---|
675 |
|
---|
676 | mfVideoAccelVRDP = false;
|
---|
677 | mfu32SupportedOrders = 0;
|
---|
678 |
|
---|
679 | vbvaSetMemoryFlags (mpVbvaMemory, mfVideoAccelEnabled, mfVideoAccelVRDP, mfu32SupportedOrders);
|
---|
680 |
|
---|
681 | LogRel(("VBVA: VRDP acceleration has been disabled.\n"));
|
---|
682 | }
|
---|
683 | else if ( c == 1
|
---|
684 | && !mfVideoAccelVRDP)
|
---|
685 | {
|
---|
686 | /* The first client has connected. Enable the accel.
|
---|
687 | */
|
---|
688 | Assert (fEnable == true);
|
---|
689 |
|
---|
690 | mfVideoAccelVRDP = true;
|
---|
691 | /* Supporting all orders. */
|
---|
692 | mfu32SupportedOrders = ~0;
|
---|
693 |
|
---|
694 | vbvaSetMemoryFlags (mpVbvaMemory, mfVideoAccelEnabled, mfVideoAccelVRDP, mfu32SupportedOrders);
|
---|
695 |
|
---|
696 | LogRel(("VBVA: VRDP acceleration has been requested.\n"));
|
---|
697 | }
|
---|
698 | else
|
---|
699 | {
|
---|
700 | /* A client is connected or disconnected but there is no change in the
|
---|
701 | * accel state. It remains enabled.
|
---|
702 | */
|
---|
703 | Assert (mfVideoAccelVRDP == true);
|
---|
704 | }
|
---|
705 | }
|
---|
706 | #else
|
---|
707 | void Display::VideoAccelVRDP (bool fEnable, uint32_t fu32SupportedOrders)
|
---|
708 | {
|
---|
709 | Assert (mfVideoAccelVRDP != fEnable);
|
---|
710 |
|
---|
711 | mfVideoAccelVRDP = fEnable;
|
---|
712 |
|
---|
713 | if (fEnable)
|
---|
714 | {
|
---|
715 | mfu32SupportedOrders = fu32SupportedOrders;
|
---|
716 | }
|
---|
717 | else
|
---|
718 | {
|
---|
719 | mfu32SupportedOrders = 0;
|
---|
720 | }
|
---|
721 |
|
---|
722 | vbvaSetMemoryFlags (mpVbvaMemory, mfVideoAccelEnabled, mfVideoAccelVRDP, mfu32SupportedOrders);
|
---|
723 |
|
---|
724 | LogRel(("VBVA: VRDP acceleration has been %s.\n", fEnable? "requested": "disabled"));
|
---|
725 | }
|
---|
726 | #endif /* VRDP_MC */
|
---|
727 | #endif /* VBOX_VRDP */
|
---|
728 |
|
---|
729 | static bool vbvaVerifyRingBuffer (VBVAMEMORY *pVbvaMemory)
|
---|
730 | {
|
---|
731 | return true;
|
---|
732 | }
|
---|
733 |
|
---|
734 | static void vbvaFetchBytes (VBVAMEMORY *pVbvaMemory, uint8_t *pu8Dst, uint32_t cbDst)
|
---|
735 | {
|
---|
736 | if (cbDst >= VBVA_RING_BUFFER_SIZE)
|
---|
737 | {
|
---|
738 | AssertMsgFailed (("cbDst = 0x%08X, ring buffer size 0x%08X", cbDst, VBVA_RING_BUFFER_SIZE));
|
---|
739 | return;
|
---|
740 | }
|
---|
741 |
|
---|
742 | uint32_t u32BytesTillBoundary = VBVA_RING_BUFFER_SIZE - pVbvaMemory->off32Data;
|
---|
743 | uint8_t *src = &pVbvaMemory->au8RingBuffer[pVbvaMemory->off32Data];
|
---|
744 | int32_t i32Diff = cbDst - u32BytesTillBoundary;
|
---|
745 |
|
---|
746 | if (i32Diff <= 0)
|
---|
747 | {
|
---|
748 | /* Chunk will not cross buffer boundary. */
|
---|
749 | memcpy (pu8Dst, src, cbDst);
|
---|
750 | }
|
---|
751 | else
|
---|
752 | {
|
---|
753 | /* Chunk crosses buffer boundary. */
|
---|
754 | memcpy (pu8Dst, src, u32BytesTillBoundary);
|
---|
755 | memcpy (pu8Dst + u32BytesTillBoundary, &pVbvaMemory->au8RingBuffer[0], i32Diff);
|
---|
756 | }
|
---|
757 |
|
---|
758 | /* Advance data offset. */
|
---|
759 | pVbvaMemory->off32Data = (pVbvaMemory->off32Data + cbDst) % VBVA_RING_BUFFER_SIZE;
|
---|
760 |
|
---|
761 | return;
|
---|
762 | }
|
---|
763 |
|
---|
764 |
|
---|
765 | static bool vbvaPartialRead (uint8_t **ppu8, uint32_t *pcb, uint32_t cbRecord, VBVAMEMORY *pVbvaMemory)
|
---|
766 | {
|
---|
767 | uint8_t *pu8New;
|
---|
768 |
|
---|
769 | LogFlow(("MAIN::DisplayImpl::vbvaPartialRead: p = %p, cb = %d, cbRecord 0x%08X\n",
|
---|
770 | *ppu8, *pcb, cbRecord));
|
---|
771 |
|
---|
772 | if (*ppu8)
|
---|
773 | {
|
---|
774 | Assert (*pcb);
|
---|
775 | pu8New = (uint8_t *)RTMemRealloc (*ppu8, cbRecord);
|
---|
776 | }
|
---|
777 | else
|
---|
778 | {
|
---|
779 | Assert (!*pcb);
|
---|
780 | pu8New = (uint8_t *)RTMemAlloc (cbRecord);
|
---|
781 | }
|
---|
782 |
|
---|
783 | if (!pu8New)
|
---|
784 | {
|
---|
785 | /* Memory allocation failed, fail the function. */
|
---|
786 | Log(("MAIN::vbvaPartialRead: failed to (re)alocate memory for partial record!!! cbRecord 0x%08X\n",
|
---|
787 | cbRecord));
|
---|
788 |
|
---|
789 | if (*ppu8)
|
---|
790 | {
|
---|
791 | RTMemFree (*ppu8);
|
---|
792 | }
|
---|
793 |
|
---|
794 | *ppu8 = NULL;
|
---|
795 | *pcb = 0;
|
---|
796 |
|
---|
797 | return false;
|
---|
798 | }
|
---|
799 |
|
---|
800 | /* Fetch data from the ring buffer. */
|
---|
801 | vbvaFetchBytes (pVbvaMemory, pu8New + *pcb, cbRecord - *pcb);
|
---|
802 |
|
---|
803 | *ppu8 = pu8New;
|
---|
804 | *pcb = cbRecord;
|
---|
805 |
|
---|
806 | return true;
|
---|
807 | }
|
---|
808 |
|
---|
809 | /* For contiguous chunks just return the address in the buffer.
|
---|
810 | * For crossing boundary - allocate a buffer from heap.
|
---|
811 | */
|
---|
812 | bool Display::vbvaFetchCmd (VBVACMDHDR **ppHdr, uint32_t *pcbCmd)
|
---|
813 | {
|
---|
814 | uint32_t indexRecordFirst = mpVbvaMemory->indexRecordFirst;
|
---|
815 | uint32_t indexRecordFree = mpVbvaMemory->indexRecordFree;
|
---|
816 |
|
---|
817 | #ifdef DEBUG_sunlover
|
---|
818 | LogFlowFunc (("first = %d, free = %d\n",
|
---|
819 | indexRecordFirst, indexRecordFree));
|
---|
820 | #endif /* DEBUG_sunlover */
|
---|
821 |
|
---|
822 | if (!vbvaVerifyRingBuffer (mpVbvaMemory))
|
---|
823 | {
|
---|
824 | return false;
|
---|
825 | }
|
---|
826 |
|
---|
827 | if (indexRecordFirst == indexRecordFree)
|
---|
828 | {
|
---|
829 | /* No records to process. Return without assigning output variables. */
|
---|
830 | return true;
|
---|
831 | }
|
---|
832 |
|
---|
833 | VBVARECORD *pRecord = &mpVbvaMemory->aRecords[indexRecordFirst];
|
---|
834 |
|
---|
835 | #ifdef DEBUG_sunlover
|
---|
836 | LogFlowFunc (("cbRecord = 0x%08X\n", pRecord->cbRecord));
|
---|
837 | #endif /* DEBUG_sunlover */
|
---|
838 |
|
---|
839 | uint32_t cbRecord = pRecord->cbRecord & ~VBVA_F_RECORD_PARTIAL;
|
---|
840 |
|
---|
841 | if (mcbVbvaPartial)
|
---|
842 | {
|
---|
843 | /* There is a partial read in process. Continue with it. */
|
---|
844 |
|
---|
845 | Assert (mpu8VbvaPartial);
|
---|
846 |
|
---|
847 | LogFlowFunc (("continue partial record mcbVbvaPartial = %d cbRecord 0x%08X, first = %d, free = %d\n",
|
---|
848 | mcbVbvaPartial, pRecord->cbRecord, indexRecordFirst, indexRecordFree));
|
---|
849 |
|
---|
850 | if (cbRecord > mcbVbvaPartial)
|
---|
851 | {
|
---|
852 | /* New data has been added to the record. */
|
---|
853 | if (!vbvaPartialRead (&mpu8VbvaPartial, &mcbVbvaPartial, cbRecord, mpVbvaMemory))
|
---|
854 | {
|
---|
855 | return false;
|
---|
856 | }
|
---|
857 | }
|
---|
858 |
|
---|
859 | if (!(pRecord->cbRecord & VBVA_F_RECORD_PARTIAL))
|
---|
860 | {
|
---|
861 | /* The record is completed by guest. Return it to the caller. */
|
---|
862 | *ppHdr = (VBVACMDHDR *)mpu8VbvaPartial;
|
---|
863 | *pcbCmd = mcbVbvaPartial;
|
---|
864 |
|
---|
865 | mpu8VbvaPartial = NULL;
|
---|
866 | mcbVbvaPartial = 0;
|
---|
867 |
|
---|
868 | /* Advance the record index. */
|
---|
869 | mpVbvaMemory->indexRecordFirst = (indexRecordFirst + 1) % VBVA_MAX_RECORDS;
|
---|
870 |
|
---|
871 | #ifdef DEBUG_sunlover
|
---|
872 | LogFlowFunc (("partial done ok, data = %d, free = %d\n",
|
---|
873 | mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
|
---|
874 | #endif /* DEBUG_sunlover */
|
---|
875 | }
|
---|
876 |
|
---|
877 | return true;
|
---|
878 | }
|
---|
879 |
|
---|
880 | /* A new record need to be processed. */
|
---|
881 | if (pRecord->cbRecord & VBVA_F_RECORD_PARTIAL)
|
---|
882 | {
|
---|
883 | /* Current record is being written by guest. '=' is important here. */
|
---|
884 | if (cbRecord >= VBVA_RING_BUFFER_SIZE - VBVA_RING_BUFFER_THRESHOLD)
|
---|
885 | {
|
---|
886 | /* Partial read must be started. */
|
---|
887 | if (!vbvaPartialRead (&mpu8VbvaPartial, &mcbVbvaPartial, cbRecord, mpVbvaMemory))
|
---|
888 | {
|
---|
889 | return false;
|
---|
890 | }
|
---|
891 |
|
---|
892 | LogFlowFunc (("started partial record mcbVbvaPartial = 0x%08X cbRecord 0x%08X, first = %d, free = %d\n",
|
---|
893 | mcbVbvaPartial, pRecord->cbRecord, indexRecordFirst, indexRecordFree));
|
---|
894 | }
|
---|
895 |
|
---|
896 | return true;
|
---|
897 | }
|
---|
898 |
|
---|
899 | /* Current record is complete. If it is not empty, process it. */
|
---|
900 | if (cbRecord)
|
---|
901 | {
|
---|
902 | /* The size of largest contiguos chunk in the ring biffer. */
|
---|
903 | uint32_t u32BytesTillBoundary = VBVA_RING_BUFFER_SIZE - mpVbvaMemory->off32Data;
|
---|
904 |
|
---|
905 | /* The ring buffer pointer. */
|
---|
906 | uint8_t *au8RingBuffer = &mpVbvaMemory->au8RingBuffer[0];
|
---|
907 |
|
---|
908 | /* The pointer to data in the ring buffer. */
|
---|
909 | uint8_t *src = &au8RingBuffer[mpVbvaMemory->off32Data];
|
---|
910 |
|
---|
911 | /* Fetch or point the data. */
|
---|
912 | if (u32BytesTillBoundary >= cbRecord)
|
---|
913 | {
|
---|
914 | /* The command does not cross buffer boundary. Return address in the buffer. */
|
---|
915 | *ppHdr = (VBVACMDHDR *)src;
|
---|
916 |
|
---|
917 | /* Advance data offset. */
|
---|
918 | mpVbvaMemory->off32Data = (mpVbvaMemory->off32Data + cbRecord) % VBVA_RING_BUFFER_SIZE;
|
---|
919 | }
|
---|
920 | else
|
---|
921 | {
|
---|
922 | /* The command crosses buffer boundary. Rare case, so not optimized. */
|
---|
923 | uint8_t *dst = (uint8_t *)RTMemAlloc (cbRecord);
|
---|
924 |
|
---|
925 | if (!dst)
|
---|
926 | {
|
---|
927 | LogFlowFunc (("could not allocate %d bytes from heap!!!\n", cbRecord));
|
---|
928 | mpVbvaMemory->off32Data = (mpVbvaMemory->off32Data + cbRecord) % VBVA_RING_BUFFER_SIZE;
|
---|
929 | return false;
|
---|
930 | }
|
---|
931 |
|
---|
932 | vbvaFetchBytes (mpVbvaMemory, dst, cbRecord);
|
---|
933 |
|
---|
934 | *ppHdr = (VBVACMDHDR *)dst;
|
---|
935 |
|
---|
936 | #ifdef DEBUG_sunlover
|
---|
937 | LogFlowFunc (("Allocated from heap %p\n", dst));
|
---|
938 | #endif /* DEBUG_sunlover */
|
---|
939 | }
|
---|
940 | }
|
---|
941 |
|
---|
942 | *pcbCmd = cbRecord;
|
---|
943 |
|
---|
944 | /* Advance the record index. */
|
---|
945 | mpVbvaMemory->indexRecordFirst = (indexRecordFirst + 1) % VBVA_MAX_RECORDS;
|
---|
946 |
|
---|
947 | #ifdef DEBUG_sunlover
|
---|
948 | LogFlowFunc (("done ok, data = %d, free = %d\n",
|
---|
949 | mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
|
---|
950 | #endif /* DEBUG_sunlover */
|
---|
951 |
|
---|
952 | return true;
|
---|
953 | }
|
---|
954 |
|
---|
955 | void Display::vbvaReleaseCmd (VBVACMDHDR *pHdr, int32_t cbCmd)
|
---|
956 | {
|
---|
957 | uint8_t *au8RingBuffer = mpVbvaMemory->au8RingBuffer;
|
---|
958 |
|
---|
959 | if ( (uint8_t *)pHdr >= au8RingBuffer
|
---|
960 | && (uint8_t *)pHdr < &au8RingBuffer[VBVA_RING_BUFFER_SIZE])
|
---|
961 | {
|
---|
962 | /* The pointer is inside ring buffer. Must be continuous chunk. */
|
---|
963 | Assert (VBVA_RING_BUFFER_SIZE - ((uint8_t *)pHdr - au8RingBuffer) >= cbCmd);
|
---|
964 |
|
---|
965 | /* Do nothing. */
|
---|
966 |
|
---|
967 | Assert (!mpu8VbvaPartial && mcbVbvaPartial == 0);
|
---|
968 | }
|
---|
969 | else
|
---|
970 | {
|
---|
971 | /* The pointer is outside. It is then an allocated copy. */
|
---|
972 |
|
---|
973 | #ifdef DEBUG_sunlover
|
---|
974 | LogFlowFunc (("Free heap %p\n", pHdr));
|
---|
975 | #endif /* DEBUG_sunlover */
|
---|
976 |
|
---|
977 | if ((uint8_t *)pHdr == mpu8VbvaPartial)
|
---|
978 | {
|
---|
979 | mpu8VbvaPartial = NULL;
|
---|
980 | mcbVbvaPartial = 0;
|
---|
981 | }
|
---|
982 | else
|
---|
983 | {
|
---|
984 | Assert (!mpu8VbvaPartial && mcbVbvaPartial == 0);
|
---|
985 | }
|
---|
986 |
|
---|
987 | RTMemFree (pHdr);
|
---|
988 | }
|
---|
989 |
|
---|
990 | return;
|
---|
991 | }
|
---|
992 |
|
---|
993 |
|
---|
994 | /**
|
---|
995 | * Called regularly on the DisplayRefresh timer.
|
---|
996 | * Also on behalf of guest, when the ring buffer is full.
|
---|
997 | *
|
---|
998 | * @thread EMT
|
---|
999 | */
|
---|
1000 | void Display::VideoAccelFlush (void)
|
---|
1001 | {
|
---|
1002 | #ifdef DEBUG_sunlover
|
---|
1003 | LogFlowFunc (("mfVideoAccelEnabled = %d\n", mfVideoAccelEnabled));
|
---|
1004 | #endif /* DEBUG_sunlover */
|
---|
1005 |
|
---|
1006 | if (!mfVideoAccelEnabled)
|
---|
1007 | {
|
---|
1008 | Log(("Display::VideoAccelFlush: called with disabled VBVA!!! Ignoring.\n"));
|
---|
1009 | return;
|
---|
1010 | }
|
---|
1011 |
|
---|
1012 | /* Here VBVA is enabled and we have the accelerator memory pointer. */
|
---|
1013 | Assert(mpVbvaMemory);
|
---|
1014 |
|
---|
1015 | #ifdef DEBUG_sunlover
|
---|
1016 | LogFlowFunc (("indexRecordFirst = %d, indexRecordFree = %d, off32Data = %d, off32Free = %d\n",
|
---|
1017 | mpVbvaMemory->indexRecordFirst, mpVbvaMemory->indexRecordFree, mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
|
---|
1018 | #endif /* DEBUG_sunlover */
|
---|
1019 |
|
---|
1020 | /* Quick check for "nothing to update" case. */
|
---|
1021 | if (mpVbvaMemory->indexRecordFirst == mpVbvaMemory->indexRecordFree)
|
---|
1022 | {
|
---|
1023 | return;
|
---|
1024 | }
|
---|
1025 |
|
---|
1026 | /* Process the ring buffer */
|
---|
1027 |
|
---|
1028 | bool fFramebufferIsNull = mFramebuffer.isNull();
|
---|
1029 |
|
---|
1030 | if (!fFramebufferIsNull)
|
---|
1031 | {
|
---|
1032 | mFramebuffer->Lock();
|
---|
1033 | }
|
---|
1034 |
|
---|
1035 | /* Initialize dirty rectangles accumulator. */
|
---|
1036 | VBVADIRTYREGION rgn;
|
---|
1037 | vbvaRgnInit (&rgn, mFramebuffer, this, mpDrv->pUpPort);
|
---|
1038 |
|
---|
1039 | for (;;)
|
---|
1040 | {
|
---|
1041 | VBVACMDHDR *phdr = NULL;
|
---|
1042 | uint32_t cbCmd = ~0;
|
---|
1043 |
|
---|
1044 | /* Fetch the command data. */
|
---|
1045 | if (!vbvaFetchCmd (&phdr, &cbCmd))
|
---|
1046 | {
|
---|
1047 | Log(("Display::VideoAccelFlush: unable to fetch command. off32Data = %d, off32Free = %d. Disabling VBVA!!!\n",
|
---|
1048 | mpVbvaMemory->off32Data, mpVbvaMemory->off32Free));
|
---|
1049 |
|
---|
1050 | /* Disable VBVA on those processing errors. */
|
---|
1051 | VideoAccelEnable (false, NULL);
|
---|
1052 |
|
---|
1053 | break;
|
---|
1054 | }
|
---|
1055 |
|
---|
1056 | if (cbCmd == uint32_t(~0))
|
---|
1057 | {
|
---|
1058 | /* No more commands yet in the queue. */
|
---|
1059 | break;
|
---|
1060 | }
|
---|
1061 |
|
---|
1062 | if (cbCmd != 0 && !fFramebufferIsNull)
|
---|
1063 | {
|
---|
1064 | #ifdef DEBUG_sunlover
|
---|
1065 | LogFlowFunc (("hdr: cbCmd = %d, x=%d, y=%d, w=%d, h=%d\n",
|
---|
1066 | cbCmd, phdr->x, phdr->y, phdr->w, phdr->h));
|
---|
1067 | #endif /* DEBUG_sunlover */
|
---|
1068 |
|
---|
1069 | /* Handle the command.
|
---|
1070 | *
|
---|
1071 | * Guest is responsible for updating the guest video memory.
|
---|
1072 | * The Windows guest does all drawing using Eng*.
|
---|
1073 | *
|
---|
1074 | * For local output, only dirty rectangle information is used
|
---|
1075 | * to update changed areas.
|
---|
1076 | *
|
---|
1077 | * Dirty rectangles are accumulated to exclude overlapping updates and
|
---|
1078 | * group small updates to a larger one.
|
---|
1079 | */
|
---|
1080 |
|
---|
1081 | /* Accumulate the update. */
|
---|
1082 | vbvaRgnDirtyRect (&rgn, phdr);
|
---|
1083 |
|
---|
1084 | /* Forward the command to VRDP server. */
|
---|
1085 | mParent->consoleVRDPServer()->SendUpdate (phdr, cbCmd);
|
---|
1086 | }
|
---|
1087 |
|
---|
1088 | vbvaReleaseCmd (phdr, cbCmd);
|
---|
1089 | }
|
---|
1090 |
|
---|
1091 | if (!fFramebufferIsNull)
|
---|
1092 | {
|
---|
1093 | mFramebuffer->Unlock ();
|
---|
1094 | }
|
---|
1095 |
|
---|
1096 | /* Draw the framebuffer. */
|
---|
1097 | vbvaRgnUpdateFramebuffer (&rgn);
|
---|
1098 | }
|
---|
1099 |
|
---|
1100 |
|
---|
1101 | // IDisplay properties
|
---|
1102 | /////////////////////////////////////////////////////////////////////////////
|
---|
1103 |
|
---|
1104 | /**
|
---|
1105 | * Returns the current display width in pixel
|
---|
1106 | *
|
---|
1107 | * @returns COM status code
|
---|
1108 | * @param width Address of result variable.
|
---|
1109 | */
|
---|
1110 | STDMETHODIMP Display::COMGETTER(Width) (ULONG *width)
|
---|
1111 | {
|
---|
1112 | if (!width)
|
---|
1113 | return E_POINTER;
|
---|
1114 |
|
---|
1115 | AutoLock alock (this);
|
---|
1116 | CHECK_READY();
|
---|
1117 |
|
---|
1118 | CHECK_CONSOLE_DRV (mpDrv);
|
---|
1119 |
|
---|
1120 | *width = mpDrv->Connector.cx;
|
---|
1121 | return S_OK;
|
---|
1122 | }
|
---|
1123 |
|
---|
1124 | /**
|
---|
1125 | * Returns the current display height in pixel
|
---|
1126 | *
|
---|
1127 | * @returns COM status code
|
---|
1128 | * @param height Address of result variable.
|
---|
1129 | */
|
---|
1130 | STDMETHODIMP Display::COMGETTER(Height) (ULONG *height)
|
---|
1131 | {
|
---|
1132 | if (!height)
|
---|
1133 | return E_POINTER;
|
---|
1134 |
|
---|
1135 | AutoLock alock (this);
|
---|
1136 | CHECK_READY();
|
---|
1137 |
|
---|
1138 | CHECK_CONSOLE_DRV (mpDrv);
|
---|
1139 |
|
---|
1140 | *height = mpDrv->Connector.cy;
|
---|
1141 | return S_OK;
|
---|
1142 | }
|
---|
1143 |
|
---|
1144 | /**
|
---|
1145 | * Returns the current display color depth in bits
|
---|
1146 | *
|
---|
1147 | * @returns COM status code
|
---|
1148 | * @param colorDepth Address of result variable.
|
---|
1149 | */
|
---|
1150 | STDMETHODIMP Display::COMGETTER(ColorDepth) (ULONG *colorDepth)
|
---|
1151 | {
|
---|
1152 | if (!colorDepth)
|
---|
1153 | return E_INVALIDARG;
|
---|
1154 |
|
---|
1155 | AutoLock alock (this);
|
---|
1156 | CHECK_READY();
|
---|
1157 |
|
---|
1158 | CHECK_CONSOLE_DRV (mpDrv);
|
---|
1159 |
|
---|
1160 | uint32_t cBits = 0;
|
---|
1161 | int rc = mpDrv->pUpPort->pfnQueryColorDepth(mpDrv->pUpPort, &cBits);
|
---|
1162 | AssertRC(rc);
|
---|
1163 | *colorDepth = cBits;
|
---|
1164 | return S_OK;
|
---|
1165 | }
|
---|
1166 |
|
---|
1167 |
|
---|
1168 | // IDisplay methods
|
---|
1169 | /////////////////////////////////////////////////////////////////////////////
|
---|
1170 |
|
---|
1171 | STDMETHODIMP Display::SetupInternalFramebuffer (ULONG depth)
|
---|
1172 | {
|
---|
1173 | LogFlowFunc (("\n"));
|
---|
1174 |
|
---|
1175 | AutoLock lock (this);
|
---|
1176 | CHECK_READY();
|
---|
1177 |
|
---|
1178 | /*
|
---|
1179 | * Create an internal framebuffer only if depth is not zero. Otherwise, we
|
---|
1180 | * reset back to the "black hole" state as it was at Display construction.
|
---|
1181 | */
|
---|
1182 | ComPtr <IFramebuffer> frameBuf;
|
---|
1183 | if (depth)
|
---|
1184 | {
|
---|
1185 | ComObjPtr <InternalFramebuffer> internal;
|
---|
1186 | internal.createObject();
|
---|
1187 | internal->init (640, 480, depth);
|
---|
1188 | frameBuf = internal; // query interface
|
---|
1189 | }
|
---|
1190 |
|
---|
1191 | Console::SafeVMPtrQuiet pVM (mParent);
|
---|
1192 | if (pVM.isOk())
|
---|
1193 | {
|
---|
1194 | /* Must leave the lock here because the changeFramebuffer will also obtain it. */
|
---|
1195 | lock.leave ();
|
---|
1196 |
|
---|
1197 | /* send request to the EMT thread */
|
---|
1198 | PVMREQ pReq = NULL;
|
---|
1199 | int vrc = VMR3ReqCall (pVM, &pReq, RT_INDEFINITE_WAIT,
|
---|
1200 | (PFNRT) changeFramebuffer, 3,
|
---|
1201 | this, static_cast <IFramebuffer *> (frameBuf),
|
---|
1202 | true /* aInternal */);
|
---|
1203 | if (VBOX_SUCCESS (vrc))
|
---|
1204 | vrc = pReq->iStatus;
|
---|
1205 | VMR3ReqFree (pReq);
|
---|
1206 |
|
---|
1207 | lock.enter ();
|
---|
1208 |
|
---|
1209 | ComAssertRCRet (vrc, E_FAIL);
|
---|
1210 | }
|
---|
1211 | else
|
---|
1212 | {
|
---|
1213 | /* No VM is created (VM is powered off), do a direct call */
|
---|
1214 | int vrc = changeFramebuffer (this, frameBuf, true /* aInternal */);
|
---|
1215 | ComAssertRCRet (vrc, E_FAIL);
|
---|
1216 | }
|
---|
1217 |
|
---|
1218 | return S_OK;
|
---|
1219 | }
|
---|
1220 |
|
---|
1221 | STDMETHODIMP Display::LockFramebuffer (BYTE **address)
|
---|
1222 | {
|
---|
1223 | if (!address)
|
---|
1224 | return E_POINTER;
|
---|
1225 |
|
---|
1226 | AutoLock lock(this);
|
---|
1227 | CHECK_READY();
|
---|
1228 |
|
---|
1229 | /* only allowed for internal framebuffers */
|
---|
1230 | if (mInternalFramebuffer && !mFramebufferOpened && !mFramebuffer.isNull())
|
---|
1231 | {
|
---|
1232 | CHECK_CONSOLE_DRV (mpDrv);
|
---|
1233 |
|
---|
1234 | mFramebuffer->Lock();
|
---|
1235 | mFramebufferOpened = true;
|
---|
1236 | *address = mpDrv->Connector.pu8Data;
|
---|
1237 | return S_OK;
|
---|
1238 | }
|
---|
1239 |
|
---|
1240 | return setError (E_FAIL,
|
---|
1241 | tr ("Framebuffer locking is allowed only for the internal framebuffer"));
|
---|
1242 | }
|
---|
1243 |
|
---|
1244 | STDMETHODIMP Display::UnlockFramebuffer()
|
---|
1245 | {
|
---|
1246 | AutoLock lock(this);
|
---|
1247 | CHECK_READY();
|
---|
1248 |
|
---|
1249 | if (mFramebufferOpened)
|
---|
1250 | {
|
---|
1251 | CHECK_CONSOLE_DRV (mpDrv);
|
---|
1252 |
|
---|
1253 | mFramebuffer->Unlock();
|
---|
1254 | mFramebufferOpened = false;
|
---|
1255 | return S_OK;
|
---|
1256 | }
|
---|
1257 |
|
---|
1258 | return setError (E_FAIL,
|
---|
1259 | tr ("Framebuffer locking is allowed only for the internal framebuffer"));
|
---|
1260 | }
|
---|
1261 |
|
---|
1262 | STDMETHODIMP Display::RegisterExternalFramebuffer (IFramebuffer *frameBuf)
|
---|
1263 | {
|
---|
1264 | LogFlowFunc (("\n"));
|
---|
1265 |
|
---|
1266 | if (!frameBuf)
|
---|
1267 | return E_POINTER;
|
---|
1268 |
|
---|
1269 | AutoLock lock (this);
|
---|
1270 | CHECK_READY();
|
---|
1271 |
|
---|
1272 | Console::SafeVMPtrQuiet pVM (mParent);
|
---|
1273 | if (pVM.isOk())
|
---|
1274 | {
|
---|
1275 | /* Must leave the lock here because the changeFramebuffer will also obtain it. */
|
---|
1276 | lock.leave ();
|
---|
1277 |
|
---|
1278 | /* send request to the EMT thread */
|
---|
1279 | PVMREQ pReq = NULL;
|
---|
1280 | int vrc = VMR3ReqCall (pVM, &pReq, RT_INDEFINITE_WAIT,
|
---|
1281 | (PFNRT) changeFramebuffer, 3,
|
---|
1282 | this, frameBuf, false /* aInternal */);
|
---|
1283 | if (VBOX_SUCCESS (vrc))
|
---|
1284 | vrc = pReq->iStatus;
|
---|
1285 | VMR3ReqFree (pReq);
|
---|
1286 |
|
---|
1287 | lock.enter ();
|
---|
1288 |
|
---|
1289 | ComAssertRCRet (vrc, E_FAIL);
|
---|
1290 | }
|
---|
1291 | else
|
---|
1292 | {
|
---|
1293 | /* No VM is created (VM is powered off), do a direct call */
|
---|
1294 | int vrc = changeFramebuffer (this, frameBuf, false /* aInternal */);
|
---|
1295 | ComAssertRCRet (vrc, E_FAIL);
|
---|
1296 | }
|
---|
1297 |
|
---|
1298 | return S_OK;
|
---|
1299 | }
|
---|
1300 |
|
---|
1301 | STDMETHODIMP Display::SetVideoModeHint(ULONG aWidth, ULONG aHeight, ULONG aColorDepth)
|
---|
1302 | {
|
---|
1303 | AutoLock lock(this);
|
---|
1304 | CHECK_READY();
|
---|
1305 |
|
---|
1306 | CHECK_CONSOLE_DRV (mpDrv);
|
---|
1307 |
|
---|
1308 | /*
|
---|
1309 | * Do some rough checks for valid input
|
---|
1310 | */
|
---|
1311 | ULONG width = aWidth;
|
---|
1312 | if (!width)
|
---|
1313 | width = mpDrv->Connector.cx;
|
---|
1314 | ULONG height = aHeight;
|
---|
1315 | if (!height)
|
---|
1316 | height = mpDrv->Connector.cy;
|
---|
1317 | ULONG bpp = aColorDepth;
|
---|
1318 | if (!bpp)
|
---|
1319 | {
|
---|
1320 | uint32_t cBits = 0;
|
---|
1321 | int rc = mpDrv->pUpPort->pfnQueryColorDepth(mpDrv->pUpPort, &cBits);
|
---|
1322 | AssertRC(rc);
|
---|
1323 | bpp = cBits;
|
---|
1324 | }
|
---|
1325 | ULONG vramSize;
|
---|
1326 | mParent->machine()->COMGETTER(VRAMSize)(&vramSize);
|
---|
1327 | /* enough VRAM? */
|
---|
1328 | if ((width * height * (bpp / 8)) > (vramSize * 1024 * 1024))
|
---|
1329 | return setError(E_FAIL, tr("Not enough VRAM for the selected video mode"));
|
---|
1330 |
|
---|
1331 | if (mParent->getVMMDev())
|
---|
1332 | mParent->getVMMDev()->getVMMDevPort()->pfnRequestDisplayChange(mParent->getVMMDev()->getVMMDevPort(), aWidth, aHeight, aColorDepth);
|
---|
1333 | return S_OK;
|
---|
1334 | }
|
---|
1335 |
|
---|
1336 | STDMETHODIMP Display::TakeScreenShot (BYTE *address, ULONG width, ULONG height)
|
---|
1337 | {
|
---|
1338 | /// @todo (r=dmik) this function may take too long to complete if the VM
|
---|
1339 | // is doing something like saving state right now. Which, in case if it
|
---|
1340 | // is called on the GUI thread, will make it unresponsive. We should
|
---|
1341 | // check the machine state here (by enclosing the check and VMRequCall
|
---|
1342 | // within the Console lock to make it atomic).
|
---|
1343 |
|
---|
1344 | LogFlowFuncEnter();
|
---|
1345 | LogFlowFunc (("address=%p, width=%d, height=%d\n",
|
---|
1346 | address, width, height));
|
---|
1347 |
|
---|
1348 | if (!address)
|
---|
1349 | return E_POINTER;
|
---|
1350 | if (!width || !height)
|
---|
1351 | return E_INVALIDARG;
|
---|
1352 |
|
---|
1353 | AutoLock lock(this);
|
---|
1354 | CHECK_READY();
|
---|
1355 |
|
---|
1356 | CHECK_CONSOLE_DRV (mpDrv);
|
---|
1357 |
|
---|
1358 | Console::SafeVMPtr pVM (mParent);
|
---|
1359 | CheckComRCReturnRC (pVM.rc());
|
---|
1360 |
|
---|
1361 | HRESULT rc = S_OK;
|
---|
1362 |
|
---|
1363 | LogFlowFunc (("Sending SCREENSHOT request\n"));
|
---|
1364 |
|
---|
1365 | /*
|
---|
1366 | * First try use the graphics device features for making a snapshot.
|
---|
1367 | * This does not support streatching, is an optional feature (returns not supported).
|
---|
1368 | *
|
---|
1369 | * Note: It may cause a display resize. Watch out for deadlocks.
|
---|
1370 | */
|
---|
1371 | int rcVBox = VERR_NOT_SUPPORTED;
|
---|
1372 | if ( mpDrv->Connector.cx == width
|
---|
1373 | && mpDrv->Connector.cy == height)
|
---|
1374 | {
|
---|
1375 | PVMREQ pReq;
|
---|
1376 | size_t cbData = RT_ALIGN_Z(width, 4) * 4 * height;
|
---|
1377 | rcVBox = VMR3ReqCall(pVM, &pReq, RT_INDEFINITE_WAIT,
|
---|
1378 | (PFNRT)mpDrv->pUpPort->pfnSnapshot, 6, mpDrv->pUpPort,
|
---|
1379 | address, cbData, NULL, NULL, NULL);
|
---|
1380 | if (VBOX_SUCCESS(rcVBox))
|
---|
1381 | {
|
---|
1382 | rcVBox = pReq->iStatus;
|
---|
1383 | VMR3ReqFree(pReq);
|
---|
1384 | }
|
---|
1385 | }
|
---|
1386 |
|
---|
1387 | /*
|
---|
1388 | * If the function returns not supported, or if streaching is requested,
|
---|
1389 | * we'll have to do all the work ourselves using the framebuffer data.
|
---|
1390 | */
|
---|
1391 | if (rcVBox == VERR_NOT_SUPPORTED || rcVBox == VERR_NOT_IMPLEMENTED)
|
---|
1392 | {
|
---|
1393 | /** @todo implement snapshot streching and generic snapshot fallback. */
|
---|
1394 | rc = setError (E_NOTIMPL, tr ("This feature is not implemented"));
|
---|
1395 | }
|
---|
1396 | else if (VBOX_FAILURE(rcVBox))
|
---|
1397 | rc = setError (E_FAIL,
|
---|
1398 | tr ("Could not take a screenshot (%Vrc)"), rcVBox);
|
---|
1399 |
|
---|
1400 | LogFlowFunc (("rc=%08X\n", rc));
|
---|
1401 | LogFlowFuncLeave();
|
---|
1402 | return rc;
|
---|
1403 | }
|
---|
1404 |
|
---|
1405 | STDMETHODIMP Display::DrawToScreen (BYTE *address, ULONG x, ULONG y,
|
---|
1406 | ULONG width, ULONG height)
|
---|
1407 | {
|
---|
1408 | /// @todo (r=dmik) this function may take too long to complete if the VM
|
---|
1409 | // is doing something like saving state right now. Which, in case if it
|
---|
1410 | // is called on the GUI thread, will make it unresponsive. We should
|
---|
1411 | // check the machine state here (by enclosing the check and VMRequCall
|
---|
1412 | // within the Console lock to make it atomic).
|
---|
1413 |
|
---|
1414 | LogFlowFuncEnter();
|
---|
1415 | LogFlowFunc (("address=%p, x=%d, y=%d, width=%d, height=%d\n",
|
---|
1416 | address, x, y, width, height));
|
---|
1417 |
|
---|
1418 | if (!address)
|
---|
1419 | return E_POINTER;
|
---|
1420 | if (!width || !height)
|
---|
1421 | return E_INVALIDARG;
|
---|
1422 |
|
---|
1423 | AutoLock lock(this);
|
---|
1424 | CHECK_READY();
|
---|
1425 |
|
---|
1426 | CHECK_CONSOLE_DRV (mpDrv);
|
---|
1427 |
|
---|
1428 | Console::SafeVMPtr pVM (mParent);
|
---|
1429 | CheckComRCReturnRC (pVM.rc());
|
---|
1430 |
|
---|
1431 | /*
|
---|
1432 | * Again we're lazy and make the graphics device do all the
|
---|
1433 | * dirty convertion work.
|
---|
1434 | */
|
---|
1435 | PVMREQ pReq;
|
---|
1436 | int rcVBox = VMR3ReqCall(pVM, &pReq, RT_INDEFINITE_WAIT,
|
---|
1437 | (PFNRT)mpDrv->pUpPort->pfnDisplayBlt, 6, mpDrv->pUpPort,
|
---|
1438 | address, x, y, width, height);
|
---|
1439 | if (VBOX_SUCCESS(rcVBox))
|
---|
1440 | {
|
---|
1441 | rcVBox = pReq->iStatus;
|
---|
1442 | VMR3ReqFree(pReq);
|
---|
1443 | }
|
---|
1444 |
|
---|
1445 | /*
|
---|
1446 | * If the function returns not supported, we'll have to do all the
|
---|
1447 | * work ourselves using the framebuffer.
|
---|
1448 | */
|
---|
1449 | HRESULT rc = S_OK;
|
---|
1450 | if (rcVBox == VERR_NOT_SUPPORTED || rcVBox == VERR_NOT_IMPLEMENTED)
|
---|
1451 | {
|
---|
1452 | /** @todo implement generic fallback for screen blitting. */
|
---|
1453 | rc = E_NOTIMPL;
|
---|
1454 | }
|
---|
1455 | else if (VBOX_FAILURE(rcVBox))
|
---|
1456 | rc = setError (E_FAIL,
|
---|
1457 | tr ("Could not draw to the screen (%Vrc)"), rcVBox);
|
---|
1458 | //@todo
|
---|
1459 | // else
|
---|
1460 | // {
|
---|
1461 | // /* All ok. Redraw the screen. */
|
---|
1462 | // handleDisplayUpdate (x, y, width, height);
|
---|
1463 | // }
|
---|
1464 |
|
---|
1465 | LogFlowFunc (("rc=%08X\n", rc));
|
---|
1466 | LogFlowFuncLeave();
|
---|
1467 | return rc;
|
---|
1468 | }
|
---|
1469 |
|
---|
1470 | /**
|
---|
1471 | * Does a full invalidation of the VM display and instructs the VM
|
---|
1472 | * to update it immediately.
|
---|
1473 | *
|
---|
1474 | * @returns COM status code
|
---|
1475 | */
|
---|
1476 | STDMETHODIMP Display::InvalidateAndUpdate()
|
---|
1477 | {
|
---|
1478 | LogFlowFuncEnter();
|
---|
1479 |
|
---|
1480 | AutoLock lock(this);
|
---|
1481 | CHECK_READY();
|
---|
1482 |
|
---|
1483 | CHECK_CONSOLE_DRV (mpDrv);
|
---|
1484 |
|
---|
1485 | Console::SafeVMPtr pVM (mParent);
|
---|
1486 | CheckComRCReturnRC (pVM.rc());
|
---|
1487 |
|
---|
1488 | HRESULT rc = S_OK;
|
---|
1489 |
|
---|
1490 | LogFlowFunc (("Sending DPYUPDATE request\n"));
|
---|
1491 |
|
---|
1492 | /* pdm.h says that this has to be called from the EMT thread */
|
---|
1493 | PVMREQ pReq;
|
---|
1494 | int rcVBox = VMR3ReqCallVoid(pVM, &pReq, RT_INDEFINITE_WAIT,
|
---|
1495 | (PFNRT)mpDrv->pUpPort->pfnUpdateDisplayAll, 1, mpDrv->pUpPort);
|
---|
1496 | if (VBOX_SUCCESS(rcVBox))
|
---|
1497 | VMR3ReqFree(pReq);
|
---|
1498 |
|
---|
1499 | if (VBOX_FAILURE(rcVBox))
|
---|
1500 | rc = setError (E_FAIL,
|
---|
1501 | tr ("Could not invalidate and update the screen (%Vrc)"), rcVBox);
|
---|
1502 |
|
---|
1503 | LogFlowFunc (("rc=%08X\n", rc));
|
---|
1504 | LogFlowFuncLeave();
|
---|
1505 | return rc;
|
---|
1506 | }
|
---|
1507 |
|
---|
1508 | /**
|
---|
1509 | * Notification that the framebuffer has completed the
|
---|
1510 | * asynchronous resize processing
|
---|
1511 | *
|
---|
1512 | * @returns COM status code
|
---|
1513 | */
|
---|
1514 | STDMETHODIMP Display::ResizeCompleted()
|
---|
1515 | {
|
---|
1516 | LogFlowFunc (("\n"));
|
---|
1517 |
|
---|
1518 | /// @todo (dmik) can we AutoLock alock (this); here?
|
---|
1519 | // do it when we switch this class to VirtualBoxBase_NEXT.
|
---|
1520 | // This will require general code review and may add some details.
|
---|
1521 | // In particular, we may want to check whether EMT is really waiting for
|
---|
1522 | // this notification, etc. It might be also good to obey the caller to make
|
---|
1523 | // sure this method is not called from more than one thread at a time
|
---|
1524 | // (and therefore don't use Display lock at all here to save some
|
---|
1525 | // milliseconds).
|
---|
1526 | CHECK_READY();
|
---|
1527 |
|
---|
1528 | /* this is only valid for external framebuffers */
|
---|
1529 | if (mInternalFramebuffer)
|
---|
1530 | return setError (E_FAIL,
|
---|
1531 | tr ("Resize completed notification is valid only "
|
---|
1532 | "for external framebuffers"));
|
---|
1533 |
|
---|
1534 | /* signal our semaphore */
|
---|
1535 | RTSemEventMultiSignal(mResizeSem);
|
---|
1536 |
|
---|
1537 | return S_OK;
|
---|
1538 | }
|
---|
1539 |
|
---|
1540 | /**
|
---|
1541 | * Notification that the framebuffer has completed the
|
---|
1542 | * asynchronous update processing
|
---|
1543 | *
|
---|
1544 | * @returns COM status code
|
---|
1545 | */
|
---|
1546 | STDMETHODIMP Display::UpdateCompleted()
|
---|
1547 | {
|
---|
1548 | LogFlowFunc (("\n"));
|
---|
1549 |
|
---|
1550 | /// @todo (dmik) can we AutoLock alock (this); here?
|
---|
1551 | // do it when we switch this class to VirtualBoxBase_NEXT.
|
---|
1552 | // Tthis will require general code review and may add some details.
|
---|
1553 | // In particular, we may want to check whether EMT is really waiting for
|
---|
1554 | // this notification, etc. It might be also good to obey the caller to make
|
---|
1555 | // sure this method is not called from more than one thread at a time
|
---|
1556 | // (and therefore don't use Display lock at all here to save some
|
---|
1557 | // milliseconds).
|
---|
1558 | CHECK_READY();
|
---|
1559 |
|
---|
1560 | /* this is only valid for external framebuffers */
|
---|
1561 | if (mInternalFramebuffer)
|
---|
1562 | return setError (E_FAIL,
|
---|
1563 | tr ("Resize completed notification is valid only "
|
---|
1564 | "for external framebuffers"));
|
---|
1565 |
|
---|
1566 | mFramebuffer->Lock();
|
---|
1567 | /* signal our semaphore */
|
---|
1568 | RTSemEventMultiSignal(mUpdateSem);
|
---|
1569 | mFramebuffer->Unlock();
|
---|
1570 |
|
---|
1571 | return S_OK;
|
---|
1572 | }
|
---|
1573 |
|
---|
1574 | // private methods
|
---|
1575 | /////////////////////////////////////////////////////////////////////////////
|
---|
1576 |
|
---|
1577 | /**
|
---|
1578 | * Helper to update the display information from the framebuffer.
|
---|
1579 | *
|
---|
1580 | * @param aCheckParams true to compare the parameters of the current framebuffer
|
---|
1581 | * and the new one and issue handleDisplayResize()
|
---|
1582 | * if they differ.
|
---|
1583 | * @thread EMT
|
---|
1584 | */
|
---|
1585 | void Display::updateDisplayData (bool aCheckParams /* = false */)
|
---|
1586 | {
|
---|
1587 | /* the driver might not have been constructed yet */
|
---|
1588 | if (!mpDrv)
|
---|
1589 | return;
|
---|
1590 |
|
---|
1591 | #if DEBUG
|
---|
1592 | /*
|
---|
1593 | * Sanity check. Note that this method may be called on EMT after Console
|
---|
1594 | * has started the power down procedure (but before our #drvDestruct() is
|
---|
1595 | * called, in which case pVM will aleady be NULL but mpDrv will not). Since
|
---|
1596 | * we don't really need pVM to proceed, we avoid this check in the release
|
---|
1597 | * build to save some ms (necessary to construct SafeVMPtrQuiet) in this
|
---|
1598 | * time-critical method.
|
---|
1599 | */
|
---|
1600 | Console::SafeVMPtrQuiet pVM (mParent);
|
---|
1601 | if (pVM.isOk())
|
---|
1602 | VM_ASSERT_EMT (pVM.raw());
|
---|
1603 | #endif
|
---|
1604 |
|
---|
1605 | if (mFramebuffer)
|
---|
1606 | {
|
---|
1607 | HRESULT rc;
|
---|
1608 | BYTE *address = 0;
|
---|
1609 | rc = mFramebuffer->COMGETTER(Address) (&address);
|
---|
1610 | AssertComRC (rc);
|
---|
1611 | ULONG lineSize = 0;
|
---|
1612 | rc = mFramebuffer->COMGETTER(LineSize) (&lineSize);
|
---|
1613 | AssertComRC (rc);
|
---|
1614 | ULONG colorDepth = 0;
|
---|
1615 | rc = mFramebuffer->COMGETTER(ColorDepth) (&colorDepth);
|
---|
1616 | AssertComRC (rc);
|
---|
1617 | ULONG width = 0;
|
---|
1618 | rc = mFramebuffer->COMGETTER(Width) (&width);
|
---|
1619 | AssertComRC (rc);
|
---|
1620 | ULONG height = 0;
|
---|
1621 | rc = mFramebuffer->COMGETTER(Height) (&height);
|
---|
1622 | AssertComRC (rc);
|
---|
1623 |
|
---|
1624 | /*
|
---|
1625 | * Check current parameters with new ones and issue handleDisplayResize()
|
---|
1626 | * to let the new frame buffer adjust itself properly. Note that it will
|
---|
1627 | * result into a recursive updateDisplayData() call but with
|
---|
1628 | * aCheckOld = false.
|
---|
1629 | */
|
---|
1630 | if (aCheckParams &&
|
---|
1631 | (mLastAddress != address ||
|
---|
1632 | mLastLineSize != lineSize ||
|
---|
1633 | mLastColorDepth != colorDepth ||
|
---|
1634 | mLastWidth != (int) width ||
|
---|
1635 | mLastHeight != (int) height))
|
---|
1636 | {
|
---|
1637 | handleDisplayResize (mLastColorDepth,
|
---|
1638 | mLastAddress,
|
---|
1639 | mLastLineSize,
|
---|
1640 | mLastWidth,
|
---|
1641 | mLastHeight);
|
---|
1642 | return;
|
---|
1643 | }
|
---|
1644 |
|
---|
1645 | mpDrv->Connector.pu8Data = (uint8_t *) address;
|
---|
1646 | mpDrv->Connector.cbScanline = lineSize;
|
---|
1647 | mpDrv->Connector.cBits = colorDepth;
|
---|
1648 | mpDrv->Connector.cx = width;
|
---|
1649 | mpDrv->Connector.cy = height;
|
---|
1650 | }
|
---|
1651 | else
|
---|
1652 | {
|
---|
1653 | /* black hole */
|
---|
1654 | mpDrv->Connector.pu8Data = NULL;
|
---|
1655 | mpDrv->Connector.cbScanline = 0;
|
---|
1656 | mpDrv->Connector.cBits = 0;
|
---|
1657 | mpDrv->Connector.cx = 0;
|
---|
1658 | mpDrv->Connector.cy = 0;
|
---|
1659 | }
|
---|
1660 | }
|
---|
1661 |
|
---|
1662 | /**
|
---|
1663 | * Changes the current frame buffer. Called on EMT to avoid both
|
---|
1664 | * race conditions and excessive locking.
|
---|
1665 | *
|
---|
1666 | * @note locks this object for writing
|
---|
1667 | * @thread EMT
|
---|
1668 | */
|
---|
1669 | /* static */
|
---|
1670 | DECLCALLBACK(int) Display::changeFramebuffer (Display *that, IFramebuffer *aFB,
|
---|
1671 | bool aInternal)
|
---|
1672 | {
|
---|
1673 | LogFlowFunc (("\n"));
|
---|
1674 |
|
---|
1675 | AssertReturn (that, VERR_INVALID_PARAMETER);
|
---|
1676 | AssertReturn (aFB || aInternal, VERR_INVALID_PARAMETER);
|
---|
1677 |
|
---|
1678 | /// @todo (r=dmik) AutoCaller
|
---|
1679 |
|
---|
1680 | AutoLock alock (that);
|
---|
1681 |
|
---|
1682 | that->mFramebuffer = aFB;
|
---|
1683 | that->mInternalFramebuffer = aInternal;
|
---|
1684 | that->mSupportedAccelOps = 0;
|
---|
1685 |
|
---|
1686 | /* determine which acceleration functions are supported by this framebuffer */
|
---|
1687 | if (aFB && !aInternal)
|
---|
1688 | {
|
---|
1689 | HRESULT rc;
|
---|
1690 | BOOL accelSupported = FALSE;
|
---|
1691 | rc = aFB->OperationSupported (
|
---|
1692 | FramebufferAccelerationOperation_SolidFillAcceleration, &accelSupported);
|
---|
1693 | AssertComRC (rc);
|
---|
1694 | if (accelSupported)
|
---|
1695 | that->mSupportedAccelOps |=
|
---|
1696 | FramebufferAccelerationOperation_SolidFillAcceleration;
|
---|
1697 | accelSupported = FALSE;
|
---|
1698 | rc = aFB->OperationSupported (
|
---|
1699 | FramebufferAccelerationOperation_ScreenCopyAcceleration, &accelSupported);
|
---|
1700 | AssertComRC (rc);
|
---|
1701 | if (accelSupported)
|
---|
1702 | that->mSupportedAccelOps |=
|
---|
1703 | FramebufferAccelerationOperation_ScreenCopyAcceleration;
|
---|
1704 | }
|
---|
1705 |
|
---|
1706 | that->mParent->consoleVRDPServer()->
|
---|
1707 | SetFramebuffer (aFB, aFB ? VRDP_EXTERNAL_FRAMEBUFFER :
|
---|
1708 | VRDP_INTERNAL_FRAMEBUFFER);
|
---|
1709 |
|
---|
1710 | that->updateDisplayData (true /* aCheckParams */);
|
---|
1711 |
|
---|
1712 | return VINF_SUCCESS;
|
---|
1713 | }
|
---|
1714 |
|
---|
1715 | /**
|
---|
1716 | * Handle display resize event.
|
---|
1717 | *
|
---|
1718 | * @see PDMIDISPLAYCONNECTOR::pfnResize
|
---|
1719 | */
|
---|
1720 | DECLCALLBACK(void) Display::displayResizeCallback(PPDMIDISPLAYCONNECTOR pInterface,
|
---|
1721 | uint32_t bpp, void *pvVRAM, uint32_t cbLine, uint32_t cx, uint32_t cy)
|
---|
1722 | {
|
---|
1723 | PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
|
---|
1724 |
|
---|
1725 | LogFlowFunc (("bpp %d, pvVRAM %p, cbLine %d, cx %d, cy %d\n",
|
---|
1726 | bpp, pvVRAM, cbLine, cx, cy));
|
---|
1727 |
|
---|
1728 | pDrv->pDisplay->handleDisplayResize(bpp, pvVRAM, cbLine, cx, cy);
|
---|
1729 | }
|
---|
1730 |
|
---|
1731 | /**
|
---|
1732 | * Handle display update.
|
---|
1733 | *
|
---|
1734 | * @see PDMIDISPLAYCONNECTOR::pfnUpdateRect
|
---|
1735 | */
|
---|
1736 | DECLCALLBACK(void) Display::displayUpdateCallback(PPDMIDISPLAYCONNECTOR pInterface,
|
---|
1737 | uint32_t x, uint32_t y, uint32_t cx, uint32_t cy)
|
---|
1738 | {
|
---|
1739 | PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
|
---|
1740 |
|
---|
1741 | #ifdef DEBUG_sunlover
|
---|
1742 | LogFlowFunc (("pDrv->pDisplay->mfVideoAccelEnabled = %d, %d,%d %dx%d\n",
|
---|
1743 | pDrv->pDisplay->mfVideoAccelEnabled, x, y, cx, cy));
|
---|
1744 | #endif /* DEBUG_sunlover */
|
---|
1745 |
|
---|
1746 | /* This call does update regardless of VBVA status.
|
---|
1747 | * But in VBVA mode this is called only as result of
|
---|
1748 | * pfnUpdateDisplayAll in the VGA device.
|
---|
1749 | */
|
---|
1750 |
|
---|
1751 | pDrv->pDisplay->handleDisplayUpdate(x, y, cx, cy);
|
---|
1752 | }
|
---|
1753 |
|
---|
1754 | /**
|
---|
1755 | * Periodic display refresh callback.
|
---|
1756 | *
|
---|
1757 | * @see PDMIDISPLAYCONNECTOR::pfnRefresh
|
---|
1758 | */
|
---|
1759 | DECLCALLBACK(void) Display::displayRefreshCallback(PPDMIDISPLAYCONNECTOR pInterface)
|
---|
1760 | {
|
---|
1761 | PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
|
---|
1762 |
|
---|
1763 | #ifdef DEBUG_sunlover
|
---|
1764 | STAM_PROFILE_START(&StatDisplayRefresh, a);
|
---|
1765 | #endif /* DEBUG_sunlover */
|
---|
1766 |
|
---|
1767 | #ifdef DEBUG_sunlover
|
---|
1768 | LogFlowFunc (("pDrv->pDisplay->mfVideoAccelEnabled = %d\n",
|
---|
1769 | pDrv->pDisplay->mfVideoAccelEnabled));
|
---|
1770 | #endif /* DEBUG_sunlover */
|
---|
1771 |
|
---|
1772 | Display *pDisplay = pDrv->pDisplay;
|
---|
1773 |
|
---|
1774 | if (pDisplay->mFramebuffer.isNull())
|
---|
1775 | {
|
---|
1776 | /*
|
---|
1777 | * Do nothing in the "black hole" mode to avoid copying guest
|
---|
1778 | * video memory to the frame buffer
|
---|
1779 | */
|
---|
1780 | }
|
---|
1781 | else
|
---|
1782 | {
|
---|
1783 | if (pDisplay->mfPendingVideoAccelEnable)
|
---|
1784 | {
|
---|
1785 | /* Acceleration was enabled while machine was not yet running
|
---|
1786 | * due to restoring from saved state. Update entire display and
|
---|
1787 | * actually enable acceleration.
|
---|
1788 | */
|
---|
1789 | Assert(pDisplay->mpPendingVbvaMemory);
|
---|
1790 |
|
---|
1791 | /* Acceleration can not be yet enabled.*/
|
---|
1792 | Assert(pDisplay->mpVbvaMemory == NULL);
|
---|
1793 | Assert(!pDisplay->mfVideoAccelEnabled);
|
---|
1794 |
|
---|
1795 | if (pDisplay->mfMachineRunning)
|
---|
1796 | {
|
---|
1797 | pDisplay->VideoAccelEnable (pDisplay->mfPendingVideoAccelEnable,
|
---|
1798 | pDisplay->mpPendingVbvaMemory);
|
---|
1799 |
|
---|
1800 | /* Reset the pending state. */
|
---|
1801 | pDisplay->mfPendingVideoAccelEnable = false;
|
---|
1802 | pDisplay->mpPendingVbvaMemory = NULL;
|
---|
1803 | }
|
---|
1804 | }
|
---|
1805 | else
|
---|
1806 | {
|
---|
1807 | Assert(pDisplay->mpPendingVbvaMemory == NULL);
|
---|
1808 |
|
---|
1809 | if (pDisplay->mfVideoAccelEnabled)
|
---|
1810 | {
|
---|
1811 | Assert(pDisplay->mpVbvaMemory);
|
---|
1812 | pDisplay->VideoAccelFlush ();
|
---|
1813 | }
|
---|
1814 | else
|
---|
1815 | {
|
---|
1816 | Assert(pDrv->Connector.pu8Data);
|
---|
1817 | pDrv->pUpPort->pfnUpdateDisplay(pDrv->pUpPort);
|
---|
1818 | }
|
---|
1819 | }
|
---|
1820 | #ifdef VRDP_MC
|
---|
1821 | /* Inform to VRDP server that the current display update sequence is
|
---|
1822 | * completed. At this moment the framebuffer memory contains a definite
|
---|
1823 | * image, that is synchronized with the orders already sent to VRDP client.
|
---|
1824 | * The server can now process redraw requests from clients or initial
|
---|
1825 | * fullscreen updates for new clients.
|
---|
1826 | */
|
---|
1827 | Assert (pDisplay->mParent && pDisplay->mParent->consoleVRDPServer());
|
---|
1828 | pDisplay->mParent->consoleVRDPServer()->SendUpdate (NULL, 0);
|
---|
1829 | #endif /* VRDP_MC */
|
---|
1830 | }
|
---|
1831 |
|
---|
1832 | #ifdef DEBUG_sunlover
|
---|
1833 | STAM_PROFILE_STOP(&StatDisplayRefresh, a);
|
---|
1834 | #endif /* DEBUG_sunlover */
|
---|
1835 | }
|
---|
1836 |
|
---|
1837 | /**
|
---|
1838 | * Reset notification
|
---|
1839 | *
|
---|
1840 | * @see PDMIDISPLAYCONNECTOR::pfnReset
|
---|
1841 | */
|
---|
1842 | DECLCALLBACK(void) Display::displayResetCallback(PPDMIDISPLAYCONNECTOR pInterface)
|
---|
1843 | {
|
---|
1844 | PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
|
---|
1845 |
|
---|
1846 | LogFlowFunc (("\n"));
|
---|
1847 |
|
---|
1848 | /* Disable VBVA mode. */
|
---|
1849 | pDrv->pDisplay->VideoAccelEnable (false, NULL);
|
---|
1850 | }
|
---|
1851 |
|
---|
1852 | /**
|
---|
1853 | * LFBModeChange notification
|
---|
1854 | *
|
---|
1855 | * @see PDMIDISPLAYCONNECTOR::pfnLFBModeChange
|
---|
1856 | */
|
---|
1857 | DECLCALLBACK(void) Display::displayLFBModeChangeCallback(PPDMIDISPLAYCONNECTOR pInterface, bool fEnabled)
|
---|
1858 | {
|
---|
1859 | PDRVMAINDISPLAY pDrv = PDMIDISPLAYCONNECTOR_2_MAINDISPLAY(pInterface);
|
---|
1860 |
|
---|
1861 | LogFlowFunc (("fEnabled=%d\n", fEnabled));
|
---|
1862 |
|
---|
1863 | NOREF(fEnabled);
|
---|
1864 |
|
---|
1865 | /* Disable VBVA mode in any case. The guest driver reenables VBVA mode if necessary. */
|
---|
1866 | pDrv->pDisplay->VideoAccelEnable (false, NULL);
|
---|
1867 | }
|
---|
1868 |
|
---|
1869 | /**
|
---|
1870 | * Queries an interface to the driver.
|
---|
1871 | *
|
---|
1872 | * @returns Pointer to interface.
|
---|
1873 | * @returns NULL if the interface was not supported by the driver.
|
---|
1874 | * @param pInterface Pointer to this interface structure.
|
---|
1875 | * @param enmInterface The requested interface identification.
|
---|
1876 | */
|
---|
1877 | DECLCALLBACK(void *) Display::drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface)
|
---|
1878 | {
|
---|
1879 | PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
|
---|
1880 | PDRVMAINDISPLAY pDrv = PDMINS2DATA(pDrvIns, PDRVMAINDISPLAY);
|
---|
1881 | switch (enmInterface)
|
---|
1882 | {
|
---|
1883 | case PDMINTERFACE_BASE:
|
---|
1884 | return &pDrvIns->IBase;
|
---|
1885 | case PDMINTERFACE_DISPLAY_CONNECTOR:
|
---|
1886 | return &pDrv->Connector;
|
---|
1887 | default:
|
---|
1888 | return NULL;
|
---|
1889 | }
|
---|
1890 | }
|
---|
1891 |
|
---|
1892 |
|
---|
1893 | /**
|
---|
1894 | * Destruct a display driver instance.
|
---|
1895 | *
|
---|
1896 | * @returns VBox status.
|
---|
1897 | * @param pDrvIns The driver instance data.
|
---|
1898 | */
|
---|
1899 | DECLCALLBACK(void) Display::drvDestruct(PPDMDRVINS pDrvIns)
|
---|
1900 | {
|
---|
1901 | PDRVMAINDISPLAY pData = PDMINS2DATA(pDrvIns, PDRVMAINDISPLAY);
|
---|
1902 | LogFlowFunc (("iInstance=%d\n", pDrvIns->iInstance));
|
---|
1903 | if (pData->pDisplay)
|
---|
1904 | {
|
---|
1905 | AutoLock displayLock (pData->pDisplay);
|
---|
1906 | pData->pDisplay->mpDrv = NULL;
|
---|
1907 | pData->pDisplay->mpVMMDev = NULL;
|
---|
1908 | pData->pDisplay->mLastAddress = NULL;
|
---|
1909 | pData->pDisplay->mLastLineSize = 0;
|
---|
1910 | pData->pDisplay->mLastColorDepth = 0,
|
---|
1911 | pData->pDisplay->mLastWidth = 0;
|
---|
1912 | pData->pDisplay->mLastHeight = 0;
|
---|
1913 | }
|
---|
1914 | }
|
---|
1915 |
|
---|
1916 |
|
---|
1917 | /**
|
---|
1918 | * Construct a display driver instance.
|
---|
1919 | *
|
---|
1920 | * @returns VBox status.
|
---|
1921 | * @param pDrvIns The driver instance data.
|
---|
1922 | * If the registration structure is needed, pDrvIns->pDrvReg points to it.
|
---|
1923 | * @param pCfgHandle Configuration node handle for the driver. Use this to obtain the configuration
|
---|
1924 | * of the driver instance. It's also found in pDrvIns->pCfgHandle, but like
|
---|
1925 | * iInstance it's expected to be used a bit in this function.
|
---|
1926 | */
|
---|
1927 | DECLCALLBACK(int) Display::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle)
|
---|
1928 | {
|
---|
1929 | PDRVMAINDISPLAY pData = PDMINS2DATA(pDrvIns, PDRVMAINDISPLAY);
|
---|
1930 | LogFlowFunc (("iInstance=%d\n", pDrvIns->iInstance));
|
---|
1931 |
|
---|
1932 | /*
|
---|
1933 | * Validate configuration.
|
---|
1934 | */
|
---|
1935 | if (!CFGMR3AreValuesValid(pCfgHandle, "Object\0"))
|
---|
1936 | return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
|
---|
1937 | PPDMIBASE pBaseIgnore;
|
---|
1938 | int rc = pDrvIns->pDrvHlp->pfnAttach(pDrvIns, &pBaseIgnore);
|
---|
1939 | if (rc != VERR_PDM_NO_ATTACHED_DRIVER)
|
---|
1940 | {
|
---|
1941 | AssertMsgFailed(("Configuration error: Not possible to attach anything to this driver!\n"));
|
---|
1942 | return VERR_PDM_DRVINS_NO_ATTACH;
|
---|
1943 | }
|
---|
1944 |
|
---|
1945 | /*
|
---|
1946 | * Init Interfaces.
|
---|
1947 | */
|
---|
1948 | pDrvIns->IBase.pfnQueryInterface = Display::drvQueryInterface;
|
---|
1949 |
|
---|
1950 | pData->Connector.pfnResize = Display::displayResizeCallback;
|
---|
1951 | pData->Connector.pfnUpdateRect = Display::displayUpdateCallback;
|
---|
1952 | pData->Connector.pfnRefresh = Display::displayRefreshCallback;
|
---|
1953 | pData->Connector.pfnReset = Display::displayResetCallback;
|
---|
1954 | pData->Connector.pfnLFBModeChange = Display::displayLFBModeChangeCallback;
|
---|
1955 |
|
---|
1956 | /*
|
---|
1957 | * Get the IDisplayPort interface of the above driver/device.
|
---|
1958 | */
|
---|
1959 | pData->pUpPort = (PPDMIDISPLAYPORT)pDrvIns->pUpBase->pfnQueryInterface(pDrvIns->pUpBase, PDMINTERFACE_DISPLAY_PORT);
|
---|
1960 | if (!pData->pUpPort)
|
---|
1961 | {
|
---|
1962 | AssertMsgFailed(("Configuration error: No display port interface above!\n"));
|
---|
1963 | return VERR_PDM_MISSING_INTERFACE_ABOVE;
|
---|
1964 | }
|
---|
1965 |
|
---|
1966 | /*
|
---|
1967 | * Get the Display object pointer and update the mpDrv member.
|
---|
1968 | */
|
---|
1969 | void *pv;
|
---|
1970 | rc = CFGMR3QueryPtr(pCfgHandle, "Object", &pv);
|
---|
1971 | if (VBOX_FAILURE(rc))
|
---|
1972 | {
|
---|
1973 | AssertMsgFailed(("Configuration error: No/bad \"Object\" value! rc=%Vrc\n", rc));
|
---|
1974 | return rc;
|
---|
1975 | }
|
---|
1976 | pData->pDisplay = (Display *)pv; /** @todo Check this cast! */
|
---|
1977 | pData->pDisplay->mpDrv = pData;
|
---|
1978 |
|
---|
1979 | /*
|
---|
1980 | * Update our display information according to the framebuffer
|
---|
1981 | */
|
---|
1982 | pData->pDisplay->updateDisplayData();
|
---|
1983 |
|
---|
1984 | /*
|
---|
1985 | * Start periodic screen refreshes
|
---|
1986 | */
|
---|
1987 | pData->pUpPort->pfnSetRefreshRate(pData->pUpPort, 20);
|
---|
1988 |
|
---|
1989 | return VINF_SUCCESS;
|
---|
1990 | }
|
---|
1991 |
|
---|
1992 |
|
---|
1993 | /**
|
---|
1994 | * Display driver registration record.
|
---|
1995 | */
|
---|
1996 | const PDMDRVREG Display::DrvReg =
|
---|
1997 | {
|
---|
1998 | /* u32Version */
|
---|
1999 | PDM_DRVREG_VERSION,
|
---|
2000 | /* szDriverName */
|
---|
2001 | "MainDisplay",
|
---|
2002 | /* pszDescription */
|
---|
2003 | "Main display driver (Main as in the API).",
|
---|
2004 | /* fFlags */
|
---|
2005 | PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
|
---|
2006 | /* fClass. */
|
---|
2007 | PDM_DRVREG_CLASS_DISPLAY,
|
---|
2008 | /* cMaxInstances */
|
---|
2009 | ~0,
|
---|
2010 | /* cbInstance */
|
---|
2011 | sizeof(DRVMAINDISPLAY),
|
---|
2012 | /* pfnConstruct */
|
---|
2013 | Display::drvConstruct,
|
---|
2014 | /* pfnDestruct */
|
---|
2015 | Display::drvDestruct,
|
---|
2016 | /* pfnIOCtl */
|
---|
2017 | NULL,
|
---|
2018 | /* pfnPowerOn */
|
---|
2019 | NULL,
|
---|
2020 | /* pfnReset */
|
---|
2021 | NULL,
|
---|
2022 | /* pfnSuspend */
|
---|
2023 | NULL,
|
---|
2024 | /* pfnResume */
|
---|
2025 | NULL,
|
---|
2026 | /* pfnDetach */
|
---|
2027 | NULL
|
---|
2028 | };
|
---|