VESA BIOS Extensions
VESA BIOS Extensions is a VESA standard, currently at version 3, that defines the interface that can be used by software to access compliant video boards at high resolutions and bit depths. This is opposed to the "traditional" int 10h BIOS calls, which are limited to resolutions of 640×480 pixels with 16 color depth or less. VBE is made available through the video card's BIOS, which installs during boot up some interrupt vectors that point to itself.
Most newer cards implement the more capable VBE 3.0 standard. Older versions of VBE provide only a real mode interface, which cannot be used without a significant performance penalty from within protected mode operating systems. Consequently, the VBE standard has almost never been used for writing a video card's drivers; each vendor has thus had to invent a proprietary protocol for communicating with its own video card. Despite this, it is common that a driver thunk out to the real mode interrupt in order to initialize screen modes and gain direct access to a card's linear frame buffer, because these tasks would otherwise require handling many hundreds of proprietary variations that exist from card to card.
Standards
Early VBE
VBE 1.0 was defined in 1989. VBE 1.1 was defined in 1990. VBE 1.2 was defined in 1991. These versions of VBE require real mode to work.VBE defines several new functions called through INT 10H. The function numbering start with AX=4F00, or, for Function 00h. 00h to 05h were defined in VBE 1.0, 06h and 07h in 1.1, and 08h in 1.2.
VESA BIOS Extensions (VBE core) 2.0 November 1994
This standard provides the primary functionality of the VESA BIOS Extensions. It allows applications to determine the capabilities of the graphics card and provides the ability to set the display modes that are found. VBE 2.0 adds some new features above the prior VBE 1.2 standard including linear framebuffer access and protected mode banking. Some of the VBE Core 2.0 features include:; Linear framebuffer access: Enables direct framebuffer access in protected mode as one large area of memory instead of less efficient smaller chunks.
; Protected mode banking: Allows access to the framebuffer from protected mode without "thunking" down to real mode. This is implemented using a new Function 0Ah.
; Super VGA page flipping: Allows higher performance animation to provide for smooth animation for computer games and other high performance graphics programs.
; Super VGA virtual screens: Allows software to set up virtual display resolutions, larger than the actual displayed resolution, and smoothly scroll or pan around the larger image.
; High Color and TrueColor modes: Industry standard 16-bit and 24-bit graphics modes for resolutions from 320×200 up to ×.
VESA BIOS Extensions (VBE core) 3.0 September 1998
A superset of the VBE 2.0 standard. This standard adds refresh rate control, facilities for stereo glasses, improved multi-buffering and other functions to the VBE 2.0 standard.; Triple buffering: Allows high speed applications to perform multi-buffering with less screen flickering and without having to wait for the graphics controller.
; Refresh rate control using GTF timings: This allows applications and operating system utilities to change the refresh rate in a standard way on all VBE 3.0 graphics controllers. Important for stereo applications, since when stereo is enabled, the user's effective refresh rate is cut in half.
; Stereo page flipping: When viewing an application using stereo glasses, software needs to page flip twice as often as normal, because it needs to generate separate images for each eye. This new feature allows stereo compatible software to display properly.
; Hardware stereo sync: Allows stereo software to determine if there is a connector for stereo glasses on the user's graphics card.
A new "Protected Mode Entry Point" was added as an alternative to Function 0Ah.
VBE/accelerator functions (VBE/AF) August 1996
VBE/AF provides a low-level, standard interface to common acceleration functions available on most hardware. Some of the functions defined in the standard are access to hardware cursors, Bit Block Transfers, off screen sprites, hardware panning, drawing and other functions. It is defined to work under protected mode.Supplemental specifications
Supplemental specifications provides device independent interface between application software and Super VGA hardware. Function numbers are assigned by VESA Software Standards Committee.Power management extensions (PM)
DPMS is a hardware standard that allows graphics cards to communicate with DPMS-compliant monitors via a special signaling system that can be used with existing graphics controllers and monitor cables. This signaling system allows the graphics card to tell the monitor to go into a number of different power management or power saving states, which effectively allow the monitor to turn itself off when it is not in use.Flat panel interface extensions (FP)
Allows access to special features in flat panel controllers.Audio interface extensions (AI)
Provides standard to audio services.Currently, the VBE/AI specification defines three device classes: WAVE, MIDI, and VOLUME. Device types not covered:
; CDROM control: which is covered by the Microsoft's CD-ROM Extensions.
; Effects processors: This class of device will be expanded in future version of the VBE/AI specification.
OEM extensions
Provides standard entry to vendor-specific extensions.Display Data Channel (DDC)
The Display Data Channel or DDC is a digital connection between a computer display and a graphics adapter that allows the display to communicate its specifications to the adapter. The standard was created by VESA.Serial Control Interface (SCI)
Provides hardware independent means for operating system and application to read and write data over I²C serial control interface.VBE mode numbers
Although mode number is a 16-bit value, the optional VBE mode numbers are 14 bits wide. Bit 15 is used by VGA BIOS as a flag to clear or preserve display memory.VBE defined mode numbers as follows:
Bit | Meaning |
0–8 | Mode numbers. If bit 8 is 1, it is a VESA defined VBE mode. |
9-10 | Reserved for expansion. Must be set to 0. |
11 | Refresh rate control Select. If set to 1, use user specified CRTC values for refresh rate, otherwise use BIOS default refresh rate. |
12–13 | Reserved for VBE/AF. Must be set to 0. |
14 | Linear/Flat Frame Buffer Select. If set to 1, use linear frame buffer, otherwise use banked frame buffer. |
15 | Preserve Display Memory Select. If set to 1, preserve display memory, otherwise clear display memory. |
Starting in VBE/Core 2.0, VESA no longer defines new VESA mode numbers and no longer requires a device to implement the old numbers. To properly detect information of a screen mode, use Function 01h - Return VBE Mode Information.
Mode 81FFh is a special video mode designed to preserve current memory contents and give access to the entire video memory.
Modes defined by VESA
Beginning with the VBE 2.0 standard, no new modes will be defined by VESA, and old modes are no longer mandatory. The use of defined modes should be considered deprecated: modern video cards may or may not use these mode numbers, and modern software should not use them. The correct way for software to discover available display modes is to obtain a list of modes and then to check each mode until it finds the mode/s it requires.Graphics modes | 320×200 | 640×400 | 640×480 | 800×600 | 1024×768 | 1280×1024 |
16-color palette | 258, 106 | 260 | 262 | |||
256-color palette | 256 | 257 | 259 | 261 | 263 | |
15-bit | 269 | 272 | 275 | 278 | 281 | |
16-bit | 270 | 273 | 276 | 279 | 282 | |
24-bit | 271 | 274 | 277 | 280 | 283 |
Modes 264–268 are text modes. 264 is 80 columns × 60 rows, 265 is 132×25, 266 is 132×43, 267 is 132×50 and 268 is 132×60.
Other commonly available graphics modes
The table below combines the modes defined by VESA along with modes commonly used, but which may not work on all graphics cards as they are not defined by any standard.Graphics modes | 320×200 | 640×400 | 640×480 | 800×600 | 1,024×768 | × | ||||||||||||
16-color palette | 258, 106 | 260 | 262 | |||||||||||||||
256-color palette | 256 | 257 | 259 | 261 | 263 | |||||||||||||
15-bit | 269 | 272 | 275 | 278 | 281 | |||||||||||||
16-bit | 270 | 273 | 276 | 279 | 282 | |||||||||||||
24-bit | 271 | 274 | 277 | 280 | 283 |
Mode detection
A few tools have been written to detect VBE modes available on a system. They generally work by invoking Function 01h, which is more reliable than assuming a table of extented modes as it's part of the device's self-documentation.- hwinfo is the hardware detection tool used in SuSE Linux and in some other Linux distributions. Running
hwinfo --framebuffer
reports graphics information, including VESA modes on a "Mode" line. - mdt is a Linux or DOS tool that detects VBE support and prints video BIOS information.
- The Linux Real Mode Interface has a program that prints out VESA info.
- SciTech Software had a unrelated for DOS that dates back to 1994.
- The x86 "PC" version GNU GRUB 2 has a command for printing out available video modes and for trying a specific mode. They use a built-in table instead of Funcion 01h. For other platforms, including x86 EFI, they are replaced by the more generic and.
Linux video mode numbers
As indicated earlier, the VESA standard defines a limited set of modes; in particular, none above × are covered and, instead, their implementation is completely optional for graphics adapter manufacturers. As vendors are free to utilize whatever additional values they please, this means that, in the table below, the modes may not apply to your graphics adapter!
1: 32-bit is really, but the final 8-bit number is an "empty" alpha channel. It is otherwise equal to 24-bit color. Many GPUs use 32-bit color mode instead of 24-bit mode merely for faster video memory access through 32-bit memory alignment.
vga= also appears to select ×800 for various laptops' displays.
vga= is ×