VirtualBox

source: vbox/trunk/src/VBox/Devices/Graphics/DevVGAModes.h@ 5627

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

better this time ...

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.1 KB
Line 
1/** @file
2 *
3 * VBox VGA/VESA device:
4 * List of static mode information, containing all "supported" VBE
5 * modes and their 'settings'
6 */
7
8/*
9 * Copyright (C) 2006-2007 innotek GmbH
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License as published by the Free Software Foundation,
15 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
16 * distribution. VirtualBox OSE is distributed in the hope that it will
17 * be useful, but WITHOUT ANY WARRANTY of any kind.
18 */
19
20#ifdef VBE_NEW_DYN_LIST
21
22/* VBE Mode Numbers */
23#define VBE_MODE_VESA_DEFINED 0x0100
24#define VBE_MODE_REFRESH_RATE_USE_CRTC 0x0800
25#define VBE_MODE_LINEAR_FRAME_BUFFER 0x4000
26#define VBE_MODE_PRESERVE_DISPLAY_MEMORY 0x8000
27
28/* VBE GFX Mode Number */
29#define VBE_VESA_MODE_640X400X8 0x100
30#define VBE_VESA_MODE_640X480X8 0x101
31#define VBE_VESA_MODE_800X600X4 0x102
32#define VBE_VESA_MODE_800X600X8 0x103
33#define VBE_VESA_MODE_1024X768X4 0x104
34#define VBE_VESA_MODE_1024X768X8 0x105
35#define VBE_VESA_MODE_1280X1024X4 0x106
36#define VBE_VESA_MODE_1280X1024X8 0x107
37#define VBE_VESA_MODE_320X200X1555 0x10D
38#define VBE_VESA_MODE_320X200X565 0x10E
39#define VBE_VESA_MODE_320X200X888 0x10F
40#define VBE_VESA_MODE_640X480X1555 0x110
41#define VBE_VESA_MODE_640X480X565 0x111
42#define VBE_VESA_MODE_640X480X888 0x112
43#define VBE_VESA_MODE_800X600X1555 0x113
44#define VBE_VESA_MODE_800X600X565 0x114
45#define VBE_VESA_MODE_800X600X888 0x115
46#define VBE_VESA_MODE_1024X768X1555 0x116
47#define VBE_VESA_MODE_1024X768X565 0x117
48#define VBE_VESA_MODE_1024X768X888 0x118
49#define VBE_VESA_MODE_1280X1024X1555 0x119
50#define VBE_VESA_MODE_1280X1024X565 0x11A
51#define VBE_VESA_MODE_1280X1024X888 0x11B
52#define VBE_VESA_MODE_1600X1200X8 0x11C
53#define VBE_VESA_MODE_1600X1200X1555 0x11D
54#define VBE_VESA_MODE_1600X1200X565 0x11E
55#define VBE_VESA_MODE_1600X1200X888 0x11F
56
57/* BOCHS/PLEX86 'own' mode numbers */
58#define VBE_OWN_MODE_320X200X8888 0x120
59#define VBE_OWN_MODE_640X400X8888 0x121
60#define VBE_OWN_MODE_640X480X8888 0x122
61#define VBE_OWN_MODE_800X600X8888 0x123
62#define VBE_OWN_MODE_1024X768X8888 0x124
63#define VBE_OWN_MODE_1280X1024X8888 0x125
64#define VBE_OWN_MODE_320X200X8 0x126
65#define VBE_OWN_MODE_1600X1200X8888 0x127
66#define VBE_OWN_MODE_1152X864X8 0x128
67#define VBE_OWN_MODE_1152X864X1555 0x129
68#define VBE_OWN_MODE_1152X864X565 0x12a
69#define VBE_OWN_MODE_1152X864X888 0x12b
70#define VBE_OWN_MODE_1152X864X8888 0x12c
71
72#define VBE_VESA_MODE_END_OF_LIST 0xFFFF
73
74/* Capabilities */
75#define VBE_CAPABILITY_8BIT_DAC 0x0001
76#define VBE_CAPABILITY_NOT_VGA_COMPATIBLE 0x0002
77#define VBE_CAPABILITY_RAMDAC_USE_BLANK_BIT 0x0004
78#define VBE_CAPABILITY_STEREOSCOPIC_SUPPORT 0x0008
79#define VBE_CAPABILITY_STEREO_VIA_VESA_EVC 0x0010
80
81/* Mode Attributes */
82#define VBE_MODE_ATTRIBUTE_SUPPORTED 0x0001
83#define VBE_MODE_ATTRIBUTE_EXTENDED_INFORMATION_AVAILABLE 0x0002
84#define VBE_MODE_ATTRIBUTE_TTY_BIOS_SUPPORT 0x0004
85#define VBE_MODE_ATTRIBUTE_COLOR_MODE 0x0008
86#define VBE_MODE_ATTRIBUTE_GRAPHICS_MODE 0x0010
87#define VBE_MODE_ATTRIBUTE_NOT_VGA_COMPATIBLE 0x0020
88#define VBE_MODE_ATTRIBUTE_NO_VGA_COMPATIBLE_WINDOW 0x0040
89#define VBE_MODE_ATTRIBUTE_LINEAR_FRAME_BUFFER_MODE 0x0080
90#define VBE_MODE_ATTRIBUTE_DOUBLE_SCAN_MODE 0x0100
91#define VBE_MODE_ATTRIBUTE_INTERLACE_MODE 0x0200
92#define VBE_MODE_ATTRIBUTE_HARDWARE_TRIPLE_BUFFER 0x0400
93#define VBE_MODE_ATTRIBUTE_HARDWARE_STEREOSCOPIC_DISPLAY 0x0800
94#define VBE_MODE_ATTRIBUTE_DUAL_DISPLAY_START_ADDRESS 0x1000
95
96#define VBE_MODE_ATTTRIBUTE_LFB_ONLY ( VBE_MODE_ATTRIBUTE_NO_VGA_COMPATIBLE_WINDOW | VBE_MODE_ATTRIBUTE_LINEAR_FRAME_BUFFER_MODE )
97
98/* Window attributes */
99#define VBE_WINDOW_ATTRIBUTE_RELOCATABLE 0x01
100#define VBE_WINDOW_ATTRIBUTE_READABLE 0x02
101#define VBE_WINDOW_ATTRIBUTE_WRITEABLE 0x04
102
103/* Memory model */
104#define VBE_MEMORYMODEL_TEXT_MODE 0x00
105#define VBE_MEMORYMODEL_CGA_GRAPHICS 0x01
106#define VBE_MEMORYMODEL_HERCULES_GRAPHICS 0x02
107#define VBE_MEMORYMODEL_PLANAR 0x03
108#define VBE_MEMORYMODEL_PACKED_PIXEL 0x04
109#define VBE_MEMORYMODEL_NON_CHAIN_4_256 0x05
110#define VBE_MEMORYMODEL_DIRECT_COLOR 0x06
111#define VBE_MEMORYMODEL_YUV 0x07
112
113/* DirectColorModeInfo */
114#define VBE_DIRECTCOLOR_COLOR_RAMP_PROGRAMMABLE 0x01
115#define VBE_DIRECTCOLOR_RESERVED_BITS_AVAILABLE 0x02
116
117/* Video memory */
118#define VGAMEM_GRAPH 0xA000
119#define VBE_DISPI_BANK_SIZE_KB 64
120#define VBE_DISPI_LFB_PHYSICAL_ADDRESS 0xE0000000
121
122/*
123 * This one is for compactly storing a list of mode info blocks
124 */
125#pragma pack(1) /* pack(1) is important! (you'll get a byte extra for each of the u8 fields elsewise...) */
126typedef struct ModeInfoBlockCompact
127{
128 /* Mandatory information for all VBE revisions */
129 uint16_t ModeAttributes;
130 uint8_t WinAAttributes;
131 uint8_t WinBAttributes;
132 uint16_t WinGranularity;
133 uint16_t WinSize;
134 uint16_t WinASegment;
135 uint16_t WinBSegment;
136 uint32_t WinFuncPtr;
137 uint16_t BytesPerScanLine;
138 /* Mandatory information for VBE 1.2 and above */
139 uint16_t XResolution;
140 uint16_t YResolution;
141 uint8_t XCharSize;
142 uint8_t YCharSize;
143 uint8_t NumberOfPlanes;
144 uint8_t BitsPerPixel;
145 uint8_t NumberOfBanks;
146 uint8_t MemoryModel;
147 uint8_t BankSize;
148 uint8_t NumberOfImagePages;
149 uint8_t Reserved_page;
150 /* Direct Color fields (required for direct/6 and YUV/7 memory models) */
151 uint8_t RedMaskSize;
152 uint8_t RedFieldPosition;
153 uint8_t GreenMaskSize;
154 uint8_t GreenFieldPosition;
155 uint8_t BlueMaskSize;
156 uint8_t BlueFieldPosition;
157 uint8_t RsvdMaskSize;
158 uint8_t RsvdFieldPosition;
159 uint8_t DirectColorModeInfo;
160 /* Mandatory information for VBE 2.0 and above */
161 uint32_t PhysBasePtr;
162 uint32_t OffScreenMemOffset;
163 uint16_t OffScreenMemSize;
164 /* Mandatory information for VBE 3.0 and above */
165 uint16_t LinBytesPerScanLine;
166 uint8_t BnkNumberOfPages;
167 uint8_t LinNumberOfPages;
168 uint8_t LinRedMaskSize;
169 uint8_t LinRedFieldPosition;
170 uint8_t LinGreenMaskSize;
171 uint8_t LinGreenFieldPosition;
172 uint8_t LinBlueMaskSize;
173 uint8_t LinBlueFieldPosition;
174 uint8_t LinRsvdMaskSize;
175 uint8_t LinRsvdFieldPosition;
176 uint32_t MaxPixelClock;
177} ModeInfoBlockCompact;
178
179#pragma pack()
180
181typedef struct ModeInfoListItem
182{
183 uint16_t mode;
184 ModeInfoBlockCompact info;
185} ModeInfoListItem;
186
187#include "vbetables.h"
188
189#define MODE_INFO_SIZE ( sizeof(mode_info_list) / sizeof(ModeInfoListItem) )
190
191#endif /* VBE_NEW_DYN_LIST */
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