blob: ebbdc9b23683c6b646d8f781840f08f3b75cde31 [file] [log] [blame]
Paul Beesley8aa05052019-03-07 15:47:15 +00001Firmware Design
2===============
Douglas Raillard6f625742017-06-28 15:23:03 +01003
Dan Handley4def07d2018-03-01 18:44:00 +00004Trusted Firmware-A (TF-A) implements a subset of the Trusted Board Boot
Paul Beesley34760952019-04-12 14:19:42 +01005Requirements (TBBR) Platform Design Document (PDD) for Arm reference
6platforms.
7
8The TBB sequence starts when the platform is powered on and runs up
Douglas Raillard6f625742017-06-28 15:23:03 +01009to the stage where it hands-off control to firmware running in the normal
10world in DRAM. This is the cold boot path.
11
Manish V Badarkhe3be6b4f2023-06-15 09:14:33 +010012TF-A also implements the `PSCI`_ as a runtime service. PSCI is the interface
13from normal world software to firmware implementing power management use-cases
14(for example, secondary CPU boot, hotplug and idle). Normal world software can
15access TF-A runtime services via the Arm SMC (Secure Monitor Call) instruction.
16The SMC instruction must be used as mandated by the SMC Calling Convention
17(`SMCCC`_).
Douglas Raillard6f625742017-06-28 15:23:03 +010018
Dan Handley4def07d2018-03-01 18:44:00 +000019TF-A implements a framework for configuring and managing interrupts generated
20in either security state. The details of the interrupt management framework
Paul Beesley34760952019-04-12 14:19:42 +010021and its design can be found in :ref:`Interrupt Management Framework`.
Douglas Raillard6f625742017-06-28 15:23:03 +010022
Dan Handley4def07d2018-03-01 18:44:00 +000023TF-A also implements a library for setting up and managing the translation
Paul Beesley34760952019-04-12 14:19:42 +010024tables. The details of this library can be found in
25:ref:`Translation (XLAT) Tables Library`.
Antonio Nino Diaz6feb9e82017-05-23 11:49:22 +010026
Dan Handley4def07d2018-03-01 18:44:00 +000027TF-A can be built to support either AArch64 or AArch32 execution state.
Zelalem Aweke7446c262021-10-21 13:59:45 -050028
Harrison Mutai24566a32023-05-12 09:45:14 +010029.. note::
30 The descriptions in this chapter are for the Arm TrustZone architecture.
31 For changes to the firmware design for the `Arm Confidential Compute
32 Architecture (Arm CCA)`_ please refer to the chapter :ref:`Realm Management
33 Extension (RME)`.
Zelalem Aweke7446c262021-10-21 13:59:45 -050034
Douglas Raillard6f625742017-06-28 15:23:03 +010035Cold boot
36---------
37
38The cold boot path starts when the platform is physically turned on. If
39``COLD_BOOT_SINGLE_CPU=0``, one of the CPUs released from reset is chosen as the
40primary CPU, and the remaining CPUs are considered secondary CPUs. The primary
41CPU is chosen through platform-specific means. The cold boot path is mainly
42executed by the primary CPU, other than essential CPU initialization executed by
43all CPUs. The secondary CPUs are kept in a safe platform-specific state until
44the primary CPU has performed enough initialization to boot them.
45
Paul Beesley34760952019-04-12 14:19:42 +010046Refer to the :ref:`CPU Reset` for more information on the effect of the
Douglas Raillard6f625742017-06-28 15:23:03 +010047``COLD_BOOT_SINGLE_CPU`` platform build option.
48
Dan Handley4def07d2018-03-01 18:44:00 +000049The cold boot path in this implementation of TF-A depends on the execution
50state. For AArch64, it is divided into five steps (in order of execution):
Douglas Raillard6f625742017-06-28 15:23:03 +010051
52- Boot Loader stage 1 (BL1) *AP Trusted ROM*
53- Boot Loader stage 2 (BL2) *Trusted Boot Firmware*
54- Boot Loader stage 3-1 (BL31) *EL3 Runtime Software*
55- Boot Loader stage 3-2 (BL32) *Secure-EL1 Payload* (optional)
56- Boot Loader stage 3-3 (BL33) *Non-trusted Firmware*
57
58For AArch32, it is divided into four steps (in order of execution):
59
60- Boot Loader stage 1 (BL1) *AP Trusted ROM*
61- Boot Loader stage 2 (BL2) *Trusted Boot Firmware*
62- Boot Loader stage 3-2 (BL32) *EL3 Runtime Software*
63- Boot Loader stage 3-3 (BL33) *Non-trusted Firmware*
64
Dan Handley4def07d2018-03-01 18:44:00 +000065Arm development platforms (Fixed Virtual Platforms (FVPs) and Juno) implement a
Douglas Raillard6f625742017-06-28 15:23:03 +010066combination of the following types of memory regions. Each bootloader stage uses
67one or more of these memory regions.
68
69- Regions accessible from both non-secure and secure states. For example,
70 non-trusted SRAM, ROM and DRAM.
71- Regions accessible from only the secure state. For example, trusted SRAM and
72 ROM. The FVPs also implement the trusted DRAM which is statically
73 configured. Additionally, the Base FVPs and Juno development platform
74 configure the TrustZone Controller (TZC) to create a region in the DRAM
75 which is accessible only from the secure state.
76
77The sections below provide the following details:
78
Soby Mathewb2a68f82018-02-16 14:52:52 +000079- dynamic configuration of Boot Loader stages
Douglas Raillard6f625742017-06-28 15:23:03 +010080- initialization and execution of the first three stages during cold boot
81- specification of the EL3 Runtime Software (BL31 for AArch64 and BL32 for
82 AArch32) entrypoint requirements for use by alternative Trusted Boot
83 Firmware in place of the provided BL1 and BL2
84
Soby Mathewb2a68f82018-02-16 14:52:52 +000085Dynamic Configuration during cold boot
86~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
87
88Each of the Boot Loader stages may be dynamically configured if required by the
89platform. The Boot Loader stage may optionally specify a firmware
90configuration file and/or hardware configuration file as listed below:
91
Manish V Badarkhe089fc622020-06-13 09:42:28 +010092- FW_CONFIG - The firmware configuration file. Holds properties shared across
93 all BLx images.
94 An example is the "dtb-registry" node, which contains the information about
95 the other device tree configurations (load-address, size, image_id).
Soby Mathewb2a68f82018-02-16 14:52:52 +000096- HW_CONFIG - The hardware configuration file. Can be shared by all Boot Loader
97 stages and also by the Normal World Rich OS.
98- TB_FW_CONFIG - Trusted Boot Firmware configuration file. Shared between BL1
99 and BL2.
100- SOC_FW_CONFIG - SoC Firmware configuration file. Used by BL31.
101- TOS_FW_CONFIG - Trusted OS Firmware configuration file. Used by Trusted OS
102 (BL32).
103- NT_FW_CONFIG - Non Trusted Firmware configuration file. Used by Non-trusted
104 firmware (BL33).
105
106The Arm development platforms use the Flattened Device Tree format for the
107dynamic configuration files.
108
109Each Boot Loader stage can pass up to 4 arguments via registers to the next
110stage. BL2 passes the list of the next images to execute to the *EL3 Runtime
111Software* (BL31 for AArch64 and BL32 for AArch32) via `arg0`. All the other
112arguments are platform defined. The Arm development platforms use the following
113convention:
114
115- BL1 passes the address of a meminfo_t structure to BL2 via ``arg1``. This
116 structure contains the memory layout available to BL2.
117- When dynamic configuration files are present, the firmware configuration for
118 the next Boot Loader stage is populated in the first available argument and
119 the generic hardware configuration is passed the next available argument.
120 For example,
121
Manish V Badarkhe089fc622020-06-13 09:42:28 +0100122 - FW_CONFIG is loaded by BL1, then its address is passed in ``arg0`` to BL2.
123 - TB_FW_CONFIG address is retrieved by BL2 from FW_CONFIG device tree.
Soby Mathewb2a68f82018-02-16 14:52:52 +0000124 - If HW_CONFIG is loaded by BL1, then its address is passed in ``arg2`` to
125 BL2. Note, ``arg1`` is already used for meminfo_t.
126 - If SOC_FW_CONFIG is loaded by BL2, then its address is passed in ``arg1``
127 to BL31. Note, ``arg0`` is used to pass the list of executable images.
128 - Similarly, if HW_CONFIG is loaded by BL1 or BL2, then its address is
129 passed in ``arg2`` to BL31.
130 - For other BL3x images, if the firmware configuration file is loaded by
131 BL2, then its address is passed in ``arg0`` and if HW_CONFIG is loaded
132 then its address is passed in ``arg1``.
Nishant Sharma31dcf232023-10-13 11:23:50 +0100133 - In case SPMC_AT_EL3 is enabled, populate the BL32 image base, size and max
134 limit in the entry point information, since there is no platform function
135 to retrieve these in generic code. We choose ``arg2``, ``arg3`` and
136 ``arg4`` since the generic code uses ``arg1`` for stashing the SP manifest
137 size. The SPMC setup uses these arguments to update SP manifest with
138 actual SP's base address and it size.
Manish V Badarkheb4a87832022-04-12 21:11:56 +0100139 - In case of the Arm FVP platform, FW_CONFIG address passed in ``arg1`` to
140 BL31/SP_MIN, and the SOC_FW_CONFIG and HW_CONFIG details are retrieved
141 from FW_CONFIG device tree.
Soby Mathewb2a68f82018-02-16 14:52:52 +0000142
Douglas Raillard6f625742017-06-28 15:23:03 +0100143BL1
144~~~
145
146This stage begins execution from the platform's reset vector at EL3. The reset
147address is platform dependent but it is usually located in a Trusted ROM area.
148The BL1 data section is copied to trusted SRAM at runtime.
149
Dan Handley4def07d2018-03-01 18:44:00 +0000150On the Arm development platforms, BL1 code starts execution from the reset
Douglas Raillard6f625742017-06-28 15:23:03 +0100151vector defined by the constant ``BL1_RO_BASE``. The BL1 data section is copied
152to the top of trusted SRAM as defined by the constant ``BL1_RW_BASE``.
153
154The functionality implemented by this stage is as follows.
155
156Determination of boot path
157^^^^^^^^^^^^^^^^^^^^^^^^^^
158
159Whenever a CPU is released from reset, BL1 needs to distinguish between a warm
160boot and a cold boot. This is done using platform-specific mechanisms (see the
Paul Beesley34760952019-04-12 14:19:42 +0100161``plat_get_my_entrypoint()`` function in the :ref:`Porting Guide`). In the case
162of a warm boot, a CPU is expected to continue execution from a separate
Douglas Raillard6f625742017-06-28 15:23:03 +0100163entrypoint. In the case of a cold boot, the secondary CPUs are placed in a safe
164platform-specific state (see the ``plat_secondary_cold_boot_setup()`` function in
Paul Beesley34760952019-04-12 14:19:42 +0100165the :ref:`Porting Guide`) while the primary CPU executes the remaining cold boot
166path as described in the following sections.
Douglas Raillard6f625742017-06-28 15:23:03 +0100167
168This step only applies when ``PROGRAMMABLE_RESET_ADDRESS=0``. Refer to the
Paul Beesley34760952019-04-12 14:19:42 +0100169:ref:`CPU Reset` for more information on the effect of the
Douglas Raillard6f625742017-06-28 15:23:03 +0100170``PROGRAMMABLE_RESET_ADDRESS`` platform build option.
171
172Architectural initialization
173^^^^^^^^^^^^^^^^^^^^^^^^^^^^
174
175BL1 performs minimal architectural initialization as follows.
176
177- Exception vectors
178
179 BL1 sets up simple exception vectors for both synchronous and asynchronous
180 exceptions. The default behavior upon receiving an exception is to populate
181 a status code in the general purpose register ``X0/R0`` and call the
Paul Beesley34760952019-04-12 14:19:42 +0100182 ``plat_report_exception()`` function (see the :ref:`Porting Guide`). The
183 status code is one of:
Douglas Raillard6f625742017-06-28 15:23:03 +0100184
185 For AArch64:
186
187 ::
188
189 0x0 : Synchronous exception from Current EL with SP_EL0
190 0x1 : IRQ exception from Current EL with SP_EL0
191 0x2 : FIQ exception from Current EL with SP_EL0
192 0x3 : System Error exception from Current EL with SP_EL0
193 0x4 : Synchronous exception from Current EL with SP_ELx
194 0x5 : IRQ exception from Current EL with SP_ELx
195 0x6 : FIQ exception from Current EL with SP_ELx
196 0x7 : System Error exception from Current EL with SP_ELx
197 0x8 : Synchronous exception from Lower EL using aarch64
198 0x9 : IRQ exception from Lower EL using aarch64
199 0xa : FIQ exception from Lower EL using aarch64
200 0xb : System Error exception from Lower EL using aarch64
201 0xc : Synchronous exception from Lower EL using aarch32
202 0xd : IRQ exception from Lower EL using aarch32
203 0xe : FIQ exception from Lower EL using aarch32
204 0xf : System Error exception from Lower EL using aarch32
205
206 For AArch32:
207
208 ::
209
210 0x10 : User mode
211 0x11 : FIQ mode
212 0x12 : IRQ mode
213 0x13 : SVC mode
214 0x16 : Monitor mode
215 0x17 : Abort mode
216 0x1a : Hypervisor mode
217 0x1b : Undefined mode
218 0x1f : System mode
219
Dan Handley4def07d2018-03-01 18:44:00 +0000220 The ``plat_report_exception()`` implementation on the Arm FVP port programs
Douglas Raillard6f625742017-06-28 15:23:03 +0100221 the Versatile Express System LED register in the following format to
Paul Beesley8aabea32019-01-11 18:26:51 +0000222 indicate the occurrence of an unexpected exception:
Douglas Raillard6f625742017-06-28 15:23:03 +0100223
224 ::
225
226 SYS_LED[0] - Security state (Secure=0/Non-Secure=1)
227 SYS_LED[2:1] - Exception Level (EL3=0x3, EL2=0x2, EL1=0x1, EL0=0x0)
228 For AArch32 it is always 0x0
229 SYS_LED[7:3] - Exception Class (Sync/Async & origin). This is the value
230 of the status code
231
232 A write to the LED register reflects in the System LEDs (S6LED0..7) in the
233 CLCD window of the FVP.
234
235 BL1 does not expect to receive any exceptions other than the SMC exception.
236 For the latter, BL1 installs a simple stub. The stub expects to receive a
237 limited set of SMC types (determined by their function IDs in the general
238 purpose register ``X0/R0``):
239
240 - ``BL1_SMC_RUN_IMAGE``: This SMC is raised by BL2 to make BL1 pass control
241 to EL3 Runtime Software.
Paul Beesley34760952019-04-12 14:19:42 +0100242 - All SMCs listed in section "BL1 SMC Interface" in the :ref:`Firmware Update (FWU)`
Douglas Raillard6f625742017-06-28 15:23:03 +0100243 Design Guide are supported for AArch64 only. These SMCs are currently
244 not supported when BL1 is built for AArch32.
245
246 Any other SMC leads to an assertion failure.
247
248- CPU initialization
249
Boyan Karatotev39f7d022024-11-19 11:27:01 +0000250 BL1 calls the ``reset_handler`` macro/function which in turn calls the CPU
Douglas Raillard6f625742017-06-28 15:23:03 +0100251 specific reset handler function (see the section: "CPU specific operations
252 framework").
253
Douglas Raillard6f625742017-06-28 15:23:03 +0100254Platform initialization
255^^^^^^^^^^^^^^^^^^^^^^^
256
Dan Handley4def07d2018-03-01 18:44:00 +0000257On Arm platforms, BL1 performs the following platform initializations:
Douglas Raillard6f625742017-06-28 15:23:03 +0100258
259- Enable the Trusted Watchdog.
260- Initialize the console.
261- Configure the Interconnect to enable hardware coherency.
262- Enable the MMU and map the memory it needs to access.
263- Configure any required platform storage to load the next bootloader image
264 (BL2).
Soby Mathewb2a68f82018-02-16 14:52:52 +0000265- If the BL1 dynamic configuration file, ``TB_FW_CONFIG``, is available, then
266 load it to the platform defined address and make it available to BL2 via
267 ``arg0``.
Soby Mathew3208edc2018-06-11 16:40:36 +0100268- Configure the system timer and program the `CNTFRQ_EL0` for use by NS-BL1U
269 and NS-BL2U firmware update images.
Douglas Raillard6f625742017-06-28 15:23:03 +0100270
271Firmware Update detection and execution
272^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
273
274After performing platform setup, BL1 common code calls
Paul Beesley34760952019-04-12 14:19:42 +0100275``bl1_plat_get_next_image_id()`` to determine if :ref:`Firmware Update (FWU)` is
276required or to proceed with the normal boot process. If the platform code
277returns ``BL2_IMAGE_ID`` then the normal boot sequence is executed as described
278in the next section, else BL1 assumes that :ref:`Firmware Update (FWU)` is
279required and execution passes to the first image in the
280:ref:`Firmware Update (FWU)` process. In either case, BL1 retrieves a descriptor
281of the next image by calling ``bl1_plat_get_image_desc()``. The image descriptor
282contains an ``entry_point_info_t`` structure, which BL1 uses to initialize the
283execution state of the next image.
Douglas Raillard6f625742017-06-28 15:23:03 +0100284
285BL2 image load and execution
286^^^^^^^^^^^^^^^^^^^^^^^^^^^^
287
288In the normal boot flow, BL1 execution continues as follows:
289
290#. BL1 prints the following string from the primary CPU to indicate successful
291 execution of the BL1 stage:
292
293 ::
294
295 "Booting Trusted Firmware"
296
Soby Mathewb2a68f82018-02-16 14:52:52 +0000297#. BL1 loads a BL2 raw binary image from platform storage, at a
298 platform-specific base address. Prior to the load, BL1 invokes
299 ``bl1_plat_handle_pre_image_load()`` which allows the platform to update or
300 use the image information. If the BL2 image file is not present or if
Douglas Raillard6f625742017-06-28 15:23:03 +0100301 there is not enough free trusted SRAM the following error message is
302 printed:
303
304 ::
305
306 "Failed to load BL2 firmware."
307
Soby Mathewb2a68f82018-02-16 14:52:52 +0000308#. BL1 invokes ``bl1_plat_handle_post_image_load()`` which again is intended
309 for platforms to take further action after image load. This function must
310 populate the necessary arguments for BL2, which may also include the memory
311 layout. Further description of the memory layout can be found later
312 in this document.
Douglas Raillard6f625742017-06-28 15:23:03 +0100313
314#. BL1 passes control to the BL2 image at Secure EL1 (for AArch64) or at
315 Secure SVC mode (for AArch32), starting from its load address.
316
Douglas Raillard6f625742017-06-28 15:23:03 +0100317BL2
318~~~
319
320BL1 loads and passes control to BL2 at Secure-EL1 (for AArch64) or at Secure
321SVC mode (for AArch32) . BL2 is linked against and loaded at a platform-specific
322base address (more information can be found later in this document).
323The functionality implemented by BL2 is as follows.
324
325Architectural initialization
326^^^^^^^^^^^^^^^^^^^^^^^^^^^^
327
328For AArch64, BL2 performs the minimal architectural initialization required
Dan Handley4def07d2018-03-01 18:44:00 +0000329for subsequent stages of TF-A and normal world software. EL1 and EL0 are given
Peng Fan093ba622020-08-21 10:47:17 +0800330access to Floating Point and Advanced SIMD registers by setting the
Dan Handley4def07d2018-03-01 18:44:00 +0000331``CPACR.FPEN`` bits.
Douglas Raillard6f625742017-06-28 15:23:03 +0100332
333For AArch32, the minimal architectural initialization required for subsequent
Dan Handley4def07d2018-03-01 18:44:00 +0000334stages of TF-A and normal world software is taken care of in BL1 as both BL1
335and BL2 execute at PL1.
Douglas Raillard6f625742017-06-28 15:23:03 +0100336
337Platform initialization
338^^^^^^^^^^^^^^^^^^^^^^^
339
Dan Handley4def07d2018-03-01 18:44:00 +0000340On Arm platforms, BL2 performs the following platform initializations:
Douglas Raillard6f625742017-06-28 15:23:03 +0100341
342- Initialize the console.
343- Configure any required platform storage to allow loading further bootloader
344 images.
345- Enable the MMU and map the memory it needs to access.
346- Perform platform security setup to allow access to controlled components.
347- Reserve some memory for passing information to the next bootloader image
348 EL3 Runtime Software and populate it.
349- Define the extents of memory available for loading each subsequent
350 bootloader image.
Soby Mathewb2a68f82018-02-16 14:52:52 +0000351- If BL1 has passed TB_FW_CONFIG dynamic configuration file in ``arg0``,
352 then parse it.
Douglas Raillard6f625742017-06-28 15:23:03 +0100353
354Image loading in BL2
355^^^^^^^^^^^^^^^^^^^^
356
Roberto Vargased51b512018-09-24 17:20:48 +0100357BL2 generic code loads the images based on the list of loadable images
358provided by the platform. BL2 passes the list of executable images
359provided by the platform to the next handover BL image.
Douglas Raillard6f625742017-06-28 15:23:03 +0100360
Soby Mathewb2a68f82018-02-16 14:52:52 +0000361The list of loadable images provided by the platform may also contain
362dynamic configuration files. The files are loaded and can be parsed as
363needed in the ``bl2_plat_handle_post_image_load()`` function. These
364configuration files can be passed to next Boot Loader stages as arguments
365by updating the corresponding entrypoint information in this function.
366
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +0100367SCP_BL2 (System Control Processor Firmware) image load
368^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Douglas Raillard6f625742017-06-28 15:23:03 +0100369
370Some systems have a separate System Control Processor (SCP) for power, clock,
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +0100371reset and system control. BL2 loads the optional SCP_BL2 image from platform
Douglas Raillard6f625742017-06-28 15:23:03 +0100372storage into a platform-specific region of secure memory. The subsequent
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +0100373handling of SCP_BL2 is platform specific. For example, on the Juno Arm
Douglas Raillard6f625742017-06-28 15:23:03 +0100374development platform port the image is transferred into SCP's internal memory
375using the Boot Over MHU (BOM) protocol after being loaded in the trusted SRAM
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +0100376memory. The SCP executes SCP_BL2 and signals to the Application Processor (AP)
Douglas Raillard6f625742017-06-28 15:23:03 +0100377for BL2 execution to continue.
378
379EL3 Runtime Software image load
380^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
381
382BL2 loads the EL3 Runtime Software image from platform storage into a platform-
383specific address in trusted SRAM. If there is not enough memory to load the
Roberto Vargased51b512018-09-24 17:20:48 +0100384image or image is missing it leads to an assertion failure.
Douglas Raillard6f625742017-06-28 15:23:03 +0100385
386AArch64 BL32 (Secure-EL1 Payload) image load
387^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
388
389BL2 loads the optional BL32 image from platform storage into a platform-
390specific region of secure memory. The image executes in the secure world. BL2
391relies on BL31 to pass control to the BL32 image, if present. Hence, BL2
392populates a platform-specific area of memory with the entrypoint/load-address
393of the BL32 image. The value of the Saved Processor Status Register (``SPSR``)
394for entry into BL32 is not determined by BL2, it is initialized by the
395Secure-EL1 Payload Dispatcher (see later) within BL31, which is responsible for
396managing interaction with BL32. This information is passed to BL31.
397
398BL33 (Non-trusted Firmware) image load
399^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
400
401BL2 loads the BL33 image (e.g. UEFI or other test or boot software) from
402platform storage into non-secure memory as defined by the platform.
403
404BL2 relies on EL3 Runtime Software to pass control to BL33 once secure state
405initialization is complete. Hence, BL2 populates a platform-specific area of
406memory with the entrypoint and Saved Program Status Register (``SPSR``) of the
407normal world software image. The entrypoint is the load address of the BL33
408image. The ``SPSR`` is determined as specified in Section 5.13 of the
Manish V Badarkhe3be6b4f2023-06-15 09:14:33 +0100409`PSCI`_. This information is passed to the EL3 Runtime Software.
Douglas Raillard6f625742017-06-28 15:23:03 +0100410
411AArch64 BL31 (EL3 Runtime Software) execution
412^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
413
414BL2 execution continues as follows:
415
416#. BL2 passes control back to BL1 by raising an SMC, providing BL1 with the
417 BL31 entrypoint. The exception is handled by the SMC exception handler
418 installed by BL1.
419
420#. BL1 turns off the MMU and flushes the caches. It clears the
421 ``SCTLR_EL3.M/I/C`` bits, flushes the data cache to the point of coherency
422 and invalidates the TLBs.
423
424#. BL1 passes control to BL31 at the specified entrypoint at EL3.
425
Roberto Vargas4cd17692017-11-20 13:36:10 +0000426Running BL2 at EL3 execution level
427~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
428
Dan Handley4def07d2018-03-01 18:44:00 +0000429Some platforms have a non-TF-A Boot ROM that expects the next boot stage
430to execute at EL3. On these platforms, TF-A BL1 is a waste of memory
431as its only purpose is to ensure TF-A BL2 is entered at S-EL1. To avoid
Roberto Vargas4cd17692017-11-20 13:36:10 +0000432this waste, a special mode enables BL2 to execute at EL3, which allows
Dan Handley4def07d2018-03-01 18:44:00 +0000433a non-TF-A Boot ROM to load and jump directly to BL2. This mode is selected
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600434when the build flag RESET_TO_BL2 is enabled.
435The main differences in this mode are:
Roberto Vargas4cd17692017-11-20 13:36:10 +0000436
437#. BL2 includes the reset code and the mailbox mechanism to differentiate
438 cold boot and warm boot. It runs at EL3 doing the arch
439 initialization required for EL3.
440
441#. BL2 does not receive the meminfo information from BL1 anymore. This
442 information can be passed by the Boot ROM or be internal to the
443 BL2 image.
444
445#. Since BL2 executes at EL3, BL2 jumps directly to the next image,
446 instead of invoking the RUN_IMAGE SMC call.
447
448
449We assume 3 different types of BootROM support on the platform:
450
451#. The Boot ROM always jumps to the same address, for both cold
452 and warm boot. In this case, we will need to keep a resident part
453 of BL2 whose memory cannot be reclaimed by any other image. The
454 linker script defines the symbols __TEXT_RESIDENT_START__ and
455 __TEXT_RESIDENT_END__ that allows the platform to configure
456 correctly the memory map.
457#. The platform has some mechanism to indicate the jump address to the
458 Boot ROM. Platform code can then program the jump address with
459 psci_warmboot_entrypoint during cold boot.
460#. The platform has some mechanism to program the reset address using
461 the PROGRAMMABLE_RESET_ADDRESS feature. Platform code can then
462 program the reset address with psci_warmboot_entrypoint during
463 cold boot, bypassing the boot ROM for warm boot.
464
465In the last 2 cases, no part of BL2 needs to remain resident at
466runtime. In the first 2 cases, we expect the Boot ROM to be able to
467differentiate between warm and cold boot, to avoid loading BL2 again
468during warm boot.
469
470This functionality can be tested with FVP loading the image directly
471in memory and changing the address where the system jumps at reset.
472For example:
473
Dimitris Papastamos42be6fc2018-06-11 11:07:58 +0100474 -C cluster0.cpu0.RVBAR=0x4022000
475 --data cluster0.cpu0=bl2.bin@0x4022000
Roberto Vargas4cd17692017-11-20 13:36:10 +0000476
477With this configuration, FVP is like a platform of the first case,
478where the Boot ROM jumps always to the same address. For simplification,
479BL32 is loaded in DRAM in this case, to avoid other images reclaiming
480BL2 memory.
481
482
Douglas Raillard6f625742017-06-28 15:23:03 +0100483AArch64 BL31
484~~~~~~~~~~~~
485
486The image for this stage is loaded by BL2 and BL1 passes control to BL31 at
487EL3. BL31 executes solely in trusted SRAM. BL31 is linked against and
488loaded at a platform-specific base address (more information can be found later
489in this document). The functionality implemented by BL31 is as follows.
490
491Architectural initialization
492^^^^^^^^^^^^^^^^^^^^^^^^^^^^
493
494Currently, BL31 performs a similar architectural initialization to BL1 as
495far as system register settings are concerned. Since BL1 code resides in ROM,
496architectural initialization in BL31 allows override of any previous
497initialization done by BL1.
498
499BL31 initializes the per-CPU data framework, which provides a cache of
500frequently accessed per-CPU data optimised for fast, concurrent manipulation
501on different CPUs. This buffer includes pointers to per-CPU contexts, crash
502buffer, CPU reset and power down operations, PSCI data, platform data and so on.
503
504It then replaces the exception vectors populated by BL1 with its own. BL31
505exception vectors implement more elaborate support for handling SMCs since this
506is the only mechanism to access the runtime services implemented by BL31 (PSCI
507for example). BL31 checks each SMC for validity as specified by the
Sandrine Bailleux71ac9312020-04-17 14:06:52 +0200508`SMC Calling Convention`_ before passing control to the required SMC
Douglas Raillard6f625742017-06-28 15:23:03 +0100509handler routine.
510
511BL31 programs the ``CNTFRQ_EL0`` register with the clock frequency of the system
512counter, which is provided by the platform.
513
514Platform initialization
515^^^^^^^^^^^^^^^^^^^^^^^
516
517BL31 performs detailed platform initialization, which enables normal world
518software to function correctly.
519
Dan Handley4def07d2018-03-01 18:44:00 +0000520On Arm platforms, this consists of the following:
Douglas Raillard6f625742017-06-28 15:23:03 +0100521
522- Initialize the console.
523- Configure the Interconnect to enable hardware coherency.
524- Enable the MMU and map the memory it needs to access.
525- Initialize the generic interrupt controller.
526- Initialize the power controller device.
527- Detect the system topology.
528
529Runtime services initialization
530^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
531
532BL31 is responsible for initializing the runtime services. One of them is PSCI.
533
534As part of the PSCI initializations, BL31 detects the system topology. It also
535initializes the data structures that implement the state machine used to track
536the state of power domain nodes. The state can be one of ``OFF``, ``RUN`` or
537``RETENTION``. All secondary CPUs are initially in the ``OFF`` state. The cluster
538that the primary CPU belongs to is ``ON``; any other cluster is ``OFF``. It also
539initializes the locks that protect them. BL31 accesses the state of a CPU or
540cluster immediately after reset and before the data cache is enabled in the
541warm boot path. It is not currently possible to use 'exclusive' based spinlocks,
542therefore BL31 uses locks based on Lamport's Bakery algorithm instead.
543
544The runtime service framework and its initialization is described in more
545detail in the "EL3 runtime services framework" section below.
546
547Details about the status of the PSCI implementation are provided in the
548"Power State Coordination Interface" section below.
549
550AArch64 BL32 (Secure-EL1 Payload) image initialization
551^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
552
553If a BL32 image is present then there must be a matching Secure-EL1 Payload
554Dispatcher (SPD) service (see later for details). During initialization
555that service must register a function to carry out initialization of BL32
556once the runtime services are fully initialized. BL31 invokes such a
557registered function to initialize BL32 before running BL33. This initialization
558is not necessary for AArch32 SPs.
559
560Details on BL32 initialization and the SPD's role are described in the
Paul Beesley43f35ef2019-05-29 13:59:40 +0100561:ref:`firmware_design_sel1_spd` section below.
Douglas Raillard6f625742017-06-28 15:23:03 +0100562
563BL33 (Non-trusted Firmware) execution
564^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
565
566EL3 Runtime Software initializes the EL2 or EL1 processor context for normal-
567world cold boot, ensuring that no secure state information finds its way into
568the non-secure execution state. EL3 Runtime Software uses the entrypoint
569information provided by BL2 to jump to the Non-trusted firmware image (BL33)
570at the highest available Exception Level (EL2 if available, otherwise EL1).
571
572Using alternative Trusted Boot Firmware in place of BL1 & BL2 (AArch64 only)
573~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
574
575Some platforms have existing implementations of Trusted Boot Firmware that
Dan Handley4def07d2018-03-01 18:44:00 +0000576would like to use TF-A BL31 for the EL3 Runtime Software. To enable this
577firmware architecture it is important to provide a fully documented and stable
578interface between the Trusted Boot Firmware and BL31.
Douglas Raillard6f625742017-06-28 15:23:03 +0100579
580Future changes to the BL31 interface will be done in a backwards compatible
581way, and this enables these firmware components to be independently enhanced/
582updated to develop and exploit new functionality.
583
584Required CPU state when calling ``bl31_entrypoint()`` during cold boot
585^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
586
587This function must only be called by the primary CPU.
588
589On entry to this function the calling primary CPU must be executing in AArch64
590EL3, little-endian data access, and all interrupt sources masked:
591
592::
593
594 PSTATE.EL = 3
595 PSTATE.RW = 1
596 PSTATE.DAIF = 0xf
597 SCTLR_EL3.EE = 0
598
599X0 and X1 can be used to pass information from the Trusted Boot Firmware to the
600platform code in BL31:
601
602::
603
Dan Handley4def07d2018-03-01 18:44:00 +0000604 X0 : Reserved for common TF-A information
Douglas Raillard6f625742017-06-28 15:23:03 +0100605 X1 : Platform specific information
606
607BL31 zero-init sections (e.g. ``.bss``) should not contain valid data on entry,
608these will be zero filled prior to invoking platform setup code.
609
610Use of the X0 and X1 parameters
611'''''''''''''''''''''''''''''''
612
613The parameters are platform specific and passed from ``bl31_entrypoint()`` to
614``bl31_early_platform_setup()``. The value of these parameters is never directly
615used by the common BL31 code.
616
617The convention is that ``X0`` conveys information regarding the BL31, BL32 and
618BL33 images from the Trusted Boot firmware and ``X1`` can be used for other
Dan Handley4def07d2018-03-01 18:44:00 +0000619platform specific purpose. This convention allows platforms which use TF-A's
620BL1 and BL2 images to transfer additional platform specific information from
621Secure Boot without conflicting with future evolution of TF-A using ``X0`` to
622pass a ``bl31_params`` structure.
Douglas Raillard6f625742017-06-28 15:23:03 +0100623
624BL31 common and SPD initialization code depends on image and entrypoint
625information about BL33 and BL32, which is provided via BL31 platform APIs.
626This information is required until the start of execution of BL33. This
627information can be provided in a platform defined manner, e.g. compiled into
628the platform code in BL31, or provided in a platform defined memory location
629by the Trusted Boot firmware, or passed from the Trusted Boot Firmware via the
630Cold boot Initialization parameters. This data may need to be cleaned out of
631the CPU caches if it is provided by an earlier boot stage and then accessed by
632BL31 platform code before the caches are enabled.
633
Dan Handley4def07d2018-03-01 18:44:00 +0000634TF-A's BL2 implementation passes a ``bl31_params`` structure in
635``X0`` and the Arm development platforms interpret this in the BL31 platform
Douglas Raillard6f625742017-06-28 15:23:03 +0100636code.
637
638MMU, Data caches & Coherency
639''''''''''''''''''''''''''''
640
641BL31 does not depend on the enabled state of the MMU, data caches or
642interconnect coherency on entry to ``bl31_entrypoint()``. If these are disabled
643on entry, these should be enabled during ``bl31_plat_arch_setup()``.
644
645Data structures used in the BL31 cold boot interface
646''''''''''''''''''''''''''''''''''''''''''''''''''''
647
Harrison Mutai2839a3c2024-01-30 14:21:12 +0000648In the cold boot flow, ``entry_point_info`` is used to represent the execution
649state of an image; that is, the state of general purpose registers, PC, and
650SPSR.
651
652There are two variants of this structure, for AArch64:
653
654.. code:: c
655
656 typedef struct entry_point_info {
657 param_header_t h;
658 uintptr_t pc;
659 uint32_t spsr;
660
661 aapcs64_params_t args;
662 }
663
664and, AArch32:
665
666.. code:: c
667
668 typedef struct entry_point_info {
669 param_header_t h;
670 uintptr_t pc;
671 uint32_t spsr;
672
673 uintptr_t lr_svc;
674 aapcs32_params_t args;
675 } entry_point_info_t;
676
Douglas Raillard6f625742017-06-28 15:23:03 +0100677These structures are designed to support compatibility and independent
678evolution of the structures and the firmware images. For example, a version of
679BL31 that can interpret the BL3x image information from different versions of
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +0100680BL2, a platform that uses an extended entry_point_info structure to convey
Douglas Raillard6f625742017-06-28 15:23:03 +0100681additional register information to BL31, or a ELF image loader that can convey
682more details about the firmware images.
683
684To support these scenarios the structures are versioned and sized, which enables
685BL31 to detect which information is present and respond appropriately. The
686``param_header`` is defined to capture this information:
687
688.. code:: c
689
690 typedef struct param_header {
691 uint8_t type; /* type of the structure */
692 uint8_t version; /* version of this structure */
693 uint16_t size; /* size of this structure in bytes */
Harrison Mutai2839a3c2024-01-30 14:21:12 +0000694 uint32_t attr; /* attributes */
Douglas Raillard6f625742017-06-28 15:23:03 +0100695 } param_header_t;
696
Harrison Mutai2839a3c2024-01-30 14:21:12 +0000697In `entry_point_info`, Bits 0 and 5 of ``attr`` field are used to encode the
698security state; in other words, whether the image is to be executed in Secure,
699Non-Secure, or Realm mode.
700
701Other structures using this format are ``image_info`` and ``bl31_params``. The
702code that allocates and populates these structures must set the header fields
703appropriately, the ``SET_PARAM_HEAD()`` macro is defined to simplify this
704action.
Douglas Raillard6f625742017-06-28 15:23:03 +0100705
706Required CPU state for BL31 Warm boot initialization
707^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
708
Dan Handley4def07d2018-03-01 18:44:00 +0000709When requesting a CPU power-on, or suspending a running CPU, TF-A provides
710the platform power management code with a Warm boot initialization
711entry-point, to be invoked by the CPU immediately after the reset handler.
712On entry to the Warm boot initialization function the calling CPU must be in
713AArch64 EL3, little-endian data access and all interrupt sources masked:
Douglas Raillard6f625742017-06-28 15:23:03 +0100714
715::
716
717 PSTATE.EL = 3
718 PSTATE.RW = 1
719 PSTATE.DAIF = 0xf
720 SCTLR_EL3.EE = 0
721
722The PSCI implementation will initialize the processor state and ensure that the
723platform power management code is then invoked as required to initialize all
724necessary system, cluster and CPU resources.
725
726AArch32 EL3 Runtime Software entrypoint interface
727~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
728
729To enable this firmware architecture it is important to provide a fully
730documented and stable interface between the Trusted Boot Firmware and the
731AArch32 EL3 Runtime Software.
732
733Future changes to the entrypoint interface will be done in a backwards
734compatible way, and this enables these firmware components to be independently
735enhanced/updated to develop and exploit new functionality.
736
737Required CPU state when entering during cold boot
738^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
739
740This function must only be called by the primary CPU.
741
742On entry to this function the calling primary CPU must be executing in AArch32
743EL3, little-endian data access, and all interrupt sources masked:
744
745::
746
747 PSTATE.AIF = 0x7
748 SCTLR.EE = 0
749
750R0 and R1 are used to pass information from the Trusted Boot Firmware to the
751platform code in AArch32 EL3 Runtime Software:
752
753::
754
Dan Handley4def07d2018-03-01 18:44:00 +0000755 R0 : Reserved for common TF-A information
Douglas Raillard6f625742017-06-28 15:23:03 +0100756 R1 : Platform specific information
757
758Use of the R0 and R1 parameters
759'''''''''''''''''''''''''''''''
760
761The parameters are platform specific and the convention is that ``R0`` conveys
762information regarding the BL3x images from the Trusted Boot firmware and ``R1``
763can be used for other platform specific purpose. This convention allows
Dan Handley4def07d2018-03-01 18:44:00 +0000764platforms which use TF-A's BL1 and BL2 images to transfer additional platform
765specific information from Secure Boot without conflicting with future
766evolution of TF-A using ``R0`` to pass a ``bl_params`` structure.
Douglas Raillard6f625742017-06-28 15:23:03 +0100767
768The AArch32 EL3 Runtime Software is responsible for entry into BL33. This
769information can be obtained in a platform defined manner, e.g. compiled into
770the AArch32 EL3 Runtime Software, or provided in a platform defined memory
771location by the Trusted Boot firmware, or passed from the Trusted Boot Firmware
772via the Cold boot Initialization parameters. This data may need to be cleaned
773out of the CPU caches if it is provided by an earlier boot stage and then
774accessed by AArch32 EL3 Runtime Software before the caches are enabled.
775
Dan Handley4def07d2018-03-01 18:44:00 +0000776When using AArch32 EL3 Runtime Software, the Arm development platforms pass a
Douglas Raillard6f625742017-06-28 15:23:03 +0100777``bl_params`` structure in ``R0`` from BL2 to be interpreted by AArch32 EL3 Runtime
778Software platform code.
779
780MMU, Data caches & Coherency
781''''''''''''''''''''''''''''
782
783AArch32 EL3 Runtime Software must not depend on the enabled state of the MMU,
784data caches or interconnect coherency in its entrypoint. They must be explicitly
785enabled if required.
786
787Data structures used in cold boot interface
788'''''''''''''''''''''''''''''''''''''''''''
789
790The AArch32 EL3 Runtime Software cold boot interface uses ``bl_params`` instead
791of ``bl31_params``. The ``bl_params`` structure is based on the convention
792described in AArch64 BL31 cold boot interface section.
793
794Required CPU state for warm boot initialization
795^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
796
797When requesting a CPU power-on, or suspending a running CPU, AArch32 EL3
798Runtime Software must ensure execution of a warm boot initialization entrypoint.
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +0100799If TF-A BL1 is used and the PROGRAMMABLE_RESET_ADDRESS build flag is false,
Dan Handley4def07d2018-03-01 18:44:00 +0000800then AArch32 EL3 Runtime Software must ensure that BL1 branches to the warm
801boot entrypoint by arranging for the BL1 platform function,
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +0100802plat_get_my_entrypoint(), to return a non-zero value.
Douglas Raillard6f625742017-06-28 15:23:03 +0100803
804In this case, the warm boot entrypoint must be in AArch32 EL3, little-endian
805data access and all interrupt sources masked:
806
807::
808
809 PSTATE.AIF = 0x7
810 SCTLR.EE = 0
811
Dan Handley4def07d2018-03-01 18:44:00 +0000812The warm boot entrypoint may be implemented by using TF-A
Douglas Raillard6f625742017-06-28 15:23:03 +0100813``psci_warmboot_entrypoint()`` function. In that case, the platform must fulfil
Paul Beesley34760952019-04-12 14:19:42 +0100814the pre-requisites mentioned in the
815:ref:`PSCI Library Integration guide for Armv8-A AArch32 systems`.
Douglas Raillard6f625742017-06-28 15:23:03 +0100816
817EL3 runtime services framework
818------------------------------
819
820Software executing in the non-secure state and in the secure state at exception
821levels lower than EL3 will request runtime services using the Secure Monitor
822Call (SMC) instruction. These requests will follow the convention described in
823the SMC Calling Convention PDD (`SMCCC`_). The `SMCCC`_ assigns function
824identifiers to each SMC request and describes how arguments are passed and
825returned.
826
827The EL3 runtime services framework enables the development of services by
828different providers that can be easily integrated into final product firmware.
829The following sections describe the framework which facilitates the
830registration, initialization and use of runtime services in EL3 Runtime
831Software (BL31).
832
833The design of the runtime services depends heavily on the concepts and
834definitions described in the `SMCCC`_, in particular SMC Function IDs, Owning
835Entity Numbers (OEN), Fast and Yielding calls, and the SMC32 and SMC64 calling
836conventions. Please refer to that document for more detailed explanation of
837these terms.
838
839The following runtime services are expected to be implemented first. They have
840not all been instantiated in the current implementation.
841
842#. Standard service calls
843
844 This service is for management of the entire system. The Power State
845 Coordination Interface (`PSCI`_) is the first set of standard service calls
Dan Handley4def07d2018-03-01 18:44:00 +0000846 defined by Arm (see PSCI section later).
Douglas Raillard6f625742017-06-28 15:23:03 +0100847
848#. Secure-EL1 Payload Dispatcher service
849
850 If a system runs a Trusted OS or other Secure-EL1 Payload (SP) then
851 it also requires a *Secure Monitor* at EL3 to switch the EL1 processor
852 context between the normal world (EL1/EL2) and trusted world (Secure-EL1).
853 The Secure Monitor will make these world switches in response to SMCs. The
854 `SMCCC`_ provides for such SMCs with the Trusted OS Call and Trusted
855 Application Call OEN ranges.
856
857 The interface between the EL3 Runtime Software and the Secure-EL1 Payload is
858 not defined by the `SMCCC`_ or any other standard. As a result, each
859 Secure-EL1 Payload requires a specific Secure Monitor that runs as a runtime
Dan Handley4def07d2018-03-01 18:44:00 +0000860 service - within TF-A this service is referred to as the Secure-EL1 Payload
861 Dispatcher (SPD).
Douglas Raillard6f625742017-06-28 15:23:03 +0100862
Dan Handley4def07d2018-03-01 18:44:00 +0000863 TF-A provides a Test Secure-EL1 Payload (TSP) and its associated Dispatcher
864 (TSPD). Details of SPD design and TSP/TSPD operation are described in the
Paul Beesley43f35ef2019-05-29 13:59:40 +0100865 :ref:`firmware_design_sel1_spd` section below.
Douglas Raillard6f625742017-06-28 15:23:03 +0100866
867#. CPU implementation service
868
869 This service will provide an interface to CPU implementation specific
870 services for a given platform e.g. access to processor errata workarounds.
871 This service is currently unimplemented.
872
Dan Handley4def07d2018-03-01 18:44:00 +0000873Additional services for Arm Architecture, SiP and OEM calls can be implemented.
Douglas Raillard6f625742017-06-28 15:23:03 +0100874Each implemented service handles a range of SMC function identifiers as
875described in the `SMCCC`_.
876
877Registration
878~~~~~~~~~~~~
879
880A runtime service is registered using the ``DECLARE_RT_SVC()`` macro, specifying
881the name of the service, the range of OENs covered, the type of service and
882initialization and call handler functions. This macro instantiates a ``const struct rt_svc_desc`` for the service with these details (see ``runtime_svc.h``).
Chris Kayda043412023-02-14 11:30:04 +0000883This structure is allocated in a special ELF section ``.rt_svc_descs``, enabling
Douglas Raillard6f625742017-06-28 15:23:03 +0100884the framework to find all service descriptors included into BL31.
885
886The specific service for a SMC Function is selected based on the OEN and call
887type of the Function ID, and the framework uses that information in the service
888descriptor to identify the handler for the SMC Call.
889
890The service descriptors do not include information to identify the precise set
891of SMC function identifiers supported by this service implementation, the
892security state from which such calls are valid nor the capability to support
89364-bit and/or 32-bit callers (using SMC32 or SMC64). Responding appropriately
894to these aspects of a SMC call is the responsibility of the service
895implementation, the framework is focused on integration of services from
896different providers and minimizing the time taken by the framework before the
897service handler is invoked.
898
899Details of the parameters, requirements and behavior of the initialization and
900call handling functions are provided in the following sections.
901
902Initialization
903~~~~~~~~~~~~~~
904
905``runtime_svc_init()`` in ``runtime_svc.c`` initializes the runtime services
906framework running on the primary CPU during cold boot as part of the BL31
907initialization. This happens prior to initializing a Trusted OS and running
908Normal world boot firmware that might in turn use these services.
909Initialization involves validating each of the declared runtime service
910descriptors, calling the service initialization function and populating the
911index used for runtime lookup of the service.
912
913The BL31 linker script collects all of the declared service descriptors into a
914single array and defines symbols that allow the framework to locate and traverse
915the array, and determine its size.
916
917The framework does basic validation of each descriptor to halt firmware
918initialization if service declaration errors are detected. The framework does
919not check descriptors for the following error conditions, and may behave in an
920unpredictable manner under such scenarios:
921
922#. Overlapping OEN ranges
923#. Multiple descriptors for the same range of OENs and ``call_type``
924#. Incorrect range of owning entity numbers for a given ``call_type``
925
926Once validated, the service ``init()`` callback is invoked. This function carries
927out any essential EL3 initialization before servicing requests. The ``init()``
928function is only invoked on the primary CPU during cold boot. If the service
929uses per-CPU data this must either be initialized for all CPUs during this call,
930or be done lazily when a CPU first issues an SMC call to that service. If
931``init()`` returns anything other than ``0``, this is treated as an initialization
932error and the service is ignored: this does not cause the firmware to halt.
933
934The OEN and call type fields present in the SMC Function ID cover a total of
935128 distinct services, but in practice a single descriptor can cover a range of
936OENs, e.g. SMCs to call a Trusted OS function. To optimize the lookup of a
937service handler, the framework uses an array of 128 indices that map every
938distinct OEN/call-type combination either to one of the declared services or to
939indicate the service is not handled. This ``rt_svc_descs_indices[]`` array is
940populated for all of the OENs covered by a service after the service ``init()``
941function has reported success. So a service that fails to initialize will never
942have it's ``handle()`` function invoked.
943
944The following figure shows how the ``rt_svc_descs_indices[]`` index maps the SMC
945Function ID call type and OEN onto a specific service handler in the
946``rt_svc_descs[]`` array.
947
948|Image 1|
949
Madhukar Pappireddy6844c342020-07-29 09:37:25 -0500950.. _handling-an-smc:
951
Douglas Raillard6f625742017-06-28 15:23:03 +0100952Handling an SMC
953~~~~~~~~~~~~~~~
954
955When the EL3 runtime services framework receives a Secure Monitor Call, the SMC
956Function ID is passed in W0 from the lower exception level (as per the
957`SMCCC`_). If the calling register width is AArch32, it is invalid to invoke an
958SMC Function which indicates the SMC64 calling convention: such calls are
959ignored and return the Unknown SMC Function Identifier result code ``0xFFFFFFFF``
960in R0/X0.
961
962Bit[31] (fast/yielding call) and bits[29:24] (owning entity number) of the SMC
963Function ID are combined to index into the ``rt_svc_descs_indices[]`` array. The
964resulting value might indicate a service that has no handler, in this case the
965framework will also report an Unknown SMC Function ID. Otherwise, the value is
966used as a further index into the ``rt_svc_descs[]`` array to locate the required
967service and handler.
968
969The service's ``handle()`` callback is provided with five of the SMC parameters
970directly, the others are saved into memory for retrieval (if needed) by the
971handler. The handler is also provided with an opaque ``handle`` for use with the
972supporting library for parameter retrieval, setting return values and context
Olivier Deprez0fe7b9f2022-10-11 15:38:27 +0200973manipulation. The ``flags`` parameter indicates the security state of the caller
974and the state of the SVE hint bit per the SMCCCv1.3. The framework finally sets
975up the execution stack for the handler, and invokes the services ``handle()``
976function.
Douglas Raillard6f625742017-06-28 15:23:03 +0100977
Madhukar Pappireddye34cc0c2019-11-09 23:28:08 -0600978On return from the handler the result registers are populated in X0-X7 as needed
979before restoring the stack and CPU state and returning from the original SMC.
Douglas Raillard6f625742017-06-28 15:23:03 +0100980
Jeenu Viswambharane31d76f2017-10-18 14:30:53 +0100981Exception Handling Framework
982----------------------------
983
johpow01526f2bd2020-07-28 13:07:25 -0500984Please refer to the :ref:`Exception Handling Framework` document.
Jeenu Viswambharane31d76f2017-10-18 14:30:53 +0100985
Douglas Raillard6f625742017-06-28 15:23:03 +0100986Power State Coordination Interface
987----------------------------------
988
989TODO: Provide design walkthrough of PSCI implementation.
990
Roberto Vargasfe3e40e2017-09-12 10:28:35 +0100991The PSCI v1.1 specification categorizes APIs as optional and mandatory. All the
992mandatory APIs in PSCI v1.1, PSCI v1.0 and in PSCI v0.2 draft specification
Manish V Badarkhe3be6b4f2023-06-15 09:14:33 +0100993`PSCI`_ are implemented. The table lists the PSCI v1.1 APIs and their support
994in generic code.
Douglas Raillard6f625742017-06-28 15:23:03 +0100995
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +0100996An API implementation might have a dependency on platform code e.g. CPU_SUSPEND
Douglas Raillard6f625742017-06-28 15:23:03 +0100997requires the platform to export a part of the implementation. Hence the level
998of support of the mandatory APIs depends upon the support exported by the
999platform port as well. The Juno and FVP (all variants) platforms export all the
1000required support.
1001
1002+-----------------------------+-------------+-------------------------------+
Roberto Vargasfe3e40e2017-09-12 10:28:35 +01001003| PSCI v1.1 API | Supported | Comments |
Douglas Raillard6f625742017-06-28 15:23:03 +01001004+=============================+=============+===============================+
Roberto Vargasfe3e40e2017-09-12 10:28:35 +01001005| ``PSCI_VERSION`` | Yes | The version returned is 1.1 |
Douglas Raillard6f625742017-06-28 15:23:03 +01001006+-----------------------------+-------------+-------------------------------+
1007| ``CPU_SUSPEND`` | Yes\* | |
1008+-----------------------------+-------------+-------------------------------+
1009| ``CPU_OFF`` | Yes\* | |
1010+-----------------------------+-------------+-------------------------------+
1011| ``CPU_ON`` | Yes\* | |
1012+-----------------------------+-------------+-------------------------------+
1013| ``AFFINITY_INFO`` | Yes | |
1014+-----------------------------+-------------+-------------------------------+
1015| ``MIGRATE`` | Yes\*\* | |
1016+-----------------------------+-------------+-------------------------------+
1017| ``MIGRATE_INFO_TYPE`` | Yes\*\* | |
1018+-----------------------------+-------------+-------------------------------+
1019| ``MIGRATE_INFO_CPU`` | Yes\*\* | |
1020+-----------------------------+-------------+-------------------------------+
1021| ``SYSTEM_OFF`` | Yes\* | |
1022+-----------------------------+-------------+-------------------------------+
1023| ``SYSTEM_RESET`` | Yes\* | |
1024+-----------------------------+-------------+-------------------------------+
1025| ``PSCI_FEATURES`` | Yes | |
1026+-----------------------------+-------------+-------------------------------+
1027| ``CPU_FREEZE`` | No | |
1028+-----------------------------+-------------+-------------------------------+
1029| ``CPU_DEFAULT_SUSPEND`` | No | |
1030+-----------------------------+-------------+-------------------------------+
1031| ``NODE_HW_STATE`` | Yes\* | |
1032+-----------------------------+-------------+-------------------------------+
1033| ``SYSTEM_SUSPEND`` | Yes\* | |
1034+-----------------------------+-------------+-------------------------------+
1035| ``PSCI_SET_SUSPEND_MODE`` | No | |
1036+-----------------------------+-------------+-------------------------------+
1037| ``PSCI_STAT_RESIDENCY`` | Yes\* | |
1038+-----------------------------+-------------+-------------------------------+
1039| ``PSCI_STAT_COUNT`` | Yes\* | |
1040+-----------------------------+-------------+-------------------------------+
Roberto Vargasfe3e40e2017-09-12 10:28:35 +01001041| ``SYSTEM_RESET2`` | Yes\* | |
1042+-----------------------------+-------------+-------------------------------+
1043| ``MEM_PROTECT`` | Yes\* | |
1044+-----------------------------+-------------+-------------------------------+
1045| ``MEM_PROTECT_CHECK_RANGE`` | Yes\* | |
1046+-----------------------------+-------------+-------------------------------+
Douglas Raillard6f625742017-06-28 15:23:03 +01001047
1048\*Note : These PSCI APIs require platform power management hooks to be
1049registered with the generic PSCI code to be supported.
1050
1051\*\*Note : These PSCI APIs require appropriate Secure Payload Dispatcher
1052hooks to be registered with the generic PSCI code to be supported.
1053
Dan Handley4def07d2018-03-01 18:44:00 +00001054The PSCI implementation in TF-A is a library which can be integrated with
1055AArch64 or AArch32 EL3 Runtime Software for Armv8-A systems. A guide to
1056integrating PSCI library with AArch32 EL3 Runtime Software can be found
Paul Beesley34760952019-04-12 14:19:42 +01001057at :ref:`PSCI Library Integration guide for Armv8-A AArch32 systems`.
1058
1059.. _firmware_design_sel1_spd:
Douglas Raillard6f625742017-06-28 15:23:03 +01001060
1061Secure-EL1 Payloads and Dispatchers
1062-----------------------------------
1063
1064On a production system that includes a Trusted OS running in Secure-EL1/EL0,
1065the Trusted OS is coupled with a companion runtime service in the BL31
1066firmware. This service is responsible for the initialisation of the Trusted
1067OS and all communications with it. The Trusted OS is the BL32 stage of the
Dan Handley4def07d2018-03-01 18:44:00 +00001068boot flow in TF-A. The firmware will attempt to locate, load and execute a
1069BL32 image.
Douglas Raillard6f625742017-06-28 15:23:03 +01001070
Dan Handley4def07d2018-03-01 18:44:00 +00001071TF-A uses a more general term for the BL32 software that runs at Secure-EL1 -
1072the *Secure-EL1 Payload* - as it is not always a Trusted OS.
Douglas Raillard6f625742017-06-28 15:23:03 +01001073
Dan Handley4def07d2018-03-01 18:44:00 +00001074TF-A provides a Test Secure-EL1 Payload (TSP) and a Test Secure-EL1 Payload
1075Dispatcher (TSPD) service as an example of how a Trusted OS is supported on a
1076production system using the Runtime Services Framework. On such a system, the
1077Test BL32 image and service are replaced by the Trusted OS and its dispatcher
1078service. The TF-A build system expects that the dispatcher will define the
1079build flag ``NEED_BL32`` to enable it to include the BL32 in the build either
1080as a binary or to compile from source depending on whether the ``BL32`` build
1081option is specified or not.
Douglas Raillard6f625742017-06-28 15:23:03 +01001082
1083The TSP runs in Secure-EL1. It is designed to demonstrate synchronous
1084communication with the normal-world software running in EL1/EL2. Communication
1085is initiated by the normal-world software
1086
1087- either directly through a Fast SMC (as defined in the `SMCCC`_)
1088
1089- or indirectly through a `PSCI`_ SMC. The `PSCI`_ implementation in turn
1090 informs the TSPD about the requested power management operation. This allows
1091 the TSP to prepare for or respond to the power state change
1092
1093The TSPD service is responsible for.
1094
1095- Initializing the TSP
1096
1097- Routing requests and responses between the secure and the non-secure
1098 states during the two types of communications just described
1099
1100Initializing a BL32 Image
1101~~~~~~~~~~~~~~~~~~~~~~~~~
1102
1103The Secure-EL1 Payload Dispatcher (SPD) service is responsible for initializing
1104the BL32 image. It needs access to the information passed by BL2 to BL31 to do
1105so. This is provided by:
1106
1107.. code:: c
1108
1109 entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t);
1110
1111which returns a reference to the ``entry_point_info`` structure corresponding to
1112the image which will be run in the specified security state. The SPD uses this
1113API to get entry point information for the SECURE image, BL32.
1114
1115In the absence of a BL32 image, BL31 passes control to the normal world
1116bootloader image (BL33). When the BL32 image is present, it is typical
1117that the SPD wants control to be passed to BL32 first and then later to BL33.
1118
1119To do this the SPD has to register a BL32 initialization function during
1120initialization of the SPD service. The BL32 initialization function has this
1121prototype:
1122
1123.. code:: c
1124
1125 int32_t init(void);
1126
1127and is registered using the ``bl31_register_bl32_init()`` function.
1128
Dan Handley4def07d2018-03-01 18:44:00 +00001129TF-A supports two approaches for the SPD to pass control to BL32 before
1130returning through EL3 and running the non-trusted firmware (BL33):
Douglas Raillard6f625742017-06-28 15:23:03 +01001131
1132#. In the BL32 setup function, use ``bl31_set_next_image_type()`` to
1133 request that the exit from ``bl31_main()`` is to the BL32 entrypoint in
1134 Secure-EL1. BL31 will exit to BL32 using the asynchronous method by
1135 calling ``bl31_prepare_next_image_entry()`` and ``el3_exit()``.
1136
1137 When the BL32 has completed initialization at Secure-EL1, it returns to
1138 BL31 by issuing an SMC, using a Function ID allocated to the SPD. On
1139 receipt of this SMC, the SPD service handler should switch the CPU context
1140 from trusted to normal world and use the ``bl31_set_next_image_type()`` and
1141 ``bl31_prepare_next_image_entry()`` functions to set up the initial return to
1142 the normal world firmware BL33. On return from the handler the framework
1143 will exit to EL2 and run BL33.
1144
1145#. The BL32 setup function registers an initialization function using
1146 ``bl31_register_bl32_init()`` which provides a SPD-defined mechanism to
1147 invoke a 'world-switch synchronous call' to Secure-EL1 to run the BL32
1148 entrypoint.
Paul Beesleye1c50262019-03-13 16:20:44 +00001149
1150 .. note::
1151 The Test SPD service included with TF-A provides one implementation
1152 of such a mechanism.
Douglas Raillard6f625742017-06-28 15:23:03 +01001153
1154 On completion BL32 returns control to BL31 via a SMC, and on receipt the
1155 SPD service handler invokes the synchronous call return mechanism to return
1156 to the BL32 initialization function. On return from this function,
1157 ``bl31_main()`` will set up the return to the normal world firmware BL33 and
1158 continue the boot process in the normal world.
1159
Manish Pandey9f9bfd72023-07-21 13:08:53 +01001160Exception handling in BL31
1161--------------------------
1162
1163When exception occurs, PE must execute handler corresponding to exception. The
1164location in memory where the handler is stored is called the exception vector.
1165For ARM architecture, exception vectors are stored in a table, called the exception
1166vector table.
1167
1168Each EL (except EL0) has its own vector table, VBAR_ELn register stores the base
1169of vector table. Refer to `AArch64 exception vector table`_
1170
1171Current EL with SP_EL0
1172~~~~~~~~~~~~~~~~~~~~~~
1173
1174- Sync exception : Not expected except for BRK instruction, its debugging tool which
1175 a programmer may place at specific points in a program, to check the state of
1176 processor flags at these points in the code.
1177
1178- IRQ/FIQ : Unexpected exception, panic
1179
1180- SError : "plat_handle_el3_ea", defaults to panic
1181
1182Current EL with SP_ELx
1183~~~~~~~~~~~~~~~~~~~~~~
1184
1185- Sync exception : Unexpected exception, panic
1186
1187- IRQ/FIQ : Unexpected exception, panic
1188
1189- SError : "plat_handle_el3_ea" Except for special handling of lower EL's SError exception
1190 which gets triggered in EL3 when PSTATE.A is unmasked. Its only applicable when lower
1191 EL's EA is routed to EL3 (FFH_SUPPORT=1).
1192
1193Lower EL Exceptions
1194~~~~~~~~~~~~~~~~~~~
1195
1196Applies to all the exceptions in both AArch64/AArch32 mode of lower EL.
1197
1198Before handling any lower EL exception, we synchronize the errors at EL3 entry to ensure
1199that any errors pertaining to lower EL is isolated/identified. If we continue without
1200identifying these errors early on then these errors will trigger in EL3 (as SError from
1201current EL) any time after PSTATE.A is unmasked. This is wrong because the error originated
1202in lower EL but exception happened in EL3.
1203
1204To solve this problem, synchronize the errors at EL3 entry and check for any pending
1205errors (async EA). If there is no pending error then continue with original exception.
1206If there is a pending error then, handle them based on routing model of EA's. Refer to
1207:ref:`Reliability, Availability, and Serviceability (RAS) Extensions` for details about
1208routing models.
1209
1210- KFH : Reflect it back to lower EL using **reflect_pending_async_ea_to_lower_el()**
1211
1212- FFH : Handle the synchronized error first using **handle_pending_async_ea()** after
1213 that continue with original exception. It is the only scenario where EL3 is capable
1214 of doing nested exception handling.
1215
1216After synchronizing and handling lower EL SErrors, unmask EA (PSTATE.A) to ensure
1217that any further EA's caused by EL3 are caught.
1218
Jeenu Viswambharan579b4ad2017-08-24 15:43:44 +01001219Crash Reporting in BL31
1220-----------------------
Douglas Raillard6f625742017-06-28 15:23:03 +01001221
1222BL31 implements a scheme for reporting the processor state when an unhandled
1223exception is encountered. The reporting mechanism attempts to preserve all the
1224register contents and report it via a dedicated UART (PL011 console). BL31
1225reports the general purpose, EL3, Secure EL1 and some EL2 state registers.
1226
1227A dedicated per-CPU crash stack is maintained by BL31 and this is retrieved via
1228the per-CPU pointer cache. The implementation attempts to minimise the memory
1229required for this feature. The file ``crash_reporting.S`` contains the
1230implementation for crash reporting.
1231
1232The sample crash output is shown below.
1233
1234::
1235
Alexei Fedorovb4292bc2020-03-03 13:31:58 +00001236 x0 = 0x000000002a4a0000
1237 x1 = 0x0000000000000001
1238 x2 = 0x0000000000000002
1239 x3 = 0x0000000000000003
1240 x4 = 0x0000000000000004
1241 x5 = 0x0000000000000005
1242 x6 = 0x0000000000000006
1243 x7 = 0x0000000000000007
1244 x8 = 0x0000000000000008
1245 x9 = 0x0000000000000009
1246 x10 = 0x0000000000000010
1247 x11 = 0x0000000000000011
1248 x12 = 0x0000000000000012
1249 x13 = 0x0000000000000013
1250 x14 = 0x0000000000000014
1251 x15 = 0x0000000000000015
1252 x16 = 0x0000000000000016
1253 x17 = 0x0000000000000017
1254 x18 = 0x0000000000000018
1255 x19 = 0x0000000000000019
1256 x20 = 0x0000000000000020
1257 x21 = 0x0000000000000021
1258 x22 = 0x0000000000000022
1259 x23 = 0x0000000000000023
1260 x24 = 0x0000000000000024
1261 x25 = 0x0000000000000025
1262 x26 = 0x0000000000000026
1263 x27 = 0x0000000000000027
1264 x28 = 0x0000000000000028
1265 x29 = 0x0000000000000029
1266 x30 = 0x0000000088000b78
1267 scr_el3 = 0x000000000003073d
1268 sctlr_el3 = 0x00000000b0cd183f
1269 cptr_el3 = 0x0000000000000000
1270 tcr_el3 = 0x000000008080351c
1271 daif = 0x00000000000002c0
1272 mair_el3 = 0x00000000004404ff
1273 spsr_el3 = 0x0000000060000349
1274 elr_el3 = 0x0000000088000114
1275 ttbr0_el3 = 0x0000000004018201
1276 esr_el3 = 0x00000000be000000
1277 far_el3 = 0x0000000000000000
1278 spsr_el1 = 0x0000000000000000
1279 elr_el1 = 0x0000000000000000
1280 spsr_abt = 0x0000000000000000
1281 spsr_und = 0x0000000000000000
1282 spsr_irq = 0x0000000000000000
1283 spsr_fiq = 0x0000000000000000
1284 sctlr_el1 = 0x0000000030d00800
1285 actlr_el1 = 0x0000000000000000
1286 cpacr_el1 = 0x0000000000000000
1287 csselr_el1 = 0x0000000000000000
1288 sp_el1 = 0x0000000000000000
1289 esr_el1 = 0x0000000000000000
1290 ttbr0_el1 = 0x0000000000000000
1291 ttbr1_el1 = 0x0000000000000000
1292 mair_el1 = 0x0000000000000000
1293 amair_el1 = 0x0000000000000000
1294 tcr_el1 = 0x0000000000000000
1295 tpidr_el1 = 0x0000000000000000
1296 tpidr_el0 = 0x0000000000000000
1297 tpidrro_el0 = 0x0000000000000000
1298 par_el1 = 0x0000000000000000
1299 mpidr_el1 = 0x0000000080000000
1300 afsr0_el1 = 0x0000000000000000
1301 afsr1_el1 = 0x0000000000000000
1302 contextidr_el1 = 0x0000000000000000
1303 vbar_el1 = 0x0000000000000000
1304 cntp_ctl_el0 = 0x0000000000000000
1305 cntp_cval_el0 = 0x0000000000000000
1306 cntv_ctl_el0 = 0x0000000000000000
1307 cntv_cval_el0 = 0x0000000000000000
1308 cntkctl_el1 = 0x0000000000000000
1309 sp_el0 = 0x0000000004014940
1310 isr_el1 = 0x0000000000000000
1311 dacr32_el2 = 0x0000000000000000
1312 ifsr32_el2 = 0x0000000000000000
1313 icc_hppir0_el1 = 0x00000000000003ff
1314 icc_hppir1_el1 = 0x00000000000003ff
1315 icc_ctlr_el3 = 0x0000000000080400
1316 gicd_ispendr regs (Offsets 0x200-0x278)
1317 Offset Value
1318 0x200: 0x0000000000000000
1319 0x208: 0x0000000000000000
1320 0x210: 0x0000000000000000
1321 0x218: 0x0000000000000000
1322 0x220: 0x0000000000000000
1323 0x228: 0x0000000000000000
1324 0x230: 0x0000000000000000
1325 0x238: 0x0000000000000000
1326 0x240: 0x0000000000000000
1327 0x248: 0x0000000000000000
1328 0x250: 0x0000000000000000
1329 0x258: 0x0000000000000000
1330 0x260: 0x0000000000000000
1331 0x268: 0x0000000000000000
1332 0x270: 0x0000000000000000
1333 0x278: 0x0000000000000000
Douglas Raillard6f625742017-06-28 15:23:03 +01001334
1335Guidelines for Reset Handlers
1336-----------------------------
1337
Dan Handley4def07d2018-03-01 18:44:00 +00001338TF-A implements a framework that allows CPU and platform ports to perform
1339actions very early after a CPU is released from reset in both the cold and warm
Boyan Karatotev39f7d022024-11-19 11:27:01 +00001340boot paths. This is done by calling the ``reset_handler`` macro/function in both
Dan Handley4def07d2018-03-01 18:44:00 +00001341the BL1 and BL31 images. It in turn calls the platform and CPU specific reset
1342handling functions.
Douglas Raillard6f625742017-06-28 15:23:03 +01001343
1344Details for implementing a CPU specific reset handler can be found in
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001345:ref:`firmware_design_cpu_specific_reset_handling`. Details for implementing a
1346platform specific reset handler can be found in the :ref:`Porting Guide` (see
1347the``plat_reset_handler()`` function).
Douglas Raillard6f625742017-06-28 15:23:03 +01001348
1349When adding functionality to a reset handler, keep in mind that if a different
1350reset handling behavior is required between the first and the subsequent
1351invocations of the reset handling code, this should be detected at runtime.
1352In other words, the reset handler should be able to detect whether an action has
1353already been performed and act as appropriate. Possible courses of actions are,
1354e.g. skip the action the second time, or undo/redo it.
1355
Madhukar Pappireddy6844c342020-07-29 09:37:25 -05001356.. _configuring-secure-interrupts:
1357
Jeenu Viswambharanc639e8e2017-09-22 08:32:09 +01001358Configuring secure interrupts
1359-----------------------------
1360
1361The GIC driver is responsible for performing initial configuration of secure
1362interrupts on the platform. To this end, the platform is expected to provide the
1363GIC driver (either GICv2 or GICv3, as selected by the platform) with the
1364interrupt configuration during the driver initialisation.
1365
Antonio Nino Diazf9ed3cb2018-09-24 17:23:24 +01001366Secure interrupt configuration are specified in an array of secure interrupt
1367properties. In this scheme, in both GICv2 and GICv3 driver data structures, the
1368``interrupt_props`` member points to an array of interrupt properties. Each
Antonio Nino Diaz73308612019-02-28 13:35:21 +00001369element of the array specifies the interrupt number and its attributes
1370(priority, group, configuration). Each element of the array shall be populated
1371by the macro ``INTR_PROP_DESC()``. The macro takes the following arguments:
Jeenu Viswambharanc639e8e2017-09-22 08:32:09 +01001372
Ming Huangd5eee8f2023-02-01 14:03:44 +08001373- 13-bit interrupt number,
Jeenu Viswambharanc639e8e2017-09-22 08:32:09 +01001374
Antonio Nino Diazf9ed3cb2018-09-24 17:23:24 +01001375- 8-bit interrupt priority,
Jeenu Viswambharanc639e8e2017-09-22 08:32:09 +01001376
Antonio Nino Diazf9ed3cb2018-09-24 17:23:24 +01001377- Interrupt type (one of ``INTR_TYPE_EL3``, ``INTR_TYPE_S_EL1``,
1378 ``INTR_TYPE_NS``),
Jeenu Viswambharanc639e8e2017-09-22 08:32:09 +01001379
Antonio Nino Diazf9ed3cb2018-09-24 17:23:24 +01001380- Interrupt configuration (either ``GIC_INTR_CFG_LEVEL`` or
1381 ``GIC_INTR_CFG_EDGE``).
Jeenu Viswambharanc639e8e2017-09-22 08:32:09 +01001382
Paul Beesley34760952019-04-12 14:19:42 +01001383.. _firmware_design_cpu_ops_fwk:
1384
Douglas Raillard6f625742017-06-28 15:23:03 +01001385CPU specific operations framework
1386---------------------------------
1387
Dan Handley4def07d2018-03-01 18:44:00 +00001388Certain aspects of the Armv8-A architecture are implementation defined,
1389that is, certain behaviours are not architecturally defined, but must be
1390defined and documented by individual processor implementations. TF-A
1391implements a framework which categorises the common implementation defined
1392behaviours and allows a processor to export its implementation of that
Douglas Raillard6f625742017-06-28 15:23:03 +01001393behaviour. The categories are:
1394
1395#. Processor specific reset sequence.
1396
1397#. Processor specific power down sequences.
1398
1399#. Processor specific register dumping as a part of crash reporting.
1400
1401#. Errata status reporting.
1402
1403Each of the above categories fulfils a different requirement.
1404
1405#. allows any processor specific initialization before the caches and MMU
1406 are turned on, like implementation of errata workarounds, entry into
1407 the intra-cluster coherency domain etc.
1408
1409#. allows each processor to implement the power down sequence mandated in
1410 its Technical Reference Manual (TRM).
1411
1412#. allows a processor to provide additional information to the developer
1413 in the event of a crash, for example Cortex-A53 has registers which
1414 can expose the data cache contents.
1415
1416#. allows a processor to define a function that inspects and reports the status
1417 of all errata workarounds on that processor.
1418
1419Please note that only 2. is mandated by the TRM.
1420
1421The CPU specific operations framework scales to accommodate a large number of
1422different CPUs during power down and reset handling. The platform can specify
1423any CPU optimization it wants to enable for each CPU. It can also specify
1424the CPU errata workarounds to be applied for each CPU type during reset
1425handling by defining CPU errata compile time macros. Details on these macros
Paul Beesley34760952019-04-12 14:19:42 +01001426can be found in the :ref:`Arm CPU Specific Build Macros` document.
Douglas Raillard6f625742017-06-28 15:23:03 +01001427
1428The CPU specific operations framework depends on the ``cpu_ops`` structure which
1429needs to be exported for each type of CPU in the platform. It is defined in
1430``include/lib/cpus/aarch64/cpu_macros.S`` and has the following fields : ``midr``,
1431``reset_func()``, ``cpu_pwr_down_ops`` (array of power down functions) and
1432``cpu_reg_dump()``.
1433
1434The CPU specific files in ``lib/cpus`` export a ``cpu_ops`` data structure with
1435suitable handlers for that CPU. For example, ``lib/cpus/aarch64/cortex_a53.S``
1436exports the ``cpu_ops`` for Cortex-A53 CPU. According to the platform
1437configuration, these CPU specific files must be included in the build by
1438the platform makefile. The generic CPU specific operations framework code exists
1439in ``lib/cpus/aarch64/cpu_helpers.S``.
1440
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001441CPU PCS
1442~~~~~~~
1443
1444All assembly functions in CPU files are asked to follow a modified version of
1445the Procedure Call Standard (PCS) in their internals. This is done to ensure
1446calling these functions from outside the file doesn't unexpectedly corrupt
1447registers in the very early environment and to help the internals to be easier
1448to understand. Please see the :ref:`firmware_design_cpu_errata_implementation`
1449for any function specific restrictions.
1450
1451+--------------+---------------------------------+
1452| register | use |
1453+==============+=================================+
1454| x0 - x15 | scratch |
1455+--------------+---------------------------------+
1456| x16, x17 | do not use (used by the linker) |
1457+--------------+---------------------------------+
1458| x18 | do not use (platform register) |
1459+--------------+---------------------------------+
1460| x19 - x28 | callee saved |
1461+--------------+---------------------------------+
1462| x29, x30 | FP, LR |
1463+--------------+---------------------------------+
1464
1465.. _firmware_design_cpu_specific_reset_handling:
1466
Douglas Raillard6f625742017-06-28 15:23:03 +01001467CPU specific Reset Handling
1468~~~~~~~~~~~~~~~~~~~~~~~~~~~
1469
1470After a reset, the state of the CPU when it calls generic reset handler is:
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001471MMU turned off, both instruction and data caches turned off, not part
1472of any coherency domain and no stack.
Douglas Raillard6f625742017-06-28 15:23:03 +01001473
1474The BL entrypoint code first invokes the ``plat_reset_handler()`` to allow
1475the platform to perform any system initialization required and any system
1476errata workarounds that needs to be applied. The ``get_cpu_ops_ptr()`` reads
1477the current CPU midr, finds the matching ``cpu_ops`` entry in the ``cpu_ops``
1478array and returns it. Note that only the part number and implementer fields
1479in midr are used to find the matching ``cpu_ops`` entry. The ``reset_func()`` in
1480the returned ``cpu_ops`` is then invoked which executes the required reset
1481handling for that CPU and also any errata workarounds enabled by the platform.
Douglas Raillard6f625742017-06-28 15:23:03 +01001482
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001483It should be defined using the ``cpu_reset_func_{start,end}`` macros and its
Boyan Karatotev3bfa5a02025-01-22 13:54:43 +00001484body may only clobber x0 to x14 with x14 being the cpu_rev parameter. The cpu
1485file should also include a call to ``cpu_reset_prologue`` at the start of the
1486file for errata to work correctly.
Douglas Raillard6f625742017-06-28 15:23:03 +01001487
1488CPU specific power down sequence
1489~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1490
1491During the BL31 initialization sequence, the pointer to the matching ``cpu_ops``
1492entry is stored in per-CPU data by ``init_cpu_ops()`` so that it can be quickly
1493retrieved during power down sequences.
1494
1495Various CPU drivers register handlers to perform power down at certain power
1496levels for that specific CPU. The PSCI service, upon receiving a power down
1497request, determines the highest power level at which to execute power down
1498sequence for a particular CPU. It uses the ``prepare_cpu_pwr_dwn()`` function to
1499pick the right power down handler for the requested level. The function
1500retrieves ``cpu_ops`` pointer member of per-CPU data, and from that, further
1501retrieves ``cpu_pwr_down_ops`` array, and indexes into the required level. If the
1502requested power level is higher than what a CPU driver supports, the handler
1503registered for highest level is invoked.
1504
1505At runtime the platform hooks for power down are invoked by the PSCI service to
1506perform platform specific operations during a power down sequence, for example
1507turning off CCI coherency during a cluster power down.
1508
1509CPU specific register reporting during crash
1510~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1511
1512If the crash reporting is enabled in BL31, when a crash occurs, the crash
1513reporting framework calls ``do_cpu_reg_dump`` which retrieves the matching
1514``cpu_ops`` using ``get_cpu_ops_ptr()`` function. The ``cpu_reg_dump()`` in
1515``cpu_ops`` is invoked, which then returns the CPU specific register values to
1516be reported and a pointer to the ASCII list of register names in a format
1517expected by the crash reporting framework.
1518
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001519.. _firmware_design_cpu_errata_implementation:
Paul Beesley34760952019-04-12 14:19:42 +01001520
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001521CPU errata implementation
1522~~~~~~~~~~~~~~~~~~~~~~~~~
Douglas Raillard6f625742017-06-28 15:23:03 +01001523
Dan Handley4def07d2018-03-01 18:44:00 +00001524Errata workarounds for CPUs supported in TF-A are applied during both cold and
1525warm boots, shortly after reset. Individual Errata workarounds are enabled as
1526build options. Some errata workarounds have potential run-time implications;
1527therefore some are enabled by default, others not. Platform ports shall
1528override build options to enable or disable errata as appropriate. The CPU
Douglas Raillard6f625742017-06-28 15:23:03 +01001529drivers take care of applying errata workarounds that are enabled and applicable
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001530to a given CPU.
Douglas Raillard6f625742017-06-28 15:23:03 +01001531
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001532Each erratum has a build flag in ``lib/cpus/cpu-ops.mk`` of the form:
1533``ERRATA_<cpu_num>_<erratum_id>``. It also has a short description in
1534:ref:`arm_cpu_macros_errata_workarounds` on when it should apply.
Douglas Raillard6f625742017-06-28 15:23:03 +01001535
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001536Errata framework
1537^^^^^^^^^^^^^^^^
Douglas Raillard6f625742017-06-28 15:23:03 +01001538
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001539The errata framework is a convention and a small library to allow errata to be
1540automatically discovered. It enables compliant errata to be automatically
1541applied and reported at runtime (either by status reporting or the errata ABI).
Douglas Raillard6f625742017-06-28 15:23:03 +01001542
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001543To write a compliant mitigation for erratum number ``erratum_id`` on a cpu that
1544declared itself (with ``declare_cpu_ops``) as ``cpu_name`` one needs 3 things:
Douglas Raillard6f625742017-06-28 15:23:03 +01001545
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001546#. A CPU revision checker function: ``check_erratum_<cpu_name>_<erratum_id>``
Douglas Raillard6f625742017-06-28 15:23:03 +01001547
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001548 It should check whether this erratum applies on this revision of this CPU.
1549 It will be called with the CPU revision as its first parameter (x0) and
1550 should return one of ``ERRATA_APPLIES`` or ``ERRATA_NOT_APPLIES``.
Douglas Raillard6f625742017-06-28 15:23:03 +01001551
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001552 It may only clobber x0 to x4. The rest should be treated as callee-saved.
1553
1554#. A workaround function: ``erratum_<cpu_name>_<erratum_id>_wa``
1555
1556 It should obtain the cpu revision (with ``cpu_get_rev_var``), call its
1557 revision checker, and perform the mitigation, should the erratum apply.
1558
1559 It may only clobber x0 to x8. The rest should be treated as callee-saved.
1560
1561#. Register itself to the framework
1562
1563 Do this with
1564 ``add_erratum_entry <cpu_name>, ERRATUM(<erratum_id>), <errata_flag>``
1565 where the ``errata_flag`` is the enable flag in ``cpu-ops.mk`` described
1566 above.
1567
1568See the next section on how to do this easily.
1569
1570.. note::
1571
1572 CVEs have the format ``CVE_<year>_<number>``. To fit them in the framework, the
1573 ``erratum_id`` for the checker and the workaround functions become the
1574 ``number`` part of its name and the ``ERRATUM(<number>)`` part of the
1575 registration should instead be ``CVE(<year>, <number>)``. In the extremely
1576 unlikely scenario where a CVE and an erratum numbers clash, the CVE number
1577 should be prefixed with a zero.
1578
1579 Also, their build flag should be ``WORKAROUND_CVE_<year>_<number>``.
1580
1581.. note::
1582
1583 AArch32 uses the legacy convention. The checker function has the format
1584 ``check_errata_<erratum_id>`` and the workaround has the format
1585 ``errata_<cpu_number>_<erratum_id>_wa`` where ``cpu_number`` is the shortform
1586 letter and number name of the CPU.
1587
1588 For CVEs the ``erratum_id`` also becomes ``cve_<year>_<number>``.
1589
1590Errata framework helpers
1591^^^^^^^^^^^^^^^^^^^^^^^^
1592
1593Writing these errata involves lots of boilerplate and repetitive code. On
1594AArch64 there are helpers to omit most of this. They are located in
1595``include/lib/cpus/aarch64/cpu_macros.S`` and the preferred way to implement
1596errata. Please see their comments on how to use them.
1597
1598The most common type of erratum workaround, one that just sets a "chicken" bit
1599in some arbitrary register, would have an implementation for the Cortex-A77,
1600erratum #1925769 like::
1601
1602 workaround_reset_start cortex_a77, ERRATUM(1925769), ERRATA_A77_1925769
1603 sysreg_bit_set CORTEX_A77_CPUECTLR_EL1, CORTEX_A77_CPUECTLR_EL1_BIT_8
1604 workaround_reset_end cortex_a77, ERRATUM(1925769)
1605
1606 check_erratum_ls cortex_a77, ERRATUM(1925769), CPU_REV(1, 1)
1607
1608Status reporting
1609^^^^^^^^^^^^^^^^
Douglas Raillard6f625742017-06-28 15:23:03 +01001610
Dan Handley4def07d2018-03-01 18:44:00 +00001611In a debug build of TF-A, on a CPU that comes out of reset, both BL1 and the
Boyan Karatotev6a0e8e82023-02-07 15:46:50 +00001612runtime firmware (BL31 in AArch64, and BL32 in AArch32) will invoke a generic
1613errata status reporting function. It will read the ``errata_entries`` list of
1614that cpu and will report whether each known erratum was applied and, if not,
1615whether it should have been.
Douglas Raillard6f625742017-06-28 15:23:03 +01001616
1617Reporting the status of errata workaround is for informational purpose only; it
1618has no functional significance.
1619
1620Memory layout of BL images
1621--------------------------
1622
1623Each bootloader image can be divided in 2 parts:
1624
1625- the static contents of the image. These are data actually stored in the
1626 binary on the disk. In the ELF terminology, they are called ``PROGBITS``
1627 sections;
1628
1629- the run-time contents of the image. These are data that don't occupy any
1630 space in the binary on the disk. The ELF binary just contains some
1631 metadata indicating where these data will be stored at run-time and the
1632 corresponding sections need to be allocated and initialized at run-time.
1633 In the ELF terminology, they are called ``NOBITS`` sections.
1634
1635All PROGBITS sections are grouped together at the beginning of the image,
Dan Handley4def07d2018-03-01 18:44:00 +00001636followed by all NOBITS sections. This is true for all TF-A images and it is
1637governed by the linker scripts. This ensures that the raw binary images are
1638as small as possible. If a NOBITS section was inserted in between PROGBITS
1639sections then the resulting binary file would contain zero bytes in place of
1640this NOBITS section, making the image unnecessarily bigger. Smaller images
1641allow faster loading from the FIP to the main memory.
Douglas Raillard6f625742017-06-28 15:23:03 +01001642
Samuel Hollandf8578e62018-10-17 21:40:18 -05001643For BL31, a platform can specify an alternate location for NOBITS sections
1644(other than immediately following PROGBITS sections) by setting
1645``SEPARATE_NOBITS_REGION`` to 1 and defining ``BL31_NOBITS_BASE`` and
1646``BL31_NOBITS_LIMIT``.
1647
Douglas Raillard6f625742017-06-28 15:23:03 +01001648Linker scripts and symbols
1649~~~~~~~~~~~~~~~~~~~~~~~~~~
1650
1651Each bootloader stage image layout is described by its own linker script. The
1652linker scripts export some symbols into the program symbol table. Their values
Dan Handley4def07d2018-03-01 18:44:00 +00001653correspond to particular addresses. TF-A code can refer to these symbols to
1654figure out the image memory layout.
Douglas Raillard6f625742017-06-28 15:23:03 +01001655
Dan Handley4def07d2018-03-01 18:44:00 +00001656Linker symbols follow the following naming convention in TF-A.
Douglas Raillard6f625742017-06-28 15:23:03 +01001657
1658- ``__<SECTION>_START__``
1659
1660 Start address of a given section named ``<SECTION>``.
1661
1662- ``__<SECTION>_END__``
1663
1664 End address of a given section named ``<SECTION>``. If there is an alignment
1665 constraint on the section's end address then ``__<SECTION>_END__`` corresponds
1666 to the end address of the section's actual contents, rounded up to the right
1667 boundary. Refer to the value of ``__<SECTION>_UNALIGNED_END__`` to know the
1668 actual end address of the section's contents.
1669
1670- ``__<SECTION>_UNALIGNED_END__``
1671
1672 End address of a given section named ``<SECTION>`` without any padding or
1673 rounding up due to some alignment constraint.
1674
1675- ``__<SECTION>_SIZE__``
1676
1677 Size (in bytes) of a given section named ``<SECTION>``. If there is an
1678 alignment constraint on the section's end address then ``__<SECTION>_SIZE__``
1679 corresponds to the size of the section's actual contents, rounded up to the
1680 right boundary. In other words, ``__<SECTION>_SIZE__ = __<SECTION>_END__ - _<SECTION>_START__``. Refer to the value of ``__<SECTION>_UNALIGNED_SIZE__``
1681 to know the actual size of the section's contents.
1682
1683- ``__<SECTION>_UNALIGNED_SIZE__``
1684
1685 Size (in bytes) of a given section named ``<SECTION>`` without any padding or
1686 rounding up due to some alignment constraint. In other words,
1687 ``__<SECTION>_UNALIGNED_SIZE__ = __<SECTION>_UNALIGNED_END__ - __<SECTION>_START__``.
1688
Dan Handley4def07d2018-03-01 18:44:00 +00001689Some of the linker symbols are mandatory as TF-A code relies on them to be
1690defined. They are listed in the following subsections. Some of them must be
1691provided for each bootloader stage and some are specific to a given bootloader
1692stage.
Douglas Raillard6f625742017-06-28 15:23:03 +01001693
1694The linker scripts define some extra, optional symbols. They are not actually
1695used by any code but they help in understanding the bootloader images' memory
1696layout as they are easy to spot in the link map files.
1697
1698Common linker symbols
1699^^^^^^^^^^^^^^^^^^^^^
1700
1701All BL images share the following requirements:
1702
1703- The BSS section must be zero-initialised before executing any C code.
1704- The coherent memory section (if enabled) must be zero-initialised as well.
1705- The MMU setup code needs to know the extents of the coherent and read-only
1706 memory regions to set the right memory attributes. When
1707 ``SEPARATE_CODE_AND_RODATA=1``, it needs to know more specifically how the
1708 read-only memory region is divided between code and data.
1709
1710The following linker symbols are defined for this purpose:
1711
1712- ``__BSS_START__``
1713- ``__BSS_SIZE__``
1714- ``__COHERENT_RAM_START__`` Must be aligned on a page-size boundary.
1715- ``__COHERENT_RAM_END__`` Must be aligned on a page-size boundary.
1716- ``__COHERENT_RAM_UNALIGNED_SIZE__``
1717- ``__RO_START__``
1718- ``__RO_END__``
1719- ``__TEXT_START__``
Michal Simekf7d445f2023-04-27 14:26:03 +02001720- ``__TEXT_END_UNALIGNED__``
Douglas Raillard6f625742017-06-28 15:23:03 +01001721- ``__TEXT_END__``
1722- ``__RODATA_START__``
Michal Simekf7d445f2023-04-27 14:26:03 +02001723- ``__RODATA_END_UNALIGNED__``
Douglas Raillard6f625742017-06-28 15:23:03 +01001724- ``__RODATA_END__``
1725
1726BL1's linker symbols
1727^^^^^^^^^^^^^^^^^^^^
1728
1729BL1 being the ROM image, it has additional requirements. BL1 resides in ROM and
1730it is entirely executed in place but it needs some read-write memory for its
1731mutable data. Its ``.data`` section (i.e. its allocated read-write data) must be
1732relocated from ROM to RAM before executing any C code.
1733
1734The following additional linker symbols are defined for BL1:
1735
1736- ``__BL1_ROM_END__`` End address of BL1's ROM contents, covering its code
1737 and ``.data`` section in ROM.
1738- ``__DATA_ROM_START__`` Start address of the ``.data`` section in ROM. Must be
1739 aligned on a 16-byte boundary.
1740- ``__DATA_RAM_START__`` Address in RAM where the ``.data`` section should be
1741 copied over. Must be aligned on a 16-byte boundary.
1742- ``__DATA_SIZE__`` Size of the ``.data`` section (in ROM or RAM).
1743- ``__BL1_RAM_START__`` Start address of BL1 read-write data.
1744- ``__BL1_RAM_END__`` End address of BL1 read-write data.
1745
1746How to choose the right base addresses for each bootloader stage image
1747~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1748
Dan Handley4def07d2018-03-01 18:44:00 +00001749There is currently no support for dynamic image loading in TF-A. This means
1750that all bootloader images need to be linked against their ultimate runtime
1751locations and the base addresses of each image must be chosen carefully such
1752that images don't overlap each other in an undesired way. As the code grows,
1753the base addresses might need adjustments to cope with the new memory layout.
Douglas Raillard6f625742017-06-28 15:23:03 +01001754
1755The memory layout is completely specific to the platform and so there is no
1756general recipe for choosing the right base addresses for each bootloader image.
1757However, there are tools to aid in understanding the memory layout. These are
1758the link map files: ``build/<platform>/<build-type>/bl<x>/bl<x>.map``, with ``<x>``
1759being the stage bootloader. They provide a detailed view of the memory usage of
1760each image. Among other useful information, they provide the end address of
1761each image.
1762
1763- ``bl1.map`` link map file provides ``__BL1_RAM_END__`` address.
1764- ``bl2.map`` link map file provides ``__BL2_END__`` address.
1765- ``bl31.map`` link map file provides ``__BL31_END__`` address.
1766- ``bl32.map`` link map file provides ``__BL32_END__`` address.
1767
1768For each bootloader image, the platform code must provide its start address
1769as well as a limit address that it must not overstep. The latter is used in the
1770linker scripts to check that the image doesn't grow past that address. If that
1771happens, the linker will issue a message similar to the following:
1772
1773::
1774
1775 aarch64-none-elf-ld: BLx has exceeded its limit.
1776
1777Additionally, if the platform memory layout implies some image overlaying like
1778on FVP, BL31 and TSP need to know the limit address that their PROGBITS
1779sections must not overstep. The platform code must provide those.
1780
Soby Mathew509af922018-09-27 16:46:41 +01001781TF-A does not provide any mechanism to verify at boot time that the memory
1782to load a new image is free to prevent overwriting a previously loaded image.
1783The platform must specify the memory available in the system for all the
1784relevant BL images to be loaded.
Douglas Raillard6f625742017-06-28 15:23:03 +01001785
1786For example, in the case of BL1 loading BL2, ``bl1_plat_sec_mem_layout()`` will
1787return the region defined by the platform where BL1 intends to load BL2. The
1788``load_image()`` function performs bounds check for the image size based on the
1789base and maximum image size provided by the platforms. Platforms must take
1790this behaviour into account when defining the base/size for each of the images.
1791
Dan Handley4def07d2018-03-01 18:44:00 +00001792Memory layout on Arm development platforms
Douglas Raillard6f625742017-06-28 15:23:03 +01001793^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1794
Dan Handley4def07d2018-03-01 18:44:00 +00001795The following list describes the memory layout on the Arm development platforms:
Douglas Raillard6f625742017-06-28 15:23:03 +01001796
1797- A 4KB page of shared memory is used for communication between Trusted
1798 Firmware and the platform's power controller. This is located at the base of
1799 Trusted SRAM. The amount of Trusted SRAM available to load the bootloader
1800 images is reduced by the size of the shared memory.
1801
1802 The shared memory is used to store the CPUs' entrypoint mailbox. On Juno,
1803 this is also used for the MHU payload when passing messages to and from the
1804 SCP.
1805
Soby Mathew0f57fab2018-06-06 16:03:10 +01001806- Another 4 KB page is reserved for passing memory layout between BL1 and BL2
1807 and also the dynamic firmware configurations.
1808
Douglas Raillard6f625742017-06-28 15:23:03 +01001809- On FVP, BL1 is originally sitting in the Trusted ROM at address ``0x0``. On
1810 Juno, BL1 resides in flash memory at address ``0x0BEC0000``. BL1 read-write
1811 data are relocated to the top of Trusted SRAM at runtime.
1812
Soby Mathew0f57fab2018-06-06 16:03:10 +01001813- BL2 is loaded below BL1 RW
1814
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +01001815- EL3 Runtime Software, BL31 for AArch64 and BL32 for AArch32 (e.g. SP_MIN),
Douglas Raillard6f625742017-06-28 15:23:03 +01001816 is loaded at the top of the Trusted SRAM, such that its NOBITS sections will
Soby Mathew0f57fab2018-06-06 16:03:10 +01001817 overwrite BL1 R/W data and BL2. This implies that BL1 global variables
1818 remain valid only until execution reaches the EL3 Runtime Software entry
1819 point during a cold boot.
Douglas Raillard6f625742017-06-28 15:23:03 +01001820
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +01001821- On Juno, SCP_BL2 is loaded temporarily into the EL3 Runtime Software memory
Paul Beesleybe653a62019-10-04 16:17:46 +00001822 region and transferred to the SCP before being overwritten by EL3 Runtime
Douglas Raillard6f625742017-06-28 15:23:03 +01001823 Software.
1824
1825- BL32 (for AArch64) can be loaded in one of the following locations:
1826
1827 - Trusted SRAM
1828 - Trusted DRAM (FVP only)
1829 - Secure region of DRAM (top 16MB of DRAM configured by the TrustZone
1830 controller)
1831
Soby Mathew0f57fab2018-06-06 16:03:10 +01001832 When BL32 (for AArch64) is loaded into Trusted SRAM, it is loaded below
1833 BL31.
Douglas Raillard6f625742017-06-28 15:23:03 +01001834
Douglas Raillard6f625742017-06-28 15:23:03 +01001835The location of the BL32 image will result in different memory maps. This is
1836illustrated for both FVP and Juno in the following diagrams, using the TSP as
1837an example.
1838
Paul Beesleye1c50262019-03-13 16:20:44 +00001839.. note::
1840 Loading the BL32 image in TZC secured DRAM doesn't change the memory
1841 layout of the other images in Trusted SRAM.
Douglas Raillard6f625742017-06-28 15:23:03 +01001842
Sathees Balya5b8d50e2018-11-15 14:22:30 +00001843CONFIG section in memory layouts shown below contains:
1844
1845::
1846
1847 +--------------------+
1848 |bl2_mem_params_descs|
1849 |--------------------|
1850 | fw_configs |
1851 +--------------------+
1852
1853``bl2_mem_params_descs`` contains parameters passed from BL2 to next the
1854BL image during boot.
1855
Manish V Badarkhe089fc622020-06-13 09:42:28 +01001856``fw_configs`` includes soc_fw_config, tos_fw_config, tb_fw_config and fw_config.
Sathees Balya5b8d50e2018-11-15 14:22:30 +00001857
Soby Mathew0f57fab2018-06-06 16:03:10 +01001858**FVP with TSP in Trusted SRAM with firmware configs :**
Douglas Raillard6f625742017-06-28 15:23:03 +01001859(These diagrams only cover the AArch64 case)
1860
1861::
1862
Soby Mathew0f57fab2018-06-06 16:03:10 +01001863 DRAM
1864 0xffffffff +----------+
Manish V Badarkhea52c5252023-03-07 10:21:30 +00001865 | EL3 TZC |
1866 0xffe00000 |----------| (secure)
1867 | AP TZC |
1868 0xff000000 +----------+
Soby Mathew0f57fab2018-06-06 16:03:10 +01001869 : :
Manish V Badarkheb4a87832022-04-12 21:11:56 +01001870 0x82100000 |----------|
Soby Mathew0f57fab2018-06-06 16:03:10 +01001871 |HW_CONFIG |
Manish V Badarkheb4a87832022-04-12 21:11:56 +01001872 0x82000000 |----------| (non-secure)
Soby Mathew0f57fab2018-06-06 16:03:10 +01001873 | |
1874 0x80000000 +----------+
1875
Manish V Badarkheb4a87832022-04-12 21:11:56 +01001876 Trusted DRAM
1877 0x08000000 +----------+
1878 |HW_CONFIG |
1879 0x07f00000 |----------|
1880 : :
1881 | |
1882 0x06000000 +----------+
1883
Douglas Raillard6f625742017-06-28 15:23:03 +01001884 Trusted SRAM
Soby Mathew0f57fab2018-06-06 16:03:10 +01001885 0x04040000 +----------+ loaded by BL2 +----------------+
1886 | BL1 (rw) | <<<<<<<<<<<<< | |
1887 |----------| <<<<<<<<<<<<< | BL31 NOBITS |
1888 | BL2 | <<<<<<<<<<<<< | |
Douglas Raillard6f625742017-06-28 15:23:03 +01001889 |----------| <<<<<<<<<<<<< |----------------|
1890 | | <<<<<<<<<<<<< | BL31 PROGBITS |
Soby Mathew0f57fab2018-06-06 16:03:10 +01001891 | | <<<<<<<<<<<<< |----------------|
1892 | | <<<<<<<<<<<<< | BL32 |
Manish V Badarkhe089fc622020-06-13 09:42:28 +01001893 0x04003000 +----------+ +----------------+
Sathees Balya5b8d50e2018-11-15 14:22:30 +00001894 | CONFIG |
Soby Mathew0f57fab2018-06-06 16:03:10 +01001895 0x04001000 +----------+
Douglas Raillard6f625742017-06-28 15:23:03 +01001896 | Shared |
1897 0x04000000 +----------+
1898
1899 Trusted ROM
1900 0x04000000 +----------+
1901 | BL1 (ro) |
1902 0x00000000 +----------+
1903
Soby Mathew0f57fab2018-06-06 16:03:10 +01001904**FVP with TSP in Trusted DRAM with firmware configs (default option):**
Douglas Raillard6f625742017-06-28 15:23:03 +01001905
1906::
1907
Soby Mathewb2a68f82018-02-16 14:52:52 +00001908 DRAM
1909 0xffffffff +--------------+
Manish V Badarkhea52c5252023-03-07 10:21:30 +00001910 | EL3 TZC |
1911 0xffe00000 |--------------| (secure)
1912 | AP TZC |
1913 0xff000000 +--------------+
Soby Mathewb2a68f82018-02-16 14:52:52 +00001914 : :
Manish V Badarkheb4a87832022-04-12 21:11:56 +01001915 0x82100000 |--------------|
Soby Mathewb2a68f82018-02-16 14:52:52 +00001916 | HW_CONFIG |
Manish V Badarkheb4a87832022-04-12 21:11:56 +01001917 0x82000000 |--------------| (non-secure)
Soby Mathewb2a68f82018-02-16 14:52:52 +00001918 | |
1919 0x80000000 +--------------+
Douglas Raillard6f625742017-06-28 15:23:03 +01001920
Manish V Badarkheb4a87832022-04-12 21:11:56 +01001921 Trusted DRAM
Soby Mathewb2a68f82018-02-16 14:52:52 +00001922 0x08000000 +--------------+
Manish V Badarkheb4a87832022-04-12 21:11:56 +01001923 | HW_CONFIG |
1924 0x07f00000 |--------------|
1925 : :
1926 | BL32 |
Soby Mathewb2a68f82018-02-16 14:52:52 +00001927 0x06000000 +--------------+
Douglas Raillard6f625742017-06-28 15:23:03 +01001928
Soby Mathewb2a68f82018-02-16 14:52:52 +00001929 Trusted SRAM
Soby Mathew0f57fab2018-06-06 16:03:10 +01001930 0x04040000 +--------------+ loaded by BL2 +----------------+
1931 | BL1 (rw) | <<<<<<<<<<<<< | |
1932 |--------------| <<<<<<<<<<<<< | BL31 NOBITS |
1933 | BL2 | <<<<<<<<<<<<< | |
Soby Mathewb2a68f82018-02-16 14:52:52 +00001934 |--------------| <<<<<<<<<<<<< |----------------|
1935 | | <<<<<<<<<<<<< | BL31 PROGBITS |
Soby Mathew0f57fab2018-06-06 16:03:10 +01001936 | | +----------------+
Manish V Badarkhe089fc622020-06-13 09:42:28 +01001937 0x04003000 +--------------+
Sathees Balya5b8d50e2018-11-15 14:22:30 +00001938 | CONFIG |
Soby Mathewb2a68f82018-02-16 14:52:52 +00001939 0x04001000 +--------------+
1940 | Shared |
1941 0x04000000 +--------------+
1942
1943 Trusted ROM
1944 0x04000000 +--------------+
1945 | BL1 (ro) |
1946 0x00000000 +--------------+
Douglas Raillard6f625742017-06-28 15:23:03 +01001947
Soby Mathew0f57fab2018-06-06 16:03:10 +01001948**FVP with TSP in TZC-Secured DRAM with firmware configs :**
Douglas Raillard6f625742017-06-28 15:23:03 +01001949
1950::
1951
1952 DRAM
1953 0xffffffff +----------+
Manish V Badarkhea52c5252023-03-07 10:21:30 +00001954 | EL3 TZC |
1955 0xffe00000 |----------| (secure)
1956 | AP TZC |
1957 | (BL32) |
Douglas Raillard6f625742017-06-28 15:23:03 +01001958 0xff000000 +----------+
1959 | |
Manish V Badarkheb4a87832022-04-12 21:11:56 +01001960 0x82100000 |----------|
Soby Mathew0f57fab2018-06-06 16:03:10 +01001961 |HW_CONFIG |
Manish V Badarkheb4a87832022-04-12 21:11:56 +01001962 0x82000000 |----------| (non-secure)
Douglas Raillard6f625742017-06-28 15:23:03 +01001963 | |
1964 0x80000000 +----------+
1965
Manish V Badarkheb4a87832022-04-12 21:11:56 +01001966 Trusted DRAM
1967 0x08000000 +----------+
1968 |HW_CONFIG |
1969 0x7f000000 |----------|
1970 : :
1971 | |
1972 0x06000000 +----------+
1973
Douglas Raillard6f625742017-06-28 15:23:03 +01001974 Trusted SRAM
Soby Mathew0f57fab2018-06-06 16:03:10 +01001975 0x04040000 +----------+ loaded by BL2 +----------------+
1976 | BL1 (rw) | <<<<<<<<<<<<< | |
1977 |----------| <<<<<<<<<<<<< | BL31 NOBITS |
1978 | BL2 | <<<<<<<<<<<<< | |
Douglas Raillard6f625742017-06-28 15:23:03 +01001979 |----------| <<<<<<<<<<<<< |----------------|
1980 | | <<<<<<<<<<<<< | BL31 PROGBITS |
Soby Mathew0f57fab2018-06-06 16:03:10 +01001981 | | +----------------+
Manish V Badarkhe089fc622020-06-13 09:42:28 +01001982 0x04003000 +----------+
Sathees Balya5b8d50e2018-11-15 14:22:30 +00001983 | CONFIG |
Douglas Raillard6f625742017-06-28 15:23:03 +01001984 0x04001000 +----------+
1985 | Shared |
1986 0x04000000 +----------+
1987
1988 Trusted ROM
1989 0x04000000 +----------+
1990 | BL1 (ro) |
1991 0x00000000 +----------+
1992
Soby Mathew0f57fab2018-06-06 16:03:10 +01001993**Juno with BL32 in Trusted SRAM :**
Douglas Raillard6f625742017-06-28 15:23:03 +01001994
1995::
1996
Manish V Badarkhea52c5252023-03-07 10:21:30 +00001997 DRAM
1998 0xFFFFFFFF +----------+
1999 | SCP TZC |
2000 0xFFE00000 |----------|
2001 | EL3 TZC |
2002 0xFFC00000 |----------| (secure)
2003 | AP TZC |
2004 0xFF000000 +----------+
2005 | |
2006 : : (non-secure)
2007 | |
2008 0x80000000 +----------+
2009
2010
Douglas Raillard6f625742017-06-28 15:23:03 +01002011 Flash0
2012 0x0C000000 +----------+
2013 : :
2014 0x0BED0000 |----------|
2015 | BL1 (ro) |
2016 0x0BEC0000 |----------|
2017 : :
2018 0x08000000 +----------+ BL31 is loaded
2019 after SCP_BL2 has
2020 Trusted SRAM been sent to SCP
Soby Mathew0f57fab2018-06-06 16:03:10 +01002021 0x04040000 +----------+ loaded by BL2 +----------------+
2022 | BL1 (rw) | <<<<<<<<<<<<< | |
2023 |----------| <<<<<<<<<<<<< | BL31 NOBITS |
2024 | BL2 | <<<<<<<<<<<<< | |
Douglas Raillard6f625742017-06-28 15:23:03 +01002025 |----------| <<<<<<<<<<<<< |----------------|
2026 | SCP_BL2 | <<<<<<<<<<<<< | BL31 PROGBITS |
Chris Kayddc93cb2020-03-12 13:50:26 +00002027 | | <<<<<<<<<<<<< |----------------|
Soby Mathew0f57fab2018-06-06 16:03:10 +01002028 | | <<<<<<<<<<<<< | BL32 |
2029 | | +----------------+
2030 | |
2031 0x04001000 +----------+
Douglas Raillard6f625742017-06-28 15:23:03 +01002032 | MHU |
2033 0x04000000 +----------+
2034
Soby Mathew0f57fab2018-06-06 16:03:10 +01002035**Juno with BL32 in TZC-secured DRAM :**
Douglas Raillard6f625742017-06-28 15:23:03 +01002036
2037::
2038
2039 DRAM
Manish V Badarkhea52c5252023-03-07 10:21:30 +00002040 0xFFFFFFFF +----------+
2041 | SCP TZC |
2042 0xFFE00000 |----------|
2043 | EL3 TZC |
2044 0xFFC00000 |----------| (secure)
2045 | AP TZC |
2046 | (BL32) |
2047 0xFF000000 +----------+
Douglas Raillard6f625742017-06-28 15:23:03 +01002048 | |
2049 : : (non-secure)
2050 | |
2051 0x80000000 +----------+
2052
2053 Flash0
2054 0x0C000000 +----------+
2055 : :
2056 0x0BED0000 |----------|
2057 | BL1 (ro) |
2058 0x0BEC0000 |----------|
2059 : :
2060 0x08000000 +----------+ BL31 is loaded
2061 after SCP_BL2 has
2062 Trusted SRAM been sent to SCP
Soby Mathew0f57fab2018-06-06 16:03:10 +01002063 0x04040000 +----------+ loaded by BL2 +----------------+
2064 | BL1 (rw) | <<<<<<<<<<<<< | |
2065 |----------| <<<<<<<<<<<<< | BL31 NOBITS |
2066 | BL2 | <<<<<<<<<<<<< | |
Douglas Raillard6f625742017-06-28 15:23:03 +01002067 |----------| <<<<<<<<<<<<< |----------------|
2068 | SCP_BL2 | <<<<<<<<<<<<< | BL31 PROGBITS |
Chris Kayddc93cb2020-03-12 13:50:26 +00002069 | | +----------------+
Douglas Raillard6f625742017-06-28 15:23:03 +01002070 0x04001000 +----------+
2071 | MHU |
2072 0x04000000 +----------+
2073
Paul Beesley43f35ef2019-05-29 13:59:40 +01002074.. _firmware_design_fip:
Sathees Balyae36950b2019-01-30 15:56:44 +00002075
Douglas Raillard6f625742017-06-28 15:23:03 +01002076Firmware Image Package (FIP)
2077----------------------------
2078
2079Using a Firmware Image Package (FIP) allows for packing bootloader images (and
Dan Handley4def07d2018-03-01 18:44:00 +00002080potentially other payloads) into a single archive that can be loaded by TF-A
2081from non-volatile platform storage. A driver to load images from a FIP has
2082been added to the storage layer and allows a package to be read from supported
2083platform storage. A tool to create Firmware Image Packages is also provided
2084and described below.
Douglas Raillard6f625742017-06-28 15:23:03 +01002085
2086Firmware Image Package layout
2087~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2088
2089The FIP layout consists of a table of contents (ToC) followed by payload data.
2090The ToC itself has a header followed by one or more table entries. The ToC is
Jett Zhou4069fb52017-11-24 16:03:58 +08002091terminated by an end marker entry, and since the size of the ToC is 0 bytes,
2092the offset equals the total size of the FIP file. All ToC entries describe some
2093payload data that has been appended to the end of the binary package. With the
2094information provided in the ToC entry the corresponding payload data can be
2095retrieved.
Douglas Raillard6f625742017-06-28 15:23:03 +01002096
2097::
2098
2099 ------------------
2100 | ToC Header |
2101 |----------------|
2102 | ToC Entry 0 |
2103 |----------------|
2104 | ToC Entry 1 |
2105 |----------------|
2106 | ToC End Marker |
2107 |----------------|
2108 | |
2109 | Data 0 |
2110 | |
2111 |----------------|
2112 | |
2113 | Data 1 |
2114 | |
2115 ------------------
2116
2117The ToC header and entry formats are described in the header file
2118``include/tools_share/firmware_image_package.h``. This file is used by both the
Dan Handley4def07d2018-03-01 18:44:00 +00002119tool and TF-A.
Douglas Raillard6f625742017-06-28 15:23:03 +01002120
2121The ToC header has the following fields:
2122
2123::
2124
2125 `name`: The name of the ToC. This is currently used to validate the header.
2126 `serial_number`: A non-zero number provided by the creation tool
2127 `flags`: Flags associated with this data.
2128 Bits 0-31: Reserved
2129 Bits 32-47: Platform defined
2130 Bits 48-63: Reserved
2131
2132A ToC entry has the following fields:
2133
2134::
2135
2136 `uuid`: All files are referred to by a pre-defined Universally Unique
2137 IDentifier [UUID] . The UUIDs are defined in
2138 `include/tools_share/firmware_image_package.h`. The platform translates
2139 the requested image name into the corresponding UUID when accessing the
2140 package.
2141 `offset_address`: The offset address at which the corresponding payload data
2142 can be found. The offset is calculated from the ToC base address.
2143 `size`: The size of the corresponding payload data in bytes.
Etienne Carriered591d762017-08-23 15:43:33 +02002144 `flags`: Flags associated with this entry. None are yet defined.
Douglas Raillard6f625742017-06-28 15:23:03 +01002145
2146Firmware Image Package creation tool
2147~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2148
Dan Handley4def07d2018-03-01 18:44:00 +00002149The FIP creation tool can be used to pack specified images into a binary
2150package that can be loaded by TF-A from platform storage. The tool currently
2151only supports packing bootloader images. Additional image definitions can be
2152added to the tool as required.
Douglas Raillard6f625742017-06-28 15:23:03 +01002153
2154The tool can be found in ``tools/fiptool``.
2155
2156Loading from a Firmware Image Package (FIP)
2157~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2158
2159The Firmware Image Package (FIP) driver can load images from a binary package on
Dan Handley4def07d2018-03-01 18:44:00 +00002160non-volatile platform storage. For the Arm development platforms, this is
Douglas Raillard6f625742017-06-28 15:23:03 +01002161currently NOR FLASH.
2162
2163Bootloader images are loaded according to the platform policy as specified by
Dan Handley4def07d2018-03-01 18:44:00 +00002164the function ``plat_get_image_source()``. For the Arm development platforms, this
Douglas Raillard6f625742017-06-28 15:23:03 +01002165means the platform will attempt to load images from a Firmware Image Package
2166located at the start of NOR FLASH0.
2167
Dan Handley4def07d2018-03-01 18:44:00 +00002168The Arm development platforms' policy is to only allow loading of a known set of
Douglas Raillard6f625742017-06-28 15:23:03 +01002169images. The platform policy can be modified to allow additional images.
2170
Dan Handley4def07d2018-03-01 18:44:00 +00002171Use of coherent memory in TF-A
2172------------------------------
Douglas Raillard6f625742017-06-28 15:23:03 +01002173
2174There might be loss of coherency when physical memory with mismatched
2175shareability, cacheability and memory attributes is accessed by multiple CPUs
Dan Handley4def07d2018-03-01 18:44:00 +00002176(refer to section B2.9 of `Arm ARM`_ for more details). This possibility occurs
2177in TF-A during power up/down sequences when coherency, MMU and caches are
2178turned on/off incrementally.
Douglas Raillard6f625742017-06-28 15:23:03 +01002179
Dan Handley4def07d2018-03-01 18:44:00 +00002180TF-A defines coherent memory as a region of memory with Device nGnRE attributes
2181in the translation tables. The translation granule size in TF-A is 4KB. This
2182is the smallest possible size of the coherent memory region.
Douglas Raillard6f625742017-06-28 15:23:03 +01002183
2184By default, all data structures which are susceptible to accesses with
2185mismatched attributes from various CPUs are allocated in a coherent memory
Paul Beesley34760952019-04-12 14:19:42 +01002186region (refer to section 2.1 of :ref:`Porting Guide`). The coherent memory
2187region accesses are Outer Shareable, non-cacheable and they can be accessed with
2188the Device nGnRE attributes when the MMU is turned on. Hence, at the expense of
2189at least an extra page of memory, TF-A is able to work around coherency issues
2190due to mismatched memory attributes.
Douglas Raillard6f625742017-06-28 15:23:03 +01002191
2192The alternative to the above approach is to allocate the susceptible data
2193structures in Normal WriteBack WriteAllocate Inner shareable memory. This
2194approach requires the data structures to be designed so that it is possible to
2195work around the issue of mismatched memory attributes by performing software
2196cache maintenance on them.
2197
Dan Handley4def07d2018-03-01 18:44:00 +00002198Disabling the use of coherent memory in TF-A
2199~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Douglas Raillard6f625742017-06-28 15:23:03 +01002200
2201It might be desirable to avoid the cost of allocating coherent memory on
Dan Handley4def07d2018-03-01 18:44:00 +00002202platforms which are memory constrained. TF-A enables inclusion of coherent
2203memory in firmware images through the build flag ``USE_COHERENT_MEM``.
Douglas Raillard6f625742017-06-28 15:23:03 +01002204This flag is enabled by default. It can be disabled to choose the second
2205approach described above.
2206
2207The below sections analyze the data structures allocated in the coherent memory
2208region and the changes required to allocate them in normal memory.
2209
2210Coherent memory usage in PSCI implementation
2211~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2212
2213The ``psci_non_cpu_pd_nodes`` data structure stores the platform's power domain
2214tree information for state management of power domains. By default, this data
Dan Handley4def07d2018-03-01 18:44:00 +00002215structure is allocated in the coherent memory region in TF-A because it can be
Paul Beesley8aabea32019-01-11 18:26:51 +00002216accessed by multiple CPUs, either with caches enabled or disabled.
Douglas Raillard6f625742017-06-28 15:23:03 +01002217
2218.. code:: c
2219
2220 typedef struct non_cpu_pwr_domain_node {
2221 /*
2222 * Index of the first CPU power domain node level 0 which has this node
2223 * as its parent.
2224 */
2225 unsigned int cpu_start_idx;
2226
2227 /*
2228 * Number of CPU power domains which are siblings of the domain indexed
2229 * by 'cpu_start_idx' i.e. all the domains in the range 'cpu_start_idx
2230 * -> cpu_start_idx + ncpus' have this node as their parent.
2231 */
2232 unsigned int ncpus;
2233
2234 /*
2235 * Index of the parent power domain node.
Douglas Raillard6f625742017-06-28 15:23:03 +01002236 */
2237 unsigned int parent_node;
2238
2239 plat_local_state_t local_state;
2240
2241 unsigned char level;
2242
2243 /* For indexing the psci_lock array*/
2244 unsigned char lock_index;
2245 } non_cpu_pd_node_t;
2246
2247In order to move this data structure to normal memory, the use of each of its
2248fields must be analyzed. Fields like ``cpu_start_idx``, ``ncpus``, ``parent_node``
2249``level`` and ``lock_index`` are only written once during cold boot. Hence removing
2250them from coherent memory involves only doing a clean and invalidate of the
2251cache lines after these fields are written.
2252
2253The field ``local_state`` can be concurrently accessed by multiple CPUs in
2254different cache states. A Lamport's Bakery lock ``psci_locks`` is used to ensure
Paul Beesley8aabea32019-01-11 18:26:51 +00002255mutual exclusion to this field and a clean and invalidate is needed after it
Douglas Raillard6f625742017-06-28 15:23:03 +01002256is written.
2257
2258Bakery lock data
2259~~~~~~~~~~~~~~~~
2260
2261The bakery lock data structure ``bakery_lock_t`` is allocated in coherent memory
2262and is accessed by multiple CPUs with mismatched attributes. ``bakery_lock_t`` is
2263defined as follows:
2264
2265.. code:: c
2266
2267 typedef struct bakery_lock {
2268 /*
2269 * The lock_data is a bit-field of 2 members:
2270 * Bit[0] : choosing. This field is set when the CPU is
2271 * choosing its bakery number.
2272 * Bits[1 - 15] : number. This is the bakery number allocated.
2273 */
2274 volatile uint16_t lock_data[BAKERY_LOCK_MAX_CPUS];
2275 } bakery_lock_t;
2276
2277It is a characteristic of Lamport's Bakery algorithm that the volatile per-CPU
2278fields can be read by all CPUs but only written to by the owning CPU.
2279
2280Depending upon the data cache line size, the per-CPU fields of the
2281``bakery_lock_t`` structure for multiple CPUs may exist on a single cache line.
2282These per-CPU fields can be read and written during lock contention by multiple
2283CPUs with mismatched memory attributes. Since these fields are a part of the
2284lock implementation, they do not have access to any other locking primitive to
2285safeguard against the resulting coherency issues. As a result, simple software
2286cache maintenance is not enough to allocate them in coherent memory. Consider
2287the following example.
2288
2289CPU0 updates its per-CPU field with data cache enabled. This write updates a
2290local cache line which contains a copy of the fields for other CPUs as well. Now
2291CPU1 updates its per-CPU field of the ``bakery_lock_t`` structure with data cache
2292disabled. CPU1 then issues a DCIVAC operation to invalidate any stale copies of
2293its field in any other cache line in the system. This operation will invalidate
2294the update made by CPU0 as well.
2295
2296To use bakery locks when ``USE_COHERENT_MEM`` is disabled, the lock data structure
2297has been redesigned. The changes utilise the characteristic of Lamport's Bakery
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +01002298algorithm mentioned earlier. The bakery_lock structure only allocates the memory
Douglas Raillard6f625742017-06-28 15:23:03 +01002299for a single CPU. The macro ``DEFINE_BAKERY_LOCK`` allocates all the bakery locks
Chris Kayda043412023-02-14 11:30:04 +00002300needed for a CPU into a section ``.bakery_lock``. The linker allocates the memory
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +01002301for other cores by using the total size allocated for the bakery_lock section
2302and multiplying it with (PLATFORM_CORE_COUNT - 1). This enables software to
Douglas Raillard6f625742017-06-28 15:23:03 +01002303perform software cache maintenance on the lock data structure without running
2304into coherency issues associated with mismatched attributes.
2305
2306The bakery lock data structure ``bakery_info_t`` is defined for use when
2307``USE_COHERENT_MEM`` is disabled as follows:
2308
2309.. code:: c
2310
2311 typedef struct bakery_info {
2312 /*
2313 * The lock_data is a bit-field of 2 members:
2314 * Bit[0] : choosing. This field is set when the CPU is
2315 * choosing its bakery number.
2316 * Bits[1 - 15] : number. This is the bakery number allocated.
2317 */
2318 volatile uint16_t lock_data;
2319 } bakery_info_t;
2320
2321The ``bakery_info_t`` represents a single per-CPU field of one lock and
2322the combination of corresponding ``bakery_info_t`` structures for all CPUs in the
2323system represents the complete bakery lock. The view in memory for a system
2324with n bakery locks are:
2325
2326::
2327
Chris Kayda043412023-02-14 11:30:04 +00002328 .bakery_lock section start
Douglas Raillard6f625742017-06-28 15:23:03 +01002329 |----------------|
2330 | `bakery_info_t`| <-- Lock_0 per-CPU field
2331 | Lock_0 | for CPU0
2332 |----------------|
2333 | `bakery_info_t`| <-- Lock_1 per-CPU field
2334 | Lock_1 | for CPU0
2335 |----------------|
2336 | .... |
2337 |----------------|
2338 | `bakery_info_t`| <-- Lock_N per-CPU field
2339 | Lock_N | for CPU0
2340 ------------------
2341 | XXXXX |
2342 | Padding to |
2343 | next Cache WB | <--- Calculate PERCPU_BAKERY_LOCK_SIZE, allocate
2344 | Granule | continuous memory for remaining CPUs.
2345 ------------------
2346 | `bakery_info_t`| <-- Lock_0 per-CPU field
2347 | Lock_0 | for CPU1
2348 |----------------|
2349 | `bakery_info_t`| <-- Lock_1 per-CPU field
2350 | Lock_1 | for CPU1
2351 |----------------|
2352 | .... |
2353 |----------------|
2354 | `bakery_info_t`| <-- Lock_N per-CPU field
2355 | Lock_N | for CPU1
2356 ------------------
2357 | XXXXX |
2358 | Padding to |
2359 | next Cache WB |
2360 | Granule |
2361 ------------------
2362
2363Consider a system of 2 CPUs with 'N' bakery locks as shown above. For an
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +01002364operation on Lock_N, the corresponding ``bakery_info_t`` in both CPU0 and CPU1
Chris Kayda043412023-02-14 11:30:04 +00002365``.bakery_lock`` section need to be fetched and appropriate cache operations need
Douglas Raillard6f625742017-06-28 15:23:03 +01002366to be performed for each access.
2367
Dan Handley4def07d2018-03-01 18:44:00 +00002368On Arm Platforms, bakery locks are used in psci (``psci_locks``) and power controller
Douglas Raillard6f625742017-06-28 15:23:03 +01002369driver (``arm_lock``).
2370
2371Non Functional Impact of removing coherent memory
2372~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2373
2374Removal of the coherent memory region leads to the additional software overhead
2375of performing cache maintenance for the affected data structures. However, since
2376the memory where the data structures are allocated is cacheable, the overhead is
2377mostly mitigated by an increase in performance.
2378
2379There is however a performance impact for bakery locks, due to:
2380
2381- Additional cache maintenance operations, and
2382- Multiple cache line reads for each lock operation, since the bakery locks
2383 for each CPU are distributed across different cache lines.
2384
2385The implementation has been optimized to minimize this additional overhead.
2386Measurements indicate that when bakery locks are allocated in Normal memory, the
2387minimum latency of acquiring a lock is on an average 3-4 micro seconds whereas
2388in Device memory the same is 2 micro seconds. The measurements were done on the
Dan Handley4def07d2018-03-01 18:44:00 +00002389Juno Arm development platform.
Douglas Raillard6f625742017-06-28 15:23:03 +01002390
2391As mentioned earlier, almost a page of memory can be saved by disabling
2392``USE_COHERENT_MEM``. Each platform needs to consider these trade-offs to decide
2393whether coherent memory should be used. If a platform disables
2394``USE_COHERENT_MEM`` and needs to use bakery locks in the porting layer, it can
2395optionally define macro ``PLAT_PERCPU_BAKERY_LOCK_SIZE`` (see the
Paul Beesley34760952019-04-12 14:19:42 +01002396:ref:`Porting Guide`). Refer to the reference platform code for examples.
Douglas Raillard6f625742017-06-28 15:23:03 +01002397
2398Isolating code and read-only data on separate memory pages
2399----------------------------------------------------------
2400
Dan Handley4def07d2018-03-01 18:44:00 +00002401In the Armv8-A VMSA, translation table entries include fields that define the
Douglas Raillard6f625742017-06-28 15:23:03 +01002402properties of the target memory region, such as its access permissions. The
2403smallest unit of memory that can be addressed by a translation table entry is
2404a memory page. Therefore, if software needs to set different permissions on two
2405memory regions then it needs to map them using different memory pages.
2406
2407The default memory layout for each BL image is as follows:
2408
2409::
2410
2411 | ... |
2412 +-------------------+
2413 | Read-write data |
2414 +-------------------+ Page boundary
2415 | <Padding> |
2416 +-------------------+
2417 | Exception vectors |
2418 +-------------------+ 2 KB boundary
2419 | <Padding> |
2420 +-------------------+
2421 | Read-only data |
2422 +-------------------+
2423 | Code |
2424 +-------------------+ BLx_BASE
2425
Paul Beesleye1c50262019-03-13 16:20:44 +00002426.. note::
2427 The 2KB alignment for the exception vectors is an architectural
2428 requirement.
Douglas Raillard6f625742017-06-28 15:23:03 +01002429
2430The read-write data start on a new memory page so that they can be mapped with
2431read-write permissions, whereas the code and read-only data below are configured
2432as read-only.
2433
2434However, the read-only data are not aligned on a page boundary. They are
2435contiguous to the code. Therefore, the end of the code section and the beginning
2436of the read-only data one might share a memory page. This forces both to be
2437mapped with the same memory attributes. As the code needs to be executable, this
2438means that the read-only data stored on the same memory page as the code are
2439executable as well. This could potentially be exploited as part of a security
2440attack.
2441
2442TF provides the build flag ``SEPARATE_CODE_AND_RODATA`` to isolate the code and
2443read-only data on separate memory pages. This in turn allows independent control
2444of the access permissions for the code and read-only data. In this case,
2445platform code gets a finer-grained view of the image layout and can
2446appropriately map the code region as executable and the read-only data as
2447execute-never.
2448
2449This has an impact on memory footprint, as padding bytes need to be introduced
Paul Beesley8aabea32019-01-11 18:26:51 +00002450between the code and read-only data to ensure the segregation of the two. To
Douglas Raillard6f625742017-06-28 15:23:03 +01002451limit the memory cost, this flag also changes the memory layout such that the
2452code and exception vectors are now contiguous, like so:
2453
2454::
2455
2456 | ... |
2457 +-------------------+
2458 | Read-write data |
2459 +-------------------+ Page boundary
2460 | <Padding> |
2461 +-------------------+
2462 | Read-only data |
2463 +-------------------+ Page boundary
2464 | <Padding> |
2465 +-------------------+
2466 | Exception vectors |
2467 +-------------------+ 2 KB boundary
2468 | <Padding> |
2469 +-------------------+
2470 | Code |
2471 +-------------------+ BLx_BASE
2472
2473With this more condensed memory layout, the separation of read-only data will
2474add zero or one page to the memory footprint of each BL image. Each platform
2475should consider the trade-off between memory footprint and security.
2476
Dan Handley4def07d2018-03-01 18:44:00 +00002477This build flag is disabled by default, minimising memory footprint. On Arm
Douglas Raillard6f625742017-06-28 15:23:03 +01002478platforms, it is enabled.
2479
Jeenu Viswambharan8e743bc2017-09-22 08:32:10 +01002480Publish and Subscribe Framework
2481-------------------------------
2482
2483The Publish and Subscribe Framework allows EL3 components to define and publish
2484events, to which other EL3 components can subscribe.
2485
2486The following macros are provided by the framework:
2487
2488- ``REGISTER_PUBSUB_EVENT(event)``: Defines an event, and takes one argument,
2489 the event name, which must be a valid C identifier. All calls to
2490 ``REGISTER_PUBSUB_EVENT`` macro must be placed in the file
2491 ``pubsub_events.h``.
2492
2493- ``PUBLISH_EVENT_ARG(event, arg)``: Publishes a defined event, by iterating
2494 subscribed handlers and calling them in turn. The handlers will be passed the
2495 parameter ``arg``. The expected use-case is to broadcast an event.
2496
2497- ``PUBLISH_EVENT(event)``: Like ``PUBLISH_EVENT_ARG``, except that the value
2498 ``NULL`` is passed to subscribed handlers.
2499
2500- ``SUBSCRIBE_TO_EVENT(event, handler)``: Registers the ``handler`` to
2501 subscribe to ``event``. The handler will be executed whenever the ``event``
2502 is published.
2503
2504- ``for_each_subscriber(event, subscriber)``: Iterates through all handlers
2505 subscribed for ``event``. ``subscriber`` must be a local variable of type
2506 ``pubsub_cb_t *``, and will point to each subscribed handler in turn during
2507 iteration. This macro can be used for those patterns that none of the
2508 ``PUBLISH_EVENT_*()`` macros cover.
2509
2510Publishing an event that wasn't defined using ``REGISTER_PUBSUB_EVENT`` will
2511result in build error. Subscribing to an undefined event however won't.
2512
2513Subscribed handlers must be of type ``pubsub_cb_t``, with following function
2514signature:
2515
Paul Beesley29c02522019-03-13 15:11:04 +00002516.. code:: c
Jeenu Viswambharan8e743bc2017-09-22 08:32:10 +01002517
2518 typedef void* (*pubsub_cb_t)(const void *arg);
2519
2520There may be arbitrary number of handlers registered to the same event. The
2521order in which subscribed handlers are notified when that event is published is
2522not defined. Subscribed handlers may be executed in any order; handlers should
2523not assume any relative ordering amongst them.
2524
2525Publishing an event on a PE will result in subscribed handlers executing on that
2526PE only; it won't cause handlers to execute on a different PE.
2527
2528Note that publishing an event on a PE blocks until all the subscribed handlers
2529finish executing on the PE.
2530
Dan Handley4def07d2018-03-01 18:44:00 +00002531TF-A generic code publishes and subscribes to some events within. Platform
2532ports are discouraged from subscribing to them. These events may be withdrawn,
2533renamed, or have their semantics altered in the future. Platforms may however
2534register, publish, and subscribe to platform-specific events.
Dimitris Papastamos17b4c0d2017-10-13 15:27:58 +01002535
Jeenu Viswambharan8e743bc2017-09-22 08:32:10 +01002536Publish and Subscribe Example
2537~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2538
2539A publisher that wants to publish event ``foo`` would:
2540
2541- Define the event ``foo`` in the ``pubsub_events.h``.
2542
Paul Beesley29c02522019-03-13 15:11:04 +00002543 .. code:: c
Jeenu Viswambharan8e743bc2017-09-22 08:32:10 +01002544
2545 REGISTER_PUBSUB_EVENT(foo);
2546
2547- Depending on the nature of event, use one of ``PUBLISH_EVENT_*()`` macros to
2548 publish the event at the appropriate path and time of execution.
2549
2550A subscriber that wants to subscribe to event ``foo`` published above would
2551implement:
2552
Sandrine Bailleux337e2f12019-02-08 10:50:28 +01002553.. code:: c
Jeenu Viswambharan8e743bc2017-09-22 08:32:10 +01002554
Sandrine Bailleux337e2f12019-02-08 10:50:28 +01002555 void *foo_handler(const void *arg)
2556 {
2557 void *result;
Jeenu Viswambharan8e743bc2017-09-22 08:32:10 +01002558
Sandrine Bailleux337e2f12019-02-08 10:50:28 +01002559 /* Do handling ... */
Jeenu Viswambharan8e743bc2017-09-22 08:32:10 +01002560
Sandrine Bailleux337e2f12019-02-08 10:50:28 +01002561 return result;
2562 }
Jeenu Viswambharan8e743bc2017-09-22 08:32:10 +01002563
Sandrine Bailleux337e2f12019-02-08 10:50:28 +01002564 SUBSCRIBE_TO_EVENT(foo, foo_handler);
Jeenu Viswambharan8e743bc2017-09-22 08:32:10 +01002565
Daniel Boulby1dcc28c2018-09-18 11:45:51 +01002566
2567Reclaiming the BL31 initialization code
2568~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2569
2570A significant amount of the code used for the initialization of BL31 is never
2571needed again after boot time. In order to reduce the runtime memory
2572footprint, the memory used for this code can be reclaimed after initialization
2573has finished and be used for runtime data.
2574
2575The build option ``RECLAIM_INIT_CODE`` can be set to mark this boot time code
2576with a ``.text.init.*`` attribute which can be filtered and placed suitably
Paul Beesley8aabea32019-01-11 18:26:51 +00002577within the BL image for later reclamation by the platform. The platform can
2578specify the filter and the memory region for this init section in BL31 via the
Daniel Boulby1dcc28c2018-09-18 11:45:51 +01002579plat.ld.S linker script. For example, on the FVP, this section is placed
2580overlapping the secondary CPU stacks so that after the cold boot is done, this
2581memory can be reclaimed for the stacks. The init memory section is initially
Paul Beesley8aabea32019-01-11 18:26:51 +00002582mapped with ``RO``, ``EXECUTE`` attributes. After BL31 initialization has
Daniel Boulby1dcc28c2018-09-18 11:45:51 +01002583completed, the FVP changes the attributes of this section to ``RW``,
2584``EXECUTE_NEVER`` allowing it to be used for runtime data. The memory attributes
2585are changed within the ``bl31_plat_runtime_setup`` platform hook. The init
2586section section can be reclaimed for any data which is accessed after cold
2587boot initialization and it is upto the platform to make the decision.
2588
Paul Beesley34760952019-04-12 14:19:42 +01002589.. _firmware_design_pmf:
2590
Douglas Raillard6f625742017-06-28 15:23:03 +01002591Performance Measurement Framework
2592---------------------------------
2593
2594The Performance Measurement Framework (PMF) facilitates collection of
Dan Handley4def07d2018-03-01 18:44:00 +00002595timestamps by registered services and provides interfaces to retrieve them
2596from within TF-A. A platform can choose to expose appropriate SMCs to
2597retrieve these collected timestamps.
Douglas Raillard6f625742017-06-28 15:23:03 +01002598
2599By default, the global physical counter is used for the timestamp
2600value and is read via ``CNTPCT_EL0``. The framework allows to retrieve
2601timestamps captured by other CPUs.
2602
2603Timestamp identifier format
2604~~~~~~~~~~~~~~~~~~~~~~~~~~~
2605
2606A PMF timestamp is uniquely identified across the system via the
2607timestamp ID or ``tid``. The ``tid`` is composed as follows:
2608
2609::
2610
2611 Bits 0-7: The local timestamp identifier.
2612 Bits 8-9: Reserved.
2613 Bits 10-15: The service identifier.
2614 Bits 16-31: Reserved.
2615
2616#. The service identifier. Each PMF service is identified by a
2617 service name and a service identifier. Both the service name and
2618 identifier are unique within the system as a whole.
2619
2620#. The local timestamp identifier. This identifier is unique within a given
2621 service.
2622
2623Registering a PMF service
2624~~~~~~~~~~~~~~~~~~~~~~~~~
2625
2626To register a PMF service, the ``PMF_REGISTER_SERVICE()`` macro from ``pmf.h``
2627is used. The arguments required are the service name, the service ID,
2628the total number of local timestamps to be captured and a set of flags.
2629
2630The ``flags`` field can be specified as a bitwise-OR of the following values:
2631
2632::
2633
2634 PMF_STORE_ENABLE: The timestamp is stored in memory for later retrieval.
2635 PMF_DUMP_ENABLE: The timestamp is dumped on the serial console.
2636
2637The ``PMF_REGISTER_SERVICE()`` reserves memory to store captured
2638timestamps in a PMF specific linker section at build time.
2639Additionally, it defines necessary functions to capture and
2640retrieve a particular timestamp for the given service at runtime.
2641
Dan Handley4def07d2018-03-01 18:44:00 +00002642The macro ``PMF_REGISTER_SERVICE()`` only enables capturing PMF timestamps
2643from within TF-A. In order to retrieve timestamps from outside of TF-A, the
Douglas Raillard6f625742017-06-28 15:23:03 +01002644``PMF_REGISTER_SERVICE_SMC()`` macro must be used instead. This macro
2645accepts the same set of arguments as the ``PMF_REGISTER_SERVICE()``
2646macro but additionally supports retrieving timestamps using SMCs.
2647
2648Capturing a timestamp
2649~~~~~~~~~~~~~~~~~~~~~
2650
2651PMF timestamps are stored in a per-service timestamp region. On a
2652system with multiple CPUs, each timestamp is captured and stored
2653in a per-CPU cache line aligned memory region.
2654
2655Having registered the service, the ``PMF_CAPTURE_TIMESTAMP()`` macro can be
2656used to capture a timestamp at the location where it is used. The macro
2657takes the service name, a local timestamp identifier and a flag as arguments.
2658
2659The ``flags`` field argument can be zero, or ``PMF_CACHE_MAINT`` which
2660instructs PMF to do cache maintenance following the capture. Cache
2661maintenance is required if any of the service's timestamps are captured
2662with data cache disabled.
2663
2664To capture a timestamp in assembly code, the caller should use
2665``pmf_calc_timestamp_addr`` macro (defined in ``pmf_asm_macros.S``) to
2666calculate the address of where the timestamp would be stored. The
2667caller should then read ``CNTPCT_EL0`` register to obtain the timestamp
2668and store it at the determined address for later retrieval.
2669
2670Retrieving a timestamp
2671~~~~~~~~~~~~~~~~~~~~~~
2672
Dan Handley4def07d2018-03-01 18:44:00 +00002673From within TF-A, timestamps for individual CPUs can be retrieved using either
2674``PMF_GET_TIMESTAMP_BY_MPIDR()`` or ``PMF_GET_TIMESTAMP_BY_INDEX()`` macros.
2675These macros accept the CPU's MPIDR value, or its ordinal position
2676respectively.
Douglas Raillard6f625742017-06-28 15:23:03 +01002677
Dan Handley4def07d2018-03-01 18:44:00 +00002678From outside TF-A, timestamps for individual CPUs can be retrieved by calling
2679into ``pmf_smc_handler()``.
Douglas Raillard6f625742017-06-28 15:23:03 +01002680
Paul Beesley29c02522019-03-13 15:11:04 +00002681::
Douglas Raillard6f625742017-06-28 15:23:03 +01002682
2683 Interface : pmf_smc_handler()
2684 Argument : unsigned int smc_fid, u_register_t x1,
2685 u_register_t x2, u_register_t x3,
2686 u_register_t x4, void *cookie,
2687 void *handle, u_register_t flags
2688 Return : uintptr_t
2689
2690 smc_fid: Holds the SMC identifier which is either `PMF_SMC_GET_TIMESTAMP_32`
2691 when the caller of the SMC is running in AArch32 mode
2692 or `PMF_SMC_GET_TIMESTAMP_64` when the caller is running in AArch64 mode.
2693 x1: Timestamp identifier.
2694 x2: The `mpidr` of the CPU for which the timestamp has to be retrieved.
2695 This can be the `mpidr` of a different core to the one initiating
2696 the SMC. In that case, service specific cache maintenance may be
2697 required to ensure the updated copy of the timestamp is returned.
2698 x3: A flags value that is either 0 or `PMF_CACHE_MAINT`. If
2699 `PMF_CACHE_MAINT` is passed, then the PMF code will perform a
2700 cache invalidate before reading the timestamp. This ensures
2701 an updated copy is returned.
2702
2703The remaining arguments, ``x4``, ``cookie``, ``handle`` and ``flags`` are unused
2704in this implementation.
2705
2706PMF code structure
2707~~~~~~~~~~~~~~~~~~
2708
2709#. ``pmf_main.c`` consists of core functions that implement service registration,
2710 initialization, storing, dumping and retrieving timestamps.
2711
2712#. ``pmf_smc.c`` contains the SMC handling for registered PMF services.
2713
2714#. ``pmf.h`` contains the public interface to Performance Measurement Framework.
2715
2716#. ``pmf_asm_macros.S`` consists of macros to facilitate capturing timestamps in
2717 assembly code.
2718
2719#. ``pmf_helpers.h`` is an internal header used by ``pmf.h``.
2720
Dan Handley4def07d2018-03-01 18:44:00 +00002721Armv8-A Architecture Extensions
2722-------------------------------
Douglas Raillard6f625742017-06-28 15:23:03 +01002723
Dan Handley4def07d2018-03-01 18:44:00 +00002724TF-A makes use of Armv8-A Architecture Extensions where applicable. This
2725section lists the usage of Architecture Extensions, and build flags
2726controlling them.
Douglas Raillard6f625742017-06-28 15:23:03 +01002727
Manish Pandeybe6484c2023-05-12 14:51:39 +01002728Build options
2729~~~~~~~~~~~~~
Douglas Raillard6f625742017-06-28 15:23:03 +01002730
Manish Pandeybe6484c2023-05-12 14:51:39 +01002731``ARM_ARCH_MAJOR`` and ``ARM_ARCH_MINOR``
2732
2733These build options serve dual purpose
2734
2735- Determine the architecture extension support in TF-A build: All the mandatory
2736 architectural features up to ``ARM_ARCH_MAJOR.ARM_ARCH_MINOR`` are included
2737 and unconditionally enabled by TF-A build system.
2738
Govindraj Raja019311e2023-07-18 13:55:33 -05002739- ``ARM_ARCH_MAJOR`` and ``ARM_ARCH_MINOR`` are passed to a march.mk build utility
2740 this will try to come up with an appropriate -march value to be passed to compiler
2741 by probing the compiler and checking what's supported by the compiler and what's best
2742 that can be used. But if platform provides a ``MARCH_DIRECTIVE`` then it will used
2743 directly and compiler probing will be skipped.
Manish Pandeybe6484c2023-05-12 14:51:39 +01002744
2745The build system requires that the platform provides a valid numeric value based on
2746CPU architecture extension, otherwise it defaults to base Armv8.0-A architecture.
2747Subsequent Arm Architecture versions also support extensions which were introduced
2748in previous versions.
2749
Paul Beesley43f35ef2019-05-29 13:59:40 +01002750.. seealso:: :ref:`Build Options`
Douglas Raillard6f625742017-06-28 15:23:03 +01002751
2752For details on the Architecture Extension and available features, please refer
2753to the respective Architecture Extension Supplement.
2754
Dan Handley4def07d2018-03-01 18:44:00 +00002755Armv8.1-A
2756~~~~~~~~~
Douglas Raillard6f625742017-06-28 15:23:03 +01002757
2758This Architecture Extension is targeted when ``ARM_ARCH_MAJOR`` >= 8, or when
2759``ARM_ARCH_MAJOR`` == 8 and ``ARM_ARCH_MINOR`` >= 1.
2760
Soby Mathewc97cba42019-09-25 14:03:41 +01002761- By default, a load-/store-exclusive instruction pair is used to implement
2762 spinlocks. The ``USE_SPINLOCK_CAS`` build option when set to 1 selects the
2763 spinlock implementation using the ARMv8.1-LSE Compare and Swap instruction.
2764 Notice this instruction is only available in AArch64 execution state, so
2765 the option is only available to AArch64 builds.
Douglas Raillard6f625742017-06-28 15:23:03 +01002766
Dan Handley4def07d2018-03-01 18:44:00 +00002767Armv8.2-A
2768~~~~~~~~~
Isla Mitchell9fce2722017-08-07 11:20:13 +01002769
Antonio Nino Diazd71446c2019-02-19 13:14:06 +00002770- The presence of ARMv8.2-TTCNP is detected at runtime. When it is present, the
2771 Common not Private (TTBRn_ELx.CnP) bit is enabled to indicate that multiple
Sandrine Bailleux7c0a8432018-01-29 14:48:15 +01002772 Processing Elements in the same Inner Shareable domain use the same
2773 translation table entries for a given stage of translation for a particular
2774 translation regime.
Isla Mitchell9fce2722017-08-07 11:20:13 +01002775
Jeenu Viswambharan3ff4aaa2018-08-15 14:29:29 +01002776Armv8.3-A
2777~~~~~~~~~
2778
Antonio Nino Diaz52839622019-01-31 11:58:00 +00002779- Pointer authentication features of Armv8.3-A are unconditionally enabled in
2780 the Non-secure world so that lower ELs are allowed to use them without
2781 causing a trap to EL3.
2782
2783 In order to enable the Secure world to use it, ``CTX_INCLUDE_PAUTH_REGS``
2784 must be set to 1. This will add all pointer authentication system registers
2785 to the context that is saved when doing a world switch.
Jeenu Viswambharan3ff4aaa2018-08-15 14:29:29 +01002786
Alexei Fedorov06715f82019-03-13 11:05:07 +00002787 The TF-A itself has support for pointer authentication at runtime
Alexei Fedorov9fc59632019-05-24 12:17:09 +01002788 that can be enabled by setting ``BRANCH_PROTECTION`` option to non-zero and
Antonio Nino Diazb86048c2019-02-19 11:53:51 +00002789 ``CTX_INCLUDE_PAUTH_REGS`` to 1. This enables pointer authentication in BL1,
2790 BL2, BL31, and the TSP if it is used.
2791
Alexei Fedorov06715f82019-03-13 11:05:07 +00002792 Note that Pointer Authentication is enabled for Non-secure world irrespective
2793 of the value of these build flags if the CPU supports it.
2794
Alexei Fedorovfa6f7742019-03-11 16:51:47 +00002795 If ``ARM_ARCH_MAJOR == 8`` and ``ARM_ARCH_MINOR >= 3`` the code footprint of
2796 enabling PAuth is lower because the compiler will use the optimized
2797 PAuth instructions rather than the backwards-compatible ones.
2798
Alexei Fedorov9fc59632019-05-24 12:17:09 +01002799Armv8.5-A
2800~~~~~~~~~
2801
2802- Branch Target Identification feature is selected by ``BRANCH_PROTECTION``
Manish Pandey700e7682021-10-21 21:53:49 +01002803 option set to 1. This option defaults to 0.
Justin Chadwell88d493f2019-07-18 16:16:32 +01002804
Govindraj Rajac2823842024-03-07 14:42:20 -06002805- Memory Tagging Extension feature has few variants but not all of them require
2806 enablement from EL3 to be used at lower EL. e.g. Memory tagging only at
2807 EL0(MTE) does not require EL3 configuration however memory tagging at
2808 EL2/EL1 (MTE2) does require EL3 enablement and we need to set this option
2809 ``ENABLE_FEAT_MTE2`` to 1. This option defaults to 0.
Alexei Fedorov9fc59632019-05-24 12:17:09 +01002810
Dan Handley4def07d2018-03-01 18:44:00 +00002811Armv7-A
2812~~~~~~~
Etienne Carriere26e63c42017-11-08 13:48:40 +01002813
2814This Architecture Extension is targeted when ``ARM_ARCH_MAJOR`` == 7.
2815
Dan Handley4def07d2018-03-01 18:44:00 +00002816There are several Armv7-A extensions available. Obviously the TrustZone
2817extension is mandatory to support the TF-A bootloader and runtime services.
Etienne Carriere26e63c42017-11-08 13:48:40 +01002818
Dan Handley4def07d2018-03-01 18:44:00 +00002819Platform implementing an Armv7-A system can to define from its target
Etienne Carriere26e63c42017-11-08 13:48:40 +01002820Cortex-A architecture through ``ARM_CORTEX_A<X> = yes`` in their
Paul Beesley8aabea32019-01-11 18:26:51 +00002821``platform.mk`` script. For example ``ARM_CORTEX_A15=yes`` for a
Etienne Carriere26e63c42017-11-08 13:48:40 +01002822Cortex-A15 target.
2823
2824Platform can also set ``ARM_WITH_NEON=yes`` to enable neon support.
Paul Beesleybe653a62019-10-04 16:17:46 +00002825Note that using neon at runtime has constraints on non secure world context.
Dan Handley4def07d2018-03-01 18:44:00 +00002826TF-A does not yet provide VFP context management.
Etienne Carriere26e63c42017-11-08 13:48:40 +01002827
2828Directive ``ARM_CORTEX_A<x>`` and ``ARM_WITH_NEON`` are used to set
2829the toolchain target architecture directive.
2830
2831Platform may choose to not define straight the toolchain target architecture
Govindraj Rajad4089fb2023-05-30 16:52:15 -05002832directive by defining ``MARCH_DIRECTIVE``.
Etienne Carriere26e63c42017-11-08 13:48:40 +01002833I.e:
2834
Paul Beesley29c02522019-03-13 15:11:04 +00002835.. code:: make
Etienne Carriere26e63c42017-11-08 13:48:40 +01002836
Govindraj Raja019311e2023-07-18 13:55:33 -05002837 MARCH_DIRECTIVE := -march=armv7-a
Etienne Carriere26e63c42017-11-08 13:48:40 +01002838
Douglas Raillard6f625742017-06-28 15:23:03 +01002839Code Structure
2840--------------
2841
Dan Handley4def07d2018-03-01 18:44:00 +00002842TF-A code is logically divided between the three boot loader stages mentioned
2843in the previous sections. The code is also divided into the following
2844categories (present as directories in the source code):
Douglas Raillard6f625742017-06-28 15:23:03 +01002845
2846- **Platform specific.** Choice of architecture specific code depends upon
2847 the platform.
2848- **Common code.** This is platform and architecture agnostic code.
2849- **Library code.** This code comprises of functionality commonly used by all
2850 other code. The PSCI implementation and other EL3 runtime frameworks reside
2851 as Library components.
2852- **Stage specific.** Code specific to a boot stage.
2853- **Drivers.**
2854- **Services.** EL3 runtime services (eg: SPD). Specific SPD services
2855 reside in the ``services/spd`` directory (e.g. ``services/spd/tspd``).
2856
2857Each boot loader stage uses code from one or more of the above mentioned
2858categories. Based upon the above, the code layout looks like this:
2859
2860::
2861
2862 Directory Used by BL1? Used by BL2? Used by BL31?
2863 bl1 Yes No No
2864 bl2 No Yes No
2865 bl31 No No Yes
2866 plat Yes Yes Yes
2867 drivers Yes No Yes
2868 common Yes Yes Yes
2869 lib Yes Yes Yes
2870 services No No Yes
2871
Sandrine Bailleuxf3cacad2019-02-08 15:26:36 +01002872The build system provides a non configurable build option IMAGE_BLx for each
2873boot loader stage (where x = BL stage). e.g. for BL1 , IMAGE_BL1 will be
Dan Handley4def07d2018-03-01 18:44:00 +00002874defined by the build system. This enables TF-A to compile certain code only
2875for specific boot loader stages
Douglas Raillard6f625742017-06-28 15:23:03 +01002876
2877All assembler files have the ``.S`` extension. The linker source files for each
2878boot stage have the extension ``.ld.S``. These are processed by GCC to create the
2879linker scripts which have the extension ``.ld``.
2880
2881FDTs provide a description of the hardware platform and are used by the Linux
2882kernel at boot time. These can be found in the ``fdts`` directory.
2883
Paul Beesley34760952019-04-12 14:19:42 +01002884.. rubric:: References
Douglas Raillard6f625742017-06-28 15:23:03 +01002885
Paul Beesley34760952019-04-12 14:19:42 +01002886- `Trusted Board Boot Requirements CLIENT (TBBR-CLIENT) Armv8-A (ARM DEN0006D)`_
2887
Manish V Badarkhe3be6b4f2023-06-15 09:14:33 +01002888- `PSCI`_
Paul Beesley34760952019-04-12 14:19:42 +01002889
Sandrine Bailleux71ac9312020-04-17 14:06:52 +02002890- `SMC Calling Convention`_
Paul Beesley34760952019-04-12 14:19:42 +01002891
2892- :ref:`Interrupt Management Framework`
Douglas Raillard6f625742017-06-28 15:23:03 +01002893
2894--------------
2895
Boyan Karatotev39f7d022024-11-19 11:27:01 +00002896*Copyright (c) 2013-2025, Arm Limited and Contributors. All rights reserved.*
Douglas Raillard6f625742017-06-28 15:23:03 +01002897
laurenw-arm3ba55a32020-04-16 10:02:17 -05002898.. _SMCCC: https://developer.arm.com/docs/den0028/latest
Manish V Badarkhe3be6b4f2023-06-15 09:14:33 +01002899.. _PSCI: https://developer.arm.com/documentation/den0022/latest/
Petre-Ionut Tudor62c9be72019-09-27 15:13:21 +01002900.. _Arm ARM: https://developer.arm.com/docs/ddi0487/latest
laurenw-arm3ba55a32020-04-16 10:02:17 -05002901.. _SMC Calling Convention: https://developer.arm.com/docs/den0028/latest
Sandrine Bailleux4290d342024-02-02 11:16:12 +01002902.. _Trusted Board Boot Requirements CLIENT (TBBR-CLIENT) Armv8-A (ARM DEN0006D): https://developer.arm.com/docs/den0006/latest
Zelalem Aweke7446c262021-10-21 13:59:45 -05002903.. _Arm Confidential Compute Architecture (Arm CCA): https://www.arm.com/why-arm/architecture/security-features/arm-confidential-compute-architecture
Manish Pandey9f9bfd72023-07-21 13:08:53 +01002904.. _AArch64 exception vector table: https://developer.arm.com/documentation/100933/0100/AArch64-exception-vector-table
Douglas Raillard6f625742017-06-28 15:23:03 +01002905
Paul Beesleya2c320a2019-03-13 15:49:27 +00002906.. |Image 1| image:: ../resources/diagrams/rt-svc-descs-layout.png