VirtualBox

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

Last change on this file since 32536 was 32241, checked in by vboxsync, 14 years ago

wddm: 1. guest installler integration (uninstall needs additional fixing), 2. dev/vga saved state fixes, 3. better split video dma and wddm 4. separate wddm wine libs, 5. etc.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 38.7 KB
Line 
1/** @file
2 * VirtualBox Video interface.
3 */
4
5/*
6 * Copyright (C) 2006 Oracle Corporation
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
26#ifndef ___VBox_VBoxVideo_h
27#define ___VBox_VBoxVideo_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31
32#ifdef VBOX_WITH_HGSMI
33#include <VBox/VMMDev.h>
34#endif /* VBOX_WITH_HGSMI */
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#ifdef VBOXWDDM
98# define VBVA_ADAPTER_INFORMATION_SIZE (64*_1K)
99#else
100#define VBVA_ADAPTER_INFORMATION_SIZE (16*_1K)
101#define VBVA_DISPLAY_INFORMATION_SIZE (64*_1K)
102#endif
103#define VBVA_MIN_BUFFER_SIZE (64*_1K)
104#endif /* VBOX_WITH_HGSMI */
105
106
107/* The value for port IO to let the adapter to interpret the adapter memory. */
108#define VBOX_VIDEO_DISABLE_ADAPTER_MEMORY 0xFFFFFFFF
109
110/* The value for port IO to let the adapter to interpret the adapter memory. */
111#define VBOX_VIDEO_INTERPRET_ADAPTER_MEMORY 0x00000000
112
113/* The value for port IO to let the adapter to interpret the display memory.
114 * The display number is encoded in low 16 bits.
115 */
116#define VBOX_VIDEO_INTERPRET_DISPLAY_MEMORY_BASE 0x00010000
117
118
119/* The end of the information. */
120#define VBOX_VIDEO_INFO_TYPE_END 0
121/* Instructs the host to fetch the next VBOXVIDEOINFOHDR at the given offset of VRAM. */
122#define VBOX_VIDEO_INFO_TYPE_LINK 1
123/* Information about a display memory position. */
124#define VBOX_VIDEO_INFO_TYPE_DISPLAY 2
125/* Information about a screen. */
126#define VBOX_VIDEO_INFO_TYPE_SCREEN 3
127/* Information about host notifications for the driver. */
128#define VBOX_VIDEO_INFO_TYPE_HOST_EVENTS 4
129/* Information about non-volatile guest VRAM heap. */
130#define VBOX_VIDEO_INFO_TYPE_NV_HEAP 5
131/* VBVA enable/disable. */
132#define VBOX_VIDEO_INFO_TYPE_VBVA_STATUS 6
133/* VBVA flush. */
134#define VBOX_VIDEO_INFO_TYPE_VBVA_FLUSH 7
135/* Query configuration value. */
136#define VBOX_VIDEO_INFO_TYPE_QUERY_CONF32 8
137
138
139#pragma pack(1)
140typedef struct _VBOXVIDEOINFOHDR
141{
142 uint8_t u8Type;
143 uint8_t u8Reserved;
144 uint16_t u16Length;
145} VBOXVIDEOINFOHDR;
146
147
148typedef struct _VBOXVIDEOINFOLINK
149{
150 /* Relative offset in VRAM */
151 int32_t i32Offset;
152} VBOXVIDEOINFOLINK;
153
154
155/* Resides in adapter info memory. Describes a display VRAM chunk. */
156typedef struct _VBOXVIDEOINFODISPLAY
157{
158 /* Index of the framebuffer assigned by guest. */
159 uint32_t u32Index;
160
161 /* Absolute offset in VRAM of the framebuffer to be displayed on the monitor. */
162 uint32_t u32Offset;
163
164 /* The size of the memory that can be used for the screen. */
165 uint32_t u32FramebufferSize;
166
167 /* The size of the memory that is used for the Display information.
168 * The information is at u32Offset + u32FramebufferSize
169 */
170 uint32_t u32InformationSize;
171
172} VBOXVIDEOINFODISPLAY;
173
174
175/* Resides in display info area, describes the current video mode. */
176#define VBOX_VIDEO_INFO_SCREEN_F_NONE 0x00
177#define VBOX_VIDEO_INFO_SCREEN_F_ACTIVE 0x01
178
179typedef struct _VBOXVIDEOINFOSCREEN
180{
181 /* Physical X origin relative to the primary screen. */
182 int32_t xOrigin;
183
184 /* Physical Y origin relative to the primary screen. */
185 int32_t yOrigin;
186
187 /* The scan line size in bytes. */
188 uint32_t u32LineSize;
189
190 /* Width of the screen. */
191 uint16_t u16Width;
192
193 /* Height of the screen. */
194 uint16_t u16Height;
195
196 /* Color depth. */
197 uint8_t bitsPerPixel;
198
199 /* VBOX_VIDEO_INFO_SCREEN_F_* */
200 uint8_t u8Flags;
201} VBOXVIDEOINFOSCREEN;
202
203/* The guest initializes the structure to 0. The positions of the structure in the
204 * display info area must not be changed, host will update the structure. Guest checks
205 * the events and modifies the structure as a response to host.
206 */
207#define VBOX_VIDEO_INFO_HOST_EVENTS_F_NONE 0x00000000
208#define VBOX_VIDEO_INFO_HOST_EVENTS_F_VRDP_RESET 0x00000080
209
210typedef struct _VBOXVIDEOINFOHOSTEVENTS
211{
212 /* Host events. */
213 uint32_t fu32Events;
214} VBOXVIDEOINFOHOSTEVENTS;
215
216/* Resides in adapter info memory. Describes the non-volatile VRAM heap. */
217typedef struct _VBOXVIDEOINFONVHEAP
218{
219 /* Absolute offset in VRAM of the start of the heap. */
220 uint32_t u32HeapOffset;
221
222 /* The size of the heap. */
223 uint32_t u32HeapSize;
224
225} VBOXVIDEOINFONVHEAP;
226
227/* Display information area. */
228typedef struct _VBOXVIDEOINFOVBVASTATUS
229{
230 /* Absolute offset in VRAM of the start of the VBVA QUEUE. 0 to disable VBVA. */
231 uint32_t u32QueueOffset;
232
233 /* The size of the VBVA QUEUE. 0 to disable VBVA. */
234 uint32_t u32QueueSize;
235
236} VBOXVIDEOINFOVBVASTATUS;
237
238typedef struct _VBOXVIDEOINFOVBVAFLUSH
239{
240 uint32_t u32DataStart;
241
242 uint32_t u32DataEnd;
243
244} VBOXVIDEOINFOVBVAFLUSH;
245
246#define VBOX_VIDEO_QCI32_MONITOR_COUNT 0
247#define VBOX_VIDEO_QCI32_OFFSCREEN_HEAP_SIZE 1
248
249typedef struct _VBOXVIDEOINFOQUERYCONF32
250{
251 uint32_t u32Index;
252
253 uint32_t u32Value;
254
255} VBOXVIDEOINFOQUERYCONF32;
256#pragma pack()
257
258# ifdef VBOX_WITH_VIDEOHWACCEL
259#pragma pack(1)
260
261#define VBOXVHWA_VERSION_MAJ 0
262#define VBOXVHWA_VERSION_MIN 0
263#define VBOXVHWA_VERSION_BLD 6
264#define VBOXVHWA_VERSION_RSV 0
265
266typedef enum
267{
268 VBOXVHWACMD_TYPE_SURF_CANCREATE = 1,
269 VBOXVHWACMD_TYPE_SURF_CREATE,
270 VBOXVHWACMD_TYPE_SURF_DESTROY,
271 VBOXVHWACMD_TYPE_SURF_LOCK,
272 VBOXVHWACMD_TYPE_SURF_UNLOCK,
273 VBOXVHWACMD_TYPE_SURF_BLT,
274 VBOXVHWACMD_TYPE_SURF_FLIP,
275 VBOXVHWACMD_TYPE_SURF_OVERLAY_UPDATE,
276 VBOXVHWACMD_TYPE_SURF_OVERLAY_SETPOSITION,
277 VBOXVHWACMD_TYPE_SURF_COLORKEY_SET,
278 VBOXVHWACMD_TYPE_QUERY_INFO1,
279 VBOXVHWACMD_TYPE_QUERY_INFO2,
280 VBOXVHWACMD_TYPE_ENABLE,
281 VBOXVHWACMD_TYPE_DISABLE,
282 VBOXVHWACMD_TYPE_HH_CONSTRUCT,
283 VBOXVHWACMD_TYPE_HH_RESET
284#ifdef VBOXWDDM
285 , VBOXVHWACMD_TYPE_SURF_GETINFO
286#endif
287} VBOXVHWACMD_TYPE;
288
289/* the command processing was asynch, set by the host to indicate asynch command completion
290 * must not be cleared once set, the command completion is performed by issuing a host->guest completion command
291 * while keeping this flag unchanged */
292#define VBOXVHWACMD_FLAG_HG_ASYNCH 0x00010000
293/* asynch completion is performed by issuing the event */
294#define VBOXVHWACMD_FLAG_GH_ASYNCH_EVENT 0x00000001
295/* issue interrupt on asynch completion */
296#define VBOXVHWACMD_FLAG_GH_ASYNCH_IRQ 0x00000002
297/* guest does not do any op on completion of this command, the host may copy the command and indicate that it does not need the command anymore
298 * by setting the VBOXVHWACMD_FLAG_HG_ASYNCH_RETURNED flag */
299#define VBOXVHWACMD_FLAG_GH_ASYNCH_NOCOMPLETION 0x00000004
300/* the host has copied the VBOXVHWACMD_FLAG_GH_ASYNCH_NOCOMPLETION command and returned it to the guest */
301#define VBOXVHWACMD_FLAG_HG_ASYNCH_RETURNED 0x00020000
302/* this is the host->host cmd, i.e. a configuration command posted by the host to the framebuffer */
303#define VBOXVHWACMD_FLAG_HH_CMD 0x10000000
304
305typedef struct _VBOXVHWACMD
306{
307 VBOXVHWACMD_TYPE enmCmd; /* command type */
308 volatile int32_t rc; /* command result */
309 int32_t iDisplay; /* display index */
310 volatile int32_t Flags; /* ored VBOXVHWACMD_FLAG_xxx values */
311 uint64_t GuestVBVAReserved1; /* field internally used by the guest VBVA cmd handling, must NOT be modified by clients */
312 uint64_t GuestVBVAReserved2; /* field internally used by the guest VBVA cmd handling, must NOT be modified by clients */
313 volatile uint32_t cRefs;
314 int32_t Reserved;
315 union
316 {
317 struct _VBOXVHWACMD *pNext;
318 uint32_t offNext;
319 uint64_t Data; /* the body is 64-bit aligned */
320 } u;
321 char body[1];
322} VBOXVHWACMD;
323
324#define VBOXVHWACMD_HEADSIZE() (RT_OFFSETOF(VBOXVHWACMD, body))
325#define VBOXVHWACMD_SIZE_FROMBODYSIZE(_s) (VBOXVHWACMD_HEADSIZE() + (_s))
326#define VBOXVHWACMD_SIZE(_tCmd) (VBOXVHWACMD_SIZE_FROMBODYSIZE(sizeof(_tCmd)))
327typedef unsigned int VBOXVHWACMD_LENGTH;
328typedef uint64_t VBOXVHWA_SURFHANDLE;
329#define VBOXVHWA_SURFHANDLE_INVALID 0ULL
330#define VBOXVHWACMD_BODY(_p, _t) ((_t*)(_p)->body)
331#define VBOXVHWACMD_HEAD(_pb) ((VBOXVHWACMD*)((uint8_t *)(_pb) - RT_OFFSETOF(VBOXVHWACMD, body)))
332
333typedef struct _VBOXVHWA_RECTL
334{
335 int32_t left;
336 int32_t top;
337 int32_t right;
338 int32_t bottom;
339} VBOXVHWA_RECTL;
340
341typedef struct _VBOXVHWA_COLORKEY
342{
343 uint32_t low;
344 uint32_t high;
345} VBOXVHWA_COLORKEY;
346
347typedef struct _VBOXVHWA_PIXELFORMAT
348{
349 uint32_t flags;
350 uint32_t fourCC;
351 union
352 {
353 uint32_t rgbBitCount;
354 uint32_t yuvBitCount;
355 } c;
356
357 union
358 {
359 uint32_t rgbRBitMask;
360 uint32_t yuvYBitMask;
361 } m1;
362
363 union
364 {
365 uint32_t rgbGBitMask;
366 uint32_t yuvUBitMask;
367 } m2;
368
369 union
370 {
371 uint32_t rgbBBitMask;
372 uint32_t yuvVBitMask;
373 } m3;
374
375 union
376 {
377 uint32_t rgbABitMask;
378 } m4;
379
380 uint32_t Reserved;
381} VBOXVHWA_PIXELFORMAT;
382
383typedef struct _VBOXVHWA_SURFACEDESC
384{
385 uint32_t flags;
386 uint32_t height;
387 uint32_t width;
388 uint32_t pitch;
389 uint32_t sizeX;
390 uint32_t sizeY;
391 uint32_t cBackBuffers;
392 uint32_t Reserved;
393 VBOXVHWA_COLORKEY DstOverlayCK;
394 VBOXVHWA_COLORKEY DstBltCK;
395 VBOXVHWA_COLORKEY SrcOverlayCK;
396 VBOXVHWA_COLORKEY SrcBltCK;
397 VBOXVHWA_PIXELFORMAT PixelFormat;
398 uint32_t surfCaps;
399 uint32_t Reserved2;
400 VBOXVHWA_SURFHANDLE hSurf;
401 uint64_t offSurface;
402} VBOXVHWA_SURFACEDESC;
403
404typedef struct _VBOXVHWA_BLTFX
405{
406 uint32_t flags;
407 uint32_t rop;
408 uint32_t rotationOp;
409 uint32_t rotation;
410 uint32_t fillColor;
411 uint32_t Reserved;
412 VBOXVHWA_COLORKEY DstCK;
413 VBOXVHWA_COLORKEY SrcCK;
414} VBOXVHWA_BLTFX;
415
416typedef struct _VBOXVHWA_OVERLAYFX
417{
418 uint32_t flags;
419 uint32_t Reserved1;
420 uint32_t fxFlags;
421 uint32_t Reserved2;
422 VBOXVHWA_COLORKEY DstCK;
423 VBOXVHWA_COLORKEY SrcCK;
424} VBOXVHWA_OVERLAYFX;
425
426#define VBOXVHWA_CAPS_BLT 0x00000040
427#define VBOXVHWA_CAPS_BLTCOLORFILL 0x04000000
428#define VBOXVHWA_CAPS_BLTFOURCC 0x00000100
429#define VBOXVHWA_CAPS_BLTSTRETCH 0x00000200
430#define VBOXVHWA_CAPS_BLTQUEUE 0x00000080
431
432#define VBOXVHWA_CAPS_OVERLAY 0x00000800
433#define VBOXVHWA_CAPS_OVERLAYFOURCC 0x00002000
434#define VBOXVHWA_CAPS_OVERLAYSTRETCH 0x00004000
435#define VBOXVHWA_CAPS_OVERLAYCANTCLIP 0x00001000
436
437#define VBOXVHWA_CAPS_COLORKEY 0x00400000
438#define VBOXVHWA_CAPS_COLORKEYHWASSIST 0x01000000
439
440#define VBOXVHWA_SCAPS_BACKBUFFER 0x00000004
441#define VBOXVHWA_SCAPS_COMPLEX 0x00000008
442#define VBOXVHWA_SCAPS_FLIP 0x00000010
443#define VBOXVHWA_SCAPS_FRONTBUFFER 0x00000020
444#define VBOXVHWA_SCAPS_OFFSCREENPLAIN 0x00000040
445#define VBOXVHWA_SCAPS_OVERLAY 0x00000080
446#define VBOXVHWA_SCAPS_PRIMARYSURFACE 0x00000200
447#define VBOXVHWA_SCAPS_SYSTEMMEMORY 0x00000800
448#define VBOXVHWA_SCAPS_VIDEOMEMORY 0x00004000
449#define VBOXVHWA_SCAPS_VISIBLE 0x00008000
450#define VBOXVHWA_SCAPS_LOCALVIDMEM 0x10000000
451
452#define VBOXVHWA_PF_PALETTEINDEXED8 0x00000020
453#define VBOXVHWA_PF_RGB 0x00000040
454#define VBOXVHWA_PF_RGBTOYUV 0x00000100
455#define VBOXVHWA_PF_YUV 0x00000200
456#define VBOXVHWA_PF_FOURCC 0x00000004
457
458#define VBOXVHWA_LOCK_DISCARDCONTENTS 0x00002000
459
460#define VBOXVHWA_CFG_ENABLED 0x00000001
461
462#define VBOXVHWA_SD_BACKBUFFERCOUNT 0x00000020
463#define VBOXVHWA_SD_CAPS 0x00000001
464#define VBOXVHWA_SD_CKDESTBLT 0x00004000
465#define VBOXVHWA_SD_CKDESTOVERLAY 0x00002000
466#define VBOXVHWA_SD_CKSRCBLT 0x00010000
467#define VBOXVHWA_SD_CKSRCOVERLAY 0x00008000
468#define VBOXVHWA_SD_HEIGHT 0x00000002
469#define VBOXVHWA_SD_PITCH 0x00000008
470#define VBOXVHWA_SD_PIXELFORMAT 0x00001000
471/*#define VBOXVHWA_SD_REFRESHRATE 0x00040000*/
472#define VBOXVHWA_SD_WIDTH 0x00000004
473
474#define VBOXVHWA_CKEYCAPS_DESTBLT 0x00000001
475#define VBOXVHWA_CKEYCAPS_DESTBLTCLRSPACE 0x00000002
476#define VBOXVHWA_CKEYCAPS_DESTBLTCLRSPACEYUV 0x00000004
477#define VBOXVHWA_CKEYCAPS_DESTBLTYUV 0x00000008
478#define VBOXVHWA_CKEYCAPS_DESTOVERLAY 0x00000010
479#define VBOXVHWA_CKEYCAPS_DESTOVERLAYCLRSPACE 0x00000020
480#define VBOXVHWA_CKEYCAPS_DESTOVERLAYCLRSPACEYUV 0x00000040
481#define VBOXVHWA_CKEYCAPS_DESTOVERLAYONEACTIVE 0x00000080
482#define VBOXVHWA_CKEYCAPS_DESTOVERLAYYUV 0x00000100
483#define VBOXVHWA_CKEYCAPS_SRCBLT 0x00000200
484#define VBOXVHWA_CKEYCAPS_SRCBLTCLRSPACE 0x00000400
485#define VBOXVHWA_CKEYCAPS_SRCBLTCLRSPACEYUV 0x00000800
486#define VBOXVHWA_CKEYCAPS_SRCBLTYUV 0x00001000
487#define VBOXVHWA_CKEYCAPS_SRCOVERLAY 0x00002000
488#define VBOXVHWA_CKEYCAPS_SRCOVERLAYCLRSPACE 0x00004000
489#define VBOXVHWA_CKEYCAPS_SRCOVERLAYCLRSPACEYUV 0x00008000
490#define VBOXVHWA_CKEYCAPS_SRCOVERLAYONEACTIVE 0x00010000
491#define VBOXVHWA_CKEYCAPS_SRCOVERLAYYUV 0x00020000
492#define VBOXVHWA_CKEYCAPS_NOCOSTOVERLAY 0x00040000
493
494#define VBOXVHWA_BLT_COLORFILL 0x00000400
495#define VBOXVHWA_BLT_DDFX 0x00000800
496#define VBOXVHWA_BLT_EXTENDED_FLAGS 0x40000000
497#define VBOXVHWA_BLT_EXTENDED_LINEAR_CONTENT 0x00000004
498#define VBOXVHWA_BLT_EXTENDED_PRESENTATION_STRETCHFACTOR 0x00000010
499#define VBOXVHWA_BLT_KEYDESTOVERRIDE 0x00004000
500#define VBOXVHWA_BLT_KEYSRCOVERRIDE 0x00010000
501#define VBOXVHWA_BLT_LAST_PRESENTATION 0x20000000
502#define VBOXVHWA_BLT_PRESENTATION 0x10000000
503#define VBOXVHWA_BLT_ROP 0x00020000
504
505
506#define VBOXVHWA_OVER_DDFX 0x00080000
507#define VBOXVHWA_OVER_HIDE 0x00000200
508#define VBOXVHWA_OVER_KEYDEST 0x00000400
509#define VBOXVHWA_OVER_KEYDESTOVERRIDE 0x00000800
510#define VBOXVHWA_OVER_KEYSRC 0x00001000
511#define VBOXVHWA_OVER_KEYSRCOVERRIDE 0x00002000
512#define VBOXVHWA_OVER_SHOW 0x00004000
513
514#define VBOXVHWA_CKEY_COLORSPACE 0x00000001
515#define VBOXVHWA_CKEY_DESTBLT 0x00000002
516#define VBOXVHWA_CKEY_DESTOVERLAY 0x00000004
517#define VBOXVHWA_CKEY_SRCBLT 0x00000008
518#define VBOXVHWA_CKEY_SRCOVERLAY 0x00000010
519
520#define VBOXVHWA_BLT_ARITHSTRETCHY 0x00000001
521#define VBOXVHWA_BLT_MIRRORLEFTRIGHT 0x00000002
522#define VBOXVHWA_BLT_MIRRORUPDOWN 0x00000004
523
524#define VBOXVHWA_OVERFX_ARITHSTRETCHY 0x00000001
525#define VBOXVHWA_OVERFX_MIRRORLEFTRIGHT 0x00000002
526#define VBOXVHWA_OVERFX_MIRRORUPDOWN 0x00000004
527
528#define VBOXVHWA_CAPS2_CANRENDERWINDOWED 0x00080000
529#define VBOXVHWA_CAPS2_WIDESURFACES 0x00001000
530#define VBOXVHWA_CAPS2_COPYFOURCC 0x00008000
531/*#define VBOXVHWA_CAPS2_FLIPINTERVAL 0x00200000*/
532/*#define VBOXVHWA_CAPS2_FLIPNOVSYNC 0x00400000*/
533
534
535#define VBOXVHWA_OFFSET64_VOID (UINT64_MAX)
536
537typedef struct _VBOXVHWA_VERSION
538{
539 uint32_t maj;
540 uint32_t min;
541 uint32_t bld;
542 uint32_t reserved;
543} VBOXVHWA_VERSION;
544
545#define VBOXVHWA_VERSION_INIT(_pv) do { \
546 (_pv)->maj = VBOXVHWA_VERSION_MAJ; \
547 (_pv)->min = VBOXVHWA_VERSION_MIN; \
548 (_pv)->bld = VBOXVHWA_VERSION_BLD; \
549 (_pv)->reserved = VBOXVHWA_VERSION_RSV; \
550 } while(0)
551
552typedef struct _VBOXVHWACMD_QUERYINFO1
553{
554 union
555 {
556 struct
557 {
558 VBOXVHWA_VERSION guestVersion;
559 } in;
560
561 struct
562 {
563 uint32_t cfgFlags;
564 uint32_t caps;
565
566 uint32_t caps2;
567 uint32_t colorKeyCaps;
568
569 uint32_t stretchCaps;
570 uint32_t surfaceCaps;
571
572 uint32_t numOverlays;
573 uint32_t curOverlays;
574
575 uint32_t numFourCC;
576 uint32_t reserved;
577 } out;
578 } u;
579} VBOXVHWACMD_QUERYINFO1;
580
581typedef struct _VBOXVHWACMD_QUERYINFO2
582{
583 uint32_t numFourCC;
584 uint32_t FourCC[1];
585} VBOXVHWACMD_QUERYINFO2;
586
587#define VBOXVHWAINFO2_SIZE(_cFourCC) RT_OFFSETOF(VBOXVHWACMD_QUERYINFO2, FourCC[_cFourCC])
588
589typedef struct _VBOXVHWACMD_SURF_CANCREATE
590{
591 VBOXVHWA_SURFACEDESC SurfInfo;
592 union
593 {
594 struct
595 {
596 uint32_t bIsDifferentPixelFormat;
597 uint32_t Reserved;
598 } in;
599
600 struct
601 {
602 int32_t ErrInfo;
603 } out;
604 } u;
605} VBOXVHWACMD_SURF_CANCREATE;
606
607typedef struct _VBOXVHWACMD_SURF_CREATE
608{
609 VBOXVHWA_SURFACEDESC SurfInfo;
610} VBOXVHWACMD_SURF_CREATE;
611
612#ifdef VBOXWDDM
613typedef struct _VBOXVHWACMD_SURF_GETINFO
614{
615 VBOXVHWA_SURFACEDESC SurfInfo;
616} VBOXVHWACMD_SURF_GETINFO;
617#endif
618
619typedef struct _VBOXVHWACMD_SURF_DESTROY
620{
621 union
622 {
623 struct
624 {
625 VBOXVHWA_SURFHANDLE hSurf;
626 } in;
627 } u;
628} VBOXVHWACMD_SURF_DESTROY;
629
630typedef struct _VBOXVHWACMD_SURF_LOCK
631{
632 union
633 {
634 struct
635 {
636 VBOXVHWA_SURFHANDLE hSurf;
637 uint64_t offSurface;
638 uint32_t flags;
639 uint32_t rectValid;
640 VBOXVHWA_RECTL rect;
641 } in;
642 } u;
643} VBOXVHWACMD_SURF_LOCK;
644
645typedef struct _VBOXVHWACMD_SURF_UNLOCK
646{
647 union
648 {
649 struct
650 {
651 VBOXVHWA_SURFHANDLE hSurf;
652 uint32_t xUpdatedMemValid;
653 uint32_t reserved;
654 VBOXVHWA_RECTL xUpdatedMemRect;
655 } in;
656 } u;
657} VBOXVHWACMD_SURF_UNLOCK;
658
659typedef struct _VBOXVHWACMD_SURF_BLT
660{
661 uint64_t DstGuestSurfInfo;
662 uint64_t SrcGuestSurfInfo;
663 union
664 {
665 struct
666 {
667 VBOXVHWA_SURFHANDLE hDstSurf;
668 uint64_t offDstSurface;
669 VBOXVHWA_RECTL dstRect;
670 VBOXVHWA_SURFHANDLE hSrcSurf;
671 uint64_t offSrcSurface;
672 VBOXVHWA_RECTL srcRect;
673 uint32_t flags;
674 uint32_t xUpdatedSrcMemValid;
675 VBOXVHWA_BLTFX desc;
676 VBOXVHWA_RECTL xUpdatedSrcMemRect;
677 } in;
678 } u;
679} VBOXVHWACMD_SURF_BLT;
680
681typedef struct _VBOXVHWACMD_SURF_FLIP
682{
683 uint64_t TargGuestSurfInfo;
684 uint64_t CurrGuestSurfInfo;
685 union
686 {
687 struct
688 {
689 VBOXVHWA_SURFHANDLE hTargSurf;
690 uint64_t offTargSurface;
691 VBOXVHWA_SURFHANDLE hCurrSurf;
692 uint64_t offCurrSurface;
693 uint32_t flags;
694 uint32_t xUpdatedTargMemValid;
695 VBOXVHWA_RECTL xUpdatedTargMemRect;
696 } in;
697 } u;
698} VBOXVHWACMD_SURF_FLIP;
699
700typedef struct _VBOXVHWACMD_SURF_COLORKEY_SET
701{
702 union
703 {
704 struct
705 {
706 VBOXVHWA_SURFHANDLE hSurf;
707 uint64_t offSurface;
708 VBOXVHWA_COLORKEY CKey;
709 uint32_t flags;
710 uint32_t reserved;
711 } in;
712 } u;
713} VBOXVHWACMD_SURF_COLORKEY_SET;
714
715typedef struct _VBOXVHWACMD_SURF_OVERLAY_UPDATE
716{
717 union
718 {
719 struct
720 {
721 VBOXVHWA_SURFHANDLE hDstSurf;
722 uint64_t offDstSurface;
723 VBOXVHWA_RECTL dstRect;
724 VBOXVHWA_SURFHANDLE hSrcSurf;
725 uint64_t offSrcSurface;
726 VBOXVHWA_RECTL srcRect;
727 uint32_t flags;
728 uint32_t xUpdatedSrcMemValid;
729 VBOXVHWA_OVERLAYFX desc;
730 VBOXVHWA_RECTL xUpdatedSrcMemRect;
731 } in;
732 } u;
733}VBOXVHWACMD_SURF_OVERLAY_UPDATE;
734
735typedef struct _VBOXVHWACMD_SURF_OVERLAY_SETPOSITION
736{
737 union
738 {
739 struct
740 {
741 VBOXVHWA_SURFHANDLE hDstSurf;
742 uint64_t offDstSurface;
743 VBOXVHWA_SURFHANDLE hSrcSurf;
744 uint64_t offSrcSurface;
745 uint32_t xPos;
746 uint32_t yPos;
747 uint32_t flags;
748 uint32_t reserved;
749 } in;
750 } u;
751} VBOXVHWACMD_SURF_OVERLAY_SETPOSITION;
752
753typedef struct _VBOXVHWACMD_HH_CONSTRUCT
754{
755 void *pVM;
756 /* VRAM info for the backend to be able to properly translate VRAM offsets */
757 void *pvVRAM;
758 uint32_t cbVRAM;
759} VBOXVHWACMD_HH_CONSTRUCT;
760
761typedef DECLCALLBACK(void) FNVBOXVHWA_HH_CALLBACK(void*);
762typedef FNVBOXVHWA_HH_CALLBACK *PFNVBOXVHWA_HH_CALLBACK;
763
764#define VBOXVHWA_HH_CALLBACK_SET(_pCmd, _pfn, _parg) \
765 do { \
766 (_pCmd)->GuestVBVAReserved1 = (uint64_t)(uintptr_t)(_pfn); \
767 (_pCmd)->GuestVBVAReserved2 = (uint64_t)(uintptr_t)(_parg); \
768 }while(0)
769
770#define VBOXVHWA_HH_CALLBACK_GET(_pCmd) ((PFNVBOXVHWA_HH_CALLBACK)(_pCmd)->GuestVBVAReserved1)
771#define VBOXVHWA_HH_CALLBACK_GET_ARG(_pCmd) ((void*)(_pCmd)->GuestVBVAReserved2)
772
773#pragma pack()
774# endif /* #ifdef VBOX_WITH_VIDEOHWACCEL */
775
776#ifdef VBOX_WITH_HGSMI
777
778/* All structures are without alignment. */
779#pragma pack(1)
780
781typedef struct VBVAHOSTFLAGS
782{
783 uint32_t u32HostEvents;
784 uint32_t u32SupportedOrders;
785} VBVAHOSTFLAGS;
786
787typedef struct _VBVABUFFER
788{
789 VBVAHOSTFLAGS hostFlags;
790
791 /* The offset where the data start in the buffer. */
792 uint32_t off32Data;
793 /* The offset where next data must be placed in the buffer. */
794 uint32_t off32Free;
795
796 /* The queue of record descriptions. */
797 VBVARECORD aRecords[VBVA_MAX_RECORDS];
798 uint32_t indexRecordFirst;
799 uint32_t indexRecordFree;
800
801 /* Space to leave free in the buffer when large partial records are transferred. */
802 uint32_t cbPartialWriteThreshold;
803
804 uint32_t cbData;
805 uint8_t au8Data[1]; /* variable size for the rest of the VBVABUFFER area in VRAM. */
806} VBVABUFFER;
807
808/* guest->host commands */
809#define VBVA_QUERY_CONF32 1
810#define VBVA_SET_CONF32 2
811#define VBVA_INFO_VIEW 3
812#define VBVA_INFO_HEAP 4
813#define VBVA_FLUSH 5
814#define VBVA_INFO_SCREEN 6
815#define VBVA_ENABLE 7
816#define VBVA_MOUSE_POINTER_SHAPE 8
817#ifdef VBOX_WITH_VIDEOHWACCEL
818# define VBVA_VHWA_CMD 9
819#endif /* # ifdef VBOX_WITH_VIDEOHWACCEL */
820#ifdef VBOXVDMA
821# define VBVA_VDMA_CTL 10 /* setup G<->H DMA channel info */
822# define VBVA_VDMA_CMD 11 /* G->H DMA command */
823#endif
824#define VBVA_INFO_CAPS 12 /* informs host about HGSMI caps. see _VBVACAPS below */
825
826/* host->guest commands */
827# define VBVAHG_EVENT 1
828# define VBVAHG_DISPLAY_CUSTOM 2
829#ifdef VBOXVDMA
830# define VBVAHG_SHGSMI_COMPLETION 3
831#endif
832
833# ifdef VBOX_WITH_VIDEOHWACCEL
834#define VBVAHG_DCUSTOM_VHWA_CMDCOMPLETE 1
835#pragma pack(1)
836typedef struct _VBVAHOSTCMDVHWACMDCOMPLETE
837{
838 uint32_t offCmd;
839}VBVAHOSTCMDVHWACMDCOMPLETE;
840#pragma pack()
841# endif /* # ifdef VBOX_WITH_VIDEOHWACCEL */
842
843#pragma pack(1)
844typedef enum
845{
846 VBVAHOSTCMD_OP_EVENT = 1,
847 VBVAHOSTCMD_OP_CUSTOM
848}VBVAHOSTCMD_OP_TYPE;
849
850typedef struct _VBVAHOSTCMDEVENT
851{
852 uint64_t pEvent;
853}VBVAHOSTCMDEVENT;
854
855
856typedef struct _VBVAHOSTCMD
857{
858 /* destination ID if >=0 specifies display index, otherwize the command is directed to the miniport */
859 int32_t iDstID;
860 int32_t customOpCode;
861 union
862 {
863 struct _VBVAHOSTCMD *pNext;
864 uint32_t offNext;
865 uint64_t Data; /* the body is 64-bit aligned */
866 } u;
867 char body[1];
868}VBVAHOSTCMD;
869
870#define VBVAHOSTCMD_SIZE(_size) (sizeof(VBVAHOSTCMD) + (_size))
871#define VBVAHOSTCMD_BODY(_pCmd, _tBody) ((_tBody*)(_pCmd)->body)
872#define VBVAHOSTCMD_HDR(_pBody) ((VBVAHOSTCMD*)(((uint8_t*)_pBody) - RT_OFFSETOF(VBVAHOSTCMD, body)))
873#define VBVAHOSTCMD_HDRSIZE (RT_OFFSETOF(VBVAHOSTCMD, body))
874
875#pragma pack()
876
877/* VBVACONF32::u32Index */
878#define VBOX_VBVA_CONF32_MONITOR_COUNT 0
879#define VBOX_VBVA_CONF32_HOST_HEAP_SIZE 1
880
881typedef struct _VBVACONF32
882{
883 uint32_t u32Index;
884 uint32_t u32Value;
885} VBVACONF32;
886
887typedef struct VBVAINFOVIEW
888{
889 /* Index of the screen, assigned by the guest. */
890 uint32_t u32ViewIndex;
891
892 /* The screen offset in VRAM, the framebuffer starts here. */
893 uint32_t u32ViewOffset;
894
895 /* The size of the VRAM memory that can be used for the view. */
896 uint32_t u32ViewSize;
897
898 /* The recommended maximum size of the VRAM memory for the screen. */
899 uint32_t u32MaxScreenSize;
900} VBVAINFOVIEW;
901
902typedef struct _VBVAINFOHEAP
903{
904 /* Absolute offset in VRAM of the start of the heap. */
905 uint32_t u32HeapOffset;
906
907 /* The size of the heap. */
908 uint32_t u32HeapSize;
909
910} VBVAINFOHEAP;
911
912typedef struct _VBVAFLUSH
913{
914 uint32_t u32Reserved;
915
916} VBVAFLUSH;
917
918/* VBVAINFOSCREEN::u8Flags */
919#define VBVA_SCREEN_F_NONE 0x0000
920#define VBVA_SCREEN_F_ACTIVE 0x0001
921
922typedef struct VBVAINFOSCREEN
923{
924 /* Which view contains the screen. */
925 uint32_t u32ViewIndex;
926
927 /* Physical X origin relative to the primary screen. */
928 int32_t i32OriginX;
929
930 /* Physical Y origin relative to the primary screen. */
931 int32_t i32OriginY;
932
933 /* Offset of visible framebuffer relative to the framebuffer start. */
934 uint32_t u32StartOffset;
935
936 /* The scan line size in bytes. */
937 uint32_t u32LineSize;
938
939 /* Width of the screen. */
940 uint32_t u32Width;
941
942 /* Height of the screen. */
943 uint32_t u32Height;
944
945 /* Color depth. */
946 uint16_t u16BitsPerPixel;
947
948 /* VBVA_SCREEN_F_* */
949 uint16_t u16Flags;
950} VBVAINFOSCREEN;
951
952
953/* VBVAENABLE::u32Flags */
954#define VBVA_F_NONE 0x00000000
955#define VBVA_F_ENABLE 0x00000001
956#define VBVA_F_DISABLE 0x00000002
957#ifdef VBOXWDDM_WITH_VBVA
958/* extended VBVA to be used with WDDM */
959#define VBVA_F_EXTENDED 0x00000004
960/* vbva offset is absolute VRAM offset */
961#define VBVA_F_ABSOFFSET 0x00000008
962#endif
963
964typedef struct _VBVAENABLE
965{
966 uint32_t u32Flags;
967 uint32_t u32Offset;
968 int32_t i32Result;
969} VBVAENABLE;
970
971#ifdef VBOXWDDM_WITH_VBVA
972typedef struct _VBVAENABLE_EX
973{
974 VBVAENABLE Base;
975 uint32_t u32ScreenId;
976} VBVAENABLE_EX;
977#endif
978
979
980typedef struct _VBVAMOUSEPOINTERSHAPE
981{
982 /* The host result. */
983 int32_t i32Result;
984
985 /* VBOX_MOUSE_POINTER_* bit flags. */
986 uint32_t fu32Flags;
987
988 /* X coordinate of the hot spot. */
989 uint32_t u32HotX;
990
991 /* Y coordinate of the hot spot. */
992 uint32_t u32HotY;
993
994 /* Width of the pointer in pixels. */
995 uint32_t u32Width;
996
997 /* Height of the pointer in scanlines. */
998 uint32_t u32Height;
999
1000 /* Pointer data.
1001 *
1002 ****
1003 * The data consists of 1 bpp AND mask followed by 32 bpp XOR (color) mask.
1004 *
1005 * For pointers without alpha channel the XOR mask pixels are 32 bit values: (lsb)BGR0(msb).
1006 * For pointers with alpha channel the XOR mask consists of (lsb)BGRA(msb) 32 bit values.
1007 *
1008 * Guest driver must create the AND mask for pointers with alpha channel, so if host does not
1009 * support alpha, the pointer could be displayed as a normal color pointer. The AND mask can
1010 * be constructed from alpha values. For example alpha value >= 0xf0 means bit 0 in the AND mask.
1011 *
1012 * The AND mask is 1 bpp bitmap with byte aligned scanlines. Size of AND mask,
1013 * therefore, is cbAnd = (width + 7) / 8 * height. The padding bits at the
1014 * end of any scanline are undefined.
1015 *
1016 * The XOR mask follows the AND mask on the next 4 bytes aligned offset:
1017 * uint8_t *pXor = pAnd + (cbAnd + 3) & ~3
1018 * Bytes in the gap between the AND and the XOR mask are undefined.
1019 * XOR mask scanlines have no gap between them and size of XOR mask is:
1020 * cXor = width * 4 * height.
1021 ****
1022 *
1023 * Preallocate 4 bytes for accessing actual data as p->au8Data.
1024 */
1025 uint8_t au8Data[4];
1026
1027} VBVAMOUSEPOINTERSHAPE;
1028
1029/* the guest driver can handle asynch guest cmd completion by reading the command offset from io port */
1030#define VBVACAPS_COMPLETEGCMD_BY_IOREAD 0x00000001
1031/* the guest driver can handle video adapter IRQs */
1032#define VBVACAPS_IRQ 0x00000002
1033typedef struct _VBVACAPS
1034{
1035 int32_t rc;
1036 uint32_t fCaps;
1037} VBVACAPS;
1038
1039#pragma pack()
1040
1041#endif /* VBOX_WITH_HGSMI */
1042
1043#ifdef VBOXWDDM
1044# pragma pack(1)
1045
1046/*
1047 * VBOXSHGSMI made on top HGSMI and allows receiving notifications
1048 * about G->H command completion
1049 */
1050/* SHGSMI command header */
1051typedef struct VBOXSHGSMIHEADER
1052{
1053 uint64_t pvNext; /*<- completion processing queue */
1054 uint32_t fFlags; /*<- see VBOXSHGSMI_FLAG_XXX Flags */
1055 uint32_t cRefs; /*<- command referece count */
1056 uint64_t u64Info1; /*<- contents depends on the fFlags value */
1057 uint64_t u64Info2; /*<- contents depends on the fFlags value */
1058} VBOXSHGSMIHEADER, *PVBOXSHGSMIHEADER;
1059
1060/* the command processing was asynch, set by the host to indicate asynch command completion
1061 * must not be cleared once set, the command completion is performed by issuing a host->guest completion command
1062 * while keeping this flag unchanged */
1063#define VBOXSHGSMI_FLAG_HG_ASYNCH 0x00010000
1064#if 0
1065/* if set - asynch completion is performed by issuing the event,
1066 * if cleared - asynch completion is performed by calling a callback */
1067#define VBOXSHGSMI_FLAG_GH_ASYNCH_EVENT 0x00000001
1068#endif
1069/* issue interrupt on asynch completion, used for critical G->H commands,
1070 * i.e. for completion of which guest is waiting. */
1071#define VBOXSHGSMI_FLAG_GH_ASYNCH_IRQ 0x00000002
1072/* guest does not do any op on completion of this command,
1073 * the host may copy the command and indicate that it does not need the command anymore
1074 * by not setting VBOXSHGSMI_FLAG_HG_ASYNCH */
1075#define VBOXSHGSMI_FLAG_GH_ASYNCH_NOCOMPLETION 0x00000004
1076/* guest requires the command to be processed asynchronously,
1077 * not setting VBOXSHGSMI_FLAG_HG_ASYNCH by the host in this case is treated as command failure */
1078#define VBOXSHGSMI_FLAG_GH_ASYNCH_FORCE 0x00000008
1079/* force IRQ on cmd completion */
1080#define VBOXSHGSMI_FLAG_GH_ASYNCH_IRQ_FORCE 0x00000010
1081/* an IRQ-level callback is associated with the command */
1082#define VBOXSHGSMI_FLAG_GH_ASYNCH_CALLBACK_IRQ 0x00000020
1083/* guest expects this command to be completed synchronously */
1084#define VBOXSHGSMI_FLAG_GH_SYNCH 0x00000040
1085
1086DECLINLINE(uint8_t *) VBoxSHGSMIBufferData (const VBOXSHGSMIHEADER* pHeader)
1087{
1088 return (uint8_t *)pHeader + sizeof (VBOXSHGSMIHEADER);
1089}
1090
1091DECLINLINE(PVBOXSHGSMIHEADER) VBoxSHGSMIBufferHeader (const void *pvData)
1092{
1093 return (PVBOXSHGSMIHEADER)((uint8_t *)pvData - sizeof (VBOXSHGSMIHEADER));
1094}
1095
1096typedef uint64_t VBOXVIDEOOFFSET;
1097
1098#define VBOXVIDEOOFFSET_VOID ((VBOXVIDEOOFFSET)~0)
1099
1100typedef enum
1101{
1102 VBOXVDMACMD_TYPE_UNDEFINED = 0,
1103 VBOXVDMACMD_TYPE_DMA_PRESENT_BLT = 1,
1104 VBOXVDMACMD_TYPE_DMA_BPB_TRANSFER,
1105 VBOXVDMACMD_TYPE_DMA_BPB_FILL,
1106 VBOXVDMACMD_TYPE_DMA_PRESENT_SHADOW2PRIMARY,
1107 VBOXVDMACMD_TYPE_DMA_PRESENT_CLRFILL,
1108 VBOXVDMACMD_TYPE_DMA_PRESENT_FLIP,
1109 VBOXVDMACMD_TYPE_DMA_NOP
1110} VBOXVDMACMD_TYPE;
1111
1112# pragma pack()
1113#endif
1114
1115#ifdef VBOXVDMA
1116# pragma pack(1)
1117
1118/* VDMA - Video DMA */
1119
1120/* VDMA Control API */
1121/* VBOXVDMA_CTL::u32Flags */
1122typedef enum
1123{
1124 VBOXVDMA_CTL_TYPE_NONE = 0,
1125 VBOXVDMA_CTL_TYPE_ENABLE,
1126 VBOXVDMA_CTL_TYPE_DISABLE,
1127 VBOXVDMA_CTL_TYPE_FLUSH
1128} VBOXVDMA_CTL_TYPE;
1129
1130typedef struct VBOXVDMA_CTL
1131{
1132 VBOXVDMA_CTL_TYPE enmCtl;
1133 uint32_t u32Offset;
1134 int32_t i32Result;
1135} VBOXVDMA_CTL, *PVBOXVDMA_CTL;
1136
1137typedef struct VBOXVDMA_RECTL
1138{
1139 int16_t left;
1140 int16_t top;
1141 uint16_t width;
1142 uint16_t height;
1143} VBOXVDMA_RECTL, *PVBOXVDMA_RECTL;
1144
1145typedef enum
1146{
1147 VBOXVDMA_PIXEL_FORMAT_UNKNOWN = 0,
1148 VBOXVDMA_PIXEL_FORMAT_R8G8B8 = 20,
1149 VBOXVDMA_PIXEL_FORMAT_A8R8G8B8 = 21,
1150 VBOXVDMA_PIXEL_FORMAT_X8R8G8B8 = 22,
1151 VBOXVDMA_PIXEL_FORMAT_R5G6B5 = 23,
1152 VBOXVDMA_PIXEL_FORMAT_X1R5G5B5 = 24,
1153 VBOXVDMA_PIXEL_FORMAT_A1R5G5B5 = 25,
1154 VBOXVDMA_PIXEL_FORMAT_A4R4G4B4 = 26,
1155 VBOXVDMA_PIXEL_FORMAT_R3G3B2 = 27,
1156 VBOXVDMA_PIXEL_FORMAT_A8 = 28,
1157 VBOXVDMA_PIXEL_FORMAT_A8R3G3B2 = 29,
1158 VBOXVDMA_PIXEL_FORMAT_X4R4G4B4 = 30,
1159 VBOXVDMA_PIXEL_FORMAT_A2B10G10R10 = 31,
1160 VBOXVDMA_PIXEL_FORMAT_A8B8G8R8 = 32,
1161 VBOXVDMA_PIXEL_FORMAT_X8B8G8R8 = 33,
1162 VBOXVDMA_PIXEL_FORMAT_G16R16 = 34,
1163 VBOXVDMA_PIXEL_FORMAT_A2R10G10B10 = 35,
1164 VBOXVDMA_PIXEL_FORMAT_A16B16G16R16 = 36,
1165 VBOXVDMA_PIXEL_FORMAT_A8P8 = 40,
1166 VBOXVDMA_PIXEL_FORMAT_P8 = 41,
1167 VBOXVDMA_PIXEL_FORMAT_L8 = 50,
1168 VBOXVDMA_PIXEL_FORMAT_A8L8 = 51,
1169 VBOXVDMA_PIXEL_FORMAT_A4L4 = 52,
1170 VBOXVDMA_PIXEL_FORMAT_V8U8 = 60,
1171 VBOXVDMA_PIXEL_FORMAT_L6V5U5 = 61,
1172 VBOXVDMA_PIXEL_FORMAT_X8L8V8U8 = 62,
1173 VBOXVDMA_PIXEL_FORMAT_Q8W8V8U8 = 63,
1174 VBOXVDMA_PIXEL_FORMAT_V16U16 = 64,
1175 VBOXVDMA_PIXEL_FORMAT_W11V11U10 = 65,
1176 VBOXVDMA_PIXEL_FORMAT_A2W10V10U10 = 67
1177} VBOXVDMA_PIXEL_FORMAT;
1178
1179typedef struct VBOXVDMA_SURF_DESC
1180{
1181 uint32_t width;
1182 uint32_t height;
1183 VBOXVDMA_PIXEL_FORMAT format;
1184 uint32_t bpp;
1185 uint32_t pitch;
1186 uint32_t fFlags;
1187} VBOXVDMA_SURF_DESC, *PVBOXVDMA_SURF_DESC;
1188
1189/*typedef uint64_t VBOXVDMAPHADDRESS;*/
1190typedef uint64_t VBOXVDMASURFHANDLE;
1191
1192/* region specified as a rectangle, otherwize it is a size of memory pointed to by phys address */
1193#define VBOXVDMAOPERAND_FLAGS_RECTL 0x1
1194/* Surface handle is valid */
1195#define VBOXVDMAOPERAND_FLAGS_PRIMARY 0x2
1196/* address is offset in VRAM */
1197#define VBOXVDMAOPERAND_FLAGS_VRAMOFFSET 0x4
1198
1199
1200/* VBOXVDMACBUF_DR::phBuf specifies offset in VRAM */
1201#define VBOXVDMACBUF_FLAG_BUF_VRAM_OFFSET 0x00000001
1202/* command buffer follows the VBOXVDMACBUF_DR in VRAM, VBOXVDMACBUF_DR::phBuf is ignored */
1203#define VBOXVDMACBUF_FLAG_BUF_FOLLOWS_DR 0x00000002
1204
1205/*
1206 * We can not submit the DMA command via VRAM since we do not have control over
1207 * DMA command buffer [de]allocation, i.e. we only control the buffer contents.
1208 * In other words the system may call one of our callbacks to fill a command buffer
1209 * with the necessary commands and then discard the buffer w/o any notification.
1210 *
1211 * We have only DMA command buffer physical address at submission time.
1212 *
1213 * so the only way is to */
1214typedef struct VBOXVDMACBUF_DR
1215{
1216 uint32_t fFlags;
1217 uint32_t cbBuf;
1218 uint32_t u32FenceId;
1219 /* RT_SUCCESS() - on success
1220 * VERR_INTERRUPTED - on preemption
1221 * VERR_xxx - on error */
1222 int32_t rc;
1223 uint64_t u64GuestContext;
1224 union
1225 {
1226 uint64_t phBuf;
1227 VBOXVIDEOOFFSET offVramBuf;
1228 } Location;
1229} VBOXVDMACBUF_DR, *PVBOXVDMACBUF_DR;
1230
1231#define VBOXVDMACBUF_DR_TAIL(_pCmd, _t) ( (_t*)(((uint8_t*)(_pCmd)) + sizeof (VBOXVDMACBUF_DR)) )
1232
1233typedef struct VBOXVDMACMD
1234{
1235 VBOXVDMACMD_TYPE enmType;
1236 uint32_t u32CmdSpecific;
1237} VBOXVDMACMD, *PVBOXVDMACMD;
1238
1239#define VBOXVDMACMD_HEADER_SIZE() sizeof (VBOXVDMACMD)
1240#define VBOXVDMACMD_SIZE_FROMBODYSIZE(_s) (VBOXVDMACMD_HEADER_SIZE() + (_s))
1241#define VBOXVDMACMD_SIZE(_t) (VBOXVDMACMD_SIZE_FROMBODYSIZE(sizeof (_t)))
1242#define VBOXVDMACMD_BODY(_pCmd, _t) ( (_t*)(((uint8_t*)(_pCmd)) + VBOXVDMACMD_HEADER_SIZE()) )
1243#define VBOXVDMACMD_BODY_FIELD_OFFSET(_ot, _t, _f) ( (_ot)( VBOXVDMACMD_BODY(0, uint8_t) + RT_OFFSETOF(_t, _f) ) )
1244
1245typedef struct VBOXVDMACMD_DMA_PRESENT_BLT
1246{
1247 VBOXVIDEOOFFSET offSrc;
1248 VBOXVIDEOOFFSET offDst;
1249 VBOXVDMA_SURF_DESC srcDesc;
1250 VBOXVDMA_SURF_DESC dstDesc;
1251 VBOXVDMA_RECTL srcRectl;
1252 VBOXVDMA_RECTL dstRectl;
1253 uint32_t u32Reserved;
1254 uint32_t cDstSubRects;
1255 VBOXVDMA_RECTL aDstSubRects[1];
1256} VBOXVDMACMD_DMA_PRESENT_BLT, *PVBOXVDMACMD_DMA_PRESENT_BLT;
1257
1258typedef struct VBOXVDMACMD_DMA_PRESENT_SHADOW2PRIMARY
1259{
1260 VBOXVDMA_RECTL Rect;
1261} VBOXVDMACMD_DMA_PRESENT_SHADOW2PRIMARY, *PVBOXVDMACMD_DMA_PRESENT_SHADOW2PRIMARY;
1262
1263typedef struct VBOXVDMACMD_DMA_BPB_TRANSFER
1264{
1265 uint32_t cbTransferSize;
1266 uint32_t offTransfer; /* <- applicable for offVramBuf, which always points to the surface start*/
1267 uint32_t fFlags;
1268 uint32_t u32Reserved;
1269 union
1270 {
1271 uint64_t phBuf;
1272 VBOXVIDEOOFFSET offVramBuf;
1273 } Src;
1274 union
1275 {
1276 uint64_t phBuf;
1277 VBOXVIDEOOFFSET offVramBuf;
1278 } Dst;
1279} VBOXVDMACMD_DMA_BPB_TRANSFER, *PVBOXVDMACMD_DMA_BPB_TRANSFER;
1280
1281typedef struct VBOXVDMACMD_DMA_BPB_FILL
1282{
1283 VBOXVIDEOOFFSET offSurf;
1284 uint32_t cbFillSize;
1285 uint32_t u32FillPattern;
1286} VBOXVDMACMD_DMA_BPB_FILL, *PVBOXVDMACMD_DMA_BPB_FILL;
1287
1288# pragma pack()
1289#endif /* #ifdef VBOXVDMA */
1290
1291#ifdef VBOXVDMA_WITH_VBVA
1292# pragma pack(1)
1293
1294typedef struct VBOXVDMAVBVACMD
1295{
1296 HGSMIOFFSET offCmd;
1297} VBOXVDMAVBVACMD;
1298
1299#pragma pack()
1300#endif
1301
1302#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