]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2TbltDevicePkg/Library/MultiPlatformLib/BoardSsidSvid/BoardSsidSvid.h
b22c03c8048337e03ee74fe7e7b04853578c387e
[mirror_edk2.git] / Vlv2TbltDevicePkg / Library / MultiPlatformLib / BoardSsidSvid / BoardSsidSvid.h
1 /**@file
2 Subsystem IDs setting for multiplatform.
3
4 This file includes package header files, library classes.
5
6 Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
7
8 This program and the accompanying materials are licensed and made available under
9 the terms and conditions of the BSD License that accompanies this distribution.
10 The full text of the license may be found at
11 http://opensource.org/licenses/bsd-license.php.
12
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15
16 **/
17
18 #include <Guid/PlatformInfo.h>
19 #include <Library/BaseMemoryLib.h>
20
21 //
22 // Default Vendor ID and Subsystem ID
23 //
24 #define SUBSYSTEM_VENDOR_ID1 0x8086
25 #define SUBSYSTEM_DEVICE_ID1 0x1999
26 #define SUBSYSTEM_SVID_SSID1 (SUBSYSTEM_VENDOR_ID1 + (SUBSYSTEM_DEVICE_ID1 << 16))
27
28 #define SUBSYSTEM_VENDOR_ID2 0x8086
29 #define SUBSYSTEM_DEVICE_ID2 0x1888
30 #define SUBSYSTEM_SVID_SSID2 (SUBSYSTEM_VENDOR_ID2 + (SUBSYSTEM_DEVICE_ID2 << 16))
31
32 #define SUBSYSTEM_VENDOR_ID 0x8086
33 #define SUBSYSTEM_DEVICE_ID 0x1234
34 #define SUBSYSTEM_SVID_SSID (SUBSYSTEM_VENDOR_ID + (SUBSYSTEM_DEVICE_ID << 16))
35
36 EFI_STATUS
37 InitializeBoardSsidSvid (
38 IN CONST EFI_PEI_SERVICES **PeiServices,
39 IN EFI_PLATFORM_INFO_HOB *PlatformInfoHob
40 );