35 lines
632 B
C
35 lines
632 B
C
|
/** @file
|
||
|
OVMF support for QEMU system firmware flash device: functions specific to the
|
||
|
runtime DXE driver build.
|
||
|
|
||
|
Copyright (C) 2015, Red Hat, Inc.
|
||
|
Copyright (c) 2009 - 2013, Intel Corporation. All rights reserved.<BR>
|
||
|
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
||
|
**/
|
||
|
|
||
|
#include <Library/UefiRuntimeLib.h>
|
||
|
|
||
|
#include "QemuFlash.h"
|
||
|
|
||
|
VOID
|
||
|
QemuFlashConvertPointers (
|
||
|
VOID
|
||
|
)
|
||
|
{
|
||
|
EfiConvertPointer (0x0, (VOID **) &mFlashBase);
|
||
|
}
|
||
|
|
||
|
VOID
|
||
|
QemuFlashBeforeProbe (
|
||
|
IN EFI_PHYSICAL_ADDRESS BaseAddress,
|
||
|
IN UINTN FdBlockSize,
|
||
|
IN UINTN FdBlockCount
|
||
|
)
|
||
|
{
|
||
|
//
|
||
|
// Do nothing
|
||
|
//
|
||
|
}
|