Слияние кода завершено, страница обновится автоматически
/** @file
Copyright (C) 2016 - 2017, The HermitCrabs Lab. All rights reserved.
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_INTERNAL_H
#define SMBIOS_INTERNAL_H
#include <IndustryStandard/AppleSmBios.h>
#include <Library/OcGuardLib.h>
#include <Library/OcSmbiosLib.h>
//
// 2 zero bytes required in the end of each table.
//
#define SMBIOS_STRUCTURE_TERMINATOR_SIZE 2
//
// Max memory mapping slots
//
#define OC_SMBIOS_MAX_MAPPING 512
//
// According to SMBIOS spec (3.2.0, page 26) SMBIOS handle is a number from 0 to 0xFF00.
// SMBIOS spec does not require handles to be contiguous or remain valid across SMBIOS.
// The only requirements is uniqueness and range conformance, so we reserve select handles
// for dedicated tables here for easier assignment. Automatic handle assignment starts with
// OcSmbiosAutomaticHandle.
//
enum {
OcSmbiosInvalidHandle,
OcSmbiosBiosInformationHandle,
OcSmbiosSystemInformationHandle,
OcSmbiosBaseboardInformationHandle,
OcSmbiosSystemEnclosureHandle,
/* OcSmbiosProcessorInformationHandle, */
OcSmbiosMemoryControllerInformationHandle,
OcSmbiosMemoryModuleInformatonHandle,
/* OcSmbiosCacheInformationHandle, */
/* OcSmbiosL1CacheHandle, */
/* OcSmbiosL2CacheHandle, */
/* OcSmbiosL3CacheHandle, */
/* OcSmbiosPortConnectorInformationHandle, */
/* OcSmbiosSystemSlotsHandle, */
OcSmbiosOnboardDeviceInformationHandle,
OcSmbiosOemStringsHandle,
OcSmbiosSystemConfigurationOptionsHandle,
OcSmbiosBiosLanguageInformationHandle,
OcSmbiosGroupAssociationsHandle,
OcSmbiosSystemEventLogHandle,
/* OcSmbiosPhysicalMemoryArrayHandle, */
/* OcSmbiosMemoryDeviceHandle, */
OcSmbios32BitMemoryErrorInformationHandle,
/* OcSmbiosMemoryArrayMappedAddressHandle, */
/* OcSmbiosMemoryDeviceMappedAddressHandle, */
OcSmbiosBuiltInPointingDeviceHandle,
OcSmbiosPortableBatteryHandle,
OcSmbiosSystemResetHandle,
OcSmbiosHardwareSecurityHandle,
OcSmbiosSystemPowerControlsHandle,
OcSmbiosVoltageProbeHandle,
OcSmbiosCoolingDeviceHandle,
OcSmbiosTemperatureProbeHandle,
OcSmbiosElectricalCurrentProbeHandle,
OcSmbiosOutOfBandRemoteAccessHandle,
OcSmbiosBootIntegrityServiceHandle,
OcSmbiosSystemBootInformationHandle,
OcSmbios64BitMemoryErrorInformationHandle,
OcSmbiosManagementDeviceHandle,
OcSmbiosManagementDeviceComponentHandle,
OcSmbiosManagementDeviceThresholdDataHandle,
OcSmbiosMemoryChannelHandle,
OcSmbiosIpmiDeviceInformationHandle,
OcSmbiosSystemPowerSupplyHandle,
OcSmbiosAdditionalInformationHandle,
OcSmbiosOnboardDevicesExtendedInformationHandle,
OcSmbiosManagementControllerHostInterfaceHandle,
OcSmbiosTpmDeviceHandle,
OcSmbiosInactiveHandle,
OcSmbiosEndOfTableHandle,
OcAppleSmbiosFirmwareInformationHandle,
OcAppleSmbiosMemorySpdDataHandle,
OcAppleSmbiosProcessorTypeHandle,
OcAppleSmbiosProcessorBusSpeedHandle,
OcAppleSmbiosPlatformFeatureHandle,
OcAppleSmbiosSmcInformationHandle,
OcSmbiosLastReservedHandle,
OcSmbiosAutomaticHandle = 128,
};
STATIC_ASSERT (OcSmbiosAutomaticHandle > OcSmbiosLastReservedHandle, "Inconsistent handle IDs");
//
// Map old handles to new ones.
//
typedef struct OC_SMBIOS_MAPPING_ {
SMBIOS_HANDLE Old;
SMBIOS_HANDLE New;
} OC_SMBIOS_MAPPING;
/**
Allocate bytes in SMBIOS table if necessary
@param[in,out] Table Current table buffer.
@param[in] Size Amount of free bytes needed.
@retval EFI_SUCCESS on success
**/
EFI_STATUS
SmbiosExtendTable (
IN OUT OC_SMBIOS_TABLE *Table,
IN UINT32 Size
);
/**
Write override string to SMBIOS table
@param[in,out] Table Current table buffer.
@param[in] Override String data override.
@param[in,out] Index Pointer to current string index, incremented on success.
@retval assigned string index or 0
**/
UINT8
SmbiosOverrideString (
IN OUT OC_SMBIOS_TABLE *Table,
IN CONST CHAR8 *Override OPTIONAL,
IN OUT UINT8 *Index
);
/**
Initialise SMBIOS structure
@param[in] Table Pointer to location containing the current address within the buffer.
@param[in] Type Table type.
@param[in] MinLength Initial length of the table.
@param[in] Index Table index, normally 1.
@retval
**/
EFI_STATUS
SmbiosInitialiseStruct (
IN OUT OC_SMBIOS_TABLE *Table,
IN SMBIOS_TYPE Type,
IN UINT8 MinLength,
IN UINT16 Index
);
/**
Finalise SMBIOS structure
@param[in] Table Pointer to location containing the current address within the buffer.
@retval
**/
VOID
SmbiosFinaliseStruct (
IN OUT OC_SMBIOS_TABLE *Table
);
/**
Obtain string from previously validated structure.
@param[in] SmbiosTable
@param[in] StringIndex String Index to retrieve
@retval
**/
CHAR8 *
SmbiosGetString (
IN APPLE_SMBIOS_STRUCTURE_POINTER SmbiosTable,
IN SMBIOS_TABLE_STRING StringIndex
);
/**
Write string to SMBIOS structure
@param[in,out] Buffer Pointer to location containing the current address within the buffer.
@param[in] String Buffer containing the null terminated ascii string.
@param[in] Length String length to write.
@param[in,out] Index Pointer to current string index, incremented on success.
@retval assigned string index or 0
**/
UINT8
SmbiosSetString (
IN OUT CHAR8 **Buffer,
IN CONST CHAR8 *String,
IN UINT32 Length,
IN OUT UINT8 *Index
);
/**
Obtain and validate structure length.
@param[in] SmbiosTable
@param[in] SmbiosTableSize SMBIOS table size
@retval table length or 0 for invalid
**/
UINT32
SmbiosGetStructureLength (
IN APPLE_SMBIOS_STRUCTURE_POINTER SmbiosTable,
IN UINT32 SmbiosTableSize
);
/**
Obtain and validate Nth structure of specified type.
@param[in] SmbiosTable Pointer to SMBIOS table.
@param[in] SmbiosTableSize SMBIOS table size
@param[in] Type SMBIOS table type
@param[in] Index SMBIOS table index starting from 1
@retval found table or NULL
**/
APPLE_SMBIOS_STRUCTURE_POINTER
SmbiosGetStructureOfType (
IN APPLE_SMBIOS_STRUCTURE_POINTER SmbiosTable,
IN UINT32 SmbiosTableSize,
IN SMBIOS_TYPE Type,
IN UINT16 Index
);
/**
Obtain structure count of specified type.
@param[in] SmbiosTable Pointer to SMBIOS table.
@param[in] SmbiosTableSize SMBIOS table size
@retval structure count or 0
**/
UINT16
SmbiosGetStructureCount (
IN APPLE_SMBIOS_STRUCTURE_POINTER SmbiosTable,
IN UINT32 SmbiosTableSize,
IN SMBIOS_TYPE Type
);
#endif // SMBIOS_INTERNAL_H
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Опубликовать ( 0 )