VirtualBox

source: vbox/trunk/include/VBox/Graphics/VBoxVideoVBE.h@ 69202

Last change on this file since 69202 was 69015, checked in by vboxsync, 7 years ago

Fix up header files for graphics hardware.
bugref:9017: Additions/x11: put vboxvideo into upstream X.Org

Make sure that all graphics hardware header files have svn Id tags to be
able to match X.Org files with VirtualBox revisions.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 KB
Line 
1/* $Id: VBoxVideoVBE.h 69015 2017-10-09 12:50:34Z vboxsync $ */
2/** @file
3 * VirtualBox graphics card port I/O definitions
4 */
5
6/*
7 * Copyright (C) 2006-2017 Oracle Corporation
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
23 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25 * OTHER DEALINGS IN THE SOFTWARE.
26 */
27
28#ifndef ___VBox_Graphics_VBoxVideoVBE_h
29#define ___VBox_Graphics_VBoxVideoVBE_h
30
31/* GUEST <-> HOST Communication API */
32
33/** @todo FIXME: Either dynamicly ask host for this or put somewhere high in
34 * physical memory like 0xE0000000. */
35
36#define VBE_DISPI_BANK_ADDRESS 0xA0000
37#define VBE_DISPI_BANK_SIZE_KB 64
38
39#define VBE_DISPI_MAX_XRES 16384
40#define VBE_DISPI_MAX_YRES 16384
41#define VBE_DISPI_MAX_BPP 32
42
43#define VBE_DISPI_IOPORT_INDEX 0x01CE
44#define VBE_DISPI_IOPORT_DATA 0x01CF
45
46#define VBE_DISPI_IOPORT_DAC_WRITE_INDEX 0x03C8
47#define VBE_DISPI_IOPORT_DAC_DATA 0x03C9
48
49#define VBE_DISPI_INDEX_ID 0x0
50#define VBE_DISPI_INDEX_XRES 0x1
51#define VBE_DISPI_INDEX_YRES 0x2
52#define VBE_DISPI_INDEX_BPP 0x3
53#define VBE_DISPI_INDEX_ENABLE 0x4
54#define VBE_DISPI_INDEX_BANK 0x5
55#define VBE_DISPI_INDEX_VIRT_WIDTH 0x6
56#define VBE_DISPI_INDEX_VIRT_HEIGHT 0x7
57#define VBE_DISPI_INDEX_X_OFFSET 0x8
58#define VBE_DISPI_INDEX_Y_OFFSET 0x9
59#define VBE_DISPI_INDEX_VBOX_VIDEO 0xa
60#define VBE_DISPI_INDEX_FB_BASE_HI 0xb
61
62#define VBE_DISPI_ID0 0xB0C0
63#define VBE_DISPI_ID1 0xB0C1
64#define VBE_DISPI_ID2 0xB0C2
65#define VBE_DISPI_ID3 0xB0C3
66#define VBE_DISPI_ID4 0xB0C4
67
68#define VBE_DISPI_ID_VBOX_VIDEO 0xBE00
69/* The VBOX interface id. Indicates support for VBVA shared memory interface. */
70#define VBE_DISPI_ID_HGSMI 0xBE01
71#define VBE_DISPI_ID_ANYX 0xBE02
72
73#define VBE_DISPI_DISABLED 0x00
74#define VBE_DISPI_ENABLED 0x01
75#define VBE_DISPI_GETCAPS 0x02
76#define VBE_DISPI_8BIT_DAC 0x20
77/** @note this definition is a BOCHS legacy, used only in the video BIOS
78 * code and ignored by the emulated hardware. */
79#define VBE_DISPI_LFB_ENABLED 0x40
80#define VBE_DISPI_NOCLEARMEM 0x80
81
82#define VGA_PORT_HGSMI_HOST 0x3b0
83#define VGA_PORT_HGSMI_GUEST 0x3d0
84
85#endif /* !___VBox_Graphics_VBoxVideoVBE_h */
86
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