]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/PrePi/PrePi.h
ARM Packages: Use .8byte instead of .dword for pointers
[mirror_edk2.git] / ArmPlatformPkg / PrePi / PrePi.h
CommitLineData
cd872e40 1/** @file\r
2*\r
fb475593 3* Copyright (c) 2011-2012, ARM Limited. All rights reserved.\r
cd872e40 4*\r
5* This program and the accompanying materials\r
6* are licensed and made available under the terms and conditions of the BSD License\r
7* which accompanies this distribution. The full text of the license may be found at\r
8* http://opensource.org/licenses/bsd-license.php\r
9*\r
10* THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11* WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12*\r
13**/\r
14\r
15#ifndef _PREPI_H_\r
16#define _PREPI_H_\r
17\r
18#include <PiPei.h>\r
19\r
20#include <Library/PcdLib.h>\r
21#include <Library/ArmLib.h>\r
99565b88 22#include <Library/BaseMemoryLib.h>\r
cd872e40 23#include <Library/DebugLib.h>\r
99565b88 24#include <Library/IoLib.h>\r
cd872e40 25#include <Library/MemoryAllocationLib.h>\r
26#include <Library/HobLib.h>\r
27#include <Library/SerialPortLib.h>\r
28#include <Library/ArmPlatformLib.h>\r
29\r
cd872e40 30#define SerialPrint(txt) SerialPortWrite (txt, AsciiStrLen(txt)+1);\r
31\r
cd872e40 32RETURN_STATUS\r
33EFIAPI\r
34TimerConstructor (\r
35 VOID\r
36 );\r
37\r
38VOID\r
39PrePiMain (\r
40 IN UINTN UefiMemoryBase,\r
c524ffbb 41 IN UINTN StacksBase,\r
42 IN UINTN GlobalVariableBase,\r
cd872e40 43 IN UINT64 StartTimeStamp\r
44 );\r
45\r
46EFI_STATUS\r
47EFIAPI\r
48MemoryPeim (\r
d269095b 49 IN EFI_PHYSICAL_ADDRESS UefiMemoryBase,\r
50 IN UINT64 UefiMemorySize\r
cd872e40 51 );\r
52\r
53EFI_STATUS\r
54EFIAPI\r
55PlatformPeim (\r
56 VOID\r
57 );\r
58\r
59VOID\r
60PrimaryMain (\r
61 IN UINTN UefiMemoryBase,\r
c524ffbb 62 IN UINTN StacksBase,\r
63 IN UINTN GlobalVariableBase,\r
cd872e40 64 IN UINT64 StartTimeStamp\r
65 );\r
66\r
67VOID\r
68SecondaryMain (\r
0787bc61 69 IN UINTN MpId\r
cd872e40 70 );\r
71\r
72// Either implemented by PrePiLib or by MemoryInitPei\r
73VOID\r
74BuildMemoryTypeInformationHob (\r
75 VOID\r
76 );\r
77\r
0dbbacdf 78EFI_STATUS\r
79GetPlatformPpi (\r
80 IN EFI_GUID *PpiGuid,\r
81 OUT VOID **Ppi\r
82 );\r
83\r
1bc83266
HL
84// Initialize the Architecture specific controllers\r
85VOID\r
86ArchInitialize (\r
87 VOID\r
88 );\r
89\r
cd872e40 90#endif /* _PREPI_H_ */\r