VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareNew/EmbeddedPkg/ResetRuntimeDxe/reset.c@ 105668

Last change on this file since 105668 was 99404, checked in by vboxsync, 2 years ago

Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643

  • Property svn:eol-style set to native
File size: 1.6 KB
Line 
1/** @file
2
3 Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
4
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7**/
8
9#include <PiDxe.h>
10#include <Protocol/Reset.h>
11#include <Library/DebugLib.h>
12#include <Library/UefiDriverEntryPoint.h>
13#include <Library/UefiBootServicesTableLib.h>
14#include <Library/EfiResetSystemLib.h>
15
16/**
17 Resets the entire platform.
18
19 @param ResetType The type of reset to perform.
20 @param ResetStatus The status code for the reset.
21 @param DataSize The size, in bytes, of WatchdogData.
22 @param ResetData For a ResetType of EfiResetCold, EfiResetWarm, or
23 EfiResetShutdown the data buffer starts with a Null-terminated
24 Unicode string, optionally followed by additional binary data.
25
26**/
27VOID
28EFIAPI
29ResetSystemViaLib (
30 IN EFI_RESET_TYPE ResetType,
31 IN EFI_STATUS ResetStatus,
32 IN UINTN DataSize,
33 IN VOID *ResetData OPTIONAL
34 )
35{
36 LibResetSystem (ResetType, ResetStatus, DataSize, ResetData);
37 return;
38}
39
40EFI_STATUS
41EFIAPI
42InitializeReset (
43 IN EFI_HANDLE ImageHandle,
44 IN EFI_SYSTEM_TABLE *SystemTable
45 )
46{
47 EFI_STATUS Status;
48 EFI_HANDLE Handle;
49
50 LibInitializeResetSystem (ImageHandle, SystemTable);
51
52 SystemTable->RuntimeServices->ResetSystem = ResetSystemViaLib;
53
54 Handle = NULL;
55 Status = gBS->InstallMultipleProtocolInterfaces (
56 &Handle,
57 &gEfiResetArchProtocolGuid,
58 NULL,
59 NULL
60 );
61 ASSERT_EFI_ERROR (Status);
62
63 return Status;
64}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette