5 Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16 #include "MiscSubClassDriver.h"
18 This function makes boot time changes to the contents of the
19 MiscOemString (Type 11).
21 @param RecordData Pointer to copy of RecordData from the Data Table.
23 @retval EFI_SUCCESS All parameters were valid.
24 @retval EFI_UNSUPPORTED Unexpected RecordType value.
25 @retval EFI_INVALID_PARAMETER Invalid parameter was found.
28 MISC_SMBIOS_TABLE_FUNCTION(SystemLanguageString
)
31 EFI_SMBIOS_HANDLE SmbiosHandle
;
32 SMBIOS_TABLE_TYPE13
*SmbiosRecord
;
34 CHAR8
*OptionalStrStart
;
36 STRING_REF TokenToGet
;
40 // First check for invalid parameters.
42 if (RecordData
== NULL
) {
43 return EFI_INVALID_PARAMETER
;
46 TokenToGet
= STRING_TOKEN (STR_MISC_SYSTEM_LANGUAGE_STRING
);
47 Str
= HiiGetPackageString(&gEfiCallerIdGuid
, TokenToGet
, NULL
);
48 StrLeng
= StrLen(Str
);
49 if (StrLeng
> SMBIOS_STRING_MAX_LENGTH
) {
50 return EFI_UNSUPPORTED
;
54 // Two zeros following the last string.
56 SmbiosRecord
= AllocatePool(sizeof (SMBIOS_TABLE_TYPE13
) + StrLeng
+ 1 + 1);
57 ZeroMem(SmbiosRecord
, sizeof (SMBIOS_TABLE_TYPE13
) + StrLeng
+ 1 + 1);
59 SmbiosRecord
->Hdr
.Type
= EFI_SMBIOS_TYPE_BIOS_LANGUAGE_INFORMATION
;
60 SmbiosRecord
->Hdr
.Length
= sizeof (SMBIOS_TABLE_TYPE13
);
62 // Make handle chosen by smbios protocol.add automatically.
64 SmbiosRecord
->Hdr
.Handle
= 0;
65 SmbiosRecord
->InstallableLanguages
= 1;
66 SmbiosRecord
->Flags
= 1;
67 SmbiosRecord
->CurrentLanguages
= 1;
68 OptionalStrStart
= (CHAR8
*)(SmbiosRecord
+ 1);
69 UnicodeStrToAsciiStr(Str
, OptionalStrStart
);
73 // Now we have got the full smbios record, call smbios protocol to add this record.
75 Status
= AddSmbiosRecord (Smbios
, &SmbiosHandle
, (EFI_SMBIOS_TABLE_HEADER
*) SmbiosRecord
);
77 FreePool(SmbiosRecord
);