2009-01-19 08:00:28 +01:00
|
|
|
/** @file
|
2010-03-17 00:34:53 +01:00
|
|
|
The VGA Mini Port Protocol used to set the text display mode of a VGA controller.
|
2007-06-26 10:14:44 +02:00
|
|
|
|
2010-04-23 18:28:26 +02:00
|
|
|
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
2010-03-17 00:34:53 +01:00
|
|
|
This program and the accompanying materials are licensed and made available under
|
|
|
|
the terms and conditions of the BSD License that accompanies this distribution.
|
|
|
|
The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-06-26 10:14:44 +02:00
|
|
|
|
2007-07-23 09:06:23 +02:00
|
|
|
**/
|
2007-06-26 10:14:44 +02:00
|
|
|
|
|
|
|
#ifndef __VGA_MINI_PORT_H_
|
|
|
|
#define __VGA_MINI_PORT_H_
|
|
|
|
|
2009-07-03 02:37:42 +02:00
|
|
|
///
|
2010-03-17 00:34:53 +01:00
|
|
|
/// Global ID for the EFI_VGA_MINI_PORT_PROTOCOL.
|
2009-07-03 02:37:42 +02:00
|
|
|
///
|
2007-06-26 10:14:44 +02:00
|
|
|
#define EFI_VGA_MINI_PORT_PROTOCOL_GUID \
|
|
|
|
{ \
|
|
|
|
0xc7735a2f, 0x88f5, 0x4882, {0xae, 0x63, 0xfa, 0xac, 0x8c, 0x8b, 0x86, 0xb3 } \
|
|
|
|
}
|
|
|
|
|
2009-07-03 02:37:42 +02:00
|
|
|
///
|
2010-03-17 00:34:53 +01:00
|
|
|
/// Forward declaration for the EFI_VGA_MINI_PORT_PROTOCOL.
|
2009-07-03 02:37:42 +02:00
|
|
|
///
|
2007-06-26 10:14:44 +02:00
|
|
|
typedef struct _EFI_VGA_MINI_PORT_PROTOCOL EFI_VGA_MINI_PORT_PROTOCOL;
|
|
|
|
|
2008-04-10 09:13:54 +02:00
|
|
|
/**
|
2009-07-03 02:37:42 +02:00
|
|
|
Sets the text display mode of a VGA controller.
|
2008-04-10 09:13:54 +02:00
|
|
|
|
2009-07-03 02:37:42 +02:00
|
|
|
Sets the text display mode of the VGA controller to the mode specified by
|
|
|
|
ModeNumber. A ModeNumber of 0 is a request for an 80x25 text mode. A
|
|
|
|
ModeNumber of 1 is a request for an 80x50 text mode. If ModeNumber is greater
|
|
|
|
than MaxModeNumber, then EFI_UNSUPPORTED is returned. If the VGA controller
|
|
|
|
is not functioning properly, then EFI_DEVICE_ERROR is returned. If the VGA
|
|
|
|
controller is sucessfully set to the mode number specified by ModeNumber, then
|
|
|
|
EFI_SUCCESS is returned.
|
|
|
|
|
|
|
|
@param[in] This A pointer to the EFI_VGA_MINI_PORT_PROTOCOL instance.
|
|
|
|
@param[in] ModeNumber The requested mode number. 0 for 80x25. 1 for 80x5.
|
2008-04-10 09:13:54 +02:00
|
|
|
|
2010-03-17 00:34:53 +01:00
|
|
|
@retval EFI_SUCCESS The mode number was set.
|
2009-07-03 02:37:42 +02:00
|
|
|
@retval EFI_UNSUPPORTED The mode number specified by ModeNumber is not supported.
|
|
|
|
@retval EFI_DEVICE_ERROR The device is not functioning properly.
|
2008-04-10 09:13:54 +02:00
|
|
|
|
|
|
|
**/
|
2007-06-26 10:14:44 +02:00
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
2009-07-03 02:37:42 +02:00
|
|
|
(EFIAPI *EFI_VGA_MINI_PORT_SET_MODE)(
|
|
|
|
IN EFI_VGA_MINI_PORT_PROTOCOL *This,
|
|
|
|
IN UINTN ModeNumber
|
2007-06-26 10:14:44 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
struct _EFI_VGA_MINI_PORT_PROTOCOL {
|
|
|
|
EFI_VGA_MINI_PORT_SET_MODE SetMode;
|
2009-07-03 02:37:42 +02:00
|
|
|
///
|
|
|
|
/// MMIO base address of the VGA text mode framebuffer. Typically set to 0xB8000.
|
|
|
|
///
|
2007-06-26 10:14:44 +02:00
|
|
|
UINT64 VgaMemoryOffset;
|
2009-07-03 02:37:42 +02:00
|
|
|
///
|
2009-07-15 15:32:34 +02:00
|
|
|
/// I/O Port address for the VGA CRTC address register. Typically set to 0x3D4.
|
2009-07-03 02:37:42 +02:00
|
|
|
///
|
2007-06-26 10:14:44 +02:00
|
|
|
UINT64 CrtcAddressRegisterOffset;
|
2009-07-03 02:37:42 +02:00
|
|
|
///
|
|
|
|
/// I/O Port address for the VGA CRTC data register. Typically set to 0x3D5.
|
|
|
|
///
|
2007-06-26 10:14:44 +02:00
|
|
|
UINT64 CrtcDataRegisterOffset;
|
2009-07-03 02:37:42 +02:00
|
|
|
///
|
|
|
|
/// PCI Controller MMIO BAR index of the VGA text mode frame buffer. Typically
|
|
|
|
/// set to EFI_PCI_IO_PASS_THROUGH_BAR
|
|
|
|
///
|
2007-06-26 10:14:44 +02:00
|
|
|
UINT8 VgaMemoryBar;
|
2009-07-03 02:37:42 +02:00
|
|
|
///
|
|
|
|
/// PCI Controller I/O BAR index of the VGA CRTC address register. Typically
|
|
|
|
/// set to EFI_PCI_IO_PASS_THROUGH_BAR
|
|
|
|
///
|
2007-06-26 10:14:44 +02:00
|
|
|
UINT8 CrtcAddressRegisterBar;
|
2009-07-03 02:37:42 +02:00
|
|
|
///
|
|
|
|
/// PCI Controller I/O BAR index of the VGA CRTC data register. Typically set
|
|
|
|
/// to EFI_PCI_IO_PASS_THROUGH_BAR
|
|
|
|
///
|
2007-06-26 10:14:44 +02:00
|
|
|
UINT8 CrtcDataRegisterBar;
|
2009-07-03 02:37:42 +02:00
|
|
|
///
|
|
|
|
/// The maximum number of text modes that this VGA controller supports.
|
|
|
|
///
|
2007-06-26 10:14:44 +02:00
|
|
|
UINT8 MaxMode;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern EFI_GUID gEfiVgaMiniPortProtocolGuid;
|
|
|
|
|
|
|
|
#endif
|