]> git.proxmox.com Git - mirror_edk2.git/blame - QuarkPlatformPkg/Platform/Dxe/Setup/processor.c
QuarkPlatformPkg: Add new package for Galileo boards
[mirror_edk2.git] / QuarkPlatformPkg / Platform / Dxe / Setup / processor.c
CommitLineData
b303605e
MK
1/** @file\r
2Platform CPU Data\r
3\r
4Copyright (c) 2013-2015 Intel Corporation.\r
5\r
6This program and the accompanying materials\r
7are licensed and made available under the terms and conditions of the BSD License\r
8which accompanies this distribution. The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16\r
17#include "CommonHeader.h"\r
18\r
19#include "SetupPlatform.h"\r
20\r
21\r
22#define NUMBER_OF_PACKAGES 1\r
23\r
24CHAR16 *SocketNames[NUMBER_OF_PACKAGES];\r
25CHAR16 *AssetTags[NUMBER_OF_PACKAGES];\r
26\r
27CHAR16 EmptyString[] = L" ";\r
28CHAR16 SocketString[] = L"LGA775";\r
29\r
30VOID\r
31ProducePlatformCpuData (\r
32 VOID\r
33 )\r
34{\r
35 UINTN Index;\r
36\r
37 for (Index = 0; Index < NUMBER_OF_PACKAGES; Index++) {\r
38\r
39 //\r
40 // The String Package of a module is registered together with all IFR packages.\r
41 // So we just arbitrarily pick a package GUID that is always installed to get the string.\r
42 //\r
43 AssetTags[Index] = EmptyString;\r
44 SocketNames[Index] = SocketString;\r
45 }\r
46}\r