]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/Include/Library/ArmPlatformLib.h
ArmPlatformPkg: Replaced 'ArmPlatformTrustzoneSupported' by the fixed Pcd gArmTokenSp...
[mirror_edk2.git] / ArmPlatformPkg / Include / Library / ArmPlatformLib.h
CommitLineData
1d5d0ae9 1/** @file
2*
3* Copyright (c) 2011, ARM Limited. All rights reserved.
4*
5* 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#ifndef _ARMPLATFORMLIB_H_
16#define _ARMPLATFORMLIB_H_
17
18//
19// The package level header files this module uses
20//
21#include <PiPei.h>
22//
23// The protocols, PPI and GUID defintions for this module
24//
25#include <Ppi/MasterBootMode.h>
26#include <Ppi/BootInRecoveryMode.h>
27#include <Guid/MemoryTypeInformation.h>
28
29#include <Library/ArmLib.h>
1d5d0ae9 30
31/**
32 This structure is used by ArmVExpressGetEfiMemoryMap to describes a region of the EFI memory map
33
34 Every EFI regions of the system memory described by their physical start address and their size
35 can have different attributes. Some regions can be tested and other untested.
36
37**/
38typedef struct {
39 EFI_RESOURCE_ATTRIBUTE_TYPE ResourceAttribute;
40 EFI_PHYSICAL_ADDRESS PhysicalStart;
41 UINT64 NumberOfBytes;
42} ARM_SYSTEM_MEMORY_REGION_DESCRIPTOR;
43
1d5d0ae9 44/**
45 Initialize the memory where the initial stacks will reside
46
47 This memory can contain the initial stacks (Secure and Secure Monitor stacks).
48 In some platform, this region is already initialized and the implementation of this function can
49 do nothing. This memory can also represent the Secure RAM.
50 This function is called before the satck has been set up. Its implementation must ensure the stack
51 pointer is not used (probably required to use assembly language)
52
53**/
aa01abaa 54VOID
55ArmPlatformInitializeBootMemory (
56 VOID
57 );
1d5d0ae9 58
a534d714 59/**
60 Return the current Boot Mode
61
62 This function returns the boot reason on the platform
63
64 @return Return the current Boot Mode of the platform
65
66**/
67EFI_BOOT_MODE
68ArmPlatformGetBootMode (
69 VOID
70 );
71
44e272fd 72/**
73 Call at the beginning of the platform boot up
74
75 This function allows the firmware platform to do extra actions at the early
76 stage of the platform power up.
77
78 Note: This function must be implemented in assembler as there is no stack set up yet
79
80**/
81VOID
82ArmPlatformSecBootAction (
83 VOID
84 );
85
8e06b586 86/**
87 Initialize controllers that must setup at the early stage
88
89 Some peripherals must be initialized in Secure World.
90 For example, some L2x0 requires to be initialized in Secure World
91
92**/
93VOID
aa01abaa 94ArmPlatformSecInitialize (
95 VOID
96 );
97
a6caee65 98/**
99 Call before jumping to Normal World
100
101 This function allows the firmware platform to do extra actions before
102 jumping to the Normal World
103
104**/
105VOID
106ArmPlatformSecExtraAction (
0787bc61 107 IN UINTN MpId,
a6caee65 108 OUT UINTN* JumpAddress
109 );
110
aa01abaa 111/**
112 Initialize controllers that must setup in the normal world
113
5cc45b70 114 This function is called by the ArmPlatformPkg/PrePi or ArmPlatformPkg/PlatformPei
aa01abaa 115 in the PEI phase.
116
117**/
118VOID
119ArmPlatformNormalInitialize (
8e06b586 120 VOID
121 );
122
1d5d0ae9 123/**
124 Initialize the system (or sometimes called permanent) memory
125
126 This memory is generally represented by the DRAM.
127
128**/
aa01abaa 129VOID
130ArmPlatformInitializeSystemMemory (
131 VOID
132 );
1d5d0ae9 133
134/**
135 Remap the memory at 0x0
136
137 Some platform requires or gives the ability to remap the memory at the address 0x0.
138 This function can do nothing if this feature is not relevant to your platform.
139
140**/
aa01abaa 141VOID
142ArmPlatformBootRemapping (
143 VOID
144 );
1d5d0ae9 145
1d5d0ae9 146/**
147 Initialize the Secure peripherals and memory regions
148
149 If Trustzone is supported by your platform then this function makes the required initialization
150 of the secure peripherals and memory regions.
151
152**/
aa01abaa 153VOID
154ArmPlatformTrustzoneInit (
155 VOID
156 );
1d5d0ae9 157
1d5d0ae9 158/**
159 Return the Virtual Memory Map of your platform
160
161 This Virtual Memory Map is used by MemoryInitPei Module to initialize the MMU on your platform.
162
163 @param[out] VirtualMemoryMap Array of ARM_MEMORY_REGION_DESCRIPTOR describing a Physical-to-
164 Virtual Memory mapping. This array must be ended by a zero-filled
165 entry
166
167**/
aa01abaa 168VOID
169ArmPlatformGetVirtualMemoryMap (
170 OUT ARM_MEMORY_REGION_DESCRIPTOR** VirtualMemoryMap
171 );
1d5d0ae9 172
173/**
174 Return the EFI Memory Map of your platform
175
176 This EFI Memory Map of the System Memory is used by MemoryInitPei module to create the Resource
177 Descriptor HOBs used by DXE core.
178
179 @param[out] EfiMemoryMap Array of ARM_SYSTEM_MEMORY_REGION_DESCRIPTOR describing an
180 EFI Memory region. This array must be ended by a zero-filled entry
181
182**/
964680c1 183EFI_STATUS
184ArmPlatformGetAdditionalSystemMemory (
185 OUT ARM_SYSTEM_MEMORY_REGION_DESCRIPTOR** EfiMemoryMap
186 );
1d5d0ae9 187
77de7e53 188/**
189 Return the Platform specific PPIs
190
191 This function exposes the Platform Specific PPIs. They can be used by any PrePi modules or passed
192 to the PeiCore by PrePeiCore.
193
194 @param[out] PpiListSize Size in Bytes of the Platform PPI List
195 @param[out] PpiList Platform PPI List
196
197**/
198VOID
199ArmPlatformGetPlatformPpiList (
200 OUT UINTN *PpiListSize,
201 OUT EFI_PEI_PPI_DESCRIPTOR **PpiList
202 );
203
1d5d0ae9 204#endif