2008-04-10 10:49:28 +02:00
|
|
|
/** @file
|
2009-04-01 04:52:17 +02:00
|
|
|
Support for Graphics output spliter.
|
|
|
|
|
2010-04-24 11:33:45 +02:00
|
|
|
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-07-05 09:05:28 +02:00
|
|
|
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
|
|
|
|
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.
|
|
|
|
|
2008-07-01 08:56:37 +02:00
|
|
|
|
2008-04-10 10:49:28 +02:00
|
|
|
**/
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
#include "ConSplitter.h"
|
|
|
|
|
|
|
|
|
2008-10-30 07:05:06 +01:00
|
|
|
CHAR16 mCrLfString[3] = { CHAR_CARRIAGE_RETURN, CHAR_LINEFEED, CHAR_NULL };
|
2008-07-01 08:56:37 +02:00
|
|
|
|
|
|
|
/**
|
2008-12-24 01:15:20 +01:00
|
|
|
Returns information for an available graphics mode that the graphics device
|
|
|
|
and the set of active video output devices supports.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
2008-12-24 01:15:20 +01:00
|
|
|
@param This The EFI_GRAPHICS_OUTPUT_PROTOCOL instance.
|
|
|
|
@param ModeNumber The mode number to return information on.
|
|
|
|
@param SizeOfInfo A pointer to the size, in bytes, of the Info buffer.
|
|
|
|
@param Info A pointer to callee allocated buffer that returns information about ModeNumber.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
2008-12-24 01:15:20 +01:00
|
|
|
@retval EFI_SUCCESS Mode information returned.
|
|
|
|
@retval EFI_BUFFER_TOO_SMALL The Info buffer was too small.
|
|
|
|
@retval EFI_DEVICE_ERROR A hardware error occurred trying to retrieve the video mode.
|
|
|
|
@retval EFI_NOT_STARTED Video display is not initialized. Call SetMode ()
|
|
|
|
@retval EFI_INVALID_PARAMETER One of the input args was NULL.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES No resource available.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
|
|
|
**/
|
2007-07-05 09:05:28 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2009-05-18 05:40:29 +02:00
|
|
|
ConSplitterGraphicsOutputQueryMode (
|
2007-07-05 09:05:28 +02:00
|
|
|
IN EFI_GRAPHICS_OUTPUT_PROTOCOL *This,
|
|
|
|
IN UINT32 ModeNumber,
|
|
|
|
OUT UINTN *SizeOfInfo,
|
|
|
|
OUT EFI_GRAPHICS_OUTPUT_MODE_INFORMATION **Info
|
|
|
|
)
|
|
|
|
{
|
|
|
|
TEXT_OUT_SPLITTER_PRIVATE_DATA *Private;
|
|
|
|
|
|
|
|
if (This == NULL || Info == NULL || SizeOfInfo == NULL || ModeNumber >= This->Mode->MaxMode) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// retrieve private data
|
|
|
|
//
|
|
|
|
Private = GRAPHICS_OUTPUT_SPLITTER_PRIVATE_DATA_FROM_THIS (This);
|
|
|
|
|
|
|
|
if (Private->HardwareNeedsStarting) {
|
|
|
|
return EFI_NOT_STARTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
*Info = AllocatePool (sizeof (EFI_GRAPHICS_OUTPUT_MODE_INFORMATION));
|
|
|
|
if (*Info == NULL) {
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
|
|
|
|
|
|
|
*SizeOfInfo = sizeof (EFI_GRAPHICS_OUTPUT_MODE_INFORMATION);
|
|
|
|
|
2008-01-09 06:55:46 +01:00
|
|
|
CopyMem (*Info, &Private->GraphicsOutputModeBuffer[ModeNumber], *SizeOfInfo);
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-07-01 08:56:37 +02:00
|
|
|
|
|
|
|
/**
|
2009-01-08 09:21:40 +01:00
|
|
|
Set the video device into the specified mode and clears the visible portions of
|
2008-12-24 01:15:20 +01:00
|
|
|
the output display to black.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
2008-12-24 01:15:20 +01:00
|
|
|
@param This The EFI_GRAPHICS_OUTPUT_PROTOCOL instance.
|
|
|
|
@param ModeNumber Abstraction that defines the current video mode.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
2008-12-24 01:15:20 +01:00
|
|
|
@retval EFI_SUCCESS The graphics mode specified by ModeNumber was selected.
|
|
|
|
@retval EFI_DEVICE_ERROR The device had an error and could not complete the request.
|
|
|
|
@retval EFI_UNSUPPORTED ModeNumber is not supported by this device.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES No resource available.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
|
|
|
**/
|
2007-07-05 09:05:28 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2009-05-18 05:40:29 +02:00
|
|
|
ConSplitterGraphicsOutputSetMode (
|
2007-07-05 09:05:28 +02:00
|
|
|
IN EFI_GRAPHICS_OUTPUT_PROTOCOL * This,
|
|
|
|
IN UINT32 ModeNumber
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
TEXT_OUT_SPLITTER_PRIVATE_DATA *Private;
|
|
|
|
UINTN Index;
|
|
|
|
EFI_STATUS ReturnStatus;
|
2008-01-09 06:55:46 +01:00
|
|
|
EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Mode;
|
2007-07-05 09:05:28 +02:00
|
|
|
EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput;
|
|
|
|
UINTN NumberIndex;
|
|
|
|
UINTN SizeOfInfo;
|
|
|
|
EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Info;
|
|
|
|
EFI_UGA_DRAW_PROTOCOL *UgaDraw;
|
|
|
|
|
|
|
|
if (ModeNumber >= This->Mode->MaxMode) {
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
Private = GRAPHICS_OUTPUT_SPLITTER_PRIVATE_DATA_FROM_THIS (This);
|
|
|
|
Mode = &Private->GraphicsOutputModeBuffer[ModeNumber];
|
|
|
|
|
2009-04-01 04:52:17 +02:00
|
|
|
ReturnStatus = EFI_SUCCESS;
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
|
|
|
// return the worst status met
|
|
|
|
//
|
|
|
|
for (Index = 0; Index < Private->CurrentNumberOfConsoles; Index++) {
|
|
|
|
GraphicsOutput = Private->TextOutList[Index].GraphicsOutput;
|
|
|
|
if (GraphicsOutput != NULL) {
|
|
|
|
//
|
|
|
|
// Find corresponding ModeNumber of this GraphicsOutput instance
|
|
|
|
//
|
|
|
|
for (NumberIndex = 0; NumberIndex < GraphicsOutput->Mode->MaxMode; NumberIndex ++) {
|
|
|
|
Status = GraphicsOutput->QueryMode (GraphicsOutput, (UINT32) NumberIndex, &SizeOfInfo, &Info);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
if ((Info->HorizontalResolution == Mode->HorizontalResolution) && (Info->VerticalResolution == Mode->VerticalResolution)) {
|
|
|
|
FreePool (Info);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
FreePool (Info);
|
|
|
|
}
|
|
|
|
|
|
|
|
Status = GraphicsOutput->SetMode (GraphicsOutput, (UINT32) NumberIndex);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
ReturnStatus = Status;
|
|
|
|
}
|
2008-12-24 01:15:20 +01:00
|
|
|
} else if (FeaturePcdGet (PcdUgaConsumeSupport)) {
|
2007-10-16 07:30:18 +02:00
|
|
|
UgaDraw = Private->TextOutList[Index].UgaDraw;
|
|
|
|
if (UgaDraw != NULL) {
|
|
|
|
Status = UgaDraw->SetMode (
|
|
|
|
UgaDraw,
|
|
|
|
Mode->HorizontalResolution,
|
|
|
|
Mode->VerticalResolution,
|
|
|
|
32,
|
|
|
|
60
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
ReturnStatus = Status;
|
|
|
|
}
|
2007-07-05 09:05:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
This->Mode->Mode = ModeNumber;
|
|
|
|
|
2008-01-09 06:55:46 +01:00
|
|
|
CopyMem (This->Mode->Info, &Private->GraphicsOutputModeBuffer[ModeNumber], This->Mode->SizeOfInfo);
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Information is not enough here, so the following items remain unchanged:
|
|
|
|
// GraphicsOutputMode->Info->Version, GraphicsOutputMode->Info->PixelFormat
|
|
|
|
// GraphicsOutputMode->SizeOfInfo, GraphicsOutputMode->FrameBufferBase, GraphicsOutputMode->FrameBufferSize
|
|
|
|
// These items will be initialized/updated when a new GOP device is added into ConsoleSplitter.
|
|
|
|
//
|
|
|
|
|
|
|
|
Private->HardwareNeedsStarting = FALSE;
|
|
|
|
|
|
|
|
return ReturnStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-01 08:56:37 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
The following table defines actions for BltOperations.
|
|
|
|
|
|
|
|
EfiBltVideoFill - Write data from the BltBuffer pixel (SourceX, SourceY)
|
|
|
|
directly to every pixel of the video display rectangle
|
|
|
|
(DestinationX, DestinationY)
|
|
|
|
(DestinationX + Width, DestinationY + Height).
|
|
|
|
Only one pixel will be used from the BltBuffer. Delta is NOT used.
|
|
|
|
EfiBltVideoToBltBuffer - Read data from the video display rectangle
|
|
|
|
(SourceX, SourceY) (SourceX + Width, SourceY + Height) and place it in
|
|
|
|
the BltBuffer rectangle (DestinationX, DestinationY )
|
|
|
|
(DestinationX + Width, DestinationY + Height). If DestinationX or
|
|
|
|
DestinationY is not zero then Delta must be set to the length in bytes
|
|
|
|
of a row in the BltBuffer.
|
|
|
|
EfiBltBufferToVideo - Write data from the BltBuffer rectangle
|
|
|
|
(SourceX, SourceY) (SourceX + Width, SourceY + Height) directly to the
|
|
|
|
video display rectangle (DestinationX, DestinationY)
|
|
|
|
(DestinationX + Width, DestinationY + Height). If SourceX or SourceY is
|
|
|
|
not zero then Delta must be set to the length in bytes of a row in the
|
|
|
|
BltBuffer.
|
|
|
|
EfiBltVideoToVideo - Copy from the video display rectangle
|
|
|
|
(SourceX, SourceY) (SourceX + Width, SourceY + Height) .
|
|
|
|
to the video display rectangle (DestinationX, DestinationY)
|
|
|
|
(DestinationX + Width, DestinationY + Height).
|
|
|
|
The BltBuffer and Delta are not used in this mode.
|
|
|
|
|
|
|
|
@param This Protocol instance pointer.
|
|
|
|
@param BltBuffer Buffer containing data to blit into video buffer.
|
|
|
|
This buffer has a size of
|
|
|
|
Width*Height*sizeof(EFI_GRAPHICS_OUTPUT_BLT_PIXEL)
|
|
|
|
@param BltOperation Operation to perform on BlitBuffer and video
|
|
|
|
memory
|
|
|
|
@param SourceX X coordinate of source for the BltBuffer.
|
|
|
|
@param SourceY Y coordinate of source for the BltBuffer.
|
|
|
|
@param DestinationX X coordinate of destination for the BltBuffer.
|
|
|
|
@param DestinationY Y coordinate of destination for the BltBuffer.
|
|
|
|
@param Width Width of rectangle in BltBuffer in pixels.
|
2009-01-08 09:21:40 +01:00
|
|
|
@param Height Hight of rectangle in BltBuffer in pixels.
|
2008-07-11 09:23:59 +02:00
|
|
|
@param Delta OPTIONAL.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
|
|
|
@retval EFI_SUCCESS The Blt operation completed.
|
|
|
|
@retval EFI_INVALID_PARAMETER BltOperation is not valid.
|
|
|
|
@retval EFI_DEVICE_ERROR A hardware error occured writting to the video
|
|
|
|
buffer.
|
|
|
|
|
|
|
|
**/
|
2007-07-05 09:05:28 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2009-05-18 05:40:29 +02:00
|
|
|
ConSplitterGraphicsOutputBlt (
|
2007-07-05 09:05:28 +02:00
|
|
|
IN EFI_GRAPHICS_OUTPUT_PROTOCOL *This,
|
|
|
|
IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer, OPTIONAL
|
|
|
|
IN EFI_GRAPHICS_OUTPUT_BLT_OPERATION BltOperation,
|
|
|
|
IN UINTN SourceX,
|
|
|
|
IN UINTN SourceY,
|
|
|
|
IN UINTN DestinationX,
|
|
|
|
IN UINTN DestinationY,
|
|
|
|
IN UINTN Width,
|
|
|
|
IN UINTN Height,
|
|
|
|
IN UINTN Delta OPTIONAL
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
2009-04-02 10:50:30 +02:00
|
|
|
EFI_STATUS ReturnStatus;
|
2007-07-05 09:05:28 +02:00
|
|
|
TEXT_OUT_SPLITTER_PRIVATE_DATA *Private;
|
|
|
|
UINTN Index;
|
|
|
|
EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput;
|
|
|
|
EFI_UGA_DRAW_PROTOCOL *UgaDraw;
|
|
|
|
|
2010-02-11 06:53:06 +01:00
|
|
|
if (This == NULL || ((UINTN) BltOperation) >= EfiGraphicsOutputBltOperationMax) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
Private = GRAPHICS_OUTPUT_SPLITTER_PRIVATE_DATA_FROM_THIS (This);
|
|
|
|
|
2009-04-02 10:50:30 +02:00
|
|
|
ReturnStatus = EFI_SUCCESS;
|
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
|
|
|
// return the worst status met
|
|
|
|
//
|
|
|
|
for (Index = 0; Index < Private->CurrentNumberOfConsoles; Index++) {
|
|
|
|
GraphicsOutput = Private->TextOutList[Index].GraphicsOutput;
|
|
|
|
if (GraphicsOutput != NULL) {
|
|
|
|
Status = GraphicsOutput->Blt (
|
|
|
|
GraphicsOutput,
|
|
|
|
BltBuffer,
|
|
|
|
BltOperation,
|
|
|
|
SourceX,
|
|
|
|
SourceY,
|
|
|
|
DestinationX,
|
|
|
|
DestinationY,
|
|
|
|
Width,
|
|
|
|
Height,
|
|
|
|
Delta
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
ReturnStatus = Status;
|
|
|
|
} else if (BltOperation == EfiBltVideoToBltBuffer) {
|
|
|
|
//
|
|
|
|
// Only need to read the data into buffer one time
|
|
|
|
//
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
UgaDraw = Private->TextOutList[Index].UgaDraw;
|
2008-03-19 06:22:06 +01:00
|
|
|
if (UgaDraw != NULL && FeaturePcdGet (PcdUgaConsumeSupport)) {
|
2007-07-05 09:05:28 +02:00
|
|
|
Status = UgaDraw->Blt (
|
|
|
|
UgaDraw,
|
|
|
|
(EFI_UGA_PIXEL *) BltBuffer,
|
|
|
|
(EFI_UGA_BLT_OPERATION) BltOperation,
|
|
|
|
SourceX,
|
|
|
|
SourceY,
|
|
|
|
DestinationX,
|
|
|
|
DestinationY,
|
|
|
|
Width,
|
|
|
|
Height,
|
|
|
|
Delta
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
ReturnStatus = Status;
|
|
|
|
} else if (BltOperation == EfiBltVideoToBltBuffer) {
|
|
|
|
//
|
|
|
|
// Only need to read the data into buffer one time
|
|
|
|
//
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ReturnStatus;
|
|
|
|
}
|
|
|
|
|
2008-07-01 08:56:37 +02:00
|
|
|
/**
|
|
|
|
Return the current video mode information.
|
|
|
|
|
2008-12-24 01:15:20 +01:00
|
|
|
@param This The EFI_UGA_DRAW_PROTOCOL instance.
|
|
|
|
@param HorizontalResolution The size of video screen in pixels in the X dimension.
|
|
|
|
@param VerticalResolution The size of video screen in pixels in the Y dimension.
|
|
|
|
@param ColorDepth Number of bits per pixel, currently defined to be 32.
|
|
|
|
@param RefreshRate The refresh rate of the monitor in Hertz.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
2008-12-24 01:15:20 +01:00
|
|
|
@retval EFI_SUCCESS Mode information returned.
|
|
|
|
@retval EFI_NOT_STARTED Video display is not initialized. Call SetMode ()
|
|
|
|
@retval EFI_INVALID_PARAMETER One of the input args was NULL.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
|
|
|
**/
|
2007-10-16 07:30:18 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2009-05-18 05:40:29 +02:00
|
|
|
ConSplitterUgaDrawGetMode (
|
2007-10-16 07:30:18 +02:00
|
|
|
IN EFI_UGA_DRAW_PROTOCOL *This,
|
|
|
|
OUT UINT32 *HorizontalResolution,
|
|
|
|
OUT UINT32 *VerticalResolution,
|
|
|
|
OUT UINT32 *ColorDepth,
|
|
|
|
OUT UINT32 *RefreshRate
|
|
|
|
)
|
|
|
|
{
|
|
|
|
TEXT_OUT_SPLITTER_PRIVATE_DATA *Private;
|
|
|
|
|
2008-07-01 08:56:37 +02:00
|
|
|
if ((HorizontalResolution == NULL) ||
|
2008-12-24 01:15:20 +01:00
|
|
|
(VerticalResolution == NULL) ||
|
|
|
|
(RefreshRate == NULL) ||
|
|
|
|
(ColorDepth == NULL)) {
|
2007-10-16 07:30:18 +02:00
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// retrieve private data
|
|
|
|
//
|
|
|
|
Private = UGA_DRAW_SPLITTER_PRIVATE_DATA_FROM_THIS (This);
|
|
|
|
|
|
|
|
*HorizontalResolution = Private->UgaHorizontalResolution;
|
|
|
|
*VerticalResolution = Private->UgaVerticalResolution;
|
|
|
|
*ColorDepth = Private->UgaColorDepth;
|
|
|
|
*RefreshRate = Private->UgaRefreshRate;
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-07-01 08:56:37 +02:00
|
|
|
|
|
|
|
/**
|
2008-12-24 01:15:20 +01:00
|
|
|
Set the current video mode information.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
2008-12-24 01:15:20 +01:00
|
|
|
@param This The EFI_UGA_DRAW_PROTOCOL instance.
|
|
|
|
@param HorizontalResolution The size of video screen in pixels in the X dimension.
|
|
|
|
@param VerticalResolution The size of video screen in pixels in the Y dimension.
|
|
|
|
@param ColorDepth Number of bits per pixel, currently defined to be 32.
|
|
|
|
@param RefreshRate The refresh rate of the monitor in Hertz.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
2008-12-24 01:15:20 +01:00
|
|
|
@retval EFI_SUCCESS Mode information returned.
|
|
|
|
@retval EFI_NOT_STARTED Video display is not initialized. Call SetMode ()
|
|
|
|
@retval EFI_OUT_OF_RESOURCES Out of resources.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
|
|
|
**/
|
2007-10-16 07:30:18 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2009-05-18 05:40:29 +02:00
|
|
|
ConSplitterUgaDrawSetMode (
|
2007-10-16 07:30:18 +02:00
|
|
|
IN EFI_UGA_DRAW_PROTOCOL *This,
|
|
|
|
IN UINT32 HorizontalResolution,
|
|
|
|
IN UINT32 VerticalResolution,
|
|
|
|
IN UINT32 ColorDepth,
|
|
|
|
IN UINT32 RefreshRate
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
TEXT_OUT_SPLITTER_PRIVATE_DATA *Private;
|
|
|
|
UINTN Index;
|
|
|
|
EFI_STATUS ReturnStatus;
|
|
|
|
EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput;
|
|
|
|
UINTN NumberIndex;
|
|
|
|
UINTN SizeOfInfo;
|
|
|
|
EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Info;
|
|
|
|
EFI_UGA_DRAW_PROTOCOL *UgaDraw;
|
|
|
|
|
|
|
|
Private = UGA_DRAW_SPLITTER_PRIVATE_DATA_FROM_THIS (This);
|
|
|
|
|
|
|
|
ReturnStatus = EFI_SUCCESS;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Update the Mode data
|
|
|
|
//
|
|
|
|
Private->UgaHorizontalResolution = HorizontalResolution;
|
|
|
|
Private->UgaVerticalResolution = VerticalResolution;
|
|
|
|
Private->UgaColorDepth = ColorDepth;
|
|
|
|
Private->UgaRefreshRate = RefreshRate;
|
|
|
|
|
|
|
|
//
|
|
|
|
// return the worst status met
|
|
|
|
//
|
|
|
|
for (Index = 0; Index < Private->CurrentNumberOfConsoles; Index++) {
|
2008-03-19 06:22:06 +01:00
|
|
|
|
2008-12-24 01:15:20 +01:00
|
|
|
GraphicsOutput = Private->TextOutList[Index].GraphicsOutput;
|
|
|
|
if (GraphicsOutput != NULL) {
|
|
|
|
//
|
|
|
|
// Find corresponding ModeNumber of this GraphicsOutput instance
|
|
|
|
//
|
|
|
|
for (NumberIndex = 0; NumberIndex < GraphicsOutput->Mode->MaxMode; NumberIndex ++) {
|
|
|
|
Status = GraphicsOutput->QueryMode (GraphicsOutput, (UINT32) NumberIndex, &SizeOfInfo, &Info);
|
2008-03-19 06:22:06 +01:00
|
|
|
if (EFI_ERROR (Status)) {
|
2008-12-24 01:15:20 +01:00
|
|
|
return Status;
|
2008-03-19 06:22:06 +01:00
|
|
|
}
|
2008-12-24 01:15:20 +01:00
|
|
|
if ((Info->HorizontalResolution == HorizontalResolution) && (Info->VerticalResolution == VerticalResolution)) {
|
2007-10-16 07:30:18 +02:00
|
|
|
FreePool (Info);
|
2008-12-24 01:15:20 +01:00
|
|
|
break;
|
2007-10-16 07:30:18 +02:00
|
|
|
}
|
2008-12-24 01:15:20 +01:00
|
|
|
FreePool (Info);
|
|
|
|
}
|
2007-10-16 07:30:18 +02:00
|
|
|
|
2008-12-24 01:15:20 +01:00
|
|
|
Status = GraphicsOutput->SetMode (GraphicsOutput, (UINT32) NumberIndex);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
ReturnStatus = Status;
|
|
|
|
}
|
|
|
|
} else if (FeaturePcdGet (PcdUgaConsumeSupport)){
|
|
|
|
UgaDraw = Private->TextOutList[Index].UgaDraw;
|
|
|
|
if (UgaDraw != NULL) {
|
|
|
|
Status = UgaDraw->SetMode (
|
|
|
|
UgaDraw,
|
|
|
|
HorizontalResolution,
|
|
|
|
VerticalResolution,
|
|
|
|
ColorDepth,
|
|
|
|
RefreshRate
|
|
|
|
);
|
2007-10-16 07:30:18 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
ReturnStatus = Status;
|
|
|
|
}
|
|
|
|
}
|
2009-01-08 09:21:40 +01:00
|
|
|
}
|
2007-10-16 07:30:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ReturnStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-01 08:56:37 +02:00
|
|
|
/**
|
2008-12-24 01:15:20 +01:00
|
|
|
Blt a rectangle of pixels on the graphics screen.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
2008-12-24 01:15:20 +01:00
|
|
|
The following table defines actions for BltOperations.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
2008-12-24 01:15:20 +01:00
|
|
|
EfiUgaVideoFill:
|
|
|
|
Write data from the BltBuffer pixel (SourceX, SourceY)
|
|
|
|
directly to every pixel of the video display rectangle
|
|
|
|
(DestinationX, DestinationY)
|
|
|
|
(DestinationX + Width, DestinationY + Height).
|
|
|
|
Only one pixel will be used from the BltBuffer. Delta is NOT used.
|
2009-01-08 09:21:40 +01:00
|
|
|
EfiUgaVideoToBltBuffer:
|
2008-12-24 01:15:20 +01:00
|
|
|
Read data from the video display rectangle
|
|
|
|
(SourceX, SourceY) (SourceX + Width, SourceY + Height) and place it in
|
|
|
|
the BltBuffer rectangle (DestinationX, DestinationY )
|
|
|
|
(DestinationX + Width, DestinationY + Height). If DestinationX or
|
|
|
|
DestinationY is not zero then Delta must be set to the length in bytes
|
|
|
|
of a row in the BltBuffer.
|
|
|
|
EfiUgaBltBufferToVideo:
|
|
|
|
Write data from the BltBuffer rectangle
|
|
|
|
(SourceX, SourceY) (SourceX + Width, SourceY + Height) directly to the
|
|
|
|
video display rectangle (DestinationX, DestinationY)
|
|
|
|
(DestinationX + Width, DestinationY + Height). If SourceX or SourceY is
|
|
|
|
not zero then Delta must be set to the length in bytes of a row in the
|
|
|
|
BltBuffer.
|
|
|
|
EfiUgaVideoToVideo:
|
|
|
|
Copy from the video display rectangle
|
|
|
|
(SourceX, SourceY) (SourceX + Width, SourceY + Height) .
|
|
|
|
to the video display rectangle (DestinationX, DestinationY)
|
|
|
|
(DestinationX + Width, DestinationY + Height).
|
|
|
|
The BltBuffer and Delta are not used in this mode.
|
|
|
|
|
|
|
|
@param This Protocol instance pointer.
|
|
|
|
@param BltBuffer Buffer containing data to blit into video buffer. This
|
|
|
|
buffer has a size of Width*Height*sizeof(EFI_UGA_PIXEL)
|
|
|
|
@param BltOperation Operation to perform on BlitBuffer and video memory
|
|
|
|
@param SourceX X coordinate of source for the BltBuffer.
|
|
|
|
@param SourceY Y coordinate of source for the BltBuffer.
|
|
|
|
@param DestinationX X coordinate of destination for the BltBuffer.
|
|
|
|
@param DestinationY Y coordinate of destination for the BltBuffer.
|
|
|
|
@param Width Width of rectangle in BltBuffer in pixels.
|
|
|
|
@param Height Hight of rectangle in BltBuffer in pixels.
|
|
|
|
@param Delta OPTIONAL
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The Blt operation completed.
|
|
|
|
@retval EFI_INVALID_PARAMETER BltOperation is not valid.
|
|
|
|
@retval EFI_DEVICE_ERROR A hardware error occured writting to the video buffer.
|
2008-07-01 08:56:37 +02:00
|
|
|
|
|
|
|
**/
|
2007-10-16 07:30:18 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2009-05-18 05:40:29 +02:00
|
|
|
ConSplitterUgaDrawBlt (
|
2007-10-16 07:30:18 +02:00
|
|
|
IN EFI_UGA_DRAW_PROTOCOL *This,
|
|
|
|
IN EFI_UGA_PIXEL *BltBuffer, OPTIONAL
|
|
|
|
IN EFI_UGA_BLT_OPERATION BltOperation,
|
|
|
|
IN UINTN SourceX,
|
|
|
|
IN UINTN SourceY,
|
|
|
|
IN UINTN DestinationX,
|
|
|
|
IN UINTN DestinationY,
|
|
|
|
IN UINTN Width,
|
|
|
|
IN UINTN Height,
|
|
|
|
IN UINTN Delta OPTIONAL
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
TEXT_OUT_SPLITTER_PRIVATE_DATA *Private;
|
|
|
|
UINTN Index;
|
|
|
|
EFI_STATUS ReturnStatus;
|
|
|
|
EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput;
|
|
|
|
|
|
|
|
Private = UGA_DRAW_SPLITTER_PRIVATE_DATA_FROM_THIS (This);
|
|
|
|
|
2009-04-01 04:52:17 +02:00
|
|
|
ReturnStatus = EFI_SUCCESS;
|
2007-10-16 07:30:18 +02:00
|
|
|
//
|
|
|
|
// return the worst status met
|
|
|
|
//
|
|
|
|
for (Index = 0; Index < Private->CurrentNumberOfConsoles; Index++) {
|
|
|
|
GraphicsOutput = Private->TextOutList[Index].GraphicsOutput;
|
|
|
|
if (GraphicsOutput != NULL) {
|
|
|
|
Status = GraphicsOutput->Blt (
|
|
|
|
GraphicsOutput,
|
|
|
|
(EFI_GRAPHICS_OUTPUT_BLT_PIXEL *) BltBuffer,
|
|
|
|
(EFI_GRAPHICS_OUTPUT_BLT_OPERATION) BltOperation,
|
|
|
|
SourceX,
|
|
|
|
SourceY,
|
|
|
|
DestinationX,
|
|
|
|
DestinationY,
|
|
|
|
Width,
|
|
|
|
Height,
|
|
|
|
Delta
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
ReturnStatus = Status;
|
|
|
|
} else if (BltOperation == EfiBltVideoToBltBuffer) {
|
|
|
|
//
|
|
|
|
// Only need to read the data into buffer one time
|
|
|
|
//
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-19 06:22:06 +01:00
|
|
|
if (Private->TextOutList[Index].UgaDraw != NULL && FeaturePcdGet (PcdUgaConsumeSupport)) {
|
2007-10-16 07:30:18 +02:00
|
|
|
Status = Private->TextOutList[Index].UgaDraw->Blt (
|
|
|
|
Private->TextOutList[Index].UgaDraw,
|
|
|
|
BltBuffer,
|
|
|
|
BltOperation,
|
|
|
|
SourceX,
|
|
|
|
SourceY,
|
|
|
|
DestinationX,
|
|
|
|
DestinationY,
|
|
|
|
Width,
|
|
|
|
Height,
|
|
|
|
Delta
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
ReturnStatus = Status;
|
|
|
|
} else if (BltOperation == EfiUgaVideoToBltBuffer) {
|
|
|
|
//
|
|
|
|
// Only need to read the data into buffer one time
|
|
|
|
//
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ReturnStatus;
|
|
|
|
}
|
|
|
|
|
2008-07-01 08:56:37 +02:00
|
|
|
/**
|
|
|
|
Sets the output device(s) to a specified mode.
|
|
|
|
|
2008-12-24 01:15:20 +01:00
|
|
|
@param Private Text Out Splitter pointer.
|
2008-07-01 08:56:37 +02:00
|
|
|
@param ModeNumber The mode number to set.
|
|
|
|
|
|
|
|
**/
|
2009-04-01 04:52:17 +02:00
|
|
|
VOID
|
|
|
|
TextOutSetMode (
|
2007-07-05 09:05:28 +02:00
|
|
|
IN TEXT_OUT_SPLITTER_PRIVATE_DATA *Private,
|
|
|
|
IN UINTN ModeNumber
|
|
|
|
)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
// No need to do extra check here as whether (Column, Row) is valid has
|
|
|
|
// been checked in ConSplitterTextOutSetCursorPosition. And (0, 0) should
|
|
|
|
// always be supported.
|
|
|
|
//
|
2009-04-01 04:52:17 +02:00
|
|
|
Private->TextOutMode.Mode = (INT32) ModeNumber;
|
|
|
|
Private->TextOutMode.CursorColumn = 0;
|
|
|
|
Private->TextOutMode.CursorRow = 0;
|
|
|
|
Private->TextOutMode.CursorVisible = TRUE;
|
2008-07-01 08:56:37 +02:00
|
|
|
|
2009-04-01 04:52:17 +02:00
|
|
|
return;
|
2007-07-05 09:05:28 +02:00
|
|
|
}
|