VirtualBox

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

Last change on this file since 49764 was 49628, checked in by vboxsync, 11 years ago

Additions/x11/vboxvideo: try to use KMS driver IOCtls to co-ordinate access to the graphics card.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.8 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/*XXX*/
136
137typedef struct VBOXRec
138{
139 EntityInfoPtr pEnt;
140#ifdef PCIACCESS
141 struct pci_device *pciInfo;
142#else
143 pciVideoPtr pciInfo;
144 PCITAG pciTag;
145#endif
146 void *base;
147 /** The amount of VRAM available for use as a framebuffer */
148 unsigned long cbFBMax;
149 /** The size of the framebuffer and the VBVA buffers at the end of it. */
150 unsigned long cbView;
151 /** The current line size in bytes */
152 uint32_t cbLine;
153 /** Whether the pre-X-server mode was a VBE mode */
154 bool fSavedVBEMode;
155 /** Paramters of the saved pre-X-server VBE mode, invalid if there is none
156 */
157 uint16_t cSavedWidth, cSavedHeight, cSavedPitch, cSavedBPP, fSavedFlags;
158 CloseScreenProcPtr CloseScreen;
159 /** Default X server procedure for enabling and disabling framebuffer access */
160 xf86EnableDisableFBAccessProc *EnableDisableFBAccess;
161 OptionInfoPtr Options;
162 /** @todo we never actually free this */
163 xf86CursorInfoPtr pCurs;
164 Bool useDevice;
165 Bool forceSWCursor;
166 /** Do we know that the guest can handle absolute co-ordinates? */
167 Bool guestCanAbsolute;
168 /** Does this host support sending graphics commands using HGSMI? */
169 Bool fHaveHGSMI;
170 /** Number of screens attached */
171 uint32_t cScreens;
172 /** Position information for each virtual screen for the purposes of
173 * sending dirty rectangle information to the right one. */
174 RTRECT2 aScreenLocation[VBOX_VIDEO_MAX_SCREENS];
175 /** The last requested framebuffer size. */
176 RTRECTSIZE FBSize;
177 /** Has this screen been disabled by the guest? */
178 Bool afDisabled[VBOX_VIDEO_MAX_SCREENS];
179#ifdef VBOXVIDEO_13
180 /** The virtual crtcs */
181 struct _xf86Crtc *paCrtcs[VBOX_VIDEO_MAX_SCREENS];
182 struct _xf86Output *paOutputs[VBOX_VIDEO_MAX_SCREENS];
183#endif
184 /** Offsets of VBVA buffers in video RAM */
185 uint32_t aoffVBVABuffer[VBOX_VIDEO_MAX_SCREENS];
186 /** Context information about the VBVA buffers for each screen */
187 struct VBVABUFFERCONTEXT aVbvaCtx[VBOX_VIDEO_MAX_SCREENS];
188 /** The current preferred resolution for the screen */
189 RTRECTSIZE aPreferredSize[VBOX_VIDEO_MAX_SCREENS];
190 /** HGSMI guest heap context */
191 HGSMIGUESTCOMMANDCONTEXT guestCtx;
192 /** Unrestricted horizontal resolution flag. */
193 Bool fAnyX;
194#ifdef VBOX_DRI
195 Bool useDRI;
196#ifdef VBOX_DRI_OLD
197 int cVisualConfigs;
198 __GLXvisualConfig *pVisualConfigs;
199 DRIInfoRec *pDRIInfo;
200# endif
201 int drmFD;
202#endif
203} VBOXRec, *VBOXPtr;
204
205extern Bool vbox_init(int scrnIndex, VBOXPtr pVBox);
206extern Bool vbox_cursor_init (ScreenPtr pScreen);
207extern Bool vbox_open (ScrnInfoPtr pScrn, ScreenPtr pScreen, VBOXPtr pVBox);
208extern void vbox_close (ScrnInfoPtr pScrn, VBOXPtr pVBox);
209extern Bool vbox_device_available(VBOXPtr pVBox);
210
211extern Bool vboxEnableVbva(ScrnInfoPtr pScrn);
212extern void vboxDisableVbva(ScrnInfoPtr pScrn);
213
214extern Bool vboxEnableGraphicsCap(VBOXPtr pVBox);
215extern Bool vboxDisableGraphicsCap(VBOXPtr pVBox);
216extern Bool vboxGuestIsSeamless(ScrnInfoPtr pScrn);
217
218extern Bool vboxGetDisplayChangeRequest(ScrnInfoPtr pScrn, uint32_t *pcx,
219 uint32_t *pcy, uint32_t *pcBits,
220 uint32_t *piDisplay);
221extern Bool vboxHostLikesVideoMode(ScrnInfoPtr pScrn, uint32_t cx, uint32_t cy, uint32_t cBits);
222extern Bool vboxSaveVideoMode(ScrnInfoPtr pScrn, uint32_t cx, uint32_t cy, uint32_t cBits);
223extern Bool vboxRetrieveVideoMode(ScrnInfoPtr pScrn, uint32_t *pcx, uint32_t *pcy, uint32_t *pcBits);
224extern unsigned vboxNextStandardMode(ScrnInfoPtr pScrn, unsigned cIndex,
225 uint32_t *pcx, uint32_t *pcy,
226 uint32_t *pcBits);
227extern void vboxGetPreferredMode(ScrnInfoPtr pScrn, uint32_t iScreen,
228 uint32_t *pcx, uint32_t *pcy,
229 uint32_t *pcBits);
230extern void vboxWriteHostModes(ScrnInfoPtr pScrn, DisplayModePtr pCurrent);
231extern void vboxAddModes(ScrnInfoPtr pScrn, uint32_t cxInit,
232 uint32_t cyInit);
233
234/* DRI stuff */
235extern Bool VBOXDRIScreenInit(ScrnInfoPtr pScrn, ScreenPtr pScreen,
236 VBOXPtr pVBox);
237extern Bool VBOXDRIFinishScreenInit(ScreenPtr pScreen);
238extern void VBOXDRIUpdateStride(ScrnInfoPtr pScrn, VBOXPtr pVBox);
239extern void VBOXDRICloseScreen(ScreenPtr pScreen, VBOXPtr pVBox);
240
241/* EDID generation */
242#ifdef VBOXVIDEO_13
243extern Bool VBOXEDIDSet(struct _xf86Output *output, DisplayModePtr pmode);
244#endif
245
246/* Utilities */
247
248static inline VBOXPtr VBOXGetRec(ScrnInfoPtr pScrn)
249{
250 return ((VBOXPtr)pScrn->driverPrivate);
251}
252
253/** Calculate the BPP from the screen depth */
254static inline uint16_t vboxBPP(ScrnInfoPtr pScrn)
255{
256 return pScrn->depth == 24 ? 32 : 16;
257}
258
259/** Calculate the scan line length for a display width */
260static inline int32_t vboxLineLength(ScrnInfoPtr pScrn, int32_t cDisplayWidth)
261{
262 uint32_t cbLine = (cDisplayWidth * vboxBPP(pScrn) / 8 + 3) & ~3;
263 return cbLine < INT32_MAX ? cbLine : INT32_MAX;
264}
265
266/** Calculate the display pitch from the scan line length */
267static inline int32_t vboxDisplayPitch(ScrnInfoPtr pScrn, int32_t cbLine)
268{
269 return cbLine * 8 / vboxBPP(pScrn);
270}
271
272extern void vboxClearVRAM(ScrnInfoPtr pScrn, int32_t cNewX, int32_t cNewY);
273extern Bool VBOXSetMode(ScrnInfoPtr pScrn, unsigned cDisplay, unsigned cWidth,
274 unsigned cHeight, int x, int y);
275extern Bool VBOXAdjustScreenPixmap(ScrnInfoPtr pScrn, int width, int height);
276
277#endif /* _VBOXVIDEO_H_ */
278
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