]> git.proxmox.com Git - mirror_edk2.git/blob - QuarkSocPkg/QuarkSouthCluster/IohInit/Dxe/IohData.c
QuarkSocPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / QuarkSocPkg / QuarkSouthCluster / IohInit / Dxe / IohData.c
1 /** @file
2 Defined the Ioh device path which will be used by
3 platform Bbd to perform the platform policy connect.
4
5 Copyright (c) 2013-2015 Intel Corporation.
6
7 SPDX-License-Identifier: BSD-2-Clause-Patent
8
9 **/
10
11 #include "IohBds.h"
12
13 //
14 // Predefined platform root bridge
15 //
16 PLATFORM_ROOT_BRIDGE_DEVICE_PATH gPlatformRootBridge0 = {
17 gPciRootBridge,
18 gEndEntire
19 };
20
21 EFI_DEVICE_PATH_PROTOCOL* gPlatformRootBridges [] = {
22 (EFI_DEVICE_PATH_PROTOCOL*)&gPlatformRootBridge0,
23 NULL
24 };
25
26 //
27 // Ioh USB EHCI controller device path
28 //
29 IOH_PCI_USB_DEVICE_PATH gIohUsbDevicePath0 = {
30 gPciRootBridge,
31 PCI_DEVICE_PATH_NODE(IOH_EHCI_FUNCTION_NUMBER, IOH_USB_EHCI_DEVICE_NUMBER),
32 gEndEntire
33 };
34
35 //
36 // Ioh predefined device connecting option
37 //
38 EFI_DEVICE_PATH_PROTOCOL* gDeviceConnectOption [] = {
39 // (EFI_DEVICE_PATH_PROTOCOL*)&gIohUsbDevicePath0,
40 NULL
41 };
42