]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Core/DxeIplPeim/x64/DxeLoadFunc.c
Add missing files in msa file and add module description in msa file, and reorganize...
[mirror_edk2.git] / EdkModulePkg / Core / DxeIplPeim / x64 / DxeLoadFunc.c
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 DxeLoadFunc.c
15
16 Abstract:
17
18 Ia32-specifc functionality for DxeLoad X64 Lakeport.
19
20 --*/
21
22 #include <DxeIpl.h>
23
24 EFI_STATUS
25 CreateArchSpecificHobs (
26 OUT EFI_PHYSICAL_ADDRESS *BspStore
27 )
28 /*++
29
30 Routine Description:
31
32 Creates architecture-specific HOBs.
33
34 Note: New parameters should NOT be added for any HOBs that are added to this
35 function. BspStore is a special case because it is required for the
36 call to SwitchStacks() in DxeLoad().
37
38 Arguments:
39
40 PeiServices - General purpose services available to every PEIM.
41 BspStore - The address of the BSP Store for those architectures that need
42 it. Otherwise 0.
43
44 Returns:
45
46 EFI_SUCCESS - The HOBs were created successfully.
47
48 --*/
49 {
50 *BspStore = 0;
51
52 return EFI_SUCCESS;
53 }