2008-04-09 07:50:10 +02:00
|
|
|
/** @file
|
2009-02-25 11:50:45 +01:00
|
|
|
Capsule Runtime Driver produces two UEFI capsule runtime services.
|
2008-07-09 15:33:20 +02:00
|
|
|
(UpdateCapsule, QueryCapsuleCapabilities)
|
2009-02-25 16:35:58 +01:00
|
|
|
It installs the Capsule Architectural Protocol defined in PI1.0a to signify
|
2009-01-04 04:20:55 +01:00
|
|
|
the capsule runtime services are ready.
|
2007-07-18 16:31:27 +02:00
|
|
|
|
2008-04-09 07:50:10 +02:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation. <BR>
|
2007-07-18 16:31:27 +02:00
|
|
|
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
|
|
|
|
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-04-09 07:50:10 +02:00
|
|
|
**/
|
2007-07-18 16:31:27 +02:00
|
|
|
|
2009-01-04 04:20:55 +01:00
|
|
|
#include <Uefi.h>
|
|
|
|
|
|
|
|
#include <Protocol/Capsule.h>
|
|
|
|
#include <Guid/CapsuleVendor.h>
|
|
|
|
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
#include <Library/PcdLib.h>
|
|
|
|
#include <Library/CapsuleLib.h>
|
|
|
|
#include <Library/UefiDriverEntryPoint.h>
|
|
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
|
|
#include <Library/UefiRuntimeServicesTableLib.h>
|
|
|
|
#include <Library/UefiRuntimeLib.h>
|
2007-07-18 16:31:27 +02:00
|
|
|
|
2008-07-09 15:33:20 +02:00
|
|
|
/**
|
|
|
|
Passes capsules to the firmware with both virtual and physical mapping. Depending on the intended
|
|
|
|
consumption, the firmware may process the capsule immediately. If the payload should persist
|
|
|
|
across a system reset, the reset value returned from EFI_QueryCapsuleCapabilities must
|
|
|
|
be passed into ResetSystem() and will cause the capsule to be processed by the firmware as
|
|
|
|
part of the reset process.
|
|
|
|
|
|
|
|
@param CapsuleHeaderArray Virtual pointer to an array of virtual pointers to the capsules
|
|
|
|
being passed into update capsule.
|
|
|
|
@param CapsuleCount Number of pointers to EFI_CAPSULE_HEADER in
|
|
|
|
CaspuleHeaderArray.
|
|
|
|
@param ScatterGatherList Physical pointer to a set of
|
|
|
|
EFI_CAPSULE_BLOCK_DESCRIPTOR that describes the
|
|
|
|
location in physical memory of a set of capsules.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS Valid capsule was passed. If
|
|
|
|
CAPSULE_FLAGS_PERSIT_ACROSS_RESET is not set, the
|
|
|
|
capsule has been successfully processed by the firmware.
|
|
|
|
@retval EFI_DEVICE_ERROR The capsule update was started, but failed due to a device error.
|
|
|
|
@retval EFI_INVALID_PARAMETER CapsuleCount is Zero, or CapsuleImage is not valid.
|
|
|
|
For across reset capsule image, ScatterGatherList is NULL.
|
|
|
|
@retval EFI_UNSUPPORTED CapsuleImage is not recognized by the firmware.
|
|
|
|
|
|
|
|
**/
|
2007-07-18 16:31:27 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
UpdateCapsule (
|
|
|
|
IN EFI_CAPSULE_HEADER **CapsuleHeaderArray,
|
|
|
|
IN UINTN CapsuleCount,
|
|
|
|
IN EFI_PHYSICAL_ADDRESS ScatterGatherList OPTIONAL
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UINTN ArrayNumber;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_CAPSULE_HEADER *CapsuleHeader;
|
2008-07-09 15:33:20 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Capsule Count can't be less than one.
|
|
|
|
//
|
2007-07-18 16:31:27 +02:00
|
|
|
if (CapsuleCount < 1) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
CapsuleHeader = NULL;
|
|
|
|
|
|
|
|
for (ArrayNumber = 0; ArrayNumber < CapsuleCount; ArrayNumber++) {
|
2007-11-16 11:14:34 +01:00
|
|
|
//
|
|
|
|
// A capsule which has the CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE flag must have
|
|
|
|
// CAPSULE_FLAGS_PERSIST_ACROSS_RESET set in its header as well.
|
|
|
|
//
|
2007-07-18 16:31:27 +02:00
|
|
|
CapsuleHeader = CapsuleHeaderArray[ArrayNumber];
|
|
|
|
if ((CapsuleHeader->Flags & (CAPSULE_FLAGS_PERSIST_ACROSS_RESET | CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE)) == CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
2007-11-16 11:14:34 +01:00
|
|
|
//
|
2007-12-05 10:58:33 +01:00
|
|
|
// Check Capsule image without populate flag by firmware support capsule function
|
|
|
|
//
|
|
|
|
if (((CapsuleHeader->Flags & CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE) == 0) &&
|
|
|
|
(SupportCapsuleImage (CapsuleHeader) != EFI_SUCCESS)) {
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
2007-07-18 16:31:27 +02:00
|
|
|
}
|
|
|
|
|
2007-11-16 11:14:34 +01:00
|
|
|
//
|
2007-12-05 10:58:33 +01:00
|
|
|
// Assume that capsules have the same flags on reseting or not.
|
2007-07-18 16:31:27 +02:00
|
|
|
//
|
|
|
|
CapsuleHeader = CapsuleHeaderArray[0];
|
2008-07-09 15:33:20 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Process across reset capsule image.
|
|
|
|
//
|
2007-07-18 16:31:27 +02:00
|
|
|
if ((CapsuleHeader->Flags & CAPSULE_FLAGS_PERSIST_ACROSS_RESET) != 0) {
|
|
|
|
//
|
2007-12-05 10:58:33 +01:00
|
|
|
// Check if the platform supports update capsule across a system reset
|
2007-07-18 16:31:27 +02:00
|
|
|
//
|
2009-01-04 04:20:55 +01:00
|
|
|
if (!FeaturePcdGet(PcdSupportUpdateCapsuleReset)) {
|
2007-07-18 16:31:27 +02:00
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
2007-11-16 11:14:34 +01:00
|
|
|
//
|
|
|
|
// ScatterGatherList is only referenced if the capsules are defined to persist across
|
|
|
|
// system reset.
|
|
|
|
//
|
2008-04-08 22:59:38 +02:00
|
|
|
if (ScatterGatherList == (EFI_PHYSICAL_ADDRESS) (UINTN) NULL) {
|
2007-07-18 16:31:27 +02:00
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
} else {
|
2007-11-16 11:14:34 +01:00
|
|
|
//
|
|
|
|
// ScatterGatherList is only referenced if the capsules are defined to persist across
|
|
|
|
// system reset. Set its value into NV storage to let pre-boot driver to pick it up
|
|
|
|
// after coming through a system reset.
|
|
|
|
//
|
2009-01-04 04:20:55 +01:00
|
|
|
Status = gRT->SetVariable (
|
|
|
|
EFI_CAPSULE_VARIABLE_NAME,
|
|
|
|
&gEfiCapsuleVendorGuid,
|
|
|
|
EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_BOOTSERVICE_ACCESS,
|
|
|
|
sizeof (UINTN),
|
|
|
|
(VOID *) &ScatterGatherList
|
|
|
|
);
|
2007-07-18 16:31:27 +02:00
|
|
|
if (Status != EFI_SUCCESS) {
|
2007-11-16 11:14:34 +01:00
|
|
|
return Status;
|
2007-07-18 16:31:27 +02:00
|
|
|
}
|
2007-12-05 10:58:33 +01:00
|
|
|
//
|
2008-07-09 15:33:20 +02:00
|
|
|
// Successfully set the capsule image address into EFI variable.
|
2007-12-05 10:58:33 +01:00
|
|
|
//
|
|
|
|
return EFI_SUCCESS;
|
2007-07-18 16:31:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2008-07-09 15:33:20 +02:00
|
|
|
// Process the non-reset capsule image.
|
2007-07-18 16:31:27 +02:00
|
|
|
//
|
|
|
|
if (EfiAtRuntime ()) {
|
2008-07-09 15:33:20 +02:00
|
|
|
//
|
|
|
|
// Runtime mode doesn't support the non-reset capsule image.
|
|
|
|
//
|
2008-02-05 05:41:53 +01:00
|
|
|
return EFI_UNSUPPORTED;
|
2007-07-18 16:31:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2007-11-16 11:14:34 +01:00
|
|
|
// Here should be in the boot-time for non-reset capsule image
|
2008-07-09 15:33:20 +02:00
|
|
|
// Platform specific update for the non-reset capsule image.
|
2007-07-18 16:31:27 +02:00
|
|
|
//
|
2008-07-09 15:33:20 +02:00
|
|
|
for (ArrayNumber = 0; ArrayNumber < CapsuleCount; ArrayNumber++) {
|
2007-12-05 10:58:33 +01:00
|
|
|
Status = ProcessCapsuleImage (CapsuleHeaderArray[ArrayNumber]);
|
|
|
|
if (EFI_ERROR (Status)) {
|
2007-11-16 11:14:34 +01:00
|
|
|
return Status;
|
2007-07-18 16:31:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-07-09 15:33:20 +02:00
|
|
|
/**
|
|
|
|
Returns if the capsule can be supported via UpdateCapsule().
|
|
|
|
|
|
|
|
@param CapsuleHeaderArray Virtual pointer to an array of virtual pointers to the capsules
|
|
|
|
being passed into update capsule.
|
|
|
|
@param CapsuleCount Number of pointers to EFI_CAPSULE_HEADER in
|
|
|
|
CaspuleHeaderArray.
|
|
|
|
@param MaxiumCapsuleSize On output the maximum size that UpdateCapsule() can
|
|
|
|
support as an argument to UpdateCapsule() via
|
|
|
|
CapsuleHeaderArray and ScatterGatherList.
|
|
|
|
@param ResetType Returns the type of reset required for the capsule update.
|
2007-07-18 16:31:27 +02:00
|
|
|
|
2008-07-09 15:33:20 +02:00
|
|
|
@retval EFI_SUCCESS Valid answer returned.
|
|
|
|
@retval EFI_UNSUPPORTED The capsule image is not supported on this platform, and
|
|
|
|
MaximumCapsuleSize and ResetType are undefined.
|
|
|
|
@retval EFI_INVALID_PARAMETER MaximumCapsuleSize is NULL, or ResetTyep is NULL,
|
|
|
|
Or CapsuleCount is Zero, or CapsuleImage is not valid.
|
2007-07-18 16:31:27 +02:00
|
|
|
|
2008-07-09 15:33:20 +02:00
|
|
|
**/
|
2007-07-18 16:31:27 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
QueryCapsuleCapabilities (
|
|
|
|
IN EFI_CAPSULE_HEADER **CapsuleHeaderArray,
|
|
|
|
IN UINTN CapsuleCount,
|
|
|
|
OUT UINT64 *MaxiumCapsuleSize,
|
|
|
|
OUT EFI_RESET_TYPE *ResetType
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UINTN ArrayNumber;
|
|
|
|
EFI_CAPSULE_HEADER *CapsuleHeader;
|
|
|
|
|
2008-07-09 15:33:20 +02:00
|
|
|
//
|
|
|
|
// Capsule Count can't be less than one.
|
|
|
|
//
|
2007-07-18 16:31:27 +02:00
|
|
|
if (CapsuleCount < 1) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
2008-07-09 15:33:20 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Check whether input paramter is valid
|
|
|
|
//
|
2007-07-18 16:31:27 +02:00
|
|
|
if ((MaxiumCapsuleSize == NULL) ||(ResetType == NULL)) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
CapsuleHeader = NULL;
|
|
|
|
|
|
|
|
for (ArrayNumber = 0; ArrayNumber < CapsuleCount; ArrayNumber++) {
|
|
|
|
CapsuleHeader = CapsuleHeaderArray[ArrayNumber];
|
2007-11-16 11:14:34 +01:00
|
|
|
//
|
|
|
|
// A capsule which has the CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE flag must have
|
|
|
|
// CAPSULE_FLAGS_PERSIST_ACROSS_RESET set in its header as well.
|
|
|
|
//
|
2007-07-18 16:31:27 +02:00
|
|
|
if ((CapsuleHeader->Flags & (CAPSULE_FLAGS_PERSIST_ACROSS_RESET | CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE)) == CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
2007-11-16 11:14:34 +01:00
|
|
|
//
|
2008-07-09 15:33:20 +02:00
|
|
|
// Check Capsule image without populate flag is supported by firmware
|
2007-12-05 10:58:33 +01:00
|
|
|
//
|
|
|
|
if (((CapsuleHeader->Flags & CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE) == 0) &&
|
|
|
|
(SupportCapsuleImage (CapsuleHeader) != EFI_SUCCESS)) {
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
2007-07-18 16:31:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2008-07-09 15:33:20 +02:00
|
|
|
// Assume that capsules have the same flags on reseting or not.
|
2007-07-18 16:31:27 +02:00
|
|
|
//
|
|
|
|
CapsuleHeader = CapsuleHeaderArray[0];
|
|
|
|
if ((CapsuleHeader->Flags & CAPSULE_FLAGS_PERSIST_ACROSS_RESET) != 0) {
|
|
|
|
//
|
|
|
|
//Check if the platform supports update capsule across a system reset
|
|
|
|
//
|
2009-01-04 04:20:55 +01:00
|
|
|
if (!FeaturePcdGet(PcdSupportUpdateCapsuleReset)) {
|
2007-07-18 16:31:27 +02:00
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
2009-02-23 16:18:48 +01:00
|
|
|
*ResetType = EfiResetWarm;
|
2007-07-18 16:31:27 +02:00
|
|
|
} else {
|
2008-07-09 15:33:20 +02:00
|
|
|
//
|
|
|
|
// For non-reset capsule image.
|
|
|
|
//
|
2007-07-18 16:31:27 +02:00
|
|
|
*ResetType = EfiResetCold;
|
2009-02-23 16:18:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// The support max capsule image size
|
|
|
|
//
|
|
|
|
if ((CapsuleHeader->Flags & CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE) != 0) {
|
2009-03-05 06:05:57 +01:00
|
|
|
*MaxiumCapsuleSize = PcdGet32(PcdMaxSizePopulateCapsule);
|
2009-02-23 16:18:48 +01:00
|
|
|
} else {
|
2009-03-05 06:05:57 +01:00
|
|
|
*MaxiumCapsuleSize = PcdGet32(PcdMaxSizeNonPopulateCapsule);
|
2007-07-18 16:31:27 +02:00
|
|
|
}
|
2009-02-23 16:18:48 +01:00
|
|
|
|
2007-07-18 16:31:27 +02:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-09 15:33:20 +02:00
|
|
|
/**
|
|
|
|
|
2009-01-04 04:20:55 +01:00
|
|
|
This code installs UEFI capsule runtime service.
|
2008-07-09 15:33:20 +02:00
|
|
|
|
|
|
|
@param ImageHandle The firmware allocated handle for the EFI image.
|
|
|
|
@param SystemTable A pointer to the EFI System Table.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS UEFI Capsule Runtime Services are installed successfully.
|
|
|
|
|
|
|
|
**/
|
2007-07-18 16:31:27 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
CapsuleServiceInitialize (
|
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_HANDLE NewHandle;
|
2008-07-09 15:33:20 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Install capsule runtime services into UEFI runtime service tables.
|
|
|
|
//
|
2009-01-04 04:20:55 +01:00
|
|
|
gRT->UpdateCapsule = UpdateCapsule;
|
|
|
|
gRT->QueryCapsuleCapabilities = QueryCapsuleCapabilities;
|
2007-07-18 16:31:27 +02:00
|
|
|
|
|
|
|
//
|
2008-07-09 15:33:20 +02:00
|
|
|
// Install the Capsule Architectural Protocol on a new handle
|
|
|
|
// to signify the capsule runtime services are ready.
|
2007-07-18 16:31:27 +02:00
|
|
|
//
|
|
|
|
NewHandle = NULL;
|
|
|
|
|
|
|
|
Status = gBS->InstallMultipleProtocolInterfaces (
|
|
|
|
&NewHandle,
|
|
|
|
&gEfiCapsuleArchProtocolGuid,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|