]> git.proxmox.com Git - mirror_edk2.git/blob - QuarkPlatformPkg/Platform/Dxe/Setup/processor.c
e86901f9b6f36e3eab80a95b5ab5a761ca3b4341
[mirror_edk2.git] / QuarkPlatformPkg / Platform / Dxe / Setup / processor.c
1 /** @file
2 Platform CPU Data
3
4 Copyright (c) 2013-2015 Intel Corporation.
5
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10
11 #include "CommonHeader.h"
12
13 #include "SetupPlatform.h"
14
15
16 #define NUMBER_OF_PACKAGES 1
17
18 CHAR16 *SocketNames[NUMBER_OF_PACKAGES];
19 CHAR16 *AssetTags[NUMBER_OF_PACKAGES];
20
21 CHAR16 EmptyString[] = L" ";
22 CHAR16 SocketString[] = L"LGA775";
23
24 VOID
25 ProducePlatformCpuData (
26 VOID
27 )
28 {
29 UINTN Index;
30
31 for (Index = 0; Index < NUMBER_OF_PACKAGES; Index++) {
32
33 //
34 // The String Package of a module is registered together with all IFR packages.
35 // So we just arbitrarily pick a package GUID that is always installed to get the string.
36 //
37 AssetTags[Index] = EmptyString;
38 SocketNames[Index] = SocketString;
39 }
40 }