]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointer.c
Merge Temporary Ram support patch.
[mirror_edk2.git] / MdePkg / Library / PeiServicesTablePointerLib / PeiServicesTablePointer.c
1 /** @file
2 PEI Services Table Pointer Library.
3
4 Copyright (c) 2006, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include <PiPei.h>
16 #include <Library/PeiServicesTablePointerLib.h>
17 #include <Library/DebugLib.h>
18
19 #include "PeiServicesTablePointerInternal.h"
20
21 static EFI_PEI_SERVICES **gPeiServices;
22
23 /**
24 The function set the pointer of PEI services immediately preceding the IDT table
25 according to PI specification.
26
27 @param PeiServices The address of PeiServices pointer.
28 **/
29 VOID
30 EFIAPI
31 SetPeiServicesTablePointer (
32 EFI_PEI_SERVICES **PeiServices
33 )
34 {
35 gPeiServices = PeiServices;
36 }
37
38 /**
39 The function returns the pointer to PEI services.
40
41 The function returns the pointer to PEI services.
42 It will ASSERT() if the pointer to PEI services is NULL.
43
44 @retval The pointer to PeiServices.
45
46 **/
47 EFI_PEI_SERVICES **
48 GetPeiServicesTablePointer (
49 VOID
50 )
51 {
52 ASSERT (gPeiServices != NULL);
53 return gPeiServices;
54 }
55
56
57 /**
58 The constructor function caches the pointer to PEI services.
59
60 The constructor function caches the pointer to PEI services.
61 It will always return EFI_SUCCESS.
62
63 @param FfsHeader Pointer to FFS header the loaded driver.
64 @param PeiServices Pointer to the PEI services.
65
66 @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.
67
68 **/
69 EFI_STATUS
70 EFIAPI
71 PeiServicesTablePointerLibConstructor (
72 IN EFI_PEI_FILE_HANDLE *FfsHeader,
73 IN EFI_PEI_SERVICES **PeiServices
74 )
75 {
76 gPeiServices = PeiServices;
77 return EFI_SUCCESS;
78 }
79
80