2017-09-26 22:15:11 +02:00
|
|
|
/** @file
|
2017-09-26 22:15:12 +02:00
|
|
|
This file contains the platform independent parts of HdLcd
|
2017-12-01 11:20:25 +01:00
|
|
|
|
2017-09-26 22:15:11 +02:00
|
|
|
Copyright (c) 2011-2018, ARM Ltd. All rights reserved.<BR>
|
2017-12-01 11:20:25 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
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.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
#include <Library/IoLib.h>
|
|
|
|
#include <Library/LcdHwLib.h>
|
|
|
|
#include <Library/LcdPlatformLib.h>
|
|
|
|
#include <Library/MemoryAllocationLib.h>
|
|
|
|
#include <Library/PcdLib.h>
|
|
|
|
|
|
|
|
#include "HdLcd.h"
|
|
|
|
|
|
|
|
STATIC
|
|
|
|
UINTN
|
|
|
|
GetBytesPerPixel (
|
|
|
|
IN LCD_BPP Bpp
|
|
|
|
)
|
|
|
|
{
|
2017-09-26 22:15:11 +02:00
|
|
|
switch (Bpp) {
|
2017-12-01 11:20:25 +01:00
|
|
|
case LCD_BITS_PER_PIXEL_24:
|
|
|
|
return 4;
|
|
|
|
|
|
|
|
case LCD_BITS_PER_PIXEL_16_565:
|
|
|
|
case LCD_BITS_PER_PIXEL_16_555:
|
|
|
|
case LCD_BITS_PER_PIXEL_12_444:
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
case LCD_BITS_PER_PIXEL_8:
|
|
|
|
case LCD_BITS_PER_PIXEL_4:
|
|
|
|
case LCD_BITS_PER_PIXEL_2:
|
|
|
|
case LCD_BITS_PER_PIXEL_1:
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-26 22:15:12 +02:00
|
|
|
/** Initialize display.
|
|
|
|
|
|
|
|
@param[in] VramBaseAddress Address of the framebuffer.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS Display initialization successful.
|
|
|
|
**/
|
2017-12-01 11:20:25 +01:00
|
|
|
EFI_STATUS
|
|
|
|
LcdInitialize (
|
|
|
|
IN EFI_PHYSICAL_ADDRESS VramBaseAddress
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// Disable the controller
|
2017-09-26 22:15:11 +02:00
|
|
|
MmioWrite32 (HDLCD_REG_COMMAND, HDLCD_DISABLE);
|
2017-12-01 11:20:25 +01:00
|
|
|
|
|
|
|
// Disable all interrupts
|
2017-09-26 22:15:11 +02:00
|
|
|
MmioWrite32 (HDLCD_REG_INT_MASK, 0);
|
2017-12-01 11:20:25 +01:00
|
|
|
|
|
|
|
// Define start of the VRAM. This never changes for any graphics mode
|
2017-09-26 22:15:11 +02:00
|
|
|
MmioWrite32 (HDLCD_REG_FB_BASE, (UINT32)VramBaseAddress);
|
2017-12-01 11:20:25 +01:00
|
|
|
|
|
|
|
// Setup various registers that never change
|
2017-09-26 22:15:11 +02:00
|
|
|
MmioWrite32 (HDLCD_REG_BUS_OPTIONS, (4 << 8) | HDLCD_BURST_8);
|
|
|
|
|
|
|
|
MmioWrite32 (HDLCD_REG_POLARITIES, HDLCD_DEFAULT_POLARITIES);
|
|
|
|
|
|
|
|
MmioWrite32 (
|
|
|
|
HDLCD_REG_PIXEL_FORMAT,
|
|
|
|
HDLCD_LITTLE_ENDIAN | HDLCD_4BYTES_PER_PIXEL
|
|
|
|
);
|
|
|
|
|
|
|
|
MmioWrite32 (HDLCD_REG_RED_SELECT, (0 << 16 | 8 << 8 | 0));
|
|
|
|
MmioWrite32 (HDLCD_REG_GREEN_SELECT, (0 << 16 | 8 << 8 | 8));
|
|
|
|
MmioWrite32 (HDLCD_REG_BLUE_SELECT, (0 << 16 | 8 << 8 | 16));
|
2017-12-01 11:20:25 +01:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2017-09-26 22:15:12 +02:00
|
|
|
/** Set requested mode of the display.
|
|
|
|
|
|
|
|
@param[in] ModeNumber Display mode number.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS Display mode set successfully.
|
|
|
|
@retval EFI_DEVICE_ERROR Reurns an error if display timing
|
|
|
|
information is not available.
|
|
|
|
**/
|
2017-12-01 11:20:25 +01:00
|
|
|
EFI_STATUS
|
|
|
|
LcdSetMode (
|
|
|
|
IN UINT32 ModeNumber
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
UINT32 HRes;
|
|
|
|
UINT32 HSync;
|
|
|
|
UINT32 HBackPorch;
|
|
|
|
UINT32 HFrontPorch;
|
|
|
|
UINT32 VRes;
|
|
|
|
UINT32 VSync;
|
|
|
|
UINT32 VBackPorch;
|
|
|
|
UINT32 VFrontPorch;
|
|
|
|
UINT32 BytesPerPixel;
|
|
|
|
LCD_BPP LcdBpp;
|
|
|
|
|
|
|
|
// Set the video mode timings and other relevant information
|
2017-09-26 22:15:11 +02:00
|
|
|
Status = LcdPlatformGetTimings (
|
|
|
|
ModeNumber,
|
|
|
|
&HRes,
|
|
|
|
&HSync,
|
|
|
|
&HBackPorch,
|
|
|
|
&HFrontPorch,
|
|
|
|
&VRes,
|
|
|
|
&VSync,
|
|
|
|
&VBackPorch,
|
|
|
|
&VFrontPorch
|
|
|
|
);
|
2017-12-01 11:20:25 +01:00
|
|
|
ASSERT_EFI_ERROR (Status);
|
2017-09-26 22:15:11 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
2017-12-01 11:20:25 +01:00
|
|
|
return EFI_DEVICE_ERROR;
|
|
|
|
}
|
|
|
|
|
2017-09-26 22:15:11 +02:00
|
|
|
Status = LcdPlatformGetBpp (ModeNumber, &LcdBpp);
|
2017-12-01 11:20:25 +01:00
|
|
|
ASSERT_EFI_ERROR (Status);
|
2017-09-26 22:15:11 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
2017-12-01 11:20:25 +01:00
|
|
|
return EFI_DEVICE_ERROR;
|
|
|
|
}
|
|
|
|
|
2017-09-26 22:15:11 +02:00
|
|
|
BytesPerPixel = GetBytesPerPixel (LcdBpp);
|
2017-12-01 11:20:25 +01:00
|
|
|
|
|
|
|
// Disable the controller
|
2017-09-26 22:15:11 +02:00
|
|
|
MmioWrite32 (HDLCD_REG_COMMAND, HDLCD_DISABLE);
|
2017-12-01 11:20:25 +01:00
|
|
|
|
|
|
|
// Update the frame buffer information with the new settings
|
2017-09-26 22:15:11 +02:00
|
|
|
MmioWrite32 (HDLCD_REG_FB_LINE_LENGTH, HRes * BytesPerPixel);
|
|
|
|
MmioWrite32 (HDLCD_REG_FB_LINE_PITCH, HRes * BytesPerPixel);
|
|
|
|
MmioWrite32 (HDLCD_REG_FB_LINE_COUNT, VRes - 1);
|
2017-12-01 11:20:25 +01:00
|
|
|
|
|
|
|
// Set the vertical timing information
|
2017-09-26 22:15:11 +02:00
|
|
|
MmioWrite32 (HDLCD_REG_V_SYNC, VSync);
|
|
|
|
MmioWrite32 (HDLCD_REG_V_BACK_PORCH, VBackPorch);
|
|
|
|
MmioWrite32 (HDLCD_REG_V_DATA, VRes - 1);
|
|
|
|
MmioWrite32 (HDLCD_REG_V_FRONT_PORCH, VFrontPorch);
|
2017-12-01 11:20:25 +01:00
|
|
|
|
|
|
|
// Set the horizontal timing information
|
2017-09-26 22:15:11 +02:00
|
|
|
MmioWrite32 (HDLCD_REG_H_SYNC, HSync);
|
|
|
|
MmioWrite32 (HDLCD_REG_H_BACK_PORCH, HBackPorch);
|
|
|
|
MmioWrite32 (HDLCD_REG_H_DATA, HRes - 1);
|
|
|
|
MmioWrite32 (HDLCD_REG_H_FRONT_PORCH, HFrontPorch);
|
2017-12-01 11:20:25 +01:00
|
|
|
|
|
|
|
// Enable the controller
|
2017-09-26 22:15:11 +02:00
|
|
|
MmioWrite32 (HDLCD_REG_COMMAND, HDLCD_ENABLE);
|
2017-12-01 11:20:25 +01:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2017-09-26 22:15:12 +02:00
|
|
|
/** De-initializes the display.
|
|
|
|
**/
|
2017-12-01 11:20:25 +01:00
|
|
|
VOID
|
|
|
|
LcdShutdown (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// Disable the controller
|
|
|
|
MmioWrite32 (HDLCD_REG_COMMAND, HDLCD_DISABLE);
|
|
|
|
}
|
|
|
|
|
2017-09-26 22:15:12 +02:00
|
|
|
/** Check for presence of HDLCD.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS Returns success if platform implements a HDLCD
|
|
|
|
controller.
|
|
|
|
**/
|
2017-12-01 11:20:25 +01:00
|
|
|
EFI_STATUS
|
|
|
|
LcdIdentify (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|