X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=IntelFrameworkModulePkg%2FUniversal%2FConsole%2FVgaClassDxe%2FVgaClass.h;h=b20c22466f8ba23c675a4ca0b4636365772a00a8;hb=1910fbaf7014fab2012f06ab03829f0146cf32d4;hp=787901b62f4b96ebcfeac6f9f8bf8d9632769f20;hpb=575bc2b257b4ebc2dcc38825f2fad3b1e246d22f;p=mirror_edk2.git diff --git a/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClass.h b/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClass.h index 787901b62f..b20c22466f 100644 --- a/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClass.h +++ b/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClass.h @@ -1,6 +1,7 @@ -/**@file +/** @file + Internal include file of the VGA Class Driver. -Copyright (c) 2006, Intel Corporation +Copyright (c) 2006 - 2009, Intel Corporation All rights reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -12,13 +13,11 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. **/ -#ifndef _VGA_CLASS_H -#define _VGA_CLASS_H +#ifndef _VGA_CLASS_H__ +#define _VGA_CLASS_H__ -#include #include -#include #include #include #include @@ -26,17 +25,29 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include #include -#include #include -#include #include #include #include +#include -#include -#include "ComponentName.h" -#include +// +// Global Variables +// +extern EFI_DRIVER_BINDING_PROTOCOL gVgaClassDriverBinding; +extern EFI_COMPONENT_NAME_PROTOCOL gVgaClassComponentName; +extern EFI_COMPONENT_NAME2_PROTOCOL gVgaClassComponentName2; + + +// +// Structure for tuple containing mapping among uniocde, PC Ansi and ASCII code. +// +typedef struct { + CHAR16 Unicode; + CHAR8 PcAnsi; + CHAR8 Ascii; +} UNICODE_TO_CHAR; // // VGA specific registers @@ -52,329 +63,422 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. // // VGA Class Device Structure // -#define VGA_CLASS_DEV_SIGNATURE EFI_SIGNATURE_32 ('V', 'G', 'A', 'C') +#define VGA_CLASS_DEV_SIGNATURE SIGNATURE_32 ('V', 'G', 'A', 'C') typedef struct { - UINTN Signature; - EFI_HANDLE Handle; + UINTN Signature; + EFI_HANDLE Handle; EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL SimpleTextOut; - EFI_SIMPLE_TEXT_OUTPUT_MODE SimpleTextOutputMode; - EFI_VGA_MINI_PORT_PROTOCOL *VgaMiniPort; - EFI_PCI_IO_PROTOCOL *PciIo; - EFI_DEVICE_PATH_PROTOCOL *DevicePath; + EFI_SIMPLE_TEXT_OUTPUT_MODE SimpleTextOutputMode; + EFI_VGA_MINI_PORT_PROTOCOL *VgaMiniPort; + EFI_PCI_IO_PROTOCOL *PciIo; + EFI_DEVICE_PATH_PROTOCOL *DevicePath; } VGA_CLASS_DEV; #define VGA_CLASS_DEV_FROM_THIS(a) CR (a, VGA_CLASS_DEV, SimpleTextOut, VGA_CLASS_DEV_SIGNATURE) -// -// Global Variables -// -extern EFI_DRIVER_BINDING_PROTOCOL gVgaClassDriverBinding; - // // Driver Binding Protocol functions // -EFI_STATUS -EFIAPI -VgaClassDriverBindingSupported ( - IN EFI_DRIVER_BINDING_PROTOCOL *This, - IN EFI_HANDLE Controller, - IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath - ) -/** - -Routine Description: - - GC_TODO: Add function description -Arguments: +/** + Tests to see if this driver supports a given controller. - This - GC_TODO: add argument description - Controller - GC_TODO: add argument description - RemainingDevicePath - GC_TODO: add argument description + This function implments EFI_DRIVER_BINDING_PROTOCOL.Supported(). + It Checks if this driver supports the controller specified. Any Controller + with VgaMiniPort Protocol and Pci I/O protocol can be supported. -Returns: + @param This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance. + @param ControllerHandle Handle of device to test + @param RemainingDevicePath Optional parameter use to pick a specific child + device to start. - GC_TODO: add return values + @retval EFI_SUCCESS This driver supports this device. + @retval EFI_ALREADY_STARTED This driver is already running on this device. + @retval EFI_UNSUPPORTED This driver does not support this device. **/ -; - EFI_STATUS EFIAPI -VgaClassDriverBindingStart ( - IN EFI_DRIVER_BINDING_PROTOCOL *This, - IN EFI_HANDLE Controller, - IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath - ) +VgaClassDriverBindingSupported ( + IN EFI_DRIVER_BINDING_PROTOCOL *This, + IN EFI_HANDLE Controller, + IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL + ); + /** + Starts the device controller. -Routine Description: + This function implments EFI_DRIVER_BINDING_PROTOCOL.Start(). + It starts the device specified by Controller with the driver based on PCI I/O Protocol + and VgaMiniPort Protocol. It creates context for device instance and install EFI_SIMPLE_TEXT_OUT_PROTOCOL. - GC_TODO: Add function description + @param This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance. + @param ControllerHandle Handle of device to bind driver to + @param RemainingDevicePath Optional parameter use to pick a specific child + device to start. -Arguments: + @retval EFI_SUCCESS The device was started. + @retval other Fail to start the device. - This - GC_TODO: add argument description - Controller - GC_TODO: add argument description - RemainingDevicePath - GC_TODO: add argument description +**/ +EFI_STATUS +EFIAPI +VgaClassDriverBindingStart ( + IN EFI_DRIVER_BINDING_PROTOCOL *This, + IN EFI_HANDLE Controller, + IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL + ); -Returns: +/** + Starts the device controller. + + This function implments EFI_DRIVER_BINDING_PROTOCOL.Stop(). + It stops this driver on Controller. Support stoping any child handles + created by this driver. - GC_TODO: add return values + @param This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance. + @param ControllerHandle A handle to the device being stopped. + @param NumberOfChildren The number of child device handles in ChildHandleBuffer. + @param ChildHandleBuffer An array of child handles to be freed. -**/ -; + @retval EFI_SUCCESS This driver is removed ControllerHandle + @retval other This driver was not removed from this device +**/ EFI_STATUS EFIAPI VgaClassDriverBindingStop ( - IN EFI_DRIVER_BINDING_PROTOCOL *This, - IN EFI_HANDLE Controller, - IN UINTN NumberOfChildren, - IN EFI_HANDLE *ChildHandleBuffer - ) -/** - -Routine Description: - - GC_TODO: Add function description + IN EFI_DRIVER_BINDING_PROTOCOL *This, + IN EFI_HANDLE Controller, + IN UINTN NumberOfChildren, + IN EFI_HANDLE *ChildHandleBuffer OPTIONAL + ); -Arguments: +// +// EFI Component Name Functions +// - This - GC_TODO: add argument description - Controller - GC_TODO: add argument description - NumberOfChildren - GC_TODO: add argument description - ChildHandleBuffer - GC_TODO: add argument description +/** + Retrieves a Unicode string that is the user readable name of the driver. + + This function retrieves the user readable name of a driver in the form of a + Unicode string. If the driver specified by This has a user readable name in + the language specified by Language, then a pointer to the driver name is + returned in DriverName, and EFI_SUCCESS is returned. If the driver specified + by This does not support the language specified by Language, + then EFI_UNSUPPORTED is returned. + + @param This A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or + EFI_COMPONENT_NAME_PROTOCOL instance. + @param Language A pointer to a Null-terminated ASCII string + array indicating the language. This is the + language of the driver name that the caller is + requesting, and it must match one of the + languages specified in SupportedLanguages. The + number of languages supported by a driver is up + to the driver writer. Language is specified + in RFC 4646 or ISO 639-2 language code format. + @param DriverName A pointer to the Unicode string to return. + This Unicode string is the name of the + driver specified by This in the language + specified by Language. + + @retval EFI_SUCCESS The Unicode string for the Driver specified by + This and the language specified by Language was + returned in DriverName. + @retval EFI_INVALID_PARAMETER Language is NULL. + @retval EFI_INVALID_PARAMETER DriverName is NULL. + @retval EFI_UNSUPPORTED The driver specified by This does not support + the language specified by Language. -Returns: +**/ +EFI_STATUS +EFIAPI +VgaClassComponentNameGetDriverName ( + IN EFI_COMPONENT_NAME_PROTOCOL *This, + IN CHAR8 *Language, + OUT CHAR16 **DriverName + ); - GC_TODO: add return values +/** + Retrieves a Unicode string that is the user readable name of the controller + that is being managed by a driver. + + This function retrieves the user readable name of the controller specified by + ControllerHandle and ChildHandle in the form of a Unicode string. If the + driver specified by This has a user readable name in the language specified by + Language, then a pointer to the controller name is returned in ControllerName, + and EFI_SUCCESS is returned. If the driver specified by This is not currently + managing the controller specified by ControllerHandle and ChildHandle, + then EFI_UNSUPPORTED is returned. If the driver specified by This does not + support the language specified by Language, then EFI_UNSUPPORTED is returned. + + @param This A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or + EFI_COMPONENT_NAME_PROTOCOL instance. + @param ControllerHandle The handle of a controller that the driver + specified by This is managing. This handle + specifies the controller whose name is to be + returned. + @param ChildHandle The handle of the child controller to retrieve + the name of. This is an optional parameter that + may be NULL. It will be NULL for device + drivers. It will also be NULL for a bus drivers + that wish to retrieve the name of the bus + controller. It will not be NULL for a bus + driver that wishes to retrieve the name of a + child controller. + @param Language A pointer to a Null-terminated ASCII string + array indicating the language. This is the + language of the driver name that the caller is + requesting, and it must match one of the + languages specified in SupportedLanguages. The + number of languages supported by a driver is up + to the driver writer. Language is specified in + RFC 4646 or ISO 639-2 language code format. + @param ControllerName A pointer to the Unicode string to return. + This Unicode string is the name of the + controller specified by ControllerHandle and + ChildHandle in the language specified by + Language from the point of view of the driver + specified by This. + + @retval EFI_SUCCESS The Unicode string for the user readable name in + the language specified by Language for the + driver specified by This was returned in + DriverName. + @retval EFI_INVALID_PARAMETER ControllerHandle is not a valid EFI_HANDLE. + @retval EFI_INVALID_PARAMETER ChildHandle is not NULL and it is not a valid + EFI_HANDLE. + @retval EFI_INVALID_PARAMETER Language is NULL. + @retval EFI_INVALID_PARAMETER ControllerName is NULL. + @retval EFI_UNSUPPORTED The driver specified by This is not currently + managing the controller specified by + ControllerHandle and ChildHandle. + @retval EFI_UNSUPPORTED The driver specified by This does not support + the language specified by Language. **/ -; +EFI_STATUS +EFIAPI +VgaClassComponentNameGetControllerName ( + IN EFI_COMPONENT_NAME_PROTOCOL *This, + IN EFI_HANDLE ControllerHandle, + IN EFI_HANDLE ChildHandle OPTIONAL, + IN CHAR8 *Language, + OUT CHAR16 **ControllerName + ); // // Simple Text Output Protocol functions // -EFI_STATUS -EFIAPI -VgaClassReset ( - IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This, - IN BOOLEAN ExtendedVerification - ) /** + Resets the text output device hardware. -Routine Description: - - GC_TODO: Add function description - -Arguments: + This function implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.Reset(). + It resets the text output device hardware. The cursor position is set to (0, 0), + and the screen is cleared to the default background color for the output device. + + @param This Pointer to EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL instance. + @param ExtendedVerification Indicates that the driver may perform a more exhaustive + verification operation of the device during reset. - This - GC_TODO: add argument description - ExtendedVerification - GC_TODO: add argument description - -Returns: - - GC_TODO: add return values + @retval EFI_SUCCESS The text output device was reset. + @retval EFI_DEVICE_ERROR The text output device is not functioning correctly and could not be reset. **/ -; +EFI_STATUS +EFIAPI +VgaClassReset ( + IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This, + IN BOOLEAN ExtendedVerification + ); +/** + Writes a Unicode string to the output device. + + This function implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.OutputString(). + It writes a Unicode string to the output device. This is the most basic output mechanism + on an output device. + + @param This Pointer to EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL instance. + @param String The Null-terminated Unicode string to be displayed on the output device(s). + + @retval EFI_SUCCESS The string was output to the device. + @retval EFI_DEVICE_ERROR The device reported an error while attempting to output the text. + @retval EFI_UNSUPPORTED The output device's mode is not currently in a defined text mode. + @retval EFI_WARN_UNKNOWN_GLYPH This warning code indicates that some of the characters in + the Unicode string could not be rendered and were skipped. +**/ EFI_STATUS EFIAPI VgaClassOutputString ( IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This, - IN CHAR16 *WString - ) -/** - -Routine Description: - - GC_TODO: Add function description - -Arguments: + IN CHAR16 *String + ); - This - GC_TODO: add argument description - WString - GC_TODO: add argument description +/** + Verifies that all characters in a Unicode string can be output to the target device. + + This function implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.TestString(). + It verifies that all characters in a Unicode string can be output to the target device. -Returns: + @param This Pointer to EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL instance. + @param String The Null-terminated Unicode string to be examined for the output device(s). - GC_TODO: add return values + @retval EFI_SUCCESS The device(s) are capable of rendering the output string. + @retval EFI_UNSUPPORTED Some of the characters in the Unicode string cannot be rendered by + one or more of the output devices mapped by the EFI handle. **/ -; - EFI_STATUS EFIAPI VgaClassTestString ( IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This, - IN CHAR16 *WString - ) -/** - -Routine Description: - - GC_TODO: Add function description - -Arguments: - - This - GC_TODO: add argument description - WString - GC_TODO: add argument description - -Returns: + IN CHAR16 *String + ); - GC_TODO: add return values +/** + Clears the output device(s) display to the currently selected background color. + + This function implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.ClearScreen(). + The ClearScreen() function clears the output device(s) display to the currently + selected background color. The cursor position is set to (0, 0). + + @param This Pointer to EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL instance. + + @retval EFI_SUCESS The operation completed successfully. + @retval EFI_DEVICE_ERROR The device had an error and could not complete the request. + @retval EFI_UNSUPPORTED The output device is not in a valid text mode. **/ -; - EFI_STATUS EFIAPI VgaClassClearScreen ( - IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This - ) -/** - -Routine Description: - - GC_TODO: Add function description - -Arguments: - - This - GC_TODO: add argument description + IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This + ); -Returns: - - GC_TODO: add return values +/** + Sets the background and foreground colors for theOutputString() and ClearScreen() functions. + + This function implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.SetAttribute(). + It sets the background and foreground colors for the OutputString() and ClearScreen() functions. + The color mask can be set even when the device is in an invalid text mode. + Devices supporting a different number of text colors are required to emulate the above colors + to the best of the device’s capabilities. + + @param This Pointer to EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL instance. + @param Attribute The attribute to set. + Bits 0..3 are the foreground color, + and bits 4..6 are the background color. + + @retval EFI_SUCCESS The requested attributes were set. + @retval EFI_DEVICE_ERROR The device had an error and could not complete the request. **/ -; - EFI_STATUS EFIAPI VgaClassSetAttribute ( IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This, - IN UINTN Attribute - ) -/** - -Routine Description: - - GC_TODO: Add function description - -Arguments: - - This - GC_TODO: add argument description - Attribute - GC_TODO: add argument description + IN UINTN Attribute + ); -Returns: - - GC_TODO: add return values +/** + Sets the current coordinates of the cursor position. + + This function implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.SetCursorPosition(). + It sets the current coordinates of the cursor position. + The upper left corner of the screen is defined as coordinate (0, 0). + + @param This Pointer to EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL instance. + @param Column Column of position to set the cursor to. + @param Row Row of position to set the cursor to. + + @retval EFI_SUCCESS The operation completed successfully. + @retval EFI_DEVICE_ERROR The device had an error and could not complete the request. + @retval EFI_UNSUPPORTED The output device is not in a valid text mode, or the cursor + position is invalid for the current mode. **/ -; - EFI_STATUS EFIAPI VgaClassSetCursorPosition ( IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This, - IN UINTN Column, - IN UINTN Row - ) -/** - -Routine Description: - - GC_TODO: Add function description - -Arguments: + IN UINTN Column, + IN UINTN Row + ); - This - GC_TODO: add argument description - Column - GC_TODO: add argument description - Row - GC_TODO: add argument description - -Returns: - - GC_TODO: add return values +/** + Makes the cursor visible or invisible. + + This function implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.EnableCursor(). + It makes the cursor visible or invisible. + + @param This Pointer to EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL instance. + @param Visible If TRUE, the cursor is set to be visible. + If FALSE, the cursor is set to be invisible. + + @retval EFI_SUCESS The operation completed successfully. + @retval EFI_DEVICE_ERROR The device had an error and could not complete the request or the + device does not support changing the cursor mode. + @retval EFI_UNSUPPORTED The output device does not support visibility control of the cursor. **/ -; - EFI_STATUS EFIAPI VgaClassEnableCursor ( IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This, - IN BOOLEAN Visible - ) -/** - -Routine Description: - - GC_TODO: Add function description - -Arguments: + IN BOOLEAN Visible + ); - This - GC_TODO: add argument description - Visible - GC_TODO: add argument description - -Returns: - - GC_TODO: add return values +/** + Returns information for an available text mode that the output device(s) supports. + + This function implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.QueryMode(). + It returns information for an available text mode that the output device(s) supports. + It is required that all output devices support at least 80x25 text mode. This mode is defined to be mode 0. + If the output devices support 80x50, that is defined to be mode 1. + + @param This Pointer to EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL instance. + @param ModeNumber The mode number to return information on. + @param Columns Columen in current mode number + @param Rows Row in current mode number. + + @retval EFI_SUCCESS The requested mode information was returned. + @retval EFI_DEVICE_ERROR The device had an error and could not complete the request. + @retval EFI_UNSUPPORTED The mode number was not valid. **/ -; - EFI_STATUS EFIAPI VgaClassQueryMode ( IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This, - IN UINTN ModeNumber, - OUT UINTN *Columns, - OUT UINTN *Rows - ) -/** - -Routine Description: - - GC_TODO: Add function description + IN UINTN ModeNumber, + OUT UINTN *Columns, + OUT UINTN *Rows + ); -Arguments: - - This - GC_TODO: add argument description - ModeNumber - GC_TODO: add argument description - Columns - GC_TODO: add argument description - Rows - GC_TODO: add argument description - -Returns: - - GC_TODO: add return values +/** + Sets the output device(s) to a specified mode. + + This function implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.QueryMode(). + It sets the output device(s) to the requested mode. + On success the device is in the geometry for the requested mode, + and the device has been cleared to the current background color with the cursor at (0,0). + + @param This Pointer to EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL instance. + @param ModeNumber The text mode to set. + + @retval EFI_SUCCESS The requested text mode was set. + @retval EFI_DEVICE_ERROR The device had an error and could not complete the request. + @retval EFI_UNSUPPORTED The mode number was not valid. **/ -; - EFI_STATUS EFIAPI VgaClassSetMode ( IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This, - IN UINTN ModeNumber - ) -/** - -Routine Description: - - GC_TODO: Add function description - -Arguments: - - This - GC_TODO: add argument description - ModeNumber - GC_TODO: add argument description - -Returns: - - GC_TODO: add return values - -**/ -; + IN UINTN ModeNumber + ); #endif