]>
Commit | Line | Data |
---|---|---|
c7d265a9 | 1 | /*++\r |
2 | \r | |
3 | Copyright (c) 2006 Intel Corporation. All rights reserved\r | |
4 | This software and associated documentation (if any) is furnished\r | |
5 | under a license and may only be used or copied in accordance\r | |
6 | with the terms of the license. Except as permitted by such\r | |
7 | license, no part of this software or documentation may be\r | |
8 | reproduced, stored in a retrieval system, or transmitted in any\r | |
9 | form or by any means without the express written consent of\r | |
10 | Intel Corporation.\r | |
11 | \r | |
12 | \r | |
13 | Module Name:\r | |
14 | \r | |
15 | PeiServicesTablePointer.c\r | |
16 | \r | |
17 | Abstract:\r | |
18 | \r | |
19 | PEI Services Table Pointer Library.\r | |
20 | \r | |
21 | --*/\r | |
22 | \r | |
23 | #include "InternalPeiServicesTablePointer.h"\r | |
24 | \r | |
25 | /**\r | |
26 | \r | |
27 | The function returns the pointer to PeiServicee following\r | |
28 | PI1.0.\r | |
29 | \r | |
30 | For IA32, the four-bytes field immediately prior to new IDT\r | |
31 | base addres is used to save the EFI_PEI_SERVICES**.\r | |
32 | For x64, the eight-bytes field immediately prior to new IDT\r | |
33 | base addres is used to save the EFI_PEI_SERVICES**.\r | |
34 | \r | |
35 | @retval The pointer to PeiServices.\r | |
36 | \r | |
37 | **/\r | |
38 | EFI_PEI_SERVICES **\r | |
39 | EFIAPI\r | |
40 | GetPeiServicesTablePointer (\r | |
41 | VOID\r | |
42 | )\r | |
43 | {\r | |
44 | EFI_PEI_SERVICES **PeiServices;\r | |
45 | \r | |
46 | PeiServices = (EFI_PEI_SERVICES **) AsmPeiSevicesTablePointer ();\r | |
47 | ASSERT (PeiServices != NULL);\r | |
48 | return PeiServices;\r | |
49 | }\r | |
50 | \r |