2008-03-19 04:23:16 +01:00
|
|
|
/**@file
|
2007-06-27 08:46:00 +02:00
|
|
|
|
2011-11-21 09:56:48 +01:00
|
|
|
Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
2010-04-28 14:24:39 +02:00
|
|
|
This program and the accompanying materials
|
2007-06-27 08:46:00 +02:00
|
|
|
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.
|
|
|
|
|
|
|
|
Module Name:
|
|
|
|
|
|
|
|
MiscPortInternalConnectorDesignatorFunction.c
|
|
|
|
|
|
|
|
Abstract:
|
|
|
|
|
|
|
|
This driver parses the mMiscSubclassDataTable structure and reports
|
|
|
|
any generated data to the DataHub.
|
|
|
|
|
2008-03-19 04:23:16 +01:00
|
|
|
**/
|
2007-06-27 08:46:00 +02:00
|
|
|
|
|
|
|
#include "MiscSubclassDriver.h"
|
|
|
|
|
2008-10-31 03:07:39 +01:00
|
|
|
|
2009-11-20 05:02:03 +01:00
|
|
|
MISC_SMBIOS_TABLE_FUNCTION (
|
2007-06-27 08:46:00 +02:00
|
|
|
MiscPortInternalConnectorDesignator
|
|
|
|
)
|
|
|
|
/*++
|
|
|
|
Description:
|
|
|
|
|
|
|
|
This function makes boot time changes to the contents of the
|
|
|
|
MiscPortConnectorInformation (Type 8).
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
RecordType
|
|
|
|
Type of record to be processed from the Data Table.
|
|
|
|
mMiscSubclassDataTable[].RecordType
|
|
|
|
|
|
|
|
RecordLen
|
|
|
|
Size of static RecordData from the Data Table.
|
|
|
|
mMiscSubclassDataTable[].RecordLen
|
|
|
|
|
|
|
|
RecordData
|
|
|
|
Pointer to copy of RecordData from the Data Table. Changes made
|
|
|
|
to this copy will be written to the Data Hub but will not alter
|
|
|
|
the contents of the static Data Table.
|
|
|
|
|
|
|
|
LogRecordData
|
|
|
|
Set *LogRecordData to TRUE to log RecordData to Data Hub.
|
|
|
|
Set *LogRecordData to FALSE when there is no more data to log.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
EFI_SUCCESS
|
|
|
|
All parameters were valid and *RecordData and *LogRecordData have
|
|
|
|
been set.
|
|
|
|
|
|
|
|
EFI_UNSUPPORTED
|
|
|
|
Unexpected RecordType value.
|
|
|
|
|
|
|
|
EFI_INVALID_PARAMETER
|
|
|
|
One of the following parameter conditions was true:
|
|
|
|
RecordLen was zero.
|
|
|
|
RecordData was NULL.
|
|
|
|
LogRecordData was NULL.
|
|
|
|
--*/
|
|
|
|
{
|
2009-11-20 05:02:03 +01:00
|
|
|
CHAR8 *OptionalStrStart;
|
|
|
|
UINTN InternalRefStrLen;
|
|
|
|
UINTN ExternalRefStrLen;
|
|
|
|
EFI_STRING InternalRef;
|
|
|
|
EFI_STRING ExternalRef;
|
|
|
|
STRING_REF TokenForInternal;
|
|
|
|
STRING_REF TokenForExternal;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
SMBIOS_TABLE_TYPE8 *SmbiosRecord;
|
|
|
|
EFI_SMBIOS_HANDLE SmbiosHandle;
|
|
|
|
EFI_MISC_PORT_INTERNAL_CONNECTOR_DESIGNATOR *ForType8InputData;
|
|
|
|
|
|
|
|
ForType8InputData = (EFI_MISC_PORT_INTERNAL_CONNECTOR_DESIGNATOR *)RecordData;
|
2007-06-27 08:46:00 +02:00
|
|
|
//
|
|
|
|
// First check for invalid parameters.
|
|
|
|
//
|
2009-11-20 05:02:03 +01:00
|
|
|
if (RecordData == NULL) {
|
2007-06-27 08:46:00 +02:00
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
2009-11-20 05:02:03 +01:00
|
|
|
TokenForInternal = 0;
|
|
|
|
TokenForExternal = 0;
|
|
|
|
|
|
|
|
switch (ForType8InputData->PortInternalConnectorDesignator) {
|
2007-06-27 08:46:00 +02:00
|
|
|
|
2009-11-20 05:02:03 +01:00
|
|
|
case STR_MISC_PORT_INTERNAL_CONNECTOR_DESIGNATOR:
|
|
|
|
TokenForInternal = STRING_TOKEN (STR_MISC_PORT_INTERNAL_CONNECTOR_DESIGNATOR);
|
|
|
|
TokenForExternal = STRING_TOKEN(STR_MISC_PORT_EXTERNAL_CONNECTOR_DESIGNATOR);
|
|
|
|
break;
|
2007-06-27 08:46:00 +02:00
|
|
|
case STR_MISC_PORT_INTERNAL_KEYBOARD:
|
2009-11-20 05:02:03 +01:00
|
|
|
TokenForInternal = STRING_TOKEN (STR_MISC_PORT_INTERNAL_KEYBOARD);
|
|
|
|
TokenForExternal = STRING_TOKEN(STR_MISC_PORT_EXTERNAL_KEYBOARD);
|
|
|
|
break;
|
|
|
|
case STR_MISC_PORT_INTERNAL_MOUSE:
|
|
|
|
TokenForInternal = STRING_TOKEN (STR_MISC_PORT_INTERNAL_MOUSE);
|
|
|
|
TokenForExternal = STRING_TOKEN(STR_MISC_PORT_EXTERNAL_MOUSE);
|
2007-06-27 08:46:00 +02:00
|
|
|
break;
|
|
|
|
case STR_MISC_PORT_INTERNAL_COM1:
|
2009-11-20 05:02:03 +01:00
|
|
|
TokenForInternal = STRING_TOKEN (STR_MISC_PORT_INTERNAL_COM1);
|
|
|
|
TokenForExternal = STRING_TOKEN(STR_MISC_PORT_EXTERNAL_COM1);
|
2007-06-27 08:46:00 +02:00
|
|
|
break;
|
|
|
|
case STR_MISC_PORT_INTERNAL_COM2:
|
2009-11-20 05:02:03 +01:00
|
|
|
TokenForInternal = STRING_TOKEN (STR_MISC_PORT_INTERNAL_COM2);
|
|
|
|
TokenForExternal = STRING_TOKEN(STR_MISC_PORT_EXTERNAL_COM2);
|
|
|
|
break;
|
|
|
|
case STR_MISC_PORT_INTERNAL_EXTENSION_POWER:
|
|
|
|
TokenForInternal = STRING_TOKEN (STR_MISC_PORT_INTERNAL_EXTENSION_POWER);
|
|
|
|
TokenForExternal = STRING_TOKEN(STR_MISC_PORT_EXTERNAL_EXTENSION_POWER);
|
2007-06-27 08:46:00 +02:00
|
|
|
break;
|
|
|
|
case STR_MISC_PORT_INTERNAL_FLOPPY:
|
2009-11-20 05:02:03 +01:00
|
|
|
TokenForInternal = STRING_TOKEN (STR_MISC_PORT_INTERNAL_FLOPPY);
|
|
|
|
TokenForExternal = STRING_TOKEN(STR_MISC_PORT_EXTERNAL_FLOPPY);
|
2007-06-27 08:46:00 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-11-20 05:02:03 +01:00
|
|
|
InternalRef = HiiGetPackageString(&gEfiCallerIdGuid, TokenForInternal, NULL);
|
|
|
|
InternalRefStrLen = StrLen(InternalRef);
|
|
|
|
if (InternalRefStrLen > SMBIOS_STRING_MAX_LENGTH) {
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
ExternalRef = HiiGetPackageString(&gEfiCallerIdGuid, TokenForExternal, NULL);
|
|
|
|
ExternalRefStrLen = StrLen(ExternalRef);
|
|
|
|
if (ExternalRefStrLen > SMBIOS_STRING_MAX_LENGTH) {
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Two zeros following the last string.
|
|
|
|
//
|
|
|
|
SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE8) + InternalRefStrLen + 1 + ExternalRefStrLen + 1 + 1);
|
|
|
|
ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE8) + InternalRefStrLen + 1 + ExternalRefStrLen + 1 + 1);
|
|
|
|
|
|
|
|
SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_PORT_CONNECTOR_INFORMATION;
|
|
|
|
SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE8);
|
|
|
|
//
|
|
|
|
// Make handle chosen by smbios protocol.add automatically.
|
|
|
|
//
|
|
|
|
SmbiosRecord->Hdr.Handle = 0;
|
|
|
|
SmbiosRecord->InternalReferenceDesignator = 1;
|
|
|
|
SmbiosRecord->InternalConnectorType = (UINT8)ForType8InputData->PortInternalConnectorType;
|
|
|
|
SmbiosRecord->ExternalReferenceDesignator = 2;
|
|
|
|
SmbiosRecord->ExternalConnectorType = (UINT8)ForType8InputData->PortExternalConnectorType;
|
|
|
|
SmbiosRecord->PortType = (UINT8)ForType8InputData->PortType;
|
|
|
|
|
|
|
|
OptionalStrStart = (CHAR8 *)(SmbiosRecord + 1);
|
|
|
|
UnicodeStrToAsciiStr(InternalRef, OptionalStrStart);
|
|
|
|
UnicodeStrToAsciiStr(ExternalRef, OptionalStrStart + InternalRefStrLen + 1);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Now we have got the full smbios record, call smbios protocol to add this record.
|
|
|
|
//
|
2011-11-21 09:56:48 +01:00
|
|
|
Status = AddSmbiosRecord (Smbios, &SmbiosHandle, (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord);
|
|
|
|
|
2009-11-20 05:02:03 +01:00
|
|
|
FreePool(SmbiosRecord);
|
|
|
|
return Status;
|
2007-06-27 08:46:00 +02:00
|
|
|
}
|
|
|
|
|
2009-11-20 05:02:03 +01:00
|
|
|
|
|
|
|
|
2007-06-27 08:46:00 +02:00
|
|
|
/* eof - MiscSystemManufacturerFunction.c */
|