VirtualBox

source: vbox/trunk/include/VBox/VBoxVideo.h@ 17676

Last change on this file since 17676 was 17676, checked in by vboxsync, 16 years ago

HGSMI: VBVA header updates.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.7 KB
Line 
1/** @file
2 * VirtualBox Video interface
3 */
4
5/*
6 * Copyright (C) 2006 Sun Microsystems, Inc.
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 *
25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef ___VBox_VBoxVideo_h
31#define ___VBox_VBoxVideo_h
32
33#include <iprt/cdefs.h>
34#include <iprt/types.h>
35
36/*
37 * The last 4096 bytes of the guest VRAM contains the generic info for all
38 * DualView chunks: sizes and offsets of chunks. This is filled by miniport.
39 *
40 * Last 4096 bytes of each chunk contain chunk specific data: framebuffer info,
41 * etc. This is used exclusively by the corresponding instance of a display driver.
42 *
43 * The VRAM layout:
44 * Last 4096 bytes - Adapter information area.
45 * 4096 bytes aligned miniport heap (value specified in the config rouded up).
46 * Slack - what left after dividing the VRAM.
47 * 4096 bytes aligned framebuffers:
48 * last 4096 bytes of each framebuffer is the display information area.
49 *
50 * The Virtual Graphics Adapter information in the guest VRAM is stored by the
51 * guest video driver using structures prepended by VBOXVIDEOINFOHDR.
52 *
53 * When the guest driver writes dword 0 to the VBE_DISPI_INDEX_VBOX_VIDEO
54 * the host starts to process the info. The first element at the start of
55 * the 4096 bytes region should be normally be a LINK that points to
56 * actual information chain. That way the guest driver can have some
57 * fixed layout of the information memory block and just rewrite
58 * the link to point to relevant memory chain.
59 *
60 * The processing stops at the END element.
61 *
62 * The host can access the memory only when the port IO is processed.
63 * All data that will be needed later must be copied from these 4096 bytes.
64 * But other VRAM can be used by host until the mode is disabled.
65 *
66 * The guest driver writes dword 0xffffffff to the VBE_DISPI_INDEX_VBOX_VIDEO
67 * to disable the mode.
68 *
69 * VBE_DISPI_INDEX_VBOX_VIDEO is used to read the configuration information
70 * from the host and issue commands to the host.
71 *
72 * The guest writes the VBE_DISPI_INDEX_VBOX_VIDEO index register, the the
73 * following operations with the VBE data register can be performed:
74 *
75 * Operation Result
76 * write 16 bit value NOP
77 * read 16 bit value count of monitors
78 * write 32 bit value sets the vbox command value and the command processed by the host
79 * read 32 bit value result of the last vbox command is returned
80 */
81
82#define VBOX_VIDEO_PRIMARY_SCREEN 0
83#define VBOX_VIDEO_NO_SCREEN ~0
84
85#define VBOX_VIDEO_MAX_SCREENS 64
86
87/* The size of the information. */
88#ifndef VBOX_WITH_HGSMI
89#define VBOX_VIDEO_ADAPTER_INFORMATION_SIZE 4096
90#define VBOX_VIDEO_DISPLAY_INFORMATION_SIZE 4096
91#else
92/*
93 * The minimum HGSMI heap size is PAGE_SIZE (4096 bytes) and is a restriction of the
94 * runtime heapsimple API. Use minimum 2 pages here, because the info area also may
95 * contain other data (for example HGSMIHOSTFLAGS structure).
96 */
97#define VBVA_ADAPTER_INFORMATION_SIZE 8*_1K
98#define VBVA_DISPLAY_INFORMATION_SIZE 8*_1K
99#endif /* VBOX_WITH_HGSMI */
100
101
102/* The value for port IO to let the adapter to interpret the adapter memory. */
103#define VBOX_VIDEO_DISABLE_ADAPTER_MEMORY 0xFFFFFFFF
104
105/* The value for port IO to let the adapter to interpret the adapter memory. */
106#define VBOX_VIDEO_INTERPRET_ADAPTER_MEMORY 0x00000000
107
108/* The value for port IO to let the adapter to interpret the display memory.
109 * The display number is encoded in low 16 bits.
110 */
111#define VBOX_VIDEO_INTERPRET_DISPLAY_MEMORY_BASE 0x00010000
112
113
114/* The end of the information. */
115#define VBOX_VIDEO_INFO_TYPE_END 0
116/* Instructs the host to fetch the next VBOXVIDEOINFOHDR at the given offset of VRAM. */
117#define VBOX_VIDEO_INFO_TYPE_LINK 1
118/* Information about a display memory position. */
119#define VBOX_VIDEO_INFO_TYPE_DISPLAY 2
120/* Information about a screen. */
121#define VBOX_VIDEO_INFO_TYPE_SCREEN 3
122/* Information about host notifications for the driver. */
123#define VBOX_VIDEO_INFO_TYPE_HOST_EVENTS 4
124/* Information about non-volatile guest VRAM heap. */
125#define VBOX_VIDEO_INFO_TYPE_NV_HEAP 5
126/* VBVA enable/disable. */
127#define VBOX_VIDEO_INFO_TYPE_VBVA_STATUS 6
128/* VBVA flush. */
129#define VBOX_VIDEO_INFO_TYPE_VBVA_FLUSH 7
130/* Query configuration value. */
131#define VBOX_VIDEO_INFO_TYPE_QUERY_CONF32 8
132
133
134#pragma pack(1)
135typedef struct _VBOXVIDEOINFOHDR
136{
137 uint8_t u8Type;
138 uint8_t u8Reserved;
139 uint16_t u16Length;
140} VBOXVIDEOINFOHDR;
141
142
143typedef struct _VBOXVIDEOINFOLINK
144{
145 /* Relative offset in VRAM */
146 int32_t i32Offset;
147} VBOXVIDEOINFOLINK;
148
149
150/* Resides in adapter info memory. Describes a display VRAM chunk. */
151typedef struct _VBOXVIDEOINFODISPLAY
152{
153 /* Index of the framebuffer assigned by guest. */
154 uint32_t u32Index;
155
156 /* Absolute offset in VRAM of the framebuffer to be displayed on the monitor. */
157 uint32_t u32Offset;
158
159 /* The size of the memory that can be used for the screen. */
160 uint32_t u32FramebufferSize;
161
162 /* The size of the memory that is used for the Display information.
163 * The information is at u32Offset + u32FramebufferSize
164 */
165 uint32_t u32InformationSize;
166
167} VBOXVIDEOINFODISPLAY;
168
169
170/* Resides in display info area, describes the current video mode. */
171#define VBOX_VIDEO_INFO_SCREEN_F_NONE 0x00
172#define VBOX_VIDEO_INFO_SCREEN_F_ACTIVE 0x01
173
174typedef struct _VBOXVIDEOINFOSCREEN
175{
176 /* Physical X origin relative to the primary screen. */
177 int32_t xOrigin;
178
179 /* Physical Y origin relative to the primary screen. */
180 int32_t yOrigin;
181
182 /* The scan line size in bytes. */
183 uint32_t u32LineSize;
184
185 /* Width of the screen. */
186 uint16_t u16Width;
187
188 /* Height of the screen. */
189 uint16_t u16Height;
190
191 /* Color depth. */
192 uint8_t bitsPerPixel;
193
194 /* VBOX_VIDEO_INFO_SCREEN_F_* */
195 uint8_t u8Flags;
196} VBOXVIDEOINFOSCREEN;
197
198/* The guest initializes the structure to 0. The positions of the structure in the
199 * display info area must not be changed, host will update the structure. Guest checks
200 * the events and modifies the structure as a response to host.
201 */
202#define VBOX_VIDEO_INFO_HOST_EVENTS_F_NONE 0x00000000
203#define VBOX_VIDEO_INFO_HOST_EVENTS_F_VRDP_RESET 0x00000080
204
205typedef struct _VBOXVIDEOINFOHOSTEVENTS
206{
207 /* Host events. */
208 uint32_t fu32Events;
209} VBOXVIDEOINFOHOSTEVENTS;
210
211/* Resides in adapter info memory. Describes the non-volatile VRAM heap. */
212typedef struct _VBOXVIDEOINFONVHEAP
213{
214 /* Absolute offset in VRAM of the start of the heap. */
215 uint32_t u32HeapOffset;
216
217 /* The size of the heap. */
218 uint32_t u32HeapSize;
219
220} VBOXVIDEOINFONVHEAP;
221
222/* Display information area. */
223typedef struct _VBOXVIDEOINFOVBVASTATUS
224{
225 /* Absolute offset in VRAM of the start of the VBVA QUEUE. 0 to disable VBVA. */
226 uint32_t u32QueueOffset;
227
228 /* The size of the VBVA QUEUE. 0 to disable VBVA. */
229 uint32_t u32QueueSize;
230
231} VBOXVIDEOINFOVBVASTATUS;
232
233typedef struct _VBOXVIDEOINFOVBVAFLUSH
234{
235 uint32_t u32DataStart;
236
237 uint32_t u32DataEnd;
238
239} VBOXVIDEOINFOVBVAFLUSH;
240
241#define VBOX_VIDEO_QCI32_MONITOR_COUNT 0
242#define VBOX_VIDEO_QCI32_OFFSCREEN_HEAP_SIZE 1
243
244typedef struct _VBOXVIDEOINFOQUERYCONF32
245{
246 uint32_t u32Index;
247
248 uint32_t u32Value;
249
250} VBOXVIDEOINFOQUERYCONF32;
251#pragma pack()
252
253#ifdef VBOX_WITH_HGSMI
254
255/* All structures are without alignment. */
256#pragma pack(1)
257
258typedef struct _VBVABUFFER
259{
260 uint32_t u32HostEvents;
261 uint32_t u32SupportedOrders;
262
263 /* The offset where the data start in the buffer. */
264 uint32_t off32Data;
265 /* The offset where next data must be placed in the buffer. */
266 uint32_t off32Free;
267
268 /* The queue of record descriptions. */
269 VBVARECORD aRecords[VBVA_MAX_RECORDS];
270 uint32_t indexRecordFirst;
271 uint32_t indexRecordFree;
272
273 /* Space to leave free in the buffer when large partial records are transferred. */
274 uint32_t cbPartialWriteThreshold;
275
276 uint32_t cbData;
277 uint8_t au8Data[1]; /* variable size for the rest of the VBVABUFFER area in VRAM. */
278} VBVABUFFER;
279
280
281#define VBVA_QUERY_CONF32 1
282#define VBVA_SET_CONF32 2
283#define VBVA_INFO_VIEW 3
284#define VBVA_INFO_HEAP 4
285#define VBVA_FLUSH 5
286#define VBVA_INFO_SCREEN 6
287#define VBVA_ENABLE 7
288
289/* VBVACONF32::u32Index */
290#define VBOX_VBVA_CONF32_MONITOR_COUNT 0
291#define VBOX_VBVA_CONF32_HOST_HEAP_SIZE 1
292
293typedef struct _VBVACONF32
294{
295 uint32_t u32Index;
296 uint32_t u32Value;
297} VBVACONF32;
298
299typedef struct _VBVAINFOVIEW
300{
301 /* Index of the screen, assigned by the guest. */
302 uint32_t u32ViewIndex;
303
304 /* The screen offset in VRAM, the framebuffer starts here. */
305 uint32_t u32ViewOffset;
306
307 /* The size of the VRAM memory that can be used for the screen. */
308 uint32_t u32ViewSize;
309
310} VBVAINFOVIEW;
311
312typedef struct _VBVAINFOHEAP
313{
314 /* Absolute offset in VRAM of the start of the heap. */
315 uint32_t u32HeapOffset;
316
317 /* The size of the heap. */
318 uint32_t u32HeapSize;
319
320} VBVAINFOHEAP;
321
322typedef struct _VBVAFLUSH
323{
324 uint32_t u32Reserved;
325
326} VBVAFLUSH;
327
328/* VBVAINFOSCREEN::u8Flags */
329#define VBVA_SCREEN_F_NONE 0x0000
330#define VBVA_SCREEN_F_ACTIVE 0x0001
331
332typedef struct _VBVAINFOSCREEN
333{
334 /* Physical X origin relative to the primary screen. */
335 int32_t i32OriginX;
336
337 /* Physical Y origin relative to the primary screen. */
338 int32_t i32OriginY;
339
340 /* The scan line size in bytes. */
341 uint32_t u32LineSize;
342
343 /* Width of the screen. */
344 uint32_t u32Width;
345
346 /* Height of the screen. */
347 uint32_t u32Height;
348
349 /* Color depth. */
350 uint16_t u16BitsPerPixel;
351
352 /* VBVA_SCREEN_F_* */
353 uint16_t u16Flags;
354} VBVAINFOSCREEN;
355
356
357/* VBVAENABLE::u32Flags */
358#define VBVA_F_NONE 0x00000000
359#define VBVA_F_ENABLE 0x00000001
360#define VBVA_F_DISABLE 0x00000002
361
362typedef struct _VBVAENABLE
363{
364 uint32_t u32Flags;
365 uint32_t u32Offset;
366
367} VBVAENABLE;
368
369#pragma pack()
370
371#endif /* VBOX_WITH_HGSMI */
372
373#endif
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