]> git.proxmox.com Git - mirror_edk2.git/commitdiff
1. add missing inf files
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 29 Jun 2007 01:28:00 +0000 (01:28 +0000)
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 29 Jun 2007 01:28:00 +0000 (01:28 +0000)
2. remove FrameworkBase.h reference from FrameworkSmm.h

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2866 6f19259b-4bc3-4df7-8a09-765794883524

IntelFrameworkPkg/Include/FrameworkSmm.h
IntelFrameworkPkg/Library/DxeIoLibCpuIo/DxeIoLibCpuIo.inf [new file with mode: 0644]
IntelFrameworkPkg/Library/DxeIoLibCpuIo/IoHighLevel.c
IntelFrameworkPkg/Library/DxeIoLibCpuIo/IoLib.c
IntelFrameworkPkg/Library/DxeIoLibCpuIo/IoLibMmioBuffer.c
IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DxeSmmDriverEntryPoint.inf [new file with mode: 0644]

index 0f530b091db1ecd275a5ec890188d9cf0f64a3d6..0226b9a15bbef5c8e0e051a8ca9eef7cb16cdfc1 100644 (file)
@@ -20,8 +20,6 @@
 #ifndef _FRAMEWORK_SMM_H_\r
 #define _FRAMEWORK_SMM_H_\r
 \r
-#include <FrameworkBase.h>\r
-\r
 #include <FrameworkDxe.h>\r
 #include <Common/FrameworkSmmCis.h>\r
 \r
diff --git a/IntelFrameworkPkg/Library/DxeIoLibCpuIo/DxeIoLibCpuIo.inf b/IntelFrameworkPkg/Library/DxeIoLibCpuIo/DxeIoLibCpuIo.inf
new file mode 100644 (file)
index 0000000..dba120e
--- /dev/null
@@ -0,0 +1,87 @@
+#/** @file\r
+# Component description file for Cpu Io Dxe Io Library.\r
+#\r
+# I/O Library implementation that uses the CPU I/O Protocol for I/O\r
+#  and MMIO operations.\r
+# Copyright (c) 2006, 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
+################################################################################\r
+#\r
+# Defines Section - statements that will be processed to create a Makefile.\r
+#\r
+################################################################################\r
+[Defines]\r
+  INF_VERSION                    = 0x00010005\r
+  BASE_NAME                      = DxeIoLibCpuIo\r
+  FILE_GUID                      = e94cd42a-3aad-4ea0-9b09-945891c60ccd\r
+  MODULE_TYPE                    = DXE_DRIVER\r
+  VERSION_STRING                 = 1.0\r
+  LIBRARY_CLASS                  = IoLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER\r
+  EDK_RELEASE_VERSION            = 0x00020000\r
+  EFI_SPECIFICATION_VERSION      = 0x00020000\r
+\r
+  CONSTRUCTOR                    = IoLibConstructor\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
+################################################################################\r
+#\r
+# Sources Section - list of files that are required for the build to succeed.\r
+#\r
+################################################################################\r
+\r
+[Sources.common]\r
+  IoLibMmioBuffer.c\r
+  DxeCpuIoLibInternal.h\r
+  IoHighLevel.c\r
+  IoLib.c\r
+\r
+\r
+################################################################################\r
+#\r
+# Package Dependency Section - list of Package files that are required for\r
+#                              this module.\r
+#\r
+################################################################################\r
+\r
+[Packages]\r
+  MdePkg/MdePkg.dec\r
+\r
+\r
+################################################################################\r
+#\r
+# Library Class Section - list of Library Classes that are required for\r
+#                         this module.\r
+#\r
+################################################################################\r
+\r
+[LibraryClasses]\r
+  BaseLib\r
+  DebugLib\r
+  UefiBootServicesTableLib\r
+\r
+\r
+################################################################################\r
+#\r
+# Protocol C Name Section - list of Protocol and Protocol Notify C Names\r
+#                           that this module uses or produces.\r
+#\r
+################################################################################\r
+\r
+[Protocols]\r
+  gEfiCpuIoProtocolGuid                         # PROTOCOL ALWAYS_CONSUMED\r
+\r
index 719fe1301784bd14ed120ed5ff2341f6a6c14f7c..bfb6527324e452cb4256669d6953a00562404db1 100644 (file)
@@ -23,6 +23,7 @@
 \r
 **/\r
 \r
+\r
 #include "DxeCpuIoLibInternal.h"\r
 \r
 /**\r
index 3b78b93a37cd7c0057a77ca02ae22daa0628703b..e43c173bb1b7f9c75378ebb81e9a554990c80fd3 100644 (file)
@@ -14,6 +14,7 @@
 \r
 **/\r
 \r
+\r
 #include "DxeCpuIoLibInternal.h"\r
 \r
 //\r
index d3f745c6a1e57df5cab6d40d805a8fe53f4d9c66..1a39f212884454ca4e3b7c081cf32081c5d81f80 100644 (file)
@@ -12,6 +12,7 @@
 \r
 **/\r
 \r
+\r
 #include "DxeCpuIoLibInternal.h"\r
 \r
 /**\r
diff --git a/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DxeSmmDriverEntryPoint.inf b/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DxeSmmDriverEntryPoint.inf
new file mode 100644 (file)
index 0000000..432e722
--- /dev/null
@@ -0,0 +1,83 @@
+#/** @file\r
+# SMM driver entry point library\r
+#\r
+# Register driver in SMRAM and wrapper driver library constructors and entry point\r
+# Copyright (c) 2006 - 2007, 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
+################################################################################\r
+#\r
+# Defines Section - statements that will be processed to create a Makefile.\r
+#\r
+################################################################################\r
+[Defines]\r
+  INF_VERSION                    = 0x00010005\r
+  BASE_NAME                      = DxeSmmDriverEntryPoint\r
+  FILE_GUID                      = 79C5C7B7-1083-42a6-AD15-2A4E7C4274D7\r
+  MODULE_TYPE                    = DXE_SMM_DRIVER\r
+  VERSION_STRING                 = 1.0\r
+  LIBRARY_CLASS                  = DxeSmmDriverEntryPoint|DXE_SMM_DRIVER\r
+  EDK_RELEASE_VERSION            = 0x00020000\r
+  EFI_SPECIFICATION_VERSION      = 0x00020000\r
+\r
+\r
+#\r
+# The following information is for reference only and not required by the build tools.\r
+#\r
+#  VALID_ARCHITECTURES           = IA32 X64\r
+#\r
+\r
+################################################################################\r
+#\r
+# Sources Section - list of files that are required for the build to succeed.\r
+#\r
+################################################################################\r
+\r
+[Sources.common]\r
+  DriverEntryPoint.c\r
+\r
+\r
+################################################################################\r
+#\r
+# Package Dependency Section - list of Package files that are required for\r
+#                              this module.\r
+#\r
+################################################################################\r
+\r
+[Packages]\r
+  MdePkg/MdePkg.dec\r
+\r
+\r
+################################################################################\r
+#\r
+# Library Class Section - list of Library Classes that are required for\r
+#                         this module.\r
+#\r
+################################################################################\r
+\r
+[LibraryClasses]\r
+  DebugLib\r
+  UefiBootServicesTableLib\r
+\r
+\r
+################################################################################\r
+#\r
+# Protocol C Name Section - list of Protocol and Protocol Notify C Names\r
+#                           that this module uses or produces.\r
+#\r
+################################################################################\r
+\r
+[Protocols]\r
+  gEfiLoadedImageProtocolGuid                   # PROTOCOL ALWAYS_CONSUMED\r
+  gEfiSmmBaseProtocolGuid                       # PROTOCOL ALWAYS_CONSUMED\r
+  gEfiDevicePathProtocolGuid                    # PROTOCOL ALWAYS_CONSUMED\r
+\r