]> git.proxmox.com Git - mirror_edk2.git/blame - OvmfPkg/Library/PlatformBdsLib/PlatformData.c
Do not update the GL-GD5446 DRAM Control register during
[mirror_edk2.git] / OvmfPkg / Library / PlatformBdsLib / PlatformData.c
CommitLineData
49ba9447 1/** @file\r
2 Defined the platform specific device path which will be used by\r
3 platform Bbd to perform the platform policy connect.\r
4\r
5 Copyright (c) 2004 - 2008, Intel Corporation. <BR>\r
6 All rights reserved. This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#include "BdsPlatform.h"\r
17\r
18//\r
19// Predefined platform default time out value\r
20//\r
21UINT16 gPlatformBootTimeOutDefault = 5;\r
22\r
23ACPI_HID_DEVICE_PATH gPnpPs2KeyboardDeviceNode = gPnpPs2Keyboard;\r
24ACPI_HID_DEVICE_PATH gPnp16550ComPortDeviceNode = gPnp16550ComPort;\r
25UART_DEVICE_PATH gUartDeviceNode = gUart;\r
26VENDOR_DEVICE_PATH gTerminalTypeDeviceNode = gPcAnsiTerminal;\r
27\r
28//\r
29// Predefined platform root bridge\r
30//\r
31PLATFORM_ROOT_BRIDGE_DEVICE_PATH gPlatformRootBridge0 = {\r
32 gPciRootBridge,\r
33 gEndEntire\r
34};\r
35\r
36EFI_DEVICE_PATH_PROTOCOL *gPlatformRootBridges[] = {\r
37 (EFI_DEVICE_PATH_PROTOCOL *) &gPlatformRootBridge0,\r
38 NULL\r
39};\r
40\r
41//\r
42// Platform specific keyboard device path\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 NULL,\r
51 0\r
52 }\r
53};\r
54\r
55//\r
56// Predefined platform specific driver option\r
57//\r
58EFI_DEVICE_PATH_PROTOCOL *gPlatformDriverOption[] = { NULL };\r
59\r
60//\r
61// Predefined platform connect sequence\r
62//\r
63EFI_DEVICE_PATH_PROTOCOL *gPlatformConnectSequence[] = { NULL };\r
64\r