]> git.proxmox.com Git - mirror_edk2.git/commitdiff
MdeModulePkg: Add ResetSystemRuntimeDxe driver
authorjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 1 Jul 2011 00:40:46 +0000 (00:40 +0000)
committerjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 1 Jul 2011 00:40:46 +0000 (00:40 +0000)
Signed-off-by: jljusten
Reviewed-by: mdkinney
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11938 6f19259b-4bc3-4df7-8a09-765794883524

MdeModulePkg/MdeModulePkg.dsc
MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c [new file with mode: 0644]
MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.h [new file with mode: 0644]
MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf [new file with mode: 0644]

index 8ebab615606bb35811aa06d2341448702d1eb47c..a0dceac06f8ff8dadd03ffa5a95de762297e6d94 100644 (file)
@@ -86,6 +86,7 @@
   PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf\r
   DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf\r
   PlatformHookLib|MdeModulePkg/Library/BasePlatformHookLibNull/BasePlatformHookLibNull.inf\r
+  ResetSystemLib|MdeModulePkg/Library/BaseResetSystemLibNull/BaseResetSystemLibNull.inf\r
 \r
 [LibraryClasses.EBC.PEIM]\r
   IoLib|MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf\r
   MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf\r
   MdeModulePkg/Universal/Metronome/Metronome.inf\r
   MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf\r
+  MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf\r
   MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf\r
 \r
   MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf\r
diff --git a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c
new file mode 100644 (file)
index 0000000..957cb0b
--- /dev/null
@@ -0,0 +1,181 @@
+/** @file\r
+  Reset Architectural Protocol implementation\r
+\r
+  Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r
+\r
+  This program and the accompanying materials\r
+  are licensed and made available under the terms and conditions of the BSD License\r
+  which accompanies this distribution.  The full text of the license may be found at\r
+  http://opensource.org/licenses/bsd-license.php\r
+\r
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+\r
+**/\r
+\r
+#include "ResetSystem.h"\r
+\r
+//\r
+// The handle onto which the Reset Architectural Protocol is installed\r
+//\r
+EFI_HANDLE  mResetHandle = NULL;\r
+\r
+/**\r
+  The driver's entry point.\r
+\r
+  It initializes the Reset Architectural Protocol.\r
+\r
+  @param[in] ImageHandle  The firmware allocated handle for the EFI image.  \r
+  @param[in] SystemTable  A pointer to the EFI System Table.\r
+  \r
+  @retval EFI_SUCCESS     The entry point is executed successfully.\r
+  @retval other           Cannot install ResetArch protocol.\r
+\r
+**/\r
+EFI_STATUS\r
+EFIAPI\r
+InitializeResetSystem (\r
+  IN EFI_HANDLE        ImageHandle,\r
+  IN EFI_SYSTEM_TABLE  *SystemTable\r
+  )\r
+{\r
+  EFI_STATUS  Status;\r
+\r
+  //\r
+  // Make sure the Reset Architectural Protocol is not already installed in the system\r
+  //\r
+  ASSERT_PROTOCOL_ALREADY_INSTALLED (NULL, &gEfiResetArchProtocolGuid);\r
+\r
+  //\r
+  // Hook the runtime service table\r
+  //\r
+  gRT->ResetSystem = ResetSystem;\r
+\r
+  //\r
+  // Now install the Reset RT AP on a new handle\r
+  //\r
+  Status = gBS->InstallMultipleProtocolInterfaces (\r
+                  &mResetHandle,\r
+                  &gEfiResetArchProtocolGuid,\r
+                  NULL,\r
+                  NULL\r
+                  );\r
+  ASSERT_EFI_ERROR (Status);\r
+\r
+  return Status;\r
+}\r
+\r
+/**\r
+  Reset system for capsule update.\r
+\r
+  @param[in] CapsuleDataPtr  Pointer to the capsule block descriptors.\r
+                            \r
+**/\r
+VOID\r
+CapsuleReset (\r
+  IN UINTN   CapsuleDataPtr\r
+  )\r
+{\r
+  //\r
+  // This implementation assumes that we're using a variable\r
+  // to indicate capsule updates.\r
+  //\r
+  gRT->SetVariable (\r
+         EFI_CAPSULE_VARIABLE_NAME,\r
+         &gEfiCapsuleVendorGuid,\r
+         EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_BOOTSERVICE_ACCESS,\r
+         sizeof (UINTN),\r
+         (VOID *) &CapsuleDataPtr\r
+         );\r
+\r
+  EnterS3WithImmediateWake ();\r
+\r
+  //\r
+  // Should not return\r
+  //\r
+  CpuDeadLoop ();\r
+}\r
+\r
+/**\r
+  Put the system into S3 power state.                            \r
+**/\r
+VOID\r
+DoS3 (\r
+  VOID\r
+  )\r
+{\r
+  EnterS3WithImmediateWake ();\r
+\r
+  //\r
+  // Should not return\r
+  //\r
+  CpuDeadLoop ();\r
+}\r
+\r
+/**\r
+  Resets the entire platform.\r
+\r
+  @param[in] ResetType          The type of reset to perform.\r
+  @param[in] ResetStatus        The status code for the reset.\r
+  @param[in] DataSize           The size, in bytes, of WatchdogData.\r
+  @param[in] ResetData          For a ResetType of EfiResetCold, EfiResetWarm, or\r
+                                EfiResetShutdown the data buffer starts with a Null-terminated\r
+                                string, optionally followed by additional binary data.\r
+\r
+**/\r
+VOID\r
+EFIAPI\r
+ResetSystem (\r
+  IN EFI_RESET_TYPE   ResetType,\r
+  IN EFI_STATUS       ResetStatus,\r
+  IN UINTN            DataSize,\r
+  IN VOID             *ResetData OPTIONAL\r
+  )\r
+{\r
+  EFI_STATUS    Status;\r
+  UINTN         Size;\r
+  UINTN         CapsuleDataPtr;\r
+\r
+  switch (ResetType) {\r
+  case EfiResetWarm:\r
+\r
+    //\r
+    //Check if there are pending capsules to process\r
+    //\r
+    Size = sizeof (CapsuleDataPtr);\r
+    Status =  EfiGetVariable (\r
+                 EFI_CAPSULE_VARIABLE_NAME,\r
+                 &gEfiCapsuleVendorGuid,\r
+                 NULL,\r
+                 &Size,\r
+                 (VOID *) &CapsuleDataPtr\r
+                 );\r
+\r
+    if (Status == EFI_SUCCESS) {\r
+      //\r
+      //Process capsules across a system reset.\r
+      //\r
+      DoS3();\r
+    }\r
+\r
+    ResetWarm ();\r
+\r
+    break;\r
+\r
+ case EfiResetCold:\r
+    ResetCold ();\r
+    break;\r
+\r
+  case EfiResetShutdown:\r
+    ResetShutdown ();\r
+    return ;\r
+\r
+  default:\r
+    return ;\r
+  }\r
+\r
+  //\r
+  // Given we should have reset getting here would be bad\r
+  //\r
+  ASSERT (FALSE);\r
+}\r
diff --git a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.h b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.h
new file mode 100644 (file)
index 0000000..37afa5b
--- /dev/null
@@ -0,0 +1,84 @@
+/** @file\r
+\r
+  Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r
+\r
+  This program and the accompanying materials\r
+  are licensed and made available under the terms and conditions of the BSD License\r
+  which accompanies this distribution.  The full text of the license may be found at\r
+  http://opensource.org/licenses/bsd-license.php\r
+\r
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+\r
+**/\r
+\r
+#ifndef _RESET_SYSTEM_H_\r
+#define _RESET_SYSTEM_H_\r
+\r
+\r
+#include <PiDxe.h>\r
+\r
+#include <Protocol/Reset.h>\r
+#include <Guid/CapsuleVendor.h>\r
+\r
+#include <Library/BaseLib.h>\r
+#include <Library/DebugLib.h>\r
+#include <Library/UefiLib.h>\r
+#include <Library/IoLib.h>\r
+#include <Library/UefiDriverEntryPoint.h>\r
+#include <Library/UefiBootServicesTableLib.h>\r
+#include <Library/UefiRuntimeLib.h>\r
+#include <Library/UefiRuntimeServicesTableLib.h>\r
+#include <Library/ResetSystemLib.h>\r
+\r
+/**\r
+  The driver's entry point.\r
+\r
+  It initializes the Reset Architectural Protocol.\r
+\r
+  @param[in] ImageHandle  The firmware allocated handle for the EFI image.  \r
+  @param[in] SystemTable  A pointer to the EFI System Table.\r
+  \r
+  @retval EFI_SUCCESS     The entry point is executed successfully.\r
+  @retval other           Cannot install ResetArch protocol.\r
+\r
+**/\r
+EFI_STATUS\r
+EFIAPI\r
+InitializeResetSystem (\r
+  IN EFI_HANDLE        ImageHandle,\r
+  IN EFI_SYSTEM_TABLE  *SystemTable\r
+  );\r
+\r
+/**\r
+  Resets the entire platform.\r
+\r
+  @param[in] ResetType          The type of reset to perform.\r
+  @param[in] ResetStatus        The status code for the reset.\r
+  @param[in] DataSize           The size, in bytes, of WatchdogData.\r
+  @param[in] ResetData          For a ResetType of EfiResetCold, EfiResetWarm, or\r
+                                EfiResetShutdown the data buffer starts with a Null-terminated\r
+                                string, optionally followed by additional binary data.\r
+\r
+**/\r
+VOID\r
+EFIAPI\r
+ResetSystem (\r
+  IN EFI_RESET_TYPE   ResetType,\r
+  IN EFI_STATUS       ResetStatus,\r
+  IN UINTN            DataSize,\r
+  IN VOID             *ResetData OPTIONAL\r
+  );\r
+\r
+/**\r
+  Reset system for capsule update.\r
+\r
+  @param[in] CapsuleDataPtr  Pointer to the capsule block descriptors.\r
+                            \r
+**/\r
+VOID\r
+CapsuleReset (\r
+  IN UINTN  CapsuleDataPtr\r
+  );\r
+\r
+#endif\r
diff --git a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf
new file mode 100644 (file)
index 0000000..6fdd2d3
--- /dev/null
@@ -0,0 +1,63 @@
+## @file\r
+# Component description file for ResetSystem module.\r
+#\r
+# This driver implements Reset Architectural Protocol.\r
+#\r
+# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r
+#\r
+# This program and the accompanying materials are\r
+# licensed and made available under the terms and conditions of the BSD License\r
+# which accompanies this distribution.  The full text of the license may be found at\r
+# http://opensource.org/licenses/bsd-license.php\r
+#\r
+# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+#\r
+##\r
+\r
+[Defines]\r
+  INF_VERSION                    = 0x00010005\r
+  BASE_NAME                      = ResetSystemRuntimeDxe\r
+  FILE_GUID                      = 4B28E4C7-FF36-4e10-93CF-A82159E777C5\r
+  MODULE_TYPE                    = DXE_RUNTIME_DRIVER\r
+  VERSION_STRING                 = 1.0\r
+\r
+  ENTRY_POINT                    = InitializeResetSystem\r
+\r
+#\r
+# The following information is for reference only and not required by the build tools.\r
+#\r
+#  VALID_ARCHITECTURES           = IA32 X64 EBC\r
+#\r
+\r
+[Sources]\r
+  ResetSystem.h\r
+  ResetSystem.c\r
+\r
+[Packages]\r
+  MdePkg/MdePkg.dec\r
+  MdeModulePkg/MdeModulePkg.dec\r
+\r
+[LibraryClasses]\r
+  ResetSystemLib\r
+  UefiRuntimeServicesTableLib\r
+  UefiRuntimeLib\r
+  UefiBootServicesTableLib\r
+  UefiDriverEntryPoint\r
+  IoLib\r
+  UefiLib\r
+  DebugLib\r
+  BaseLib\r
+\r
+\r
+[Guids]\r
+  gEfiCapsuleVendorGuid                         # ALWAYS_CONSUMED\r
+\r
+\r
+[Protocols]\r
+  gEfiResetArchProtocolGuid                     # PROTOCOL ALWAYS_PRODUCED\r
+\r
+\r
+[Depex]\r
+  TRUE\r
+\r