VirtualBox

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

Last change on this file since 4071 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

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