VirtualBox

source: vbox/trunk/include/VBox/Graphics/HGSMIChSetup.h@ 69955

最後變更 在這個檔案從69955是 69307,由 vboxsync 提交於 7 年 前

include/VBox: scm updates w/ correct MIT text

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 3.4 KB
 
1/* $Id: HGSMIChSetup.h 69307 2017-10-25 13:46:45Z vboxsync $ */
2/** @file
3 * VBox Host Guest Shared Memory Interface (HGSMI), Host/Guest shared part.
4 */
5
6/*
7 * Copyright (C) 2006-2017 Oracle Corporation
8 *
9 * Permission is hereby granted, free of charge, to any person
10 * obtaining a copy of this software and associated documentation
11 * files (the "Software"), to deal in the Software without
12 * restriction, including without limitation the rights to use,
13 * copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following
16 * conditions:
17 *
18 * The above copyright notice and this permission notice shall be
19 * included in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
23 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
25 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
26 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31#ifndef ___VBox_Graphics_HGSMIChSetup_h
32#define ___VBox_Graphics_HGSMIChSetup_h
33
34#include "HGSMIDefs.h"
35
36/* HGSMI setup and configuration channel commands and data structures. */
37/*
38 * Tell the host the location of hgsmi_host_flags structure, where the host
39 * can write information about pending buffers, etc, and which can be quickly
40 * polled by the guest without a need to port IO.
41 */
42#define HGSMI_CC_HOST_FLAGS_LOCATION 0
43
44typedef struct HGSMIBUFFERLOCATION
45{
46 HGSMIOFFSET offLocation;
47 HGSMISIZE cbLocation;
48} HGSMIBUFFERLOCATION;
49AssertCompileSize(HGSMIBUFFERLOCATION, 8);
50
51/* HGSMI setup and configuration data structures. */
52/* host->guest commands pending, should be accessed under FIFO lock only */
53#define HGSMIHOSTFLAGS_COMMANDS_PENDING UINT32_C(0x01)
54/* IRQ is fired, should be accessed under VGAState::lock only */
55#define HGSMIHOSTFLAGS_IRQ UINT32_C(0x02)
56#ifdef VBOX_WITH_WDDM
57/* one or more guest commands is completed, should be accessed under FIFO lock only */
58# define HGSMIHOSTFLAGS_GCOMMAND_COMPLETED UINT32_C(0x04)
59/* watchdog timer interrupt flag (used for debugging), should be accessed under VGAState::lock only */
60# define HGSMIHOSTFLAGS_WATCHDOG UINT32_C(0x08)
61#endif
62/* vsync interrupt flag, should be accessed under VGAState::lock only */
63#define HGSMIHOSTFLAGS_VSYNC UINT32_C(0x10)
64/** monitor hotplug flag, should be accessed under VGAState::lock only */
65#define HGSMIHOSTFLAGS_HOTPLUG UINT32_C(0x20)
66/**
67 * Cursor capability state change flag, should be accessed under
68 * VGAState::lock only. @see VBVACONF32.
69 */
70#define HGSMIHOSTFLAGS_CURSOR_CAPABILITIES UINT32_C(0x40)
71
72typedef struct HGSMIHOSTFLAGS
73{
74 /*
75 * Host flags can be accessed and modified in multiple threads
76 * concurrently, e.g. CrOpenGL HGCM and GUI threads when completing
77 * HGSMI 3D and Video Accel respectively, EMT thread when dealing with
78 * HGSMI command processing, etc.
79 * Besides settings/cleaning flags atomically, some flags have their
80 * own special sync restrictions, see comments for flags above.
81 */
82 volatile uint32_t u32HostFlags;
83 uint32_t au32Reserved[3];
84} HGSMIHOSTFLAGS;
85AssertCompileSize(HGSMIHOSTFLAGS, 16);
86
87#endif
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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