]> git.proxmox.com Git - mirror_edk2.git/blob - QuarkSocPkg/QuarkSouthCluster/IohInit/Dxe/IohInit.c
QuarkSocPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / QuarkSocPkg / QuarkSouthCluster / IohInit / Dxe / IohInit.c
1 /** @file
2 QuarkSCSocId module initialization module
3
4 Copyright (c) 2013-2015 Intel Corporation.
5
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9 #include "CommonHeader.h"
10 #include "IohBds.h"
11
12 /**
13 The entry function for IohInit driver.
14
15 This function just call initialization function.
16
17 @param ImageHandle The driver image handle for GmchInit driver
18 @param SystemTable The pointer to System Table
19
20 @retval EFI_SUCCESS Success to initialize every module.
21 @return EFI_STATUS The status of initialization work.
22
23 **/
24 EFI_STATUS
25 EFIAPI
26 IohInit (
27 IN EFI_HANDLE ImageHandle,
28 IN EFI_SYSTEM_TABLE *SystemTable
29 )
30 {
31
32 InitializeIohSsvidSsid(IOH_BUS, IOH_PCI_IOSF2AHB_0_DEV_NUM, 0);
33
34 InitializeIohSsvidSsid(IOH_BUS, IOH_PCI_IOSF2AHB_1_DEV_NUM, 0);
35
36 return EFI_SUCCESS;
37 }