]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Vlv2TbltDevicePkg/ResetSystemLib: Implement ResetPlatformSpecific
authorRuiyu Ni <ruiyu.ni@intel.com>
Wed, 10 Aug 2016 05:29:28 +0000 (13:29 +0800)
committerRuiyu Ni <ruiyu.ni@intel.com>
Fri, 2 Sep 2016 02:07:16 +0000 (10:07 +0800)
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: David Wei <david.wei@intel.com>
Vlv2TbltDevicePkg/Library/ResetSystemLib/ResetSystemLib.c

index 1a6da83c409f314d201d932120f1d3067ed7dffd..55e48bdadf737b0183f2eb2fc570944c245cb0aa 100644 (file)
@@ -1,7 +1,6 @@
 /** @file\r
 \r
-Copyright (c) 2007  - 2014, Intel Corporation. All rights reserved.<BR>\r
-                                                                                   \r\r
+  Copyright (c) 2007 - 2016, Intel Corporation. All rights reserved.<BR>\r
   This program and the accompanying materials are licensed and made available under\r\r
   the terms and conditions of the BSD License that accompanies this distribution.  \r\r
   The full text of the license may be found at                                     \r\r
@@ -176,3 +175,23 @@ EnterS3WithImmediateWake (
   ASSERT (FALSE);\r
 }\r
 \r
+/**\r
+  This function causes a systemwide reset. The exact type of the reset is\r
+  defined by the EFI_GUID that follows the Null-terminated Unicode string passed\r
+  into ResetData. If the platform does not recognize the EFI_GUID in ResetData\r
+  the platform must pick a supported reset type to perform.The platform may\r
+  optionally log the parameters from any non-normal reset that occurs.\r
+\r
+  @param[in]  DataSize   The size, in bytes, of ResetData.\r
+  @param[in]  ResetData  The data buffer starts with a Null-terminated string,\r
+                         followed by the EFI_GUID.\r
+**/\r
+VOID\r
+EFIAPI\r
+ResetPlatformSpecific (\r
+  IN UINTN   DataSize,\r
+  IN VOID    *ResetData\r
+  )\r
+{\r
+  ResetCold ();\r
+}\r