VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.h@ 51374

Last change on this file since 51374 was 51242, checked in by vboxsync, 11 years ago

Additions/x11/vboxvideo: change size hint logic to take hints from a root window property and to notice RandR GetScreenInfo requests.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.5 KB
Line 
1/** @file
2 *
3 * VirtualBox X11 Additions graphics driver
4 */
5
6/*
7 * Copyright (C) 2006-2013 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 * --------------------------------------------------------------------
17 *
18 * This code is based on:
19 *
20 * X11 VESA driver
21 *
22 * Copyright (c) 2000 by Conectiva S.A. (http://www.conectiva.com)
23 *
24 * Permission is hereby granted, free of charge, to any person obtaining a
25 * copy of this software and associated documentation files (the "Software"),
26 * to deal in the Software without restriction, including without limitation
27 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
28 * and/or sell copies of the Software, and to permit persons to whom the
29 * Software is furnished to do so, subject to the following conditions:
30 *
31 * The above copyright notice and this permission notice shall be included in
32 * all copies or substantial portions of the Software.
33 *
34 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
35 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
36 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
37 * CONECTIVA LINUX BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
38 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
39 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
40 * SOFTWARE.
41 *
42 * Except as contained in this notice, the name of Conectiva Linux shall
43 * not be used in advertising or otherwise to promote the sale, use or other
44 * dealings in this Software without prior written authorization from
45 * Conectiva Linux.
46 *
47 * Authors: Paulo César Pereira de Andrade <[email protected]>
48 *
49 * $XFree86: xc/programs/Xserver/hw/xfree86/drivers/vesa/vesa.h,v 1.9 2001/05/04 19:05:49 dawes Exp $
50 */
51
52#ifndef _VBOXVIDEO_H_
53#define _VBOXVIDEO_H_
54
55#include <VBox/VBoxVideoGuest.h>
56#include <VBox/VBoxVideo.h>
57
58#ifdef DEBUG
59
60#include <xf86.h>
61
62#define TRACE_ENTRY() \
63do { \
64 xf86Msg(X_INFO, __PRETTY_FUNCTION__); \
65 xf86Msg(X_INFO, ": entering\n"); \
66} while(0)
67#define TRACE_EXIT() \
68do { \
69 xf86Msg(X_INFO, __PRETTY_FUNCTION__); \
70 xf86Msg(X_INFO, ": leaving\n"); \
71} while(0)
72#define TRACE_LOG(...) \
73do { \
74 xf86Msg(X_INFO, __PRETTY_FUNCTION__); \
75 xf86Msg(X_INFO, __VA_ARGS__); \
76} while(0)
77# define TRACE_LINE() do \
78{ \
79 ErrorF ("%s: line %d\n", __FUNCTION__, __LINE__); \
80 } while(0)
81# define XF86ASSERT(expr, out) \
82if (!(expr)) \
83{ \
84 ErrorF ("\nAssertion failed!\n\n"); \
85 ErrorF ("%s\n", #expr); \
86 ErrorF ("at %s (%s:%d)\n", __PRETTY_FUNCTION__, __FILE__, __LINE__); \
87 ErrorF out; \
88 FatalError("Aborting"); \
89}
90#else /* !DEBUG */
91
92#define TRACE_ENTRY() do { } while (0)
93#define TRACE_EXIT() do { } while (0)
94#define TRACE_LOG(...) do { } while (0)
95#define XF86ASSERT(expr, out) do { } while (0)
96
97#endif /* !DEBUG */
98
99#define BOOL_STR(a) ((a) ? "TRUE" : "FALSE")
100
101#include <VBox/Hardware/VBoxVideoVBE.h>
102
103#include "xf86str.h"
104#include "xf86Cursor.h"
105
106#define VBOX_VERSION 4000 /* Why? */
107#define VBOX_NAME "VBoxVideo"
108#define VBOX_DRIVER_NAME "vboxvideo"
109
110#ifdef VBOX_DRI_OLD
111/* DRI support */
112#define _XF86DRI_SERVER_
113/* Hack to work around a libdrm header which is broken on Solaris */
114#define u_int64_t uint64_t
115/* Get rid of a warning due to a broken header file */
116enum drm_bo_type { DRM_BO_TYPE };
117#include "dri.h"
118#undef u_int64_t
119#include "sarea.h"
120#include "GL/glxint.h"
121
122/* For some reason this is not in the header files. */
123extern void GlxSetVisualConfigs(int nconfigs, __GLXvisualConfig *configs,
124 void **configprivs);
125#endif
126
127#define VBOX_VIDEO_MAJOR 1
128#define VBOX_VIDEO_MINOR 0
129#define VBOX_DRM_DRIVER_NAME "vboxvideo" /* For now, as this driver is basically a stub. */
130#define VBOX_DRI_DRIVER_NAME "vboxvideo" /* For starters. */
131#define VBOX_MAX_DRAWABLES 256 /* At random. */
132
133#define VBOXPTR(p) ((VBOXPtr)((p)->driverPrivate))
134
135/** Helper to work round different ways of getting the root window in different
136 * server versions. */
137#if defined(XORG_VERSION_CURRENT) && XORG_VERSION_CURRENT < 700000000 \
138 && XORG_VERSION_CURRENT >= 100900000
139# define ROOT_WINDOW(pScrn) screenInfo.screens[(pScrn)->scrnIndex]->root
140#else
141# define ROOT_WINDOW(pScrn) WindowTable[(pScrn)->scrnIndex]
142#endif
143
144/*XXX*/
145
146typedef struct VBOXRec
147{
148 EntityInfoPtr pEnt;
149#ifdef PCIACCESS
150 struct pci_device *pciInfo;
151#else
152 pciVideoPtr pciInfo;
153 PCITAG pciTag;
154#endif
155 void *base;
156 /** The amount of VRAM available for use as a framebuffer */
157 unsigned long cbFBMax;
158 /** The size of the framebuffer and the VBVA buffers at the end of it. */
159 unsigned long cbView;
160 /** The current line size in bytes */
161 uint32_t cbLine;
162 /** Whether the pre-X-server mode was a VBE mode */
163 bool fSavedVBEMode;
164 /** Paramters of the saved pre-X-server VBE mode, invalid if there is none
165 */
166 uint16_t cSavedWidth, cSavedHeight, cSavedPitch, cSavedBPP, fSavedFlags;
167 CloseScreenProcPtr CloseScreen;
168 /** Default X server procedure for enabling and disabling framebuffer access */
169 xf86EnableDisableFBAccessProc *EnableDisableFBAccess;
170 OptionInfoPtr Options;
171 /** @todo we never actually free this */
172 xf86CursorInfoPtr pCurs;
173 Bool useDevice;
174 Bool forceSWCursor;
175 /** Do we know that the guest can handle absolute co-ordinates? */
176 Bool guestCanAbsolute;
177 /** Does this host support sending graphics commands using HGSMI? */
178 Bool fHaveHGSMI;
179 /** Number of screens attached */
180 uint32_t cScreens;
181 /** Position information for each virtual screen for the purposes of
182 * sending dirty rectangle information to the right one. */
183 RTRECT2 aScreenLocation[VBOX_VIDEO_MAX_SCREENS];
184 /** The last requested framebuffer size. */
185 RTRECTSIZE FBSize;
186 /** Has this screen been disabled by the guest? */
187 Bool afDisabled[VBOX_VIDEO_MAX_SCREENS];
188#ifdef VBOXVIDEO_13
189 /** The virtual crtcs */
190 struct _xf86Crtc *paCrtcs[VBOX_VIDEO_MAX_SCREENS];
191 struct _xf86Output *paOutputs[VBOX_VIDEO_MAX_SCREENS];
192#else
193 /** The original CreateScreenResources procedure which we wrap with our own.
194 */
195 CreateScreenResourcesProcPtr pfnCreateScreenResources;
196#endif
197 /** Offsets of VBVA buffers in video RAM */
198 uint32_t aoffVBVABuffer[VBOX_VIDEO_MAX_SCREENS];
199 /** Context information about the VBVA buffers for each screen */
200 struct VBVABUFFERCONTEXT aVbvaCtx[VBOX_VIDEO_MAX_SCREENS];
201 /** The current preferred resolution for the screen */
202 RTRECTSIZE aPreferredSize[VBOX_VIDEO_MAX_SCREENS];
203 /** HGSMI guest heap context */
204 HGSMIGUESTCOMMANDCONTEXT guestCtx;
205 /** Unrestricted horizontal resolution flag. */
206 Bool fAnyX;
207#ifdef VBOX_DRI
208 Bool useDRI;
209#ifdef VBOX_DRI_OLD
210 int cVisualConfigs;
211 __GLXvisualConfig *pVisualConfigs;
212 DRIInfoRec *pDRIInfo;
213# endif
214 int drmFD;
215#endif
216} VBOXRec, *VBOXPtr;
217
218extern Bool vbox_init(int scrnIndex, VBOXPtr pVBox);
219extern Bool vbox_cursor_init (ScreenPtr pScreen);
220extern Bool vbox_open (ScrnInfoPtr pScrn, ScreenPtr pScreen, VBOXPtr pVBox);
221extern void vbox_close (ScrnInfoPtr pScrn, VBOXPtr pVBox);
222extern Bool vbox_device_available(VBOXPtr pVBox);
223
224extern Bool vboxEnableVbva(ScrnInfoPtr pScrn);
225extern void vboxDisableVbva(ScrnInfoPtr pScrn);
226
227extern unsigned vboxNextStandardMode(ScrnInfoPtr pScrn, unsigned cIndex,
228 uint32_t *pcx, uint32_t *pcy);
229extern void vboxAddModes(ScrnInfoPtr pScrn);
230extern void VBoxInitialiseSizeHints(ScrnInfoPtr pScrn);
231extern void VBoxUpdateSizeHints(ScrnInfoPtr pScrn);
232#ifndef VBOXVIDEO_13
233extern void VBoxSetUpRandR11(ScreenPtr pScreen);
234#endif
235
236/* DRI stuff */
237extern Bool VBOXDRIScreenInit(ScrnInfoPtr pScrn, ScreenPtr pScreen,
238 VBOXPtr pVBox);
239extern Bool VBOXDRIFinishScreenInit(ScreenPtr pScreen);
240extern void VBOXDRIUpdateStride(ScrnInfoPtr pScrn, VBOXPtr pVBox);
241extern void VBOXDRICloseScreen(ScreenPtr pScreen, VBOXPtr pVBox);
242
243/* EDID generation */
244#ifdef VBOXVIDEO_13
245extern Bool VBOXEDIDSet(struct _xf86Output *output, DisplayModePtr pmode);
246#endif
247
248/* Utilities */
249
250static inline VBOXPtr VBOXGetRec(ScrnInfoPtr pScrn)
251{
252 return ((VBOXPtr)pScrn->driverPrivate);
253}
254
255/** Calculate the BPP from the screen depth */
256static inline uint16_t vboxBPP(ScrnInfoPtr pScrn)
257{
258 return pScrn->depth == 24 ? 32 : 16;
259}
260
261/** Calculate the scan line length for a display width */
262static inline int32_t vboxLineLength(ScrnInfoPtr pScrn, int32_t cDisplayWidth)
263{
264 uint32_t cbLine = (cDisplayWidth * vboxBPP(pScrn) / 8 + 3) & ~3;
265 return cbLine < INT32_MAX ? cbLine : INT32_MAX;
266}
267
268/** Calculate the display pitch from the scan line length */
269static inline int32_t vboxDisplayPitch(ScrnInfoPtr pScrn, int32_t cbLine)
270{
271 return cbLine * 8 / vboxBPP(pScrn);
272}
273
274extern void vboxClearVRAM(ScrnInfoPtr pScrn, int32_t cNewX, int32_t cNewY);
275extern Bool VBOXSetMode(ScrnInfoPtr pScrn, unsigned cDisplay, unsigned cWidth,
276 unsigned cHeight, int x, int y);
277extern Bool VBOXAdjustScreenPixmap(ScrnInfoPtr pScrn, int width, int height);
278
279#endif /* _VBOXVIDEO_H_ */
280
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