]> git.proxmox.com Git - mirror_edk2.git/blame - QuarkSocPkg/QuarkSouthCluster/IohInit/Dxe/IohData.c
QuarkSocPkg: Add new package for Quark SoC X1000
[mirror_edk2.git] / QuarkSocPkg / QuarkSouthCluster / IohInit / Dxe / IohData.c
CommitLineData
9b6bbcdb
MK
1/** @file\r
2Defined the Ioh device path which will be used by\r
3platform Bbd to perform the platform policy connect.\r
4\r
5Copyright (c) 2013-2015 Intel Corporation.\r
6\r
7This program and the accompanying materials\r
8are licensed and made available under the terms and conditions of the BSD License\r
9which accompanies this distribution. The full text of the license may be found at\r
10http://opensource.org/licenses/bsd-license.php\r
11\r
12THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14\r
15**/\r
16\r
17#include "IohBds.h"\r
18\r
19//\r
20// Predefined platform root bridge\r
21//\r
22PLATFORM_ROOT_BRIDGE_DEVICE_PATH gPlatformRootBridge0 = {\r
23 gPciRootBridge,\r
24 gEndEntire\r
25};\r
26\r
27EFI_DEVICE_PATH_PROTOCOL* gPlatformRootBridges [] = {\r
28 (EFI_DEVICE_PATH_PROTOCOL*)&gPlatformRootBridge0,\r
29 NULL\r
30};\r
31\r
32//\r
33// Ioh USB EHCI controller device path\r
34//\r
35IOH_PCI_USB_DEVICE_PATH gIohUsbDevicePath0 = {\r
36 gPciRootBridge,\r
37 PCI_DEVICE_PATH_NODE(IOH_EHCI_FUNCTION_NUMBER, IOH_USB_EHCI_DEVICE_NUMBER),\r
38 gEndEntire\r
39};\r
40\r
41//\r
42// Ioh predefined device connecting option\r
43//\r
44EFI_DEVICE_PATH_PROTOCOL* gDeviceConnectOption [] = {\r
45 // (EFI_DEVICE_PATH_PROTOCOL*)&gIohUsbDevicePath0,\r
46 NULL\r
47};\r
48\r