]> git.proxmox.com Git - mirror_edk2.git/blame - UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformData.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / UefiPayloadPkg / Library / PlatformBootManagerLib / PlatformData.c
CommitLineData
6ef57974 1/** @file\r
04af8bf2
DG
2 Defined the platform specific device path which will be filled to\r
3 ConIn/ConOut variables.\r
4\r
5Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>\r
6SPDX-License-Identifier: BSD-2-Clause-Patent\r
7**/\r
8\r
9#include "PlatformBootManager.h"\r
10\r
11///\r
12/// Predefined platform default console device path\r
13///\r
e5efcf8b 14GLOBAL_REMOVE_IF_UNREFERENCED PLATFORM_CONSOLE_CONNECT_ENTRY gPlatformConsole[] = {\r
04af8bf2
DG
15 {\r
16 NULL,\r
17 0\r
18 }\r
19};\r
20\r
e5efcf8b 21GLOBAL_REMOVE_IF_UNREFERENCED USB_CLASS_FORMAT_DEVICE_PATH gUsbClassKeyboardDevicePath = {\r
04af8bf2
DG
22 {\r
23 {\r
24 MESSAGING_DEVICE_PATH,\r
25 MSG_USB_CLASS_DP,\r
26 {\r
e5efcf8b
MK
27 (UINT8)(sizeof (USB_CLASS_DEVICE_PATH)),\r
28 (UINT8)((sizeof (USB_CLASS_DEVICE_PATH)) >> 8)\r
04af8bf2
DG
29 }\r
30 },\r
31 0xffff, // VendorId\r
32 0xffff, // ProductId\r
33 CLASS_HID, // DeviceClass\r
34 SUBCLASS_BOOT, // DeviceSubClass\r
35 PROTOCOL_KEYBOARD // DeviceProtocol\r
36 },\r
37 gEndEntire\r
38};\r