VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.c@ 43309

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

Additions/x11/vboxvideo: fix for pre-1.3 X servers after vtSema fixes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 42.9 KB
Line 
1/* $Id: vboxvideo.c 43309 2012-09-12 11:28:18Z vboxsync $ */
2/** @file
3 *
4 * Linux Additions X11 graphics driver
5 */
6
7/*
8 * Copyright (C) 2006-2011 Oracle Corporation
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 (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 * --------------------------------------------------------------------
18 *
19 * This code is based on the X.Org VESA driver with the following copyrights:
20 *
21 * Copyright (c) 2000 by Conectiva S.A. (http://www.conectiva.com)
22 * Copyright 2008 Red Hat, Inc.
23 * Copyright 2012 Red Hat, Inc.
24 *
25 * and the following permission notice (not all original sourse files include
26 * the last paragraph):
27 *
28 * Permission is hereby granted, free of charge, to any person obtaining a
29 * copy of this software and associated documentation files (the "Software"),
30 * to deal in the Software without restriction, including without limitation
31 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
32 * and/or sell copies of the Software, and to permit persons to whom the
33 * Software is furnished to do so, subject to the following conditions:
34 *
35 * The above copyright notice and this permission notice shall be included in
36 * all copies or substantial portions of the Software.
37 *
38 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
39 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
40 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
41 * CONECTIVA LINUX BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
42 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
43 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
44 * SOFTWARE.
45 *
46 * Except as contained in this notice, the name of Conectiva Linux shall
47 * not be used in advertising or otherwise to promote the sale, use or other
48 * dealings in this Software without prior written authorization from
49 * Conectiva Linux.
50 *
51 * Authors: Paulo César Pereira de Andrade <[email protected]>
52 * David Dawes <[email protected]>
53 * Adam Jackson <[email protected]>
54 * Dave Airlie <[email protected]>
55 */
56
57#ifdef XORG_7X
58# include <stdlib.h>
59# include <string.h>
60#endif
61
62#include "xf86.h"
63#include "xf86_OSproc.h"
64#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 6
65# include "xf86Resources.h"
66#endif
67
68#ifndef PCIACCESS
69/* Drivers for PCI hardware need this */
70# include "xf86PciInfo.h"
71/* Drivers that need to access the PCI config space directly need this */
72# include "xf86Pci.h"
73#endif
74
75#include "fb.h"
76
77#include "vboxvideo.h"
78#include <iprt/asm-math.h>
79#include "version-generated.h"
80#include "product-generated.h"
81#include <xf86.h>
82#include <misc.h>
83
84/* All drivers initialising the SW cursor need this */
85#include "mipointer.h"
86
87/* Colormap handling */
88#include "micmap.h"
89#include "xf86cmap.h"
90
91/* DPMS */
92/* #define DPMS_SERVER
93#include "extensions/dpms.h" */
94
95/* VGA hardware functions for setting and restoring text mode */
96#include "vgaHW.h"
97
98#ifdef VBOXVIDEO_13
99/* X.org 1.3+ mode setting */
100# define _HAVE_STRING_ARCH_strsep /* bits/string2.h, __strsep_1c. */
101# include "xf86Crtc.h"
102# include "xf86Modes.h"
103# include <X11/Xatom.h>
104#endif
105
106/* Mandatory functions */
107
108static const OptionInfoRec * VBOXAvailableOptions(int chipid, int busid);
109static void VBOXIdentify(int flags);
110#ifndef PCIACCESS
111static Bool VBOXProbe(DriverPtr drv, int flags);
112#else
113static Bool VBOXPciProbe(DriverPtr drv, int entity_num,
114 struct pci_device *dev, intptr_t match_data);
115#endif
116static Bool VBOXPreInit(ScrnInfoPtr pScrn, int flags);
117static Bool VBOXScreenInit(ScreenPtr pScreen, int argc, char **argv);
118static Bool VBOXEnterVT(ScrnInfoPtr pScrn);
119static void VBOXLeaveVT(ScrnInfoPtr pScrn);
120static Bool VBOXCloseScreen(ScreenPtr pScreen);
121static Bool VBOXSaveScreen(ScreenPtr pScreen, int mode);
122static Bool VBOXSwitchMode(ScrnInfoPtr pScrn, DisplayModePtr pMode);
123static void VBOXAdjustFrame(ScrnInfoPtr pScrn, int x, int y);
124static void VBOXFreeScreen(ScrnInfoPtr pScrn);
125static void VBOXDisplayPowerManagementSet(ScrnInfoPtr pScrn, int mode,
126 int flags);
127
128/* locally used functions */
129static Bool VBOXMapVidMem(ScrnInfoPtr pScrn);
130static void VBOXUnmapVidMem(ScrnInfoPtr pScrn);
131static void VBOXSaveMode(ScrnInfoPtr pScrn);
132static void VBOXRestoreMode(ScrnInfoPtr pScrn);
133
134static inline void VBOXSetRec(ScrnInfoPtr pScrn)
135{
136 if (!pScrn->driverPrivate)
137 pScrn->driverPrivate = calloc(sizeof(VBOXRec), 1);
138}
139
140enum GenericTypes
141{
142 CHIP_VBOX_GENERIC
143};
144
145#ifdef PCIACCESS
146static const struct pci_id_match vbox_device_match[] = {
147 {
148 VBOX_VENDORID, VBOX_DEVICEID, PCI_MATCH_ANY, PCI_MATCH_ANY,
149 0, 0, 0
150 },
151
152 { 0, 0, 0 },
153};
154#endif
155
156/* Supported chipsets */
157static SymTabRec VBOXChipsets[] =
158{
159 {VBOX_DEVICEID, "vbox"},
160 {-1, NULL}
161};
162
163static PciChipsets VBOXPCIchipsets[] = {
164 { VBOX_DEVICEID, VBOX_DEVICEID, RES_SHARED_VGA },
165 { -1, -1, RES_UNDEFINED },
166};
167
168/*
169 * This contains the functions needed by the server after loading the
170 * driver module. It must be supplied, and gets added the driver list by
171 * the Module Setup function in the dynamic case. In the static case a
172 * reference to this is compiled in, and this requires that the name of
173 * this DriverRec be an upper-case version of the driver name.
174 */
175
176#ifdef XORG_7X
177_X_EXPORT
178#endif
179DriverRec VBOXVIDEO = {
180 VBOX_VERSION,
181 VBOX_DRIVER_NAME,
182 VBOXIdentify,
183#ifdef PCIACCESS
184 NULL,
185#else
186 VBOXProbe,
187#endif
188 VBOXAvailableOptions,
189 NULL,
190 0,
191#ifdef XORG_7X
192 NULL,
193#endif
194#ifdef PCIACCESS
195 vbox_device_match,
196 VBOXPciProbe
197#endif
198};
199
200/* No options for now */
201static const OptionInfoRec VBOXOptions[] = {
202 { -1, NULL, OPTV_NONE, {0}, FALSE }
203};
204
205#ifndef XORG_7X
206/*
207 * List of symbols from other modules that this module references. This
208 * list is used to tell the loader that it is OK for symbols here to be
209 * unresolved providing that it hasn't been told that they haven't been
210 * told that they are essential via a call to xf86LoaderReqSymbols() or
211 * xf86LoaderReqSymLists(). The purpose is this is to avoid warnings about
212 * unresolved symbols that are not required.
213 */
214static const char *fbSymbols[] = {
215 "fbPictureInit",
216 "fbScreenInit",
217 NULL
218};
219
220static const char *shadowfbSymbols[] = {
221 "ShadowFBInit2",
222 NULL
223};
224
225static const char *ramdacSymbols[] = {
226 "xf86InitCursor",
227 "xf86CreateCursorInfoRec",
228 NULL
229};
230
231static const char *vgahwSymbols[] = {
232 "vgaHWFreeHWRec",
233 "vgaHWGetHWRec",
234 "vgaHWGetIOBase",
235 "vgaHWGetIndex",
236 "vgaHWRestore",
237 "vgaHWSave",
238 "vgaHWSetStdFuncs",
239 NULL
240};
241#endif /* !XORG_7X */
242
243#ifdef VBOXVIDEO_13
244/* X.org 1.3+ mode-setting support ******************************************/
245
246/* For descriptions of these functions and structures, see
247 hw/xfree86/modes/xf86Crtc.h and hw/xfree86/modes/xf86Modes.h in the
248 X.Org source tree. */
249
250static Bool vbox_config_resize(ScrnInfoPtr pScrn, int cw, int ch)
251{
252 VBOXPtr pVBox = VBOXGetRec(pScrn);
253 TRACE_LOG("width=%d, height=%d\n", cw, ch);
254 /* Save the size in case we need to re-set it later. */
255 pVBox->FBSize.cx = cw;
256 pVBox->FBSize.cy = ch;
257 /* Don't fiddle with the hardware if we are switched
258 * to a virtual terminal. */
259 if (!pScrn->vtSema) {
260 xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
261 "We do not own the active VT, exiting.\n");
262 return TRUE;
263 }
264 return VBOXAdjustScreenPixmap(pScrn, cw, ch);
265}
266
267static const xf86CrtcConfigFuncsRec VBOXCrtcConfigFuncs = {
268 vbox_config_resize
269};
270
271static void
272vbox_crtc_dpms(xf86CrtcPtr crtc, int mode)
273{
274 VBOXPtr pVBox = VBOXGetRec(crtc->scrn);
275 unsigned cDisplay = (uintptr_t)crtc->driver_private;
276 TRACE_LOG("cDisplay=%u, mode=%i\n", cDisplay, mode);
277 pVBox->afDisabled[cDisplay] = (mode != DPMSModeOn);
278 /* Don't fiddle with the hardware if we are switched
279 * to a virtual terminal. */
280 if (!crtc->scrn->vtSema) {
281 xf86DrvMsg(crtc->scrn->scrnIndex, X_ERROR,
282 "We do not own the active VT, exiting.\n");
283 return;
284 }
285 if ( pVBox->aScreenLocation[cDisplay].cx
286 && pVBox->aScreenLocation[cDisplay].cy)
287 VBOXSetMode(crtc->scrn, cDisplay,
288 pVBox->aScreenLocation[cDisplay].cx,
289 pVBox->aScreenLocation[cDisplay].cy,
290 pVBox->aScreenLocation[cDisplay].x,
291 pVBox->aScreenLocation[cDisplay].y);
292}
293
294static Bool
295vbox_crtc_lock (xf86CrtcPtr crtc)
296{ (void) crtc; return FALSE; }
297
298
299/* We use this function to check whether the X server owns the active virtual
300 * terminal before attempting a mode switch, since the RandR extension isn't
301 * very dilligent here, which can mean crashes if we are unlucky. This is
302 * not the way it the function is intended - it is meant for reporting modes
303 * which the hardware can't handle. I hope that this won't confuse any clients
304 * connecting to us. */
305static Bool
306vbox_crtc_mode_fixup (xf86CrtcPtr crtc, DisplayModePtr mode,
307 DisplayModePtr adjusted_mode)
308{ (void) crtc; (void) mode; (void) adjusted_mode; return TRUE; }
309
310static void
311vbox_crtc_stub (xf86CrtcPtr crtc)
312{ (void) crtc; }
313
314static void
315vbox_crtc_mode_set (xf86CrtcPtr crtc, DisplayModePtr mode,
316 DisplayModePtr adjusted_mode, int x, int y)
317{
318 (void) mode;
319 VBOXPtr pVBox = VBOXGetRec(crtc->scrn);
320 unsigned cDisplay = (uintptr_t)crtc->driver_private;
321
322 TRACE_LOG("name=%s, HDisplay=%d, VDisplay=%d, x=%d, y=%d\n", adjusted_mode->name,
323 adjusted_mode->HDisplay, adjusted_mode->VDisplay, x, y);
324 pVBox->afDisabled[cDisplay] = false;
325 pVBox->aScreenLocation[cDisplay].cx = adjusted_mode->HDisplay;
326 pVBox->aScreenLocation[cDisplay].cy = adjusted_mode->VDisplay;
327 pVBox->aScreenLocation[cDisplay].x = x;
328 pVBox->aScreenLocation[cDisplay].y = y;
329 /* Don't remember any modes set while we are seamless, as they are
330 * just temporary. */
331 if (!vboxGuestIsSeamless(crtc->scrn))
332 vboxSaveVideoMode(crtc->scrn, adjusted_mode->HDisplay,
333 adjusted_mode->VDisplay, crtc->scrn->bitsPerPixel);
334 /* Don't fiddle with the hardware if we are switched
335 * to a virtual terminal. */
336 if (!crtc->scrn->vtSema)
337 {
338 xf86DrvMsg(crtc->scrn->scrnIndex, X_ERROR,
339 "We do not own the active VT, exiting.\n");
340 return;
341 }
342 VBOXSetMode(crtc->scrn, cDisplay, adjusted_mode->HDisplay,
343 adjusted_mode->VDisplay, x, y);
344}
345
346static void
347vbox_crtc_gamma_set (xf86CrtcPtr crtc, CARD16 *red,
348 CARD16 *green, CARD16 *blue, int size)
349{ (void) crtc; (void) red; (void) green; (void) blue; (void) size; }
350
351static void *
352vbox_crtc_shadow_allocate (xf86CrtcPtr crtc, int width, int height)
353{ (void) crtc; (void) width; (void) height; return NULL; }
354
355static const xf86CrtcFuncsRec VBOXCrtcFuncs = {
356 .dpms = vbox_crtc_dpms,
357 .save = NULL, /* These two are never called by the server. */
358 .restore = NULL,
359 .lock = vbox_crtc_lock,
360 .unlock = NULL, /* This will not be invoked if lock returns FALSE. */
361 .mode_fixup = vbox_crtc_mode_fixup,
362 .prepare = vbox_crtc_stub,
363 .mode_set = vbox_crtc_mode_set,
364 .commit = vbox_crtc_stub,
365 .gamma_set = vbox_crtc_gamma_set,
366 .shadow_allocate = vbox_crtc_shadow_allocate,
367 .shadow_create = NULL, /* These two should not be invoked if allocate
368 returns NULL. */
369 .shadow_destroy = NULL,
370 .set_cursor_colors = NULL, /* We are still using the old cursor API. */
371 .set_cursor_position = NULL,
372 .show_cursor = NULL,
373 .hide_cursor = NULL,
374 .load_cursor_argb = NULL,
375 .destroy = vbox_crtc_stub
376};
377
378static void
379vbox_output_stub (xf86OutputPtr output)
380{ (void) output; }
381
382static void
383vbox_output_dpms (xf86OutputPtr output, int mode)
384{ (void) output; (void) mode; }
385
386static int
387vbox_output_mode_valid (xf86OutputPtr output, DisplayModePtr mode)
388{
389 ScrnInfoPtr pScrn = output->scrn;
390 int rc = MODE_OK;
391 TRACE_LOG("HDisplay=%d, VDisplay=%d\n", mode->HDisplay, mode->VDisplay);
392 /* We always like modes specified by the user in the configuration
393 * file and modes requested by the host, as doing otherwise is likely to
394 * annoy people. */
395 if ( !(mode->type & M_T_USERDEF)
396 && !(mode->type & M_T_PREFERRED)
397 && vbox_device_available(VBOXGetRec(pScrn))
398 && !vboxHostLikesVideoMode(pScrn, mode->HDisplay, mode->VDisplay,
399 pScrn->bitsPerPixel)
400 )
401 rc = MODE_BAD;
402 TRACE_LOG("returning %s\n", MODE_OK == rc ? "MODE_OK" : "MODE_BAD");
403 return rc;
404}
405
406static Bool
407vbox_output_mode_fixup (xf86OutputPtr output, DisplayModePtr mode,
408 DisplayModePtr adjusted_mode)
409{ (void) output; (void) mode; (void) adjusted_mode; return TRUE; }
410
411static void
412vbox_output_mode_set (xf86OutputPtr output, DisplayModePtr mode,
413 DisplayModePtr adjusted_mode)
414{ (void) output; (void) mode; (void) adjusted_mode; }
415
416/* A virtual monitor is always connected. */
417static xf86OutputStatus
418vbox_output_detect (xf86OutputPtr output)
419{
420 (void) output;
421 return XF86OutputStatusConnected;
422}
423
424static DisplayModePtr
425vbox_output_add_mode (VBOXPtr pVBox, DisplayModePtr *pModes,
426 const char *pszName, int x, int y,
427 Bool isPreferred, Bool isUserDef)
428{
429 TRACE_LOG("pszName=%s, x=%d, y=%d\n", pszName, x, y);
430 DisplayModePtr pMode = xnfcalloc(1, sizeof(DisplayModeRec));
431
432 pMode->status = MODE_OK;
433 /* We don't ask the host whether it likes user defined modes,
434 * as we assume that the user really wanted that mode. */
435 pMode->type = isUserDef ? M_T_USERDEF : M_T_BUILTIN;
436 if (isPreferred)
437 pMode->type |= M_T_PREFERRED;
438 /* Older versions of VBox only support screen widths which are a multiple
439 * of 8 */
440 if (pVBox->fAnyX)
441 pMode->HDisplay = x;
442 else
443 pMode->HDisplay = x & ~7;
444 pMode->HSyncStart = pMode->HDisplay + 2;
445 pMode->HSyncEnd = pMode->HDisplay + 4;
446 pMode->HTotal = pMode->HDisplay + 6;
447 pMode->VDisplay = y;
448 pMode->VSyncStart = pMode->VDisplay + 2;
449 pMode->VSyncEnd = pMode->VDisplay + 4;
450 pMode->VTotal = pMode->VDisplay + 6;
451 pMode->Clock = pMode->HTotal * pMode->VTotal * 60 / 1000; /* kHz */
452 if (NULL == pszName) {
453 xf86SetModeDefaultName(pMode);
454 } else {
455 pMode->name = xnfstrdup(pszName);
456 }
457 *pModes = xf86ModesAdd(*pModes, pMode);
458 return pMode;
459}
460
461static DisplayModePtr
462vbox_output_get_modes (xf86OutputPtr output)
463{
464 unsigned i, cIndex = 0;
465 DisplayModePtr pModes = NULL, pMode;
466 ScrnInfoPtr pScrn = output->scrn;
467 VBOXPtr pVBox = VBOXGetRec(pScrn);
468
469 TRACE_ENTRY();
470 uint32_t x, y, bpp, iScreen;
471 iScreen = (uintptr_t)output->driver_private;
472 vboxGetPreferredMode(pScrn, iScreen, &x, &y, &bpp);
473 pMode = vbox_output_add_mode(pVBox, &pModes, NULL, x, y, TRUE, FALSE);
474 VBOXEDIDSet(output, pMode);
475 /* Add standard modes supported by the host */
476 for ( ; ; )
477 {
478 cIndex = vboxNextStandardMode(pScrn, cIndex, &x, &y, NULL);
479 if (cIndex == 0)
480 break;
481 vbox_output_add_mode(pVBox, &pModes, NULL, x, y, FALSE, FALSE);
482 }
483
484 /* Also report any modes the user may have requested in the xorg.conf
485 * configuration file. */
486 for (i = 0; pScrn->display->modes[i] != NULL; i++)
487 {
488 if (2 == sscanf(pScrn->display->modes[i], "%ux%u", &x, &y))
489 vbox_output_add_mode(pVBox, &pModes, pScrn->display->modes[i], x, y,
490 FALSE, TRUE);
491 }
492 TRACE_EXIT();
493 return pModes;
494}
495
496#ifdef RANDR_12_INTERFACE
497static Atom
498vboxAtomVBoxMode(void)
499{
500 return MakeAtom("VBOX_MODE", sizeof("VBOX_MODE") - 1, TRUE);
501}
502
503static Atom
504vboxAtomEDID(void)
505{
506 return MakeAtom("EDID", sizeof("EDID") - 1, TRUE);
507}
508
509/** We use this for receiving information from clients for the purpose of
510 * dynamic resizing, and later possibly other things too.
511 */
512static Bool
513vbox_output_set_property(xf86OutputPtr output, Atom property,
514 RRPropertyValuePtr value)
515{
516 ScrnInfoPtr pScrn = output->scrn;
517 VBOXPtr pVBox = VBOXGetRec(pScrn);
518 TRACE_LOG("property=%d, value->type=%d, value->format=%d, value->size=%ld\n",
519 (int)property, (int)value->type, value->format, value->size);
520 if (property == vboxAtomVBoxMode())
521 {
522 uint32_t cDisplay = (uintptr_t)output->driver_private;
523 char sz[256] = { 0 };
524 int w, h;
525
526 if ( value->type != XA_STRING
527 || (unsigned) value->size > (sizeof(sz) - 1))
528 return FALSE;
529 strncpy(sz, value->data, value->size);
530 TRACE_LOG("screen=%u, property value=%s\n", cDisplay, sz);
531 if (sscanf(sz, "%dx%d", &w, &h) != 2)
532 return FALSE;
533 pVBox->aPreferredSize[cDisplay].cx = w;
534 pVBox->aPreferredSize[cDisplay].cy = h;
535 return TRUE;
536 }
537 if (property == vboxAtomEDID())
538 return TRUE;
539 return FALSE;
540}
541#endif
542
543static const xf86OutputFuncsRec VBOXOutputFuncs = {
544 .create_resources = vbox_output_stub,
545 .dpms = vbox_output_dpms,
546 .save = NULL, /* These two are never called by the server. */
547 .restore = NULL,
548 .mode_valid = vbox_output_mode_valid,
549 .mode_fixup = vbox_output_mode_fixup,
550 .prepare = vbox_output_stub,
551 .commit = vbox_output_stub,
552 .mode_set = vbox_output_mode_set,
553 .detect = vbox_output_detect,
554 .get_modes = vbox_output_get_modes,
555#ifdef RANDR_12_INTERFACE
556 .set_property = vbox_output_set_property,
557#endif
558 .destroy = vbox_output_stub
559};
560#endif /* VBOXVIDEO_13 */
561
562/* Module loader interface */
563static MODULESETUPPROTO(vboxSetup);
564
565static XF86ModuleVersionInfo vboxVersionRec =
566{
567 VBOX_DRIVER_NAME,
568 VBOX_VENDOR,
569 MODINFOSTRING1,
570 MODINFOSTRING2,
571#ifdef XORG_7X
572 XORG_VERSION_CURRENT,
573#else
574 XF86_VERSION_CURRENT,
575#endif
576 1, /* Module major version. Xorg-specific */
577 0, /* Module minor version. Xorg-specific */
578 1, /* Module patchlevel. Xorg-specific */
579 ABI_CLASS_VIDEODRV, /* This is a video driver */
580 ABI_VIDEODRV_VERSION,
581 MOD_CLASS_VIDEODRV,
582 {0, 0, 0, 0}
583};
584
585/*
586 * This data is accessed by the loader. The name must be the module name
587 * followed by "ModuleData".
588 */
589#ifdef XORG_7X
590_X_EXPORT
591#endif
592XF86ModuleData vboxvideoModuleData = { &vboxVersionRec, vboxSetup, NULL };
593
594static pointer
595vboxSetup(pointer Module, pointer Options, int *ErrorMajor, int *ErrorMinor)
596{
597 static Bool Initialised = FALSE;
598
599 if (!Initialised)
600 {
601 Initialised = TRUE;
602#ifdef PCIACCESS
603 xf86AddDriver(&VBOXVIDEO, Module, HaveDriverFuncs);
604#else
605 xf86AddDriver(&VBOXVIDEO, Module, 0);
606#endif
607#ifndef XORG_7X
608 LoaderRefSymLists(fbSymbols,
609 shadowfbSymbols,
610 ramdacSymbols,
611 vgahwSymbols,
612 NULL);
613#endif
614 xf86Msg(X_CONFIG, "Load address of symbol \"VBOXVIDEO\" is %p\n",
615 (void *)&VBOXVIDEO);
616 return (pointer)TRUE;
617 }
618
619 if (ErrorMajor)
620 *ErrorMajor = LDR_ONCEONLY;
621 return (NULL);
622}
623
624
625static const OptionInfoRec *
626VBOXAvailableOptions(int chipid, int busid)
627{
628 return (VBOXOptions);
629}
630
631static void
632VBOXIdentify(int flags)
633{
634 xf86PrintChipsets(VBOX_NAME, "guest driver for VirtualBox", VBOXChipsets);
635}
636
637#ifndef XF86_SCRN_INTERFACE
638# define xf86ScreenToScrn(pScreen) xf86Screens[(pScreen)->myNum]
639# define xf86ScrnToScreen(pScrn) screenInfo.screens[(pScrn)->scrnIndex]
640# define SCRNINDEXAPI(pfn) pfn ## Index
641static Bool VBOXScreenInitIndex(int scrnIndex, ScreenPtr pScreen, int argc,
642 char **argv)
643{ return VBOXScreenInit(pScreen, argc, argv); }
644
645static Bool VBOXEnterVTIndex(int scrnIndex, int flags)
646{ (void) flags; return VBOXEnterVT(xf86Screens[scrnIndex]); }
647
648static void VBOXLeaveVTIndex(int scrnIndex, int flags)
649{ (void) flags; VBOXLeaveVT(xf86Screens[scrnIndex]); }
650
651static Bool VBOXCloseScreenIndex(int scrnIndex, ScreenPtr pScreen)
652{ (void) scrnIndex; return VBOXCloseScreen(pScreen); }
653
654static Bool VBOXSwitchModeIndex(int scrnIndex, DisplayModePtr pMode, int flags)
655{ (void) flags; return VBOXSwitchMode(xf86Screens[scrnIndex], pMode); }
656
657static void VBOXAdjustFrameIndex(int scrnIndex, int x, int y, int flags)
658{ (void) flags; VBOXAdjustFrame(xf86Screens[scrnIndex], x, y); }
659
660static void VBOXFreeScreenIndex(int scrnIndex, int flags)
661{ (void) flags; VBOXFreeScreen(xf86Screens[scrnIndex]); }
662# else
663# define SCRNINDEXAPI(pfn) pfn
664#endif /* XF86_SCRN_INTERFACE */
665
666static void setScreenFunctions(ScrnInfoPtr pScrn, xf86ProbeProc pfnProbe)
667{
668 pScrn->driverVersion = VBOX_VERSION;
669 pScrn->driverName = VBOX_DRIVER_NAME;
670 pScrn->name = VBOX_NAME;
671 pScrn->Probe = pfnProbe;
672 pScrn->PreInit = VBOXPreInit;
673 pScrn->ScreenInit = SCRNINDEXAPI(VBOXScreenInit);
674 pScrn->SwitchMode = SCRNINDEXAPI(VBOXSwitchMode);
675 pScrn->AdjustFrame = SCRNINDEXAPI(VBOXAdjustFrame);
676 pScrn->EnterVT = SCRNINDEXAPI(VBOXEnterVT);
677 pScrn->LeaveVT = SCRNINDEXAPI(VBOXLeaveVT);
678 pScrn->FreeScreen = SCRNINDEXAPI(VBOXFreeScreen);
679}
680
681/*
682 * One of these functions is called once, at the start of the first server
683 * generation to do a minimal probe for supported hardware.
684 */
685
686#ifdef PCIACCESS
687static Bool
688VBOXPciProbe(DriverPtr drv, int entity_num, struct pci_device *dev,
689 intptr_t match_data)
690{
691 ScrnInfoPtr pScrn;
692
693 TRACE_ENTRY();
694 pScrn = xf86ConfigPciEntity(NULL, 0, entity_num, VBOXPCIchipsets,
695 NULL, NULL, NULL, NULL, NULL);
696 if (pScrn != NULL) {
697 VBOXPtr pVBox;
698
699 VBOXSetRec(pScrn);
700 pVBox = VBOXGetRec(pScrn);
701 if (!pVBox)
702 return FALSE;
703 setScreenFunctions(pScrn, NULL);
704 pVBox->pciInfo = dev;
705 }
706
707 TRACE_LOG("returning %s\n", BOOL_STR(pScrn != NULL));
708 return (pScrn != NULL);
709}
710#endif
711
712#ifndef PCIACCESS
713static Bool
714VBOXProbe(DriverPtr drv, int flags)
715{
716 Bool foundScreen = FALSE;
717 int numDevSections;
718 GDevPtr *devSections;
719
720 /*
721 * Find the config file Device sections that match this
722 * driver, and return if there are none.
723 */
724 if ((numDevSections = xf86MatchDevice(VBOX_NAME,
725 &devSections)) <= 0)
726 return (FALSE);
727
728 /* PCI BUS */
729 if (xf86GetPciVideoInfo())
730 {
731 int numUsed;
732 int *usedChips;
733 int i;
734 numUsed = xf86MatchPciInstances(VBOX_NAME, VBOX_VENDORID,
735 VBOXChipsets, VBOXPCIchipsets,
736 devSections, numDevSections,
737 drv, &usedChips);
738 if (numUsed > 0)
739 {
740 if (flags & PROBE_DETECT)
741 foundScreen = TRUE;
742 else
743 for (i = 0; i < numUsed; i++)
744 {
745 ScrnInfoPtr pScrn = NULL;
746 /* Allocate a ScrnInfoRec */
747 if ((pScrn = xf86ConfigPciEntity(pScrn,0,usedChips[i],
748 VBOXPCIchipsets,NULL,
749 NULL,NULL,NULL,NULL)))
750 {
751 setScreenFunctions(pScrn, VBOXProbe);
752 foundScreen = TRUE;
753 }
754 }
755 free(usedChips);
756 }
757 }
758 free(devSections);
759 return (foundScreen);
760}
761#endif
762
763
764/*
765 * QUOTE from the XFree86 DESIGN document:
766 *
767 * The purpose of this function is to find out all the information
768 * required to determine if the configuration is usable, and to initialise
769 * those parts of the ScrnInfoRec that can be set once at the beginning of
770 * the first server generation.
771 *
772 * (...)
773 *
774 * This includes probing for video memory, clocks, ramdac, and all other
775 * HW info that is needed. It includes determining the depth/bpp/visual
776 * and related info. It includes validating and determining the set of
777 * video modes that will be used (and anything that is required to
778 * determine that).
779 *
780 * This information should be determined in the least intrusive way
781 * possible. The state of the HW must remain unchanged by this function.
782 * Although video memory (including MMIO) may be mapped within this
783 * function, it must be unmapped before returning.
784 *
785 * END QUOTE
786 */
787
788static Bool
789VBOXPreInit(ScrnInfoPtr pScrn, int flags)
790{
791 VBOXPtr pVBox;
792 Gamma gzeros = {0.0, 0.0, 0.0};
793 rgb rzeros = {0, 0, 0};
794 unsigned DispiId;
795
796 TRACE_ENTRY();
797 /* Are we really starting the server, or is this just a dummy run? */
798 if (flags & PROBE_DETECT)
799 return (FALSE);
800
801 xf86DrvMsg(pScrn->scrnIndex, X_INFO,
802 "VirtualBox guest additions video driver version "
803 VBOX_VERSION_STRING "\n");
804
805 /* Get our private data from the ScrnInfoRec structure. */
806 VBOXSetRec(pScrn);
807 pVBox = VBOXGetRec(pScrn);
808 if (!pVBox)
809 return FALSE;
810
811 /* Initialise the guest library */
812 vbox_init(pScrn->scrnIndex, pVBox);
813
814 /* Entity information seems to mean bus information. */
815 pVBox->pEnt = xf86GetEntityInfo(pScrn->entityList[0]);
816
817 /* The ramdac module is needed for the hardware cursor. */
818 if (!xf86LoadSubModule(pScrn, "ramdac"))
819 return FALSE;
820
821 /* The framebuffer module. */
822 if (!xf86LoadSubModule(pScrn, "fb"))
823 return (FALSE);
824
825 if (!xf86LoadSubModule(pScrn, "shadowfb"))
826 return FALSE;
827
828 if (!xf86LoadSubModule(pScrn, "vgahw"))
829 return FALSE;
830
831#ifdef VBOX_DRI
832 /* Load the dri module. */
833 if (!xf86LoadSubModule(pScrn, "dri"))
834 return FALSE;
835#endif
836
837#ifndef PCIACCESS
838 if (pVBox->pEnt->location.type != BUS_PCI)
839 return FALSE;
840
841 pVBox->pciInfo = xf86GetPciInfoForEntity(pVBox->pEnt->index);
842 pVBox->pciTag = pciTag(pVBox->pciInfo->bus,
843 pVBox->pciInfo->device,
844 pVBox->pciInfo->func);
845#endif
846
847 /* Set up our ScrnInfoRec structure to describe our virtual
848 capabilities to X. */
849
850 pScrn->chipset = "vbox";
851 /** @note needed during colourmap initialisation */
852 pScrn->rgbBits = 8;
853
854 /* Let's create a nice, capable virtual monitor. */
855 pScrn->monitor = pScrn->confScreen->monitor;
856 pScrn->monitor->DDC = NULL;
857 pScrn->monitor->nHsync = 1;
858 pScrn->monitor->hsync[0].lo = 1;
859 pScrn->monitor->hsync[0].hi = 10000;
860 pScrn->monitor->nVrefresh = 1;
861 pScrn->monitor->vrefresh[0].lo = 1;
862 pScrn->monitor->vrefresh[0].hi = 100;
863
864 pScrn->progClock = TRUE;
865
866 /* Using the PCI information caused problems with non-powers-of-two
867 sized video RAM configurations */
868 pVBox->cbFBMax = VBoxVideoGetVRAMSize();
869 pScrn->videoRam = pVBox->cbFBMax / 1024;
870
871 /* Check if the chip restricts horizontal resolution or not. */
872 pVBox->fAnyX = VBoxVideoAnyWidthAllowed();
873
874 /* Set up clock information that will support all modes we need. */
875 pScrn->clockRanges = xnfcalloc(sizeof(ClockRange), 1);
876 pScrn->clockRanges->minClock = 1000;
877 pScrn->clockRanges->maxClock = 1000000000;
878 pScrn->clockRanges->clockIndex = -1;
879 pScrn->clockRanges->ClockMulFactor = 1;
880 pScrn->clockRanges->ClockDivFactor = 1;
881
882 /* Query the host for the preferred colour depth */
883 {
884 uint32_t cx = 0, cy = 0, cBits = 0;
885
886 vboxGetPreferredMode(pScrn, 0, &cx, &cy, &cBits);
887 /* We only support 16 and 24 bits depth (i.e. 16 and 32bpp) */
888 if (cBits != 16)
889 cBits = 24;
890 if (!xf86SetDepthBpp(pScrn, cBits, 0, 0, Support32bppFb))
891 return FALSE;
892 vboxAddModes(pScrn, cx, cy);
893 }
894 if (pScrn->bitsPerPixel != 32 && pScrn->bitsPerPixel != 16)
895 {
896 xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
897 "The VBox additions only support 16 and 32bpp graphics modes\n");
898 return FALSE;
899 }
900 xf86PrintDepthBpp(pScrn);
901
902#ifdef VBOXVIDEO_13
903 /* Work around a bug in the original X server modesetting code, which
904 * took the first valid values set to these two as maxima over the
905 * server lifetime. */
906 pScrn->virtualX = 32000;
907 pScrn->virtualY = 32000;
908#else
909 /* We don't validate with xf86ValidateModes and xf86PruneModes as we
910 * already know what we like and what we don't. */
911
912 pScrn->currentMode = pScrn->modes;
913
914 /* Set the right virtual resolution. */
915 pScrn->virtualX = pScrn->currentMode->HDisplay;
916 pScrn->virtualY = pScrn->currentMode->VDisplay;
917
918#endif /* !VBOXVIDEO_13 */
919
920 /* Needed before we initialise DRI. */
921 pVBox->cbLine = vboxLineLength(pScrn, pScrn->virtualX);
922 pScrn->displayWidth = vboxDisplayPitch(pScrn, pVBox->cbLine);
923
924 xf86PrintModes(pScrn);
925
926 /* VGA hardware initialisation */
927 if (!vgaHWGetHWRec(pScrn))
928 return FALSE;
929 /* Must be called before any VGA registers are saved or restored */
930 vgaHWSetStdFuncs(VGAHWPTR(pScrn));
931 vgaHWGetIOBase(VGAHWPTR(pScrn));
932
933 /* Colour weight - we always call this, since we are always in
934 truecolour. */
935 if (!xf86SetWeight(pScrn, rzeros, rzeros))
936 return (FALSE);
937
938 /* visual init */
939 if (!xf86SetDefaultVisual(pScrn, -1))
940 return (FALSE);
941
942 xf86SetGamma(pScrn, gzeros);
943
944 /* Set the DPI. Perhaps we should read this from the host? */
945 xf86SetDpi(pScrn, 96, 96);
946
947 if (pScrn->memPhysBase == 0) {
948#ifdef PCIACCESS
949 pScrn->memPhysBase = pVBox->pciInfo->regions[0].base_addr;
950#else
951 pScrn->memPhysBase = pVBox->pciInfo->memBase[0];
952#endif
953 pScrn->fbOffset = 0;
954 }
955
956 TRACE_EXIT();
957 return (TRUE);
958}
959
960/**
961 * Dummy function for setting the colour palette, which we actually never
962 * touch. However, the server still requires us to provide this.
963 */
964static void
965vboxLoadPalette(ScrnInfoPtr pScrn, int numColors, int *indices,
966 LOCO *colors, VisualPtr pVisual)
967{
968 (void)pScrn; (void) numColors; (void) indices; (void) colors;
969 (void)pVisual;
970}
971
972/*
973 * QUOTE from the XFree86 DESIGN document:
974 *
975 * This is called at the start of each server generation.
976 *
977 * (...)
978 *
979 * Decide which operations need to be placed under resource access
980 * control. (...) Map any video memory or other memory regions. (...)
981 * Save the video card state. (...) Initialise the initial video
982 * mode.
983 *
984 * End QUOTE.
985 */
986static Bool VBOXScreenInit(ScreenPtr pScreen, int argc, char **argv)
987{
988 ScrnInfoPtr pScrn = xf86ScreenToScrn(pScreen);
989 VBOXPtr pVBox = VBOXGetRec(pScrn);
990 VisualPtr visual;
991 unsigned flags;
992
993 TRACE_ENTRY();
994
995 if (!VBOXMapVidMem(pScrn))
996 return (FALSE);
997
998 /* save current video state */
999 VBOXSaveMode(pScrn);
1000
1001 /* mi layer - reset the visual list (?)*/
1002 miClearVisualTypes();
1003 if (!miSetVisualTypes(pScrn->depth, TrueColorMask,
1004 pScrn->rgbBits, TrueColor))
1005 return (FALSE);
1006 if (!miSetPixmapDepths())
1007 return (FALSE);
1008
1009#ifdef VBOX_DRI
1010 pVBox->useDRI = VBOXDRIScreenInit(pScrn, pScreen, pVBox);
1011#endif
1012
1013 if (!fbScreenInit(pScreen, pVBox->base,
1014 pScrn->virtualX, pScrn->virtualY,
1015 pScrn->xDpi, pScrn->yDpi,
1016 pScrn->displayWidth, pScrn->bitsPerPixel))
1017 return (FALSE);
1018
1019 /* Fixup RGB ordering */
1020 /** @note the X server uses this even in true colour. */
1021 visual = pScreen->visuals + pScreen->numVisuals;
1022 while (--visual >= pScreen->visuals) {
1023 if ((visual->class | DynamicClass) == DirectColor) {
1024 visual->offsetRed = pScrn->offset.red;
1025 visual->offsetGreen = pScrn->offset.green;
1026 visual->offsetBlue = pScrn->offset.blue;
1027 visual->redMask = pScrn->mask.red;
1028 visual->greenMask = pScrn->mask.green;
1029 visual->blueMask = pScrn->mask.blue;
1030 }
1031 }
1032
1033 /* must be after RGB ordering fixed */
1034 fbPictureInit(pScreen, 0, 0);
1035
1036 xf86SetBlackWhitePixels(pScreen);
1037 pScrn->vtSema = TRUE;
1038
1039 if (vbox_open (pScrn, pScreen, pVBox)) {
1040 vboxEnableVbva(pScrn);
1041 vboxEnableGraphicsCap(pVBox);
1042 }
1043
1044#ifdef VBOXVIDEO_13
1045 /* Initialise CRTC and output configuration for use with randr1.2. */
1046 xf86CrtcConfigInit(pScrn, &VBOXCrtcConfigFuncs);
1047
1048 {
1049 uint32_t i;
1050
1051 for (i = 0; i < pVBox->cScreens; ++i)
1052 {
1053 char szOutput[256];
1054
1055 /* Setup our virtual CRTCs. */
1056 pVBox->paCrtcs[i] = xf86CrtcCreate(pScrn, &VBOXCrtcFuncs);
1057 pVBox->paCrtcs[i]->driver_private = (void *)(uintptr_t)i;
1058
1059 /* Set up our virtual outputs. */
1060 snprintf(szOutput, sizeof(szOutput), "VBOX%u", i);
1061 pVBox->paOutputs[i] = xf86OutputCreate(pScrn, &VBOXOutputFuncs,
1062 szOutput);
1063
1064 /* We are not interested in the monitor section in the
1065 * configuration file. */
1066 xf86OutputUseScreenMonitor(pVBox->paOutputs[i], FALSE);
1067 pVBox->paOutputs[i]->possible_crtcs = 1 << i;
1068 pVBox->paOutputs[i]->possible_clones = 0;
1069 pVBox->paOutputs[i]->driver_private = (void *)(uintptr_t)i;
1070 TRACE_LOG("Created crtc (%p) and output %s (%p)\n",
1071 (void *)pVBox->paCrtcs[i], szOutput,
1072 (void *)pVBox->paOutputs[i]);
1073 }
1074 }
1075
1076 /* Set a sane minimum and maximum mode size */
1077 xf86CrtcSetSizeRange(pScrn, 64, 64, 32000, 32000);
1078
1079 /* Now create our initial CRTC/output configuration. */
1080 if (!xf86InitialConfiguration(pScrn, TRUE)) {
1081 xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "Initial CRTC configuration failed!\n");
1082 return (FALSE);
1083 }
1084
1085 /* Initialise randr 1.2 mode-setting functions and set first mode.
1086 * Note that the mode won't be usable until the server has resized the
1087 * framebuffer to something reasonable. */
1088 if (!xf86CrtcScreenInit(pScreen)) {
1089 return FALSE;
1090 }
1091
1092 /* Create our VBOX_MODE display properties. */
1093 {
1094 uint32_t i;
1095
1096 for (i = 0; i < pVBox->cScreens; ++i)
1097 {
1098 char csz[] = "0x0";
1099 RRChangeOutputProperty(pVBox->paOutputs[i]->randr_output,
1100 vboxAtomVBoxMode(), XA_STRING, 8,
1101 PropModeReplace, sizeof(csz), csz, TRUE,
1102 FALSE);
1103
1104 }
1105 }
1106
1107 if (!xf86SetDesiredModes(pScrn)) {
1108 return FALSE;
1109 }
1110#else /* !VBOXVIDEO_13 */
1111 /* set first video mode */
1112 if (!VBOXSetMode(pScrn, 0, pScrn->currentMode->HDisplay,
1113 pScrn->currentMode->VDisplay, pScrn->frameX0,
1114 pScrn->frameY0))
1115 return FALSE;
1116 /* Save the size in case we need to re-set it later. */
1117 pVBox->FBSize.cx = pScrn->currentMode->HDisplay;
1118 pVBox->FBSize.cy = pScrn->currentMode->VDisplay;
1119 pVBox->aScreenLocation[0].cx = pScrn->currentMode->HDisplay;
1120 pVBox->aScreenLocation[0].cy = pScrn->currentMode->VDisplay;
1121 pVBox->aScreenLocation[0].x = pScrn->frameX0;
1122 pVBox->aScreenLocation[0].y = pScrn->frameY0;
1123 /* And make sure that a non-current dynamic mode is at the front of the
1124 * list */
1125 vboxWriteHostModes(pScrn, pScrn->currentMode);
1126#endif /* !VBOXVIDEO_13 */
1127
1128 /* software cursor */
1129 miDCInitialize(pScreen, xf86GetPointerScreenFuncs());
1130
1131 /* colourmap code */
1132 if (!miCreateDefColormap(pScreen))
1133 return (FALSE);
1134
1135 if(!xf86HandleColormaps(pScreen, 256, 8, vboxLoadPalette, NULL, 0))
1136 return (FALSE);
1137
1138 pVBox->CloseScreen = pScreen->CloseScreen;
1139 pScreen->CloseScreen = SCRNINDEXAPI(VBOXCloseScreen);
1140#ifdef VBOXVIDEO_13
1141 pScreen->SaveScreen = xf86SaveScreen;
1142#else
1143 pScreen->SaveScreen = VBOXSaveScreen;
1144#endif
1145
1146#ifdef VBOXVIDEO_13
1147 xf86DPMSInit(pScreen, xf86DPMSSet, 0);
1148#else
1149 /* We probably do want to support power management - even if we just use
1150 a dummy function. */
1151 xf86DPMSInit(pScreen, VBOXDisplayPowerManagementSet, 0);
1152#endif
1153
1154 /* Report any unused options (only for the first generation) */
1155 if (serverGeneration == 1)
1156 xf86ShowUnusedOptions(pScrn->scrnIndex, pScrn->options);
1157
1158 if (vbox_cursor_init(pScreen) != TRUE)
1159 xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
1160 "Unable to start the VirtualBox mouse pointer integration with the host system.\n");
1161
1162#ifdef VBOX_DRI
1163 if (pVBox->useDRI)
1164 pVBox->useDRI = VBOXDRIFinishScreenInit(pScreen);
1165#endif
1166 return (TRUE);
1167}
1168
1169static Bool VBOXEnterVT(ScrnInfoPtr pScrn)
1170{
1171 VBOXPtr pVBox = VBOXGetRec(pScrn);
1172
1173 TRACE_ENTRY();
1174 vboxClearVRAM(pScrn, 0, 0);
1175 if (pVBox->fHaveHGSMI)
1176 vboxEnableVbva(pScrn);
1177#ifdef VBOX_DRI
1178 if (pVBox->useDRI)
1179 DRIUnlock(xf86ScrnToScreen(pScrn));
1180#endif
1181 /* Re-assert this in case we had a change request while switched out. */
1182 if (pVBox->FBSize.cx && pVBox->FBSize.cy)
1183 VBOXAdjustScreenPixmap(pScrn, pVBox->FBSize.cx, pVBox->FBSize.cy);
1184#ifdef VBOXVIDEO_13
1185 if (!xf86SetDesiredModes(pScrn))
1186 return FALSE;
1187#else
1188 if (!VBOXSetMode(pScrn, 0, pScrn->currentMode->HDisplay,
1189 pScrn->currentMode->VDisplay, pScrn->frameX0,
1190 pScrn->frameY0))
1191 return FALSE;
1192#endif
1193 return TRUE;
1194}
1195
1196static void VBOXLeaveVT(ScrnInfoPtr pScrn)
1197{
1198 VBOXPtr pVBox = VBOXGetRec(pScrn);
1199
1200 TRACE_ENTRY();
1201 if (pVBox->fHaveHGSMI)
1202 vboxDisableVbva(pScrn);
1203 vboxClearVRAM(pScrn, 0, 0);
1204 VBOXRestoreMode(pScrn);
1205 vboxDisableGraphicsCap(pVBox);
1206#ifdef VBOX_DRI
1207 if (pVBox->useDRI)
1208 DRILock(xf86ScrnToScreen(pScrn), 0);
1209#endif
1210 TRACE_EXIT();
1211}
1212
1213static Bool VBOXCloseScreen(ScreenPtr pScreen)
1214{
1215 ScrnInfoPtr pScrn = xf86ScreenToScrn(pScreen);
1216 VBOXPtr pVBox = VBOXGetRec(pScrn);
1217
1218 if (pScrn->vtSema)
1219 {
1220 if (pVBox->fHaveHGSMI)
1221 vboxDisableVbva(pScrn);
1222 if (pScrn->vtSema)
1223 vboxDisableGraphicsCap(pVBox);
1224 vboxClearVRAM(pScrn, 0, 0);
1225 }
1226#ifdef VBOX_DRI
1227 if (pVBox->useDRI)
1228 VBOXDRICloseScreen(pScreen, pVBox);
1229 pVBox->useDRI = false;
1230#endif
1231
1232 if (pScrn->vtSema) {
1233 VBOXRestoreMode(pScrn);
1234 VBOXUnmapVidMem(pScrn);
1235 }
1236 pScrn->vtSema = FALSE;
1237
1238 /* Do additional bits which are separate for historical reasons */
1239 vbox_close(pScrn, pVBox);
1240
1241 pScreen->CloseScreen = pVBox->CloseScreen;
1242#ifndef XF86_SCRN_INTERFACE
1243 return pScreen->CloseScreen(pScreen->myNum, pScreen);
1244#else
1245 return pScreen->CloseScreen(pScreen);
1246#endif
1247}
1248
1249static Bool VBOXSwitchMode(ScrnInfoPtr pScrn, DisplayModePtr pMode)
1250{
1251 VBOXPtr pVBox;
1252 Bool rc;
1253
1254 TRACE_LOG("HDisplay=%d, VDisplay=%d\n", pMode->HDisplay, pMode->VDisplay);
1255#ifndef VBOXVIDEO_13
1256 pVBox = VBOXGetRec(pScrn);
1257 /* Save the size in case we need to re-set it later. */
1258 pVBox->FBSize.cx = pMode->HDisplay;
1259 pVBox->FBSize.cy = pMode->VDisplay;
1260 pVBox->aScreenLocation[0].cx = pMode->HDisplay;
1261 pVBox->aScreenLocation[0].cy = pMode->VDisplay;
1262 pVBox->aScreenLocation[0].x = pScrn->frameX0;
1263 pVBox->aScreenLocation[0].y = pScrn->frameY0;
1264#endif
1265 if (!pScrn->vtSema)
1266 {
1267 xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
1268 "We do not own the active VT, exiting.\n");
1269 return TRUE;
1270 }
1271#ifdef VBOXVIDEO_13
1272 rc = xf86SetSingleMode(pScrn, pMode, 0);
1273#else
1274 VBOXAdjustScreenPixmap(pScrn, pMode->HDisplay, pMode->VDisplay);
1275 rc = VBOXSetMode(pScrn, 0, pMode->HDisplay, pMode->VDisplay,
1276 pScrn->frameX0, pScrn->frameY0);
1277 if (rc)
1278 {
1279 vboxWriteHostModes(pScrn, pMode);
1280 xf86PrintModes(pScrn);
1281 }
1282 if (rc && !vboxGuestIsSeamless(pScrn))
1283 vboxSaveVideoMode(pScrn, pMode->HDisplay, pMode->VDisplay,
1284 pScrn->bitsPerPixel);
1285#endif
1286 TRACE_LOG("returning %s\n", rc ? "TRUE" : "FALSE");
1287 return rc;
1288}
1289
1290static void VBOXAdjustFrame(ScrnInfoPtr pScrn, int x, int y)
1291{
1292 VBOXPtr pVBox = VBOXGetRec(pScrn);
1293
1294 TRACE_ENTRY();
1295 pVBox->aScreenLocation[0].x = x;
1296 pVBox->aScreenLocation[0].y = y;
1297 /* Don't fiddle with the hardware if we are switched
1298 * to a virtual terminal. */
1299 if (!pScrn->vtSema)
1300 {
1301 xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
1302 "We do not own the active VT, exiting.\n");
1303 return;
1304 }
1305 VBOXSetMode(pScrn, 0, pVBox->aScreenLocation[0].cx,
1306 pVBox->aScreenLocation[0].cy, x, y);
1307 TRACE_EXIT();
1308}
1309
1310static void VBOXFreeScreen(ScrnInfoPtr pScrn)
1311{
1312 /* Destroy the VGA hardware record */
1313 vgaHWFreeHWRec(pScrn);
1314 /* And our private record */
1315 free(pScrn->driverPrivate);
1316 pScrn->driverPrivate = NULL;
1317}
1318
1319static Bool
1320VBOXMapVidMem(ScrnInfoPtr pScrn)
1321{
1322 VBOXPtr pVBox = VBOXGetRec(pScrn);
1323 Bool rc = TRUE;
1324
1325 TRACE_ENTRY();
1326 if (!pVBox->base)
1327 {
1328#ifdef PCIACCESS
1329 (void) pci_device_map_range(pVBox->pciInfo,
1330 pScrn->memPhysBase,
1331 pScrn->videoRam * 1024,
1332 PCI_DEV_MAP_FLAG_WRITABLE,
1333 & pVBox->base);
1334#else
1335 pVBox->base = xf86MapPciMem(pScrn->scrnIndex,
1336 VIDMEM_FRAMEBUFFER,
1337 pVBox->pciTag, pScrn->memPhysBase,
1338 (unsigned) pScrn->videoRam * 1024);
1339#endif
1340 if (!pVBox->base)
1341 rc = FALSE;
1342 }
1343 TRACE_LOG("returning %s\n", rc ? "TRUE" : "FALSE");
1344 return rc;
1345}
1346
1347static void
1348VBOXUnmapVidMem(ScrnInfoPtr pScrn)
1349{
1350 VBOXPtr pVBox = VBOXGetRec(pScrn);
1351
1352 TRACE_ENTRY();
1353 if (pVBox->base == NULL)
1354 return;
1355
1356#ifdef PCIACCESS
1357 (void) pci_device_unmap_range(pVBox->pciInfo,
1358 pVBox->base,
1359 pScrn->videoRam * 1024);
1360#else
1361 xf86UnMapVidMem(pScrn->scrnIndex, pVBox->base,
1362 (unsigned) pScrn->videoRam * 1024);
1363#endif
1364 pVBox->base = NULL;
1365 TRACE_EXIT();
1366}
1367
1368static Bool
1369VBOXSaveScreen(ScreenPtr pScreen, int mode)
1370{
1371 (void)pScreen; (void)mode;
1372 return TRUE;
1373}
1374
1375void
1376VBOXSaveMode(ScrnInfoPtr pScrn)
1377{
1378 VBOXPtr pVBox = VBOXGetRec(pScrn);
1379 vgaRegPtr vgaReg;
1380
1381 TRACE_ENTRY();
1382 vgaReg = &VGAHWPTR(pScrn)->SavedReg;
1383 vgaHWSave(pScrn, vgaReg, VGA_SR_ALL);
1384 pVBox->fSavedVBEMode = VBoxVideoGetModeRegisters(&pVBox->cSavedWidth,
1385 &pVBox->cSavedHeight,
1386 &pVBox->cSavedPitch,
1387 &pVBox->cSavedBPP,
1388 &pVBox->fSavedFlags);
1389}
1390
1391void
1392VBOXRestoreMode(ScrnInfoPtr pScrn)
1393{
1394 VBOXPtr pVBox = VBOXGetRec(pScrn);
1395 vgaRegPtr vgaReg;
1396
1397 TRACE_ENTRY();
1398 vgaReg = &VGAHWPTR(pScrn)->SavedReg;
1399 vgaHWRestore(pScrn, vgaReg, VGA_SR_ALL);
1400 if (pVBox->fSavedVBEMode)
1401 VBoxVideoSetModeRegisters(pVBox->cSavedWidth, pVBox->cSavedHeight,
1402 pVBox->cSavedPitch, pVBox->cSavedBPP,
1403 pVBox->fSavedFlags, 0, 0);
1404 else
1405 VBoxVideoDisableVBE();
1406}
1407
1408static void
1409VBOXDisplayPowerManagementSet(ScrnInfoPtr pScrn, int mode,
1410 int flags)
1411{
1412 (void)pScrn; (void)mode; (void) flags;
1413}
Note: See TracBrowser for help on using the repository browser.

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