2008-03-19 04:23:16 +01:00
|
|
|
/**@file
|
2007-06-27 08:46:00 +02:00
|
|
|
|
2009-11-20 05:02:03 +01:00
|
|
|
Copyright (c) 2006 - 2009, Intel Corporation
|
2007-07-03 08:07:51 +02:00
|
|
|
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.
|
2007-06-27 08:46:00 +02:00
|
|
|
|
|
|
|
Module Name:
|
|
|
|
|
|
|
|
MiscSubclassDriver.h
|
|
|
|
|
|
|
|
Abstract:
|
|
|
|
|
|
|
|
Header file for MiscSubclass Driver.
|
|
|
|
|
2008-03-19 04:23:16 +01:00
|
|
|
**/
|
2007-06-27 08:46:00 +02:00
|
|
|
|
|
|
|
#ifndef _MISC_SUBCLASS_DRIVER_H
|
|
|
|
#define _MISC_SUBCLASS_DRIVER_H
|
|
|
|
|
2007-07-10 19:16:14 +02:00
|
|
|
#include <FrameworkDxe.h>
|
|
|
|
#include <WinNtDxe.h>
|
|
|
|
#include <Guid/DataHubRecords.h>
|
2009-11-20 05:02:03 +01:00
|
|
|
#include <IndustryStandard/SmBios.h>
|
|
|
|
#include <Protocol/Smbios.h>
|
2007-07-10 19:16:14 +02:00
|
|
|
#include <Protocol/WinNtIo.h>
|
|
|
|
#include <Library/BaseLib.h>
|
|
|
|
#include <Library/DebugLib.h>
|
2009-03-31 04:42:41 +02:00
|
|
|
#include <Library/HiiLib.h>
|
2007-07-10 19:16:14 +02:00
|
|
|
#include <Library/UefiLib.h>
|
|
|
|
#include <Library/UefiDriverEntryPoint.h>
|
|
|
|
#include <Library/BaseMemoryLib.h>
|
|
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
|
|
#include <Library/DevicePathLib.h>
|
2007-07-26 23:33:37 +02:00
|
|
|
#include <Library/PcdLib.h>
|
2009-11-20 05:02:03 +01:00
|
|
|
#include <Library/MemoryAllocationLib.h>
|
2007-06-27 08:46:00 +02:00
|
|
|
#include <MiscDevicePath.h>
|
|
|
|
|
2009-11-20 05:02:03 +01:00
|
|
|
|
2007-06-27 08:46:00 +02:00
|
|
|
//
|
|
|
|
// Data table entry update function.
|
|
|
|
//
|
2009-11-20 05:02:03 +01:00
|
|
|
typedef EFI_STATUS (EFIAPI EFI_MISC_SMBIOS_DATA_FUNCTION) (
|
|
|
|
IN VOID *RecordData,
|
|
|
|
IN EFI_SMBIOS_PROTOCOL *Smbios
|
2007-06-27 08:46:00 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Data table entry definition.
|
|
|
|
//
|
|
|
|
typedef struct {
|
2009-11-20 05:02:03 +01:00
|
|
|
//
|
|
|
|
// intermediat input data for SMBIOS record
|
|
|
|
//
|
|
|
|
VOID *RecordData;
|
|
|
|
EFI_MISC_SMBIOS_DATA_FUNCTION *Function;
|
|
|
|
} EFI_MISC_SMBIOS_DATA_TABLE;
|
2007-06-27 08:46:00 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Data Table extern definitions.
|
|
|
|
//
|
2009-11-20 05:02:03 +01:00
|
|
|
#define MISC_SMBIOS_TABLE_EXTERNS(NAME1, NAME2, NAME3) \
|
|
|
|
extern NAME1 NAME2 ## Data; \
|
|
|
|
extern EFI_MISC_SMBIOS_DATA_FUNCTION NAME3 ## Function
|
|
|
|
|
2007-06-27 08:46:00 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Data Table entries
|
|
|
|
//
|
2009-11-20 05:02:03 +01:00
|
|
|
#define MISC_SMBIOS_TABLE_ENTRY_DATA_AND_FUNCTION(NAME1, NAME2) \
|
|
|
|
{ \
|
|
|
|
& NAME1 ## Data, \
|
|
|
|
& NAME2 ## Function \
|
|
|
|
}
|
2007-06-27 08:46:00 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Global definition macros.
|
|
|
|
//
|
2009-11-20 05:02:03 +01:00
|
|
|
#define MISC_SMBIOS_TABLE_DATA(NAME1, NAME2) \
|
|
|
|
NAME1 NAME2 ## Data
|
2007-06-27 08:46:00 +02:00
|
|
|
|
2009-11-20 05:02:03 +01:00
|
|
|
#define MISC_SMBIOS_TABLE_FUNCTION(NAME2) \
|
|
|
|
EFI_STATUS EFIAPI NAME2 ## Function( \
|
|
|
|
IN VOID *RecordData, \
|
|
|
|
IN EFI_SMBIOS_PROTOCOL *Smbios \
|
2007-06-27 08:46:00 +02:00
|
|
|
)
|
|
|
|
|
2009-11-20 05:02:03 +01:00
|
|
|
|
2007-06-27 08:46:00 +02:00
|
|
|
//
|
|
|
|
// Data Table Array
|
|
|
|
//
|
2009-11-20 05:02:03 +01:00
|
|
|
extern EFI_MISC_SMBIOS_DATA_TABLE mMiscSubclassDataTable[];
|
2007-06-27 08:46:00 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Data Table Array Entries
|
|
|
|
//
|
2009-11-20 05:02:03 +01:00
|
|
|
extern UINTN mMiscSubclassDataTableEntries;
|
|
|
|
extern UINT8 MiscSubclassStrings[];
|
|
|
|
extern EFI_HII_HANDLE mHiiHandle;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Prototypes
|
|
|
|
//
|
|
|
|
EFI_STATUS
|
|
|
|
MiscSubclassDriverEntryPoint (
|
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
|
|
);
|
|
|
|
|
2007-06-27 08:46:00 +02:00
|
|
|
|
|
|
|
#endif /* _MISC_SUBCLASS_DRIVER_H */
|
|
|
|
|
|
|
|
/* eof - MiscSubclassDriver.h */
|