mirror of https://github.com/acidanthera/audk.git
1. PI SMBIOS Checkin. Major change include:
1) Produce PI SMBIOS protocol in MdeModulePkg 2) Update all consumers (in CorePkgs and native platform pkgs) to consume SMBIOS protocol instead of DataHub 3) Pass ECC tool; Verify Nt32, Duet, Unix platform git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9456 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
6cfbf7adff
commit
310b04e6f1
|
@ -287,6 +287,7 @@
|
|||
MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
|
||||
MdeModulePkg/Universal/Metronome/Metronome.inf
|
||||
MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
||||
MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
|
||||
|
||||
MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf
|
||||
MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,114 @@
|
|||
/** @file
|
||||
This code supports the implementation of the Smbios protocol
|
||||
|
||||
Copyright (c) 2009, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _SMBIOS_DXE_H_
|
||||
#define _SMBIOS_DXE_H_
|
||||
|
||||
|
||||
#include <PiDxe.h>
|
||||
|
||||
#include <Protocol/Smbios.h>
|
||||
#include <IndustryStandard/SmBios.h>
|
||||
#include <Guid/EventGroup.h>
|
||||
#include <Guid/SmBios.h>
|
||||
#include <Library/DebugLib.h>
|
||||
#include <Library/UefiDriverEntryPoint.h>
|
||||
#include <Library/UefiLib.h>
|
||||
#include <Library/BaseLib.h>
|
||||
#include <Library/BaseMemoryLib.h>
|
||||
#include <Library/MemoryAllocationLib.h>
|
||||
#include <Library/UefiBootServicesTableLib.h>
|
||||
|
||||
#define SMBIOS_MAJOR_VERSION 2
|
||||
#define SMBIOS_MINOR_VERSION 4
|
||||
|
||||
|
||||
#define SMBIOS_INSTANCE_SIGNATURE SIGNATURE_32 ('S', 'B', 'i', 's')
|
||||
typedef struct {
|
||||
UINT32 Signature;
|
||||
EFI_HANDLE Handle;
|
||||
//
|
||||
// Produced protocol
|
||||
//
|
||||
EFI_SMBIOS_PROTOCOL Smbios;
|
||||
//
|
||||
// Updates to record list must be locked.
|
||||
//
|
||||
EFI_LOCK DataLock;
|
||||
//
|
||||
// List of EFI_SMBIOS_ENTRY structures.
|
||||
//
|
||||
LIST_ENTRY DataListHead;
|
||||
//
|
||||
// List of allocated SMBIOS handle.
|
||||
//
|
||||
LIST_ENTRY AllocatedHandleListHead;
|
||||
} SMBIOS_INSTANCE;
|
||||
|
||||
#define SMBIOS_INSTANCE_FROM_THIS(this) CR (this, SMBIOS_INSTANCE, Smbios, SMBIOS_INSTANCE_SIGNATURE)
|
||||
|
||||
//
|
||||
// SMBIOS record Header
|
||||
//
|
||||
// An SMBIOS internal Record is an EFI_SMBIOS_RECORD_HEADER followed by (RecordSize - HeaderSize) bytes of
|
||||
// data. The format of the data is defined by the SMBIOS spec.
|
||||
//
|
||||
//
|
||||
#define EFI_SMBIOS_RECORD_HEADER_VERSION 0x0100
|
||||
typedef struct {
|
||||
UINT16 Version;
|
||||
UINT16 HeaderSize;
|
||||
UINTN RecordSize;
|
||||
EFI_HANDLE ProducerHandle;
|
||||
UINTN NumberOfStrings;
|
||||
} EFI_SMBIOS_RECORD_HEADER;
|
||||
|
||||
|
||||
//
|
||||
// Private data structure to contain the SMBIOS record. One record per
|
||||
// structure. SmbiosRecord is a copy of the data passed in and follows RecordHeader .
|
||||
//
|
||||
#define EFI_SMBIOS_ENTRY_SIGNATURE SIGNATURE_32 ('S', 'r', 'e', 'c')
|
||||
typedef struct {
|
||||
UINT32 Signature;
|
||||
LIST_ENTRY Link;
|
||||
EFI_SMBIOS_RECORD_HEADER *RecordHeader;
|
||||
UINTN RecordSize;
|
||||
} EFI_SMBIOS_ENTRY;
|
||||
|
||||
#define SMBIOS_ENTRY_FROM_LINK(link) CR (link, EFI_SMBIOS_ENTRY, Link, EFI_SMBIOS_ENTRY_SIGNATURE)
|
||||
|
||||
//
|
||||
// Private data to contain the Smbios handle that already allocated.
|
||||
//
|
||||
#define SMBIOS_HANDLE_ENTRY_SIGNATURE SIGNATURE_32 ('S', 'h', 'r', 'd')
|
||||
|
||||
typedef struct {
|
||||
UINT32 Signature;
|
||||
LIST_ENTRY Link;
|
||||
//
|
||||
// Filter driver will register what record guid filter should be used.
|
||||
//
|
||||
EFI_SMBIOS_HANDLE SmbiosHandle;
|
||||
|
||||
} SMBIOS_HANDLE_ENTRY;
|
||||
|
||||
#define SMBIOS_HANDLE_ENTRY_FROM_LINK(link) CR (link, SMBIOS_HANDLE_ENTRY, Link, SMBIOS_HANDLE_ENTRY_SIGNATURE)
|
||||
|
||||
typedef struct {
|
||||
EFI_SMBIOS_TABLE_HEADER Header;
|
||||
UINT8 Tailing[2];
|
||||
} EFI_SMBIOS_TABLE_END_STRUCTURE;
|
||||
|
||||
#endif
|
|
@ -0,0 +1,58 @@
|
|||
#/** @file
|
||||
# Component description file for Smbios module.
|
||||
#
|
||||
# This driver initializes and installs the SMBIOS protocol.
|
||||
# Copyright (c) 2009, Intel Corporation
|
||||
#
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
#
|
||||
#**/
|
||||
|
||||
[Defines]
|
||||
INF_VERSION = 0x00010005
|
||||
BASE_NAME = SmbiosDxe
|
||||
FILE_GUID = F9D88642-0737-49bc-81B5-6889CD57D9EA
|
||||
MODULE_TYPE = DXE_DRIVER
|
||||
VERSION_STRING = 1.0
|
||||
EDK_RELEASE_VERSION = 0x00020000
|
||||
EFI_SPECIFICATION_VERSION = 0x00020000
|
||||
|
||||
ENTRY_POINT = SmbiosDriverEntryPoint
|
||||
|
||||
#
|
||||
# The following information is for reference only and not required by the build tools.
|
||||
#
|
||||
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
||||
#
|
||||
|
||||
[Sources.common]
|
||||
SmbiosDxe.h
|
||||
SmbiosDxe.c
|
||||
|
||||
[Packages]
|
||||
MdePkg/MdePkg.dec
|
||||
|
||||
[LibraryClasses]
|
||||
UefiBootServicesTableLib
|
||||
MemoryAllocationLib
|
||||
BaseMemoryLib
|
||||
BaseLib
|
||||
UefiLib
|
||||
UefiDriverEntryPoint
|
||||
DebugLib
|
||||
|
||||
[Protocols]
|
||||
gEfiSmbiosProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
||||
|
||||
[Guids]
|
||||
gEfiEventReadyToBootGuid # PROTOCOL ALWAYS_CONSUMED
|
||||
gEfiSmbiosTableGuid # PROTOCOL ALWAYS_CONSUMED
|
||||
|
||||
[Depex]
|
||||
TRUE
|
Loading…
Reference in New Issue