]> git.proxmox.com Git - mirror_edk2.git/blame - EmulatorPkg/Library/PlatformBmLib/PlatformBmData.c
EmulatorPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / EmulatorPkg / Library / PlatformBmLib / PlatformBmData.c
CommitLineData
949f388f 1/*++ @file\r
2\r
e0123894 3Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
949f388f 4Portions copyright (c) 2011, Apple Inc. All rights reserved.\r
e3ba31da 5SPDX-License-Identifier: BSD-2-Clause-Patent\r
949f388f 6\r
7**/\r
8\r
e0123894 9#include "PlatformBm.h"\r
949f388f 10\r
11\r
12\r
13EMU_PLATFORM_UGA_DEVICE_PATH gGopDevicePath = {\r
14 {\r
15 {\r
16 {\r
17 HARDWARE_DEVICE_PATH,\r
18 HW_VENDOR_DP,\r
19 {\r
20 (UINT8) (sizeof (EMU_VENDOR_DEVICE_PATH_NODE)),\r
21 (UINT8) ((sizeof (EMU_VENDOR_DEVICE_PATH_NODE)) >> 8)\r
22 }\r
23 },\r
24 EMU_THUNK_PROTOCOL_GUID\r
25 },\r
26 0\r
27 },\r
28 {\r
6c76e4fa 29 {\r
949f388f 30 {\r
0cecbe56
JJ
31 HARDWARE_DEVICE_PATH,\r
32 HW_VENDOR_DP,\r
33 {\r
34 (UINT8) (sizeof (EMU_VENDOR_DEVICE_PATH_NODE)),\r
35 (UINT8) ((sizeof (EMU_VENDOR_DEVICE_PATH_NODE)) >> 8)\r
36 },\r
949f388f 37 },\r
38 EMU_GRAPHICS_WINDOW_PROTOCOL_GUID,\r
6c76e4fa 39 },\r
40 0\r
949f388f 41 },\r
42 gEndEntire\r
43};\r
44\r
45//\r
46// Predefined platform default console device path\r
47//\r
48BDS_CONSOLE_CONNECT_ENTRY gPlatformConsole[] = {\r
49 {\r
50 (EFI_DEVICE_PATH_PROTOCOL *) &gGopDevicePath,\r
51 (CONSOLE_OUT | CONSOLE_IN)\r
52 },\r
53 {\r
54 NULL,\r
55 0\r
56 }\r
57};\r
58\r