]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Add null instance of SmmLib in IntelFrameworkPkg.
authorxli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 30 Jun 2009 06:59:33 +0000 (06:59 +0000)
committerxli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 30 Jun 2009 06:59:33 +0000 (06:59 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8686 6f19259b-4bc3-4df7-8a09-765794883524

IntelFrameworkPkg/IntelFrameworkPkg.dsc
IntelFrameworkPkg/Library/SmmLibNull/SmmLibNull.c [new file with mode: 0644]
IntelFrameworkPkg/Library/SmmLibNull/SmmLibNull.inf [new file with mode: 0644]

index e96d666f9c00d43f1389fe128df4f1d884b9e107..adbbca90584fc542d2d925090b2f08d835dc02a9 100644 (file)
@@ -3,7 +3,7 @@
 #\r
 # This DSC file is used for Package Level build.\r
 #\r
-# Copyright (c) 2007, Intel Corporation\r
+# Copyright (c) 2007 - 2009, Intel Corporation\r
 #\r
 #  All rights reserved. This program and the accompanying materials\r
 #    are licensed and made available under the terms and conditions of the BSD License\r
@@ -75,4 +75,5 @@
   IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DxeSmmDriverEntryPoint.inf\r
   IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/PeiSmbusLibSmbusPpi.inf\r
   IntelFrameworkPkg/Library/PeiHobLibFramework/PeiHobLibFramework.inf\r
+  IntelFrameworkPkg/Library/SmmLibNull/SmmLibNull.inf\r
 \r
diff --git a/IntelFrameworkPkg/Library/SmmLibNull/SmmLibNull.c b/IntelFrameworkPkg/Library/SmmLibNull/SmmLibNull.c
new file mode 100644 (file)
index 0000000..fd7233a
--- /dev/null
@@ -0,0 +1,89 @@
+/** @file\r
+  NULL instance of SMM Library.\r
+\r
+  Copyright (c) 2009, Intel Corporation<BR>\r
+  All rights reserved. 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 <Base.h>\r
+#include <Library/SmmLib.h>\r
+\r
+/**\r
+  Triggers an SMI at boot time.  \r
+\r
+  This function triggers a software SMM interrupt at boot time.\r
+\r
+**/\r
+VOID\r
+EFIAPI\r
+TriggerBootServiceSoftwareSmi (\r
+  VOID\r
+  )\r
+{\r
+  return;\r
+}\r
+\r
+\r
+/**\r
+  Triggers an SMI at run time.  \r
+\r
+  This function triggers a software SMM interrupt at run time.\r
+\r
+**/\r
+VOID\r
+EFIAPI\r
+TriggerRuntimeSoftwareSmi (\r
+  VOID\r
+  )\r
+{\r
+  return;\r
+}\r
+\r
+\r
+\r
+/**\r
+  Test if a boot time software SMI happened.  \r
+\r
+  This function tests if a software SMM interrupt happened. If a software SMM interrupt happened and\r
+  it was triggered at boot time, it returns TRUE. Otherwise, it returns FALSE.\r
+\r
+  @retval TRUE   A software SMI triggered at boot time happened.\r
+  @retval FLASE  No software SMI happened or the software SMI was triggered at run time.\r
+\r
+**/\r
+BOOLEAN\r
+EFIAPI\r
+IsBootServiceSoftwareSmi (\r
+  VOID\r
+  )\r
+{\r
+  return FALSE;\r
+}\r
+\r
+\r
+/**\r
+  Test if a run time software SMI happened.  \r
+\r
+  This function tests if a software SMM interrupt happened. If a software SMM interrupt happened and\r
+  it was triggered at run time, it returns TRUE. Otherwise, it returns FALSE.\r
+\r
+  @retval TRUE   A software SMI triggered at run time happened.\r
+  @retval FLASE  No software SMI happened or the software SMI was triggered at boot time.\r
+\r
+**/\r
+BOOLEAN\r
+EFIAPI\r
+IsRuntimeSoftwareSmi (\r
+  VOID\r
+  )\r
+{\r
+  return FALSE;\r
+}\r
+\r
diff --git a/IntelFrameworkPkg/Library/SmmLibNull/SmmLibNull.inf b/IntelFrameworkPkg/Library/SmmLibNull/SmmLibNull.inf
new file mode 100644 (file)
index 0000000..3636e11
--- /dev/null
@@ -0,0 +1,36 @@
+#/** @file\r
+# NULL instance of SMM Library.\r
+#\r
+#  Copyright (c) 2009, Intel Corporation.\r
+#\r
+#  All rights reserved. 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
+#  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
+\r
+[Defines]\r
+  INF_VERSION                    = 0x00010005\r
+  BASE_NAME                      = SmmLibNull\r
+  FILE_GUID                      = DDADFC93-FBC5-4389-B20F-EC99E4A6AE52\r
+  MODULE_TYPE                    = BASE\r
+  VERSION_STRING                 = 1.0\r
+  LIBRARY_CLASS                  = SmmLib\r
+\r
+#\r
+# The following information is for reference only and not required by the build tools.\r
+#\r
+#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC\r
+#\r
+\r
+[Sources.common]\r
+  SmmLibNull.c\r
+  \r
+\r
+[Packages]\r
+  MdePkg/MdePkg.dec\r
+  IntelFrameworkPkg/IntelFrameworkPkg.dec\r