VirtualBox

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

Last change on this file since 4053 was 4053, checked in by vboxsync, 18 years ago

Use the generic VBoxVideo interface in Windows guest video driver.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.3 KB
Line 
1/** @file
2 * VirtualBox Video interface
3 */
4
5/*
6 * Copyright (C) 2006 InnoTek Systemberatung GmbH
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 as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21#ifndef ___VBox_VBoxVideo_h
22#define ___VBox_VBoxVideo_h
23
24#include <iprt/cdefs.h>
25#include <iprt/types.h>
26
27/*
28 * The last 4096 bytes of the guest VRAM contains the generic info for all
29 * DualView chunks: sizes and offsets of chunks. This is filled by miniport.
30 *
31 * Last 4096 bytes of each chunk contain chunk specific data: framebuffer info,
32 * etc. This is used exclusively by the corresponding instance of a display driver.
33 *
34 * The VRAM layout:
35 * Last 4096 bytes - Adapter information area.
36 * 4096 bytes aligned miniport heap (value specified in the config rouded up).
37 * Slack - what left after dividing the VRAM.
38 * 4096 bytes aligned framebuffers:
39 * last 4096 bytes of each framebuffer is the display information area.
40 *
41 * The Virtual Graphics Adapter information in the guest VRAM is stored by the
42 * guest video driver using structures prepended by VBOXVIDEOINFOHDR.
43 *
44 * When the guest driver writes dword 0 to the VBE_DISPI_INDEX_VBOX_VIDEO
45 * the host starts to process the info. The first element at the start of
46 * the 4096 bytes region should be normally be a LINK that points to
47 * actual information chain. That way the guest driver can have some
48 * fixed layout of the information memory block and just rewrite
49 * the link to point to relevant memory chain.
50 *
51 * The processing stops at the END element.
52 *
53 * The host can access the memory only when the port IO is processed.
54 * All data that will be needed later must be copied from these 4096 bytes.
55 * But other VRAM can be used by host until the mode is disabled.
56 *
57 * The guest driver writes dword 0xffffffff to the VBE_DISPI_INDEX_VBOX_VIDEO
58 * to disable the mode.
59 *
60 * VBE_DISPI_INDEX_VBOX_VIDEO is used to read the configuration information
61 * from the host and issue commands to the host.
62 *
63 * The guest writes the VBE_DISPI_INDEX_VBOX_VIDEO index register, the the
64 * following operations with the VBE data register can be performed:
65 *
66 * Operation Result
67 * write 16 bit value NOP
68 * read 16 bit value count of monitors
69 * write 32 bit value sets the vbox command value and the command processed by the host
70 * read 32 bit value result of the last vbox command is returned
71 */
72
73#define VBOX_VIDEO_PRIMARY_SCREEN 0
74#define VBOX_VIDEO_NO_SCREEN ~0
75
76#define VBOX_VIDEO_MAX_SCREENS 64
77
78/* The size of the information. */
79#define VBOX_VIDEO_ADAPTER_INFORMATION_SIZE 4096
80#define VBOX_VIDEO_DISPLAY_INFORMATION_SIZE 4096
81
82
83/* The value for port IO to let the adapter to interpret the adapter memory. */
84#define VBOX_VIDEO_DISABLE_ADAPTER_MEMORY 0xFFFFFFFF
85
86/* The value for port IO to let the adapter to interpret the adapter memory. */
87#define VBOX_VIDEO_INTERPRET_ADAPTER_MEMORY 0x00000000
88
89/* The value for port IO to let the adapter to interpret the display memory.
90 * The display number is encoded in low 16 bits.
91 */
92#define VBOX_VIDEO_INTERPRET_DISPLAY_MEMORY_BASE 0x00010000
93
94
95/* The end of the information. */
96#define VBOX_VIDEO_INFO_TYPE_END 0
97/* Instructs the host to fetch the next VBOXVIDEOINFOHDR at the given offset of VRAM. */
98#define VBOX_VIDEO_INFO_TYPE_LINK 1
99/* Information about a display memory position. */
100#define VBOX_VIDEO_INFO_TYPE_DISPLAY 2
101/* Information about a screen. */
102#define VBOX_VIDEO_INFO_TYPE_SCREEN 3
103/* Information about host notifications for the driver. */
104#define VBOX_VIDEO_INFO_TYPE_HOST_EVENTS 4
105/* Information about non-volatile guest VRAM heap. */
106#define VBOX_VIDEO_INFO_TYPE_NV_HEAP 5
107/* VBVA enable/disable. */
108#define VBOX_VIDEO_INFO_TYPE_VBVA_STATUS 6
109/* VBVA flush. */
110#define VBOX_VIDEO_INFO_TYPE_VBVA_FLUSH 7
111/* Query configuration value. */
112#define VBOX_VIDEO_INFO_TYPE_QUERY_CONF32 8
113
114
115#pragma pack(1)
116typedef struct _VBOXVIDEOINFOHDR
117{
118 uint8_t u8Type;
119 uint8_t u8Reserved;
120 uint16_t u16Length;
121} VBOXVIDEOINFOHDR;
122
123
124typedef struct _VBOXVIDEOINFOLINK
125{
126 /* Relative offset in VRAM */
127 int32_t i32Offset;
128} VBOXVIDEOINFOLINK;
129
130
131/* Resides in adapter info memory. Describes a display VRAM chunk. */
132typedef struct _VBOXVIDEOINFODISPLAY
133{
134 /* Index of the framebuffer assigned by guest. */
135 uint32_t u32Index;
136
137 /* Absolute offset in VRAM of the framebuffer to be displayed on the monitor. */
138 uint32_t u32Offset;
139
140 /* The size of the memory that can be used for the screen. */
141 uint32_t u32FramebufferSize;
142
143 /* The size of the memory that is used for the Display information.
144 * The information is at u32Offset + u32FramebufferSize
145 */
146 uint32_t u32InformationSize;
147
148} VBOXVIDEOINFODISPLAY;
149
150
151/* Resides in display info area, describes the current video mode. */
152#define VBOX_VIDEO_INFO_SCREEN_F_NONE 0x00
153#define VBOX_VIDEO_INFO_SCREEN_F_ACTIVE 0x01
154
155typedef struct _VBOXVIDEOINFOSCREEN
156{
157 /* Physical X origin relative to the primary screen. */
158 int32_t xOrigin;
159
160 /* Physical Y origin relative to the primary screen. */
161 int32_t yOrigin;
162
163 /* The scan line size in bytes. */
164 uint32_t u32LineSize;
165
166 /* Width of the screen. */
167 uint16_t u16Width;
168
169 /* Height of the screen. */
170 uint16_t u16Height;
171
172 /* Color depth. */
173 uint8_t bitsPerPixel;
174
175 /* VBOX_VIDEO_INFO_SCREEN_F_* */
176 uint8_t u8Flags;
177} VBOXVIDEOINFOSCREEN;
178
179/* The guest initializes the structure to 0. The positions of the structure in the
180 * display info area must not be changed, host will update the structure. Guest checks
181 * the events and modifies the structure as a response to host.
182 */
183#define VBOX_VIDEO_INFO_HOST_EVENTS_F_NONE 0x00000000
184#define VBOX_VIDEO_INFO_HOST_EVENTS_F_VRDP_RESET 0x00000080
185
186typedef struct _VBOXVIDEOINFOHOSTEVENTS
187{
188 /* Host events. */
189 uint32_t fu32Events;
190} VBOXVIDEOINFOHOSTEVENTS;
191
192/* Resides in adapter info memory. Describes the non-volatile VRAM heap. */
193typedef struct _VBOXVIDEOINFONVHEAP
194{
195 /* Absolute offset in VRAM of the start of the heap. */
196 uint32_t u32HeapOffset;
197
198 /* The size of the heap. */
199 uint32_t u32HeapSize;
200
201} VBOXVIDEOINFONVHEAP;
202
203/* Display information area. */
204typedef struct _VBOXVIDEOINFOVBVASTATUS
205{
206 /* Absolute offset in VRAM of the start of the VBVA QUEUE. 0 to disable VBVA. */
207 uint32_t u32QueueOffset;
208
209 /* The size of the VBVA QUEUE. 0 to disable VBVA. */
210 uint32_t u32QueueSize;
211
212} VBOXVIDEOINFOVBVASTATUS;
213
214typedef struct _VBOXVIDEOINFOVBVAFLUSH
215{
216 uint32_t u32DataStart;
217
218 uint32_t u32DataEnd;
219
220} VBOXVIDEOINFOVBVAFLUSH;
221
222#define VBOX_VIDEO_QCI32_MONITOR_COUNT 0
223#define VBOX_VIDEO_QCI32_OFFSCREEN_HEAP_SIZE 1
224
225typedef struct _VBOXVIDEOINFOQUERYCONF32
226{
227 uint32_t u32Index;
228
229 uint32_t u32Value;
230
231} VBOXVIDEOINFOQUERYCONF32;
232#pragma pack()
233
234#endif
Note: See TracBrowser for help on using the repository browser.

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