blob: 8aa762278396ecf961f3f851a727fe5b00dbca9d [file] [log] [blame]
Dan Handley610e7e12018-03-01 18:44:00 +00001Trusted Firmware-A design
2=========================
Douglas Raillardd7c21b72017-06-28 15:23:03 +01003
4
5.. section-numbering::
6 :suffix: .
7
8.. contents::
9
Dan Handley610e7e12018-03-01 18:44:00 +000010Trusted Firmware-A (TF-A) implements a subset of the Trusted Board Boot
11Requirements (TBBR) Platform Design Document (PDD) [1]_ for Arm reference
Douglas Raillardd7c21b72017-06-28 15:23:03 +010012platforms. The TBB sequence starts when the platform is powered on and runs up
13to the stage where it hands-off control to firmware running in the normal
14world in DRAM. This is the cold boot path.
15
Dan Handley610e7e12018-03-01 18:44:00 +000016TF-A also implements the Power State Coordination Interface PDD [2]_ as a
17runtime service. PSCI is the interface from normal world software to firmware
18implementing power management use-cases (for example, secondary CPU boot,
19hotplug and idle). Normal world software can access TF-A runtime services via
20the Arm SMC (Secure Monitor Call) instruction. The SMC instruction must be
21used as mandated by the SMC Calling Convention [3]_.
Douglas Raillardd7c21b72017-06-28 15:23:03 +010022
Dan Handley610e7e12018-03-01 18:44:00 +000023TF-A implements a framework for configuring and managing interrupts generated
24in either security state. The details of the interrupt management framework
25and its design can be found in TF-A Interrupt Management Design guide [4]_.
Douglas Raillardd7c21b72017-06-28 15:23:03 +010026
Dan Handley610e7e12018-03-01 18:44:00 +000027TF-A also implements a library for setting up and managing the translation
28tables. The details of this library can be found in `Xlat_tables design`_.
Antonio Nino Diazb5d68092017-05-23 11:49:22 +010029
Dan Handley610e7e12018-03-01 18:44:00 +000030TF-A can be built to support either AArch64 or AArch32 execution state.
Douglas Raillardd7c21b72017-06-28 15:23:03 +010031
32Cold boot
33---------
34
35The cold boot path starts when the platform is physically turned on. If
36``COLD_BOOT_SINGLE_CPU=0``, one of the CPUs released from reset is chosen as the
37primary CPU, and the remaining CPUs are considered secondary CPUs. The primary
38CPU is chosen through platform-specific means. The cold boot path is mainly
39executed by the primary CPU, other than essential CPU initialization executed by
40all CPUs. The secondary CPUs are kept in a safe platform-specific state until
41the primary CPU has performed enough initialization to boot them.
42
43Refer to the `Reset Design`_ for more information on the effect of the
44``COLD_BOOT_SINGLE_CPU`` platform build option.
45
Dan Handley610e7e12018-03-01 18:44:00 +000046The cold boot path in this implementation of TF-A depends on the execution
47state. For AArch64, it is divided into five steps (in order of execution):
Douglas Raillardd7c21b72017-06-28 15:23:03 +010048
49- Boot Loader stage 1 (BL1) *AP Trusted ROM*
50- Boot Loader stage 2 (BL2) *Trusted Boot Firmware*
51- Boot Loader stage 3-1 (BL31) *EL3 Runtime Software*
52- Boot Loader stage 3-2 (BL32) *Secure-EL1 Payload* (optional)
53- Boot Loader stage 3-3 (BL33) *Non-trusted Firmware*
54
55For AArch32, it is divided into four steps (in order of execution):
56
57- Boot Loader stage 1 (BL1) *AP Trusted ROM*
58- Boot Loader stage 2 (BL2) *Trusted Boot Firmware*
59- Boot Loader stage 3-2 (BL32) *EL3 Runtime Software*
60- Boot Loader stage 3-3 (BL33) *Non-trusted Firmware*
61
Dan Handley610e7e12018-03-01 18:44:00 +000062Arm development platforms (Fixed Virtual Platforms (FVPs) and Juno) implement a
Douglas Raillardd7c21b72017-06-28 15:23:03 +010063combination of the following types of memory regions. Each bootloader stage uses
64one or more of these memory regions.
65
66- Regions accessible from both non-secure and secure states. For example,
67 non-trusted SRAM, ROM and DRAM.
68- Regions accessible from only the secure state. For example, trusted SRAM and
69 ROM. The FVPs also implement the trusted DRAM which is statically
70 configured. Additionally, the Base FVPs and Juno development platform
71 configure the TrustZone Controller (TZC) to create a region in the DRAM
72 which is accessible only from the secure state.
73
74The sections below provide the following details:
75
Soby Mathewb1bf0442018-02-16 14:52:52 +000076- dynamic configuration of Boot Loader stages
Douglas Raillardd7c21b72017-06-28 15:23:03 +010077- initialization and execution of the first three stages during cold boot
78- specification of the EL3 Runtime Software (BL31 for AArch64 and BL32 for
79 AArch32) entrypoint requirements for use by alternative Trusted Boot
80 Firmware in place of the provided BL1 and BL2
81
Soby Mathewb1bf0442018-02-16 14:52:52 +000082Dynamic Configuration during cold boot
83~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
84
85Each of the Boot Loader stages may be dynamically configured if required by the
86platform. The Boot Loader stage may optionally specify a firmware
87configuration file and/or hardware configuration file as listed below:
88
89- HW_CONFIG - The hardware configuration file. Can be shared by all Boot Loader
90 stages and also by the Normal World Rich OS.
91- TB_FW_CONFIG - Trusted Boot Firmware configuration file. Shared between BL1
92 and BL2.
93- SOC_FW_CONFIG - SoC Firmware configuration file. Used by BL31.
94- TOS_FW_CONFIG - Trusted OS Firmware configuration file. Used by Trusted OS
95 (BL32).
96- NT_FW_CONFIG - Non Trusted Firmware configuration file. Used by Non-trusted
97 firmware (BL33).
98
99The Arm development platforms use the Flattened Device Tree format for the
100dynamic configuration files.
101
102Each Boot Loader stage can pass up to 4 arguments via registers to the next
103stage. BL2 passes the list of the next images to execute to the *EL3 Runtime
104Software* (BL31 for AArch64 and BL32 for AArch32) via `arg0`. All the other
105arguments are platform defined. The Arm development platforms use the following
106convention:
107
108- BL1 passes the address of a meminfo_t structure to BL2 via ``arg1``. This
109 structure contains the memory layout available to BL2.
110- When dynamic configuration files are present, the firmware configuration for
111 the next Boot Loader stage is populated in the first available argument and
112 the generic hardware configuration is passed the next available argument.
113 For example,
114
115 - If TB_FW_CONFIG is loaded by BL1, then its address is passed in ``arg0``
116 to BL2.
117 - If HW_CONFIG is loaded by BL1, then its address is passed in ``arg2`` to
118 BL2. Note, ``arg1`` is already used for meminfo_t.
119 - If SOC_FW_CONFIG is loaded by BL2, then its address is passed in ``arg1``
120 to BL31. Note, ``arg0`` is used to pass the list of executable images.
121 - Similarly, if HW_CONFIG is loaded by BL1 or BL2, then its address is
122 passed in ``arg2`` to BL31.
123 - For other BL3x images, if the firmware configuration file is loaded by
124 BL2, then its address is passed in ``arg0`` and if HW_CONFIG is loaded
125 then its address is passed in ``arg1``.
126
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100127BL1
128~~~
129
130This stage begins execution from the platform's reset vector at EL3. The reset
131address is platform dependent but it is usually located in a Trusted ROM area.
132The BL1 data section is copied to trusted SRAM at runtime.
133
Dan Handley610e7e12018-03-01 18:44:00 +0000134On the Arm development platforms, BL1 code starts execution from the reset
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100135vector defined by the constant ``BL1_RO_BASE``. The BL1 data section is copied
136to the top of trusted SRAM as defined by the constant ``BL1_RW_BASE``.
137
138The functionality implemented by this stage is as follows.
139
140Determination of boot path
141^^^^^^^^^^^^^^^^^^^^^^^^^^
142
143Whenever a CPU is released from reset, BL1 needs to distinguish between a warm
144boot and a cold boot. This is done using platform-specific mechanisms (see the
145``plat_get_my_entrypoint()`` function in the `Porting Guide`_). In the case of a
146warm boot, a CPU is expected to continue execution from a separate
147entrypoint. In the case of a cold boot, the secondary CPUs are placed in a safe
148platform-specific state (see the ``plat_secondary_cold_boot_setup()`` function in
149the `Porting Guide`_) while the primary CPU executes the remaining cold boot path
150as described in the following sections.
151
152This step only applies when ``PROGRAMMABLE_RESET_ADDRESS=0``. Refer to the
153`Reset Design`_ for more information on the effect of the
154``PROGRAMMABLE_RESET_ADDRESS`` platform build option.
155
156Architectural initialization
157^^^^^^^^^^^^^^^^^^^^^^^^^^^^
158
159BL1 performs minimal architectural initialization as follows.
160
161- Exception vectors
162
163 BL1 sets up simple exception vectors for both synchronous and asynchronous
164 exceptions. The default behavior upon receiving an exception is to populate
165 a status code in the general purpose register ``X0/R0`` and call the
166 ``plat_report_exception()`` function (see the `Porting Guide`_). The status
167 code is one of:
168
169 For AArch64:
170
171 ::
172
173 0x0 : Synchronous exception from Current EL with SP_EL0
174 0x1 : IRQ exception from Current EL with SP_EL0
175 0x2 : FIQ exception from Current EL with SP_EL0
176 0x3 : System Error exception from Current EL with SP_EL0
177 0x4 : Synchronous exception from Current EL with SP_ELx
178 0x5 : IRQ exception from Current EL with SP_ELx
179 0x6 : FIQ exception from Current EL with SP_ELx
180 0x7 : System Error exception from Current EL with SP_ELx
181 0x8 : Synchronous exception from Lower EL using aarch64
182 0x9 : IRQ exception from Lower EL using aarch64
183 0xa : FIQ exception from Lower EL using aarch64
184 0xb : System Error exception from Lower EL using aarch64
185 0xc : Synchronous exception from Lower EL using aarch32
186 0xd : IRQ exception from Lower EL using aarch32
187 0xe : FIQ exception from Lower EL using aarch32
188 0xf : System Error exception from Lower EL using aarch32
189
190 For AArch32:
191
192 ::
193
194 0x10 : User mode
195 0x11 : FIQ mode
196 0x12 : IRQ mode
197 0x13 : SVC mode
198 0x16 : Monitor mode
199 0x17 : Abort mode
200 0x1a : Hypervisor mode
201 0x1b : Undefined mode
202 0x1f : System mode
203
Dan Handley610e7e12018-03-01 18:44:00 +0000204 The ``plat_report_exception()`` implementation on the Arm FVP port programs
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100205 the Versatile Express System LED register in the following format to
206 indicate the occurence of an unexpected exception:
207
208 ::
209
210 SYS_LED[0] - Security state (Secure=0/Non-Secure=1)
211 SYS_LED[2:1] - Exception Level (EL3=0x3, EL2=0x2, EL1=0x1, EL0=0x0)
212 For AArch32 it is always 0x0
213 SYS_LED[7:3] - Exception Class (Sync/Async & origin). This is the value
214 of the status code
215
216 A write to the LED register reflects in the System LEDs (S6LED0..7) in the
217 CLCD window of the FVP.
218
219 BL1 does not expect to receive any exceptions other than the SMC exception.
220 For the latter, BL1 installs a simple stub. The stub expects to receive a
221 limited set of SMC types (determined by their function IDs in the general
222 purpose register ``X0/R0``):
223
224 - ``BL1_SMC_RUN_IMAGE``: This SMC is raised by BL2 to make BL1 pass control
225 to EL3 Runtime Software.
226 - All SMCs listed in section "BL1 SMC Interface" in the `Firmware Update`_
227 Design Guide are supported for AArch64 only. These SMCs are currently
228 not supported when BL1 is built for AArch32.
229
230 Any other SMC leads to an assertion failure.
231
232- CPU initialization
233
234 BL1 calls the ``reset_handler()`` function which in turn calls the CPU
235 specific reset handler function (see the section: "CPU specific operations
236 framework").
237
238- Control register setup (for AArch64)
239
240 - ``SCTLR_EL3``. Instruction cache is enabled by setting the ``SCTLR_EL3.I``
241 bit. Alignment and stack alignment checking is enabled by setting the
242 ``SCTLR_EL3.A`` and ``SCTLR_EL3.SA`` bits. Exception endianness is set to
243 little-endian by clearing the ``SCTLR_EL3.EE`` bit.
244
245 - ``SCR_EL3``. The register width of the next lower exception level is set
246 to AArch64 by setting the ``SCR.RW`` bit. The ``SCR.EA`` bit is set to trap
247 both External Aborts and SError Interrupts in EL3. The ``SCR.SIF`` bit is
248 also set to disable instruction fetches from Non-secure memory when in
249 secure state.
250
251 - ``CPTR_EL3``. Accesses to the ``CPACR_EL1`` register from EL1 or EL2, or the
252 ``CPTR_EL2`` register from EL2 are configured to not trap to EL3 by
253 clearing the ``CPTR_EL3.TCPAC`` bit. Access to the trace functionality is
254 configured not to trap to EL3 by clearing the ``CPTR_EL3.TTA`` bit.
255 Instructions that access the registers associated with Floating Point
256 and Advanced SIMD execution are configured to not trap to EL3 by
257 clearing the ``CPTR_EL3.TFP`` bit.
258
259 - ``DAIF``. The SError interrupt is enabled by clearing the SError interrupt
260 mask bit.
261
262 - ``MDCR_EL3``. The trap controls, ``MDCR_EL3.TDOSA``, ``MDCR_EL3.TDA`` and
263 ``MDCR_EL3.TPM``, are set so that accesses to the registers they control
264 do not trap to EL3. AArch64 Secure self-hosted debug is disabled by
265 setting the ``MDCR_EL3.SDD`` bit. Also ``MDCR_EL3.SPD32`` is set to
266 disable AArch32 Secure self-hosted privileged debug from S-EL1.
267
268- Control register setup (for AArch32)
269
270 - ``SCTLR``. Instruction cache is enabled by setting the ``SCTLR.I`` bit.
271 Alignment checking is enabled by setting the ``SCTLR.A`` bit.
272 Exception endianness is set to little-endian by clearing the
273 ``SCTLR.EE`` bit.
274
275 - ``SCR``. The ``SCR.SIF`` bit is set to disable instruction fetches from
276 Non-secure memory when in secure state.
277
278 - ``CPACR``. Allow execution of Advanced SIMD instructions at PL0 and PL1,
279 by clearing the ``CPACR.ASEDIS`` bit. Access to the trace functionality
280 is configured not to trap to undefined mode by clearing the
281 ``CPACR.TRCDIS`` bit.
282
283 - ``NSACR``. Enable non-secure access to Advanced SIMD functionality and
284 system register access to implemented trace registers.
285
286 - ``FPEXC``. Enable access to the Advanced SIMD and floating-point
287 functionality from all Exception levels.
288
289 - ``CPSR.A``. The Asynchronous data abort interrupt is enabled by clearing
290 the Asynchronous data abort interrupt mask bit.
291
292 - ``SDCR``. The ``SDCR.SPD`` field is set to disable AArch32 Secure
293 self-hosted privileged debug.
294
295Platform initialization
296^^^^^^^^^^^^^^^^^^^^^^^
297
Dan Handley610e7e12018-03-01 18:44:00 +0000298On Arm platforms, BL1 performs the following platform initializations:
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100299
300- Enable the Trusted Watchdog.
301- Initialize the console.
302- Configure the Interconnect to enable hardware coherency.
303- Enable the MMU and map the memory it needs to access.
304- Configure any required platform storage to load the next bootloader image
305 (BL2).
Soby Mathewb1bf0442018-02-16 14:52:52 +0000306- If the BL1 dynamic configuration file, ``TB_FW_CONFIG``, is available, then
307 load it to the platform defined address and make it available to BL2 via
308 ``arg0``.
Soby Mathewd969a7e2018-06-11 16:40:36 +0100309- Configure the system timer and program the `CNTFRQ_EL0` for use by NS-BL1U
310 and NS-BL2U firmware update images.
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100311
312Firmware Update detection and execution
313^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
314
315After performing platform setup, BL1 common code calls
316``bl1_plat_get_next_image_id()`` to determine if `Firmware Update`_ is required or
317to proceed with the normal boot process. If the platform code returns
318``BL2_IMAGE_ID`` then the normal boot sequence is executed as described in the
319next section, else BL1 assumes that `Firmware Update`_ is required and execution
320passes to the first image in the `Firmware Update`_ process. In either case, BL1
321retrieves a descriptor of the next image by calling ``bl1_plat_get_image_desc()``.
322The image descriptor contains an ``entry_point_info_t`` structure, which BL1
323uses to initialize the execution state of the next image.
324
325BL2 image load and execution
326^^^^^^^^^^^^^^^^^^^^^^^^^^^^
327
328In the normal boot flow, BL1 execution continues as follows:
329
330#. BL1 prints the following string from the primary CPU to indicate successful
331 execution of the BL1 stage:
332
333 ::
334
335 "Booting Trusted Firmware"
336
Soby Mathewb1bf0442018-02-16 14:52:52 +0000337#. BL1 loads a BL2 raw binary image from platform storage, at a
338 platform-specific base address. Prior to the load, BL1 invokes
339 ``bl1_plat_handle_pre_image_load()`` which allows the platform to update or
340 use the image information. If the BL2 image file is not present or if
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100341 there is not enough free trusted SRAM the following error message is
342 printed:
343
344 ::
345
346 "Failed to load BL2 firmware."
347
Soby Mathewb1bf0442018-02-16 14:52:52 +0000348#. BL1 invokes ``bl1_plat_handle_post_image_load()`` which again is intended
349 for platforms to take further action after image load. This function must
350 populate the necessary arguments for BL2, which may also include the memory
351 layout. Further description of the memory layout can be found later
352 in this document.
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100353
354#. BL1 passes control to the BL2 image at Secure EL1 (for AArch64) or at
355 Secure SVC mode (for AArch32), starting from its load address.
356
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100357BL2
358~~~
359
360BL1 loads and passes control to BL2 at Secure-EL1 (for AArch64) or at Secure
361SVC mode (for AArch32) . BL2 is linked against and loaded at a platform-specific
362base address (more information can be found later in this document).
363The functionality implemented by BL2 is as follows.
364
365Architectural initialization
366^^^^^^^^^^^^^^^^^^^^^^^^^^^^
367
368For AArch64, BL2 performs the minimal architectural initialization required
Dan Handley610e7e12018-03-01 18:44:00 +0000369for subsequent stages of TF-A and normal world software. EL1 and EL0 are given
370access to Floating Point and Advanced SIMD registers by clearing the
371``CPACR.FPEN`` bits.
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100372
373For AArch32, the minimal architectural initialization required for subsequent
Dan Handley610e7e12018-03-01 18:44:00 +0000374stages of TF-A and normal world software is taken care of in BL1 as both BL1
375and BL2 execute at PL1.
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100376
377Platform initialization
378^^^^^^^^^^^^^^^^^^^^^^^
379
Dan Handley610e7e12018-03-01 18:44:00 +0000380On Arm platforms, BL2 performs the following platform initializations:
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100381
382- Initialize the console.
383- Configure any required platform storage to allow loading further bootloader
384 images.
385- Enable the MMU and map the memory it needs to access.
386- Perform platform security setup to allow access to controlled components.
387- Reserve some memory for passing information to the next bootloader image
388 EL3 Runtime Software and populate it.
389- Define the extents of memory available for loading each subsequent
390 bootloader image.
Soby Mathewb1bf0442018-02-16 14:52:52 +0000391- If BL1 has passed TB_FW_CONFIG dynamic configuration file in ``arg0``,
392 then parse it.
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100393
394Image loading in BL2
395^^^^^^^^^^^^^^^^^^^^
396
397Image loading scheme in BL2 depends on ``LOAD_IMAGE_V2`` build option. If the
398flag is disabled, the BLxx images are loaded, by calling the respective
399load\_blxx() function from BL2 generic code. If the flag is enabled, the BL2
400generic code loads the images based on the list of loadable images provided
401by the platform. BL2 passes the list of executable images provided by the
402platform to the next handover BL image. By default, this flag is disabled for
403AArch64 and the AArch32 build is supported only if this flag is enabled.
404
Soby Mathewb1bf0442018-02-16 14:52:52 +0000405The list of loadable images provided by the platform may also contain
406dynamic configuration files. The files are loaded and can be parsed as
407needed in the ``bl2_plat_handle_post_image_load()`` function. These
408configuration files can be passed to next Boot Loader stages as arguments
409by updating the corresponding entrypoint information in this function.
410
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100411SCP\_BL2 (System Control Processor Firmware) image load
412^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
413
414Some systems have a separate System Control Processor (SCP) for power, clock,
415reset and system control. BL2 loads the optional SCP\_BL2 image from platform
416storage into a platform-specific region of secure memory. The subsequent
Dan Handley610e7e12018-03-01 18:44:00 +0000417handling of SCP\_BL2 is platform specific. For example, on the Juno Arm
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100418development platform port the image is transferred into SCP's internal memory
419using the Boot Over MHU (BOM) protocol after being loaded in the trusted SRAM
420memory. The SCP executes SCP\_BL2 and signals to the Application Processor (AP)
421for BL2 execution to continue.
422
423EL3 Runtime Software image load
424^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
425
426BL2 loads the EL3 Runtime Software image from platform storage into a platform-
427specific address in trusted SRAM. If there is not enough memory to load the
428image or image is missing it leads to an assertion failure. If ``LOAD_IMAGE_V2``
429is disabled and if image loads successfully, BL2 updates the amount of trusted
430SRAM used and available for use by EL3 Runtime Software. This information is
431populated at a platform-specific memory address.
432
433AArch64 BL32 (Secure-EL1 Payload) image load
434^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
435
436BL2 loads the optional BL32 image from platform storage into a platform-
437specific region of secure memory. The image executes in the secure world. BL2
438relies on BL31 to pass control to the BL32 image, if present. Hence, BL2
439populates a platform-specific area of memory with the entrypoint/load-address
440of the BL32 image. The value of the Saved Processor Status Register (``SPSR``)
441for entry into BL32 is not determined by BL2, it is initialized by the
442Secure-EL1 Payload Dispatcher (see later) within BL31, which is responsible for
443managing interaction with BL32. This information is passed to BL31.
444
445BL33 (Non-trusted Firmware) image load
446^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
447
448BL2 loads the BL33 image (e.g. UEFI or other test or boot software) from
449platform storage into non-secure memory as defined by the platform.
450
451BL2 relies on EL3 Runtime Software to pass control to BL33 once secure state
452initialization is complete. Hence, BL2 populates a platform-specific area of
453memory with the entrypoint and Saved Program Status Register (``SPSR``) of the
454normal world software image. The entrypoint is the load address of the BL33
455image. The ``SPSR`` is determined as specified in Section 5.13 of the
456`PSCI PDD`_. This information is passed to the EL3 Runtime Software.
457
458AArch64 BL31 (EL3 Runtime Software) execution
459^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
460
461BL2 execution continues as follows:
462
463#. BL2 passes control back to BL1 by raising an SMC, providing BL1 with the
464 BL31 entrypoint. The exception is handled by the SMC exception handler
465 installed by BL1.
466
467#. BL1 turns off the MMU and flushes the caches. It clears the
468 ``SCTLR_EL3.M/I/C`` bits, flushes the data cache to the point of coherency
469 and invalidates the TLBs.
470
471#. BL1 passes control to BL31 at the specified entrypoint at EL3.
472
Roberto Vargasb1584272017-11-20 13:36:10 +0000473Running BL2 at EL3 execution level
474~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
475
Dan Handley610e7e12018-03-01 18:44:00 +0000476Some platforms have a non-TF-A Boot ROM that expects the next boot stage
477to execute at EL3. On these platforms, TF-A BL1 is a waste of memory
478as its only purpose is to ensure TF-A BL2 is entered at S-EL1. To avoid
Roberto Vargasb1584272017-11-20 13:36:10 +0000479this waste, a special mode enables BL2 to execute at EL3, which allows
Dan Handley610e7e12018-03-01 18:44:00 +0000480a non-TF-A Boot ROM to load and jump directly to BL2. This mode is selected
Roberto Vargasb1584272017-11-20 13:36:10 +0000481when the build flag BL2_AT_EL3 is enabled. The main differences in this
482mode are:
483
484#. BL2 includes the reset code and the mailbox mechanism to differentiate
485 cold boot and warm boot. It runs at EL3 doing the arch
486 initialization required for EL3.
487
488#. BL2 does not receive the meminfo information from BL1 anymore. This
489 information can be passed by the Boot ROM or be internal to the
490 BL2 image.
491
492#. Since BL2 executes at EL3, BL2 jumps directly to the next image,
493 instead of invoking the RUN_IMAGE SMC call.
494
495
496We assume 3 different types of BootROM support on the platform:
497
498#. The Boot ROM always jumps to the same address, for both cold
499 and warm boot. In this case, we will need to keep a resident part
500 of BL2 whose memory cannot be reclaimed by any other image. The
501 linker script defines the symbols __TEXT_RESIDENT_START__ and
502 __TEXT_RESIDENT_END__ that allows the platform to configure
503 correctly the memory map.
504#. The platform has some mechanism to indicate the jump address to the
505 Boot ROM. Platform code can then program the jump address with
506 psci_warmboot_entrypoint during cold boot.
507#. The platform has some mechanism to program the reset address using
508 the PROGRAMMABLE_RESET_ADDRESS feature. Platform code can then
509 program the reset address with psci_warmboot_entrypoint during
510 cold boot, bypassing the boot ROM for warm boot.
511
512In the last 2 cases, no part of BL2 needs to remain resident at
513runtime. In the first 2 cases, we expect the Boot ROM to be able to
514differentiate between warm and cold boot, to avoid loading BL2 again
515during warm boot.
516
517This functionality can be tested with FVP loading the image directly
518in memory and changing the address where the system jumps at reset.
519For example:
520
Dimitris Papastamos25836492018-06-11 11:07:58 +0100521 -C cluster0.cpu0.RVBAR=0x4022000
522 --data cluster0.cpu0=bl2.bin@0x4022000
Roberto Vargasb1584272017-11-20 13:36:10 +0000523
524With this configuration, FVP is like a platform of the first case,
525where the Boot ROM jumps always to the same address. For simplification,
526BL32 is loaded in DRAM in this case, to avoid other images reclaiming
527BL2 memory.
528
529
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100530AArch64 BL31
531~~~~~~~~~~~~
532
533The image for this stage is loaded by BL2 and BL1 passes control to BL31 at
534EL3. BL31 executes solely in trusted SRAM. BL31 is linked against and
535loaded at a platform-specific base address (more information can be found later
536in this document). The functionality implemented by BL31 is as follows.
537
538Architectural initialization
539^^^^^^^^^^^^^^^^^^^^^^^^^^^^
540
541Currently, BL31 performs a similar architectural initialization to BL1 as
542far as system register settings are concerned. Since BL1 code resides in ROM,
543architectural initialization in BL31 allows override of any previous
544initialization done by BL1.
545
546BL31 initializes the per-CPU data framework, which provides a cache of
547frequently accessed per-CPU data optimised for fast, concurrent manipulation
548on different CPUs. This buffer includes pointers to per-CPU contexts, crash
549buffer, CPU reset and power down operations, PSCI data, platform data and so on.
550
551It then replaces the exception vectors populated by BL1 with its own. BL31
552exception vectors implement more elaborate support for handling SMCs since this
553is the only mechanism to access the runtime services implemented by BL31 (PSCI
554for example). BL31 checks each SMC for validity as specified by the
555`SMC calling convention PDD`_ before passing control to the required SMC
556handler routine.
557
558BL31 programs the ``CNTFRQ_EL0`` register with the clock frequency of the system
559counter, which is provided by the platform.
560
561Platform initialization
562^^^^^^^^^^^^^^^^^^^^^^^
563
564BL31 performs detailed platform initialization, which enables normal world
565software to function correctly.
566
Dan Handley610e7e12018-03-01 18:44:00 +0000567On Arm platforms, this consists of the following:
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100568
569- Initialize the console.
570- Configure the Interconnect to enable hardware coherency.
571- Enable the MMU and map the memory it needs to access.
572- Initialize the generic interrupt controller.
573- Initialize the power controller device.
574- Detect the system topology.
575
576Runtime services initialization
577^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
578
579BL31 is responsible for initializing the runtime services. One of them is PSCI.
580
581As part of the PSCI initializations, BL31 detects the system topology. It also
582initializes the data structures that implement the state machine used to track
583the state of power domain nodes. The state can be one of ``OFF``, ``RUN`` or
584``RETENTION``. All secondary CPUs are initially in the ``OFF`` state. The cluster
585that the primary CPU belongs to is ``ON``; any other cluster is ``OFF``. It also
586initializes the locks that protect them. BL31 accesses the state of a CPU or
587cluster immediately after reset and before the data cache is enabled in the
588warm boot path. It is not currently possible to use 'exclusive' based spinlocks,
589therefore BL31 uses locks based on Lamport's Bakery algorithm instead.
590
591The runtime service framework and its initialization is described in more
592detail in the "EL3 runtime services framework" section below.
593
594Details about the status of the PSCI implementation are provided in the
595"Power State Coordination Interface" section below.
596
597AArch64 BL32 (Secure-EL1 Payload) image initialization
598^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
599
600If a BL32 image is present then there must be a matching Secure-EL1 Payload
601Dispatcher (SPD) service (see later for details). During initialization
602that service must register a function to carry out initialization of BL32
603once the runtime services are fully initialized. BL31 invokes such a
604registered function to initialize BL32 before running BL33. This initialization
605is not necessary for AArch32 SPs.
606
607Details on BL32 initialization and the SPD's role are described in the
608"Secure-EL1 Payloads and Dispatchers" section below.
609
610BL33 (Non-trusted Firmware) execution
611^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
612
613EL3 Runtime Software initializes the EL2 or EL1 processor context for normal-
614world cold boot, ensuring that no secure state information finds its way into
615the non-secure execution state. EL3 Runtime Software uses the entrypoint
616information provided by BL2 to jump to the Non-trusted firmware image (BL33)
617at the highest available Exception Level (EL2 if available, otherwise EL1).
618
619Using alternative Trusted Boot Firmware in place of BL1 & BL2 (AArch64 only)
620~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
621
622Some platforms have existing implementations of Trusted Boot Firmware that
Dan Handley610e7e12018-03-01 18:44:00 +0000623would like to use TF-A BL31 for the EL3 Runtime Software. To enable this
624firmware architecture it is important to provide a fully documented and stable
625interface between the Trusted Boot Firmware and BL31.
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100626
627Future changes to the BL31 interface will be done in a backwards compatible
628way, and this enables these firmware components to be independently enhanced/
629updated to develop and exploit new functionality.
630
631Required CPU state when calling ``bl31_entrypoint()`` during cold boot
632^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
633
634This function must only be called by the primary CPU.
635
636On entry to this function the calling primary CPU must be executing in AArch64
637EL3, little-endian data access, and all interrupt sources masked:
638
639::
640
641 PSTATE.EL = 3
642 PSTATE.RW = 1
643 PSTATE.DAIF = 0xf
644 SCTLR_EL3.EE = 0
645
646X0 and X1 can be used to pass information from the Trusted Boot Firmware to the
647platform code in BL31:
648
649::
650
Dan Handley610e7e12018-03-01 18:44:00 +0000651 X0 : Reserved for common TF-A information
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100652 X1 : Platform specific information
653
654BL31 zero-init sections (e.g. ``.bss``) should not contain valid data on entry,
655these will be zero filled prior to invoking platform setup code.
656
657Use of the X0 and X1 parameters
658'''''''''''''''''''''''''''''''
659
660The parameters are platform specific and passed from ``bl31_entrypoint()`` to
661``bl31_early_platform_setup()``. The value of these parameters is never directly
662used by the common BL31 code.
663
664The convention is that ``X0`` conveys information regarding the BL31, BL32 and
665BL33 images from the Trusted Boot firmware and ``X1`` can be used for other
Dan Handley610e7e12018-03-01 18:44:00 +0000666platform specific purpose. This convention allows platforms which use TF-A's
667BL1 and BL2 images to transfer additional platform specific information from
668Secure Boot without conflicting with future evolution of TF-A using ``X0`` to
669pass a ``bl31_params`` structure.
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100670
671BL31 common and SPD initialization code depends on image and entrypoint
672information about BL33 and BL32, which is provided via BL31 platform APIs.
673This information is required until the start of execution of BL33. This
674information can be provided in a platform defined manner, e.g. compiled into
675the platform code in BL31, or provided in a platform defined memory location
676by the Trusted Boot firmware, or passed from the Trusted Boot Firmware via the
677Cold boot Initialization parameters. This data may need to be cleaned out of
678the CPU caches if it is provided by an earlier boot stage and then accessed by
679BL31 platform code before the caches are enabled.
680
Dan Handley610e7e12018-03-01 18:44:00 +0000681TF-A's BL2 implementation passes a ``bl31_params`` structure in
682``X0`` and the Arm development platforms interpret this in the BL31 platform
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100683code.
684
685MMU, Data caches & Coherency
686''''''''''''''''''''''''''''
687
688BL31 does not depend on the enabled state of the MMU, data caches or
689interconnect coherency on entry to ``bl31_entrypoint()``. If these are disabled
690on entry, these should be enabled during ``bl31_plat_arch_setup()``.
691
692Data structures used in the BL31 cold boot interface
693''''''''''''''''''''''''''''''''''''''''''''''''''''
694
695These structures are designed to support compatibility and independent
696evolution of the structures and the firmware images. For example, a version of
697BL31 that can interpret the BL3x image information from different versions of
698BL2, a platform that uses an extended entry\_point\_info structure to convey
699additional register information to BL31, or a ELF image loader that can convey
700more details about the firmware images.
701
702To support these scenarios the structures are versioned and sized, which enables
703BL31 to detect which information is present and respond appropriately. The
704``param_header`` is defined to capture this information:
705
706.. code:: c
707
708 typedef struct param_header {
709 uint8_t type; /* type of the structure */
710 uint8_t version; /* version of this structure */
711 uint16_t size; /* size of this structure in bytes */
712 uint32_t attr; /* attributes: unused bits SBZ */
713 } param_header_t;
714
715The structures using this format are ``entry_point_info``, ``image_info`` and
716``bl31_params``. The code that allocates and populates these structures must set
717the header fields appropriately, and the ``SET_PARAM_HEAD()`` a macro is defined
718to simplify this action.
719
720Required CPU state for BL31 Warm boot initialization
721^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
722
Dan Handley610e7e12018-03-01 18:44:00 +0000723When requesting a CPU power-on, or suspending a running CPU, TF-A provides
724the platform power management code with a Warm boot initialization
725entry-point, to be invoked by the CPU immediately after the reset handler.
726On entry to the Warm boot initialization function the calling CPU must be in
727AArch64 EL3, little-endian data access and all interrupt sources masked:
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100728
729::
730
731 PSTATE.EL = 3
732 PSTATE.RW = 1
733 PSTATE.DAIF = 0xf
734 SCTLR_EL3.EE = 0
735
736The PSCI implementation will initialize the processor state and ensure that the
737platform power management code is then invoked as required to initialize all
738necessary system, cluster and CPU resources.
739
740AArch32 EL3 Runtime Software entrypoint interface
741~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
742
743To enable this firmware architecture it is important to provide a fully
744documented and stable interface between the Trusted Boot Firmware and the
745AArch32 EL3 Runtime Software.
746
747Future changes to the entrypoint interface will be done in a backwards
748compatible way, and this enables these firmware components to be independently
749enhanced/updated to develop and exploit new functionality.
750
751Required CPU state when entering during cold boot
752^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
753
754This function must only be called by the primary CPU.
755
756On entry to this function the calling primary CPU must be executing in AArch32
757EL3, little-endian data access, and all interrupt sources masked:
758
759::
760
761 PSTATE.AIF = 0x7
762 SCTLR.EE = 0
763
764R0 and R1 are used to pass information from the Trusted Boot Firmware to the
765platform code in AArch32 EL3 Runtime Software:
766
767::
768
Dan Handley610e7e12018-03-01 18:44:00 +0000769 R0 : Reserved for common TF-A information
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100770 R1 : Platform specific information
771
772Use of the R0 and R1 parameters
773'''''''''''''''''''''''''''''''
774
775The parameters are platform specific and the convention is that ``R0`` conveys
776information regarding the BL3x images from the Trusted Boot firmware and ``R1``
777can be used for other platform specific purpose. This convention allows
Dan Handley610e7e12018-03-01 18:44:00 +0000778platforms which use TF-A's BL1 and BL2 images to transfer additional platform
779specific information from Secure Boot without conflicting with future
780evolution of TF-A using ``R0`` to pass a ``bl_params`` structure.
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100781
782The AArch32 EL3 Runtime Software is responsible for entry into BL33. This
783information can be obtained in a platform defined manner, e.g. compiled into
784the AArch32 EL3 Runtime Software, or provided in a platform defined memory
785location by the Trusted Boot firmware, or passed from the Trusted Boot Firmware
786via the Cold boot Initialization parameters. This data may need to be cleaned
787out of the CPU caches if it is provided by an earlier boot stage and then
788accessed by AArch32 EL3 Runtime Software before the caches are enabled.
789
Dan Handley610e7e12018-03-01 18:44:00 +0000790When using AArch32 EL3 Runtime Software, the Arm development platforms pass a
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100791``bl_params`` structure in ``R0`` from BL2 to be interpreted by AArch32 EL3 Runtime
792Software platform code.
793
794MMU, Data caches & Coherency
795''''''''''''''''''''''''''''
796
797AArch32 EL3 Runtime Software must not depend on the enabled state of the MMU,
798data caches or interconnect coherency in its entrypoint. They must be explicitly
799enabled if required.
800
801Data structures used in cold boot interface
802'''''''''''''''''''''''''''''''''''''''''''
803
804The AArch32 EL3 Runtime Software cold boot interface uses ``bl_params`` instead
805of ``bl31_params``. The ``bl_params`` structure is based on the convention
806described in AArch64 BL31 cold boot interface section.
807
808Required CPU state for warm boot initialization
809^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
810
811When requesting a CPU power-on, or suspending a running CPU, AArch32 EL3
812Runtime Software must ensure execution of a warm boot initialization entrypoint.
Dan Handley610e7e12018-03-01 18:44:00 +0000813If TF-A BL1 is used and the PROGRAMMABLE\_RESET\_ADDRESS build flag is false,
814then AArch32 EL3 Runtime Software must ensure that BL1 branches to the warm
815boot entrypoint by arranging for the BL1 platform function,
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100816plat\_get\_my\_entrypoint(), to return a non-zero value.
817
818In this case, the warm boot entrypoint must be in AArch32 EL3, little-endian
819data access and all interrupt sources masked:
820
821::
822
823 PSTATE.AIF = 0x7
824 SCTLR.EE = 0
825
Dan Handley610e7e12018-03-01 18:44:00 +0000826The warm boot entrypoint may be implemented by using TF-A
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100827``psci_warmboot_entrypoint()`` function. In that case, the platform must fulfil
828the pre-requisites mentioned in the `PSCI Library integration guide`_.
829
830EL3 runtime services framework
831------------------------------
832
833Software executing in the non-secure state and in the secure state at exception
834levels lower than EL3 will request runtime services using the Secure Monitor
835Call (SMC) instruction. These requests will follow the convention described in
836the SMC Calling Convention PDD (`SMCCC`_). The `SMCCC`_ assigns function
837identifiers to each SMC request and describes how arguments are passed and
838returned.
839
840The EL3 runtime services framework enables the development of services by
841different providers that can be easily integrated into final product firmware.
842The following sections describe the framework which facilitates the
843registration, initialization and use of runtime services in EL3 Runtime
844Software (BL31).
845
846The design of the runtime services depends heavily on the concepts and
847definitions described in the `SMCCC`_, in particular SMC Function IDs, Owning
848Entity Numbers (OEN), Fast and Yielding calls, and the SMC32 and SMC64 calling
849conventions. Please refer to that document for more detailed explanation of
850these terms.
851
852The following runtime services are expected to be implemented first. They have
853not all been instantiated in the current implementation.
854
855#. Standard service calls
856
857 This service is for management of the entire system. The Power State
858 Coordination Interface (`PSCI`_) is the first set of standard service calls
Dan Handley610e7e12018-03-01 18:44:00 +0000859 defined by Arm (see PSCI section later).
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100860
861#. Secure-EL1 Payload Dispatcher service
862
863 If a system runs a Trusted OS or other Secure-EL1 Payload (SP) then
864 it also requires a *Secure Monitor* at EL3 to switch the EL1 processor
865 context between the normal world (EL1/EL2) and trusted world (Secure-EL1).
866 The Secure Monitor will make these world switches in response to SMCs. The
867 `SMCCC`_ provides for such SMCs with the Trusted OS Call and Trusted
868 Application Call OEN ranges.
869
870 The interface between the EL3 Runtime Software and the Secure-EL1 Payload is
871 not defined by the `SMCCC`_ or any other standard. As a result, each
872 Secure-EL1 Payload requires a specific Secure Monitor that runs as a runtime
Dan Handley610e7e12018-03-01 18:44:00 +0000873 service - within TF-A this service is referred to as the Secure-EL1 Payload
874 Dispatcher (SPD).
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100875
Dan Handley610e7e12018-03-01 18:44:00 +0000876 TF-A provides a Test Secure-EL1 Payload (TSP) and its associated Dispatcher
877 (TSPD). Details of SPD design and TSP/TSPD operation are described in the
878 "Secure-EL1 Payloads and Dispatchers" section below.
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100879
880#. CPU implementation service
881
882 This service will provide an interface to CPU implementation specific
883 services for a given platform e.g. access to processor errata workarounds.
884 This service is currently unimplemented.
885
Dan Handley610e7e12018-03-01 18:44:00 +0000886Additional services for Arm Architecture, SiP and OEM calls can be implemented.
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100887Each implemented service handles a range of SMC function identifiers as
888described in the `SMCCC`_.
889
890Registration
891~~~~~~~~~~~~
892
893A runtime service is registered using the ``DECLARE_RT_SVC()`` macro, specifying
894the name of the service, the range of OENs covered, the type of service and
895initialization and call handler functions. This macro instantiates a ``const struct rt_svc_desc`` for the service with these details (see ``runtime_svc.h``).
896This structure is allocated in a special ELF section ``rt_svc_descs``, enabling
897the framework to find all service descriptors included into BL31.
898
899The specific service for a SMC Function is selected based on the OEN and call
900type of the Function ID, and the framework uses that information in the service
901descriptor to identify the handler for the SMC Call.
902
903The service descriptors do not include information to identify the precise set
904of SMC function identifiers supported by this service implementation, the
905security state from which such calls are valid nor the capability to support
90664-bit and/or 32-bit callers (using SMC32 or SMC64). Responding appropriately
907to these aspects of a SMC call is the responsibility of the service
908implementation, the framework is focused on integration of services from
909different providers and minimizing the time taken by the framework before the
910service handler is invoked.
911
912Details of the parameters, requirements and behavior of the initialization and
913call handling functions are provided in the following sections.
914
915Initialization
916~~~~~~~~~~~~~~
917
918``runtime_svc_init()`` in ``runtime_svc.c`` initializes the runtime services
919framework running on the primary CPU during cold boot as part of the BL31
920initialization. This happens prior to initializing a Trusted OS and running
921Normal world boot firmware that might in turn use these services.
922Initialization involves validating each of the declared runtime service
923descriptors, calling the service initialization function and populating the
924index used for runtime lookup of the service.
925
926The BL31 linker script collects all of the declared service descriptors into a
927single array and defines symbols that allow the framework to locate and traverse
928the array, and determine its size.
929
930The framework does basic validation of each descriptor to halt firmware
931initialization if service declaration errors are detected. The framework does
932not check descriptors for the following error conditions, and may behave in an
933unpredictable manner under such scenarios:
934
935#. Overlapping OEN ranges
936#. Multiple descriptors for the same range of OENs and ``call_type``
937#. Incorrect range of owning entity numbers for a given ``call_type``
938
939Once validated, the service ``init()`` callback is invoked. This function carries
940out any essential EL3 initialization before servicing requests. The ``init()``
941function is only invoked on the primary CPU during cold boot. If the service
942uses per-CPU data this must either be initialized for all CPUs during this call,
943or be done lazily when a CPU first issues an SMC call to that service. If
944``init()`` returns anything other than ``0``, this is treated as an initialization
945error and the service is ignored: this does not cause the firmware to halt.
946
947The OEN and call type fields present in the SMC Function ID cover a total of
948128 distinct services, but in practice a single descriptor can cover a range of
949OENs, e.g. SMCs to call a Trusted OS function. To optimize the lookup of a
950service handler, the framework uses an array of 128 indices that map every
951distinct OEN/call-type combination either to one of the declared services or to
952indicate the service is not handled. This ``rt_svc_descs_indices[]`` array is
953populated for all of the OENs covered by a service after the service ``init()``
954function has reported success. So a service that fails to initialize will never
955have it's ``handle()`` function invoked.
956
957The following figure shows how the ``rt_svc_descs_indices[]`` index maps the SMC
958Function ID call type and OEN onto a specific service handler in the
959``rt_svc_descs[]`` array.
960
961|Image 1|
962
963Handling an SMC
964~~~~~~~~~~~~~~~
965
966When the EL3 runtime services framework receives a Secure Monitor Call, the SMC
967Function ID is passed in W0 from the lower exception level (as per the
968`SMCCC`_). If the calling register width is AArch32, it is invalid to invoke an
969SMC Function which indicates the SMC64 calling convention: such calls are
970ignored and return the Unknown SMC Function Identifier result code ``0xFFFFFFFF``
971in R0/X0.
972
973Bit[31] (fast/yielding call) and bits[29:24] (owning entity number) of the SMC
974Function ID are combined to index into the ``rt_svc_descs_indices[]`` array. The
975resulting value might indicate a service that has no handler, in this case the
976framework will also report an Unknown SMC Function ID. Otherwise, the value is
977used as a further index into the ``rt_svc_descs[]`` array to locate the required
978service and handler.
979
980The service's ``handle()`` callback is provided with five of the SMC parameters
981directly, the others are saved into memory for retrieval (if needed) by the
982handler. The handler is also provided with an opaque ``handle`` for use with the
983supporting library for parameter retrieval, setting return values and context
984manipulation; and with ``flags`` indicating the security state of the caller. The
985framework finally sets up the execution stack for the handler, and invokes the
986services ``handle()`` function.
987
988On return from the handler the result registers are populated in X0-X3 before
989restoring the stack and CPU state and returning from the original SMC.
990
991Power State Coordination Interface
992----------------------------------
993
994TODO: Provide design walkthrough of PSCI implementation.
995
Roberto Vargasd963e3e2017-09-12 10:28:35 +0100996The PSCI v1.1 specification categorizes APIs as optional and mandatory. All the
997mandatory APIs in PSCI v1.1, PSCI v1.0 and in PSCI v0.2 draft specification
Douglas Raillardd7c21b72017-06-28 15:23:03 +0100998`Power State Coordination Interface PDD`_ are implemented. The table lists
Roberto Vargasd963e3e2017-09-12 10:28:35 +0100999the PSCI v1.1 APIs and their support in generic code.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001000
1001An API implementation might have a dependency on platform code e.g. CPU\_SUSPEND
1002requires the platform to export a part of the implementation. Hence the level
1003of support of the mandatory APIs depends upon the support exported by the
1004platform port as well. The Juno and FVP (all variants) platforms export all the
1005required support.
1006
1007+-----------------------------+-------------+-------------------------------+
Roberto Vargasd963e3e2017-09-12 10:28:35 +01001008| PSCI v1.1 API | Supported | Comments |
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001009+=============================+=============+===============================+
Roberto Vargasd963e3e2017-09-12 10:28:35 +01001010| ``PSCI_VERSION`` | Yes | The version returned is 1.1 |
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001011+-----------------------------+-------------+-------------------------------+
1012| ``CPU_SUSPEND`` | Yes\* | |
1013+-----------------------------+-------------+-------------------------------+
1014| ``CPU_OFF`` | Yes\* | |
1015+-----------------------------+-------------+-------------------------------+
1016| ``CPU_ON`` | Yes\* | |
1017+-----------------------------+-------------+-------------------------------+
1018| ``AFFINITY_INFO`` | Yes | |
1019+-----------------------------+-------------+-------------------------------+
1020| ``MIGRATE`` | Yes\*\* | |
1021+-----------------------------+-------------+-------------------------------+
1022| ``MIGRATE_INFO_TYPE`` | Yes\*\* | |
1023+-----------------------------+-------------+-------------------------------+
1024| ``MIGRATE_INFO_CPU`` | Yes\*\* | |
1025+-----------------------------+-------------+-------------------------------+
1026| ``SYSTEM_OFF`` | Yes\* | |
1027+-----------------------------+-------------+-------------------------------+
1028| ``SYSTEM_RESET`` | Yes\* | |
1029+-----------------------------+-------------+-------------------------------+
1030| ``PSCI_FEATURES`` | Yes | |
1031+-----------------------------+-------------+-------------------------------+
1032| ``CPU_FREEZE`` | No | |
1033+-----------------------------+-------------+-------------------------------+
1034| ``CPU_DEFAULT_SUSPEND`` | No | |
1035+-----------------------------+-------------+-------------------------------+
1036| ``NODE_HW_STATE`` | Yes\* | |
1037+-----------------------------+-------------+-------------------------------+
1038| ``SYSTEM_SUSPEND`` | Yes\* | |
1039+-----------------------------+-------------+-------------------------------+
1040| ``PSCI_SET_SUSPEND_MODE`` | No | |
1041+-----------------------------+-------------+-------------------------------+
1042| ``PSCI_STAT_RESIDENCY`` | Yes\* | |
1043+-----------------------------+-------------+-------------------------------+
1044| ``PSCI_STAT_COUNT`` | Yes\* | |
1045+-----------------------------+-------------+-------------------------------+
Roberto Vargasd963e3e2017-09-12 10:28:35 +01001046| ``SYSTEM_RESET2`` | Yes\* | |
1047+-----------------------------+-------------+-------------------------------+
1048| ``MEM_PROTECT`` | Yes\* | |
1049+-----------------------------+-------------+-------------------------------+
1050| ``MEM_PROTECT_CHECK_RANGE`` | Yes\* | |
1051+-----------------------------+-------------+-------------------------------+
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001052
1053\*Note : These PSCI APIs require platform power management hooks to be
1054registered with the generic PSCI code to be supported.
1055
1056\*\*Note : These PSCI APIs require appropriate Secure Payload Dispatcher
1057hooks to be registered with the generic PSCI code to be supported.
1058
Dan Handley610e7e12018-03-01 18:44:00 +00001059The PSCI implementation in TF-A is a library which can be integrated with
1060AArch64 or AArch32 EL3 Runtime Software for Armv8-A systems. A guide to
1061integrating PSCI library with AArch32 EL3 Runtime Software can be found
1062`here`_.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001063
1064Secure-EL1 Payloads and Dispatchers
1065-----------------------------------
1066
1067On a production system that includes a Trusted OS running in Secure-EL1/EL0,
1068the Trusted OS is coupled with a companion runtime service in the BL31
1069firmware. This service is responsible for the initialisation of the Trusted
1070OS and all communications with it. The Trusted OS is the BL32 stage of the
Dan Handley610e7e12018-03-01 18:44:00 +00001071boot flow in TF-A. The firmware will attempt to locate, load and execute a
1072BL32 image.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001073
Dan Handley610e7e12018-03-01 18:44:00 +00001074TF-A uses a more general term for the BL32 software that runs at Secure-EL1 -
1075the *Secure-EL1 Payload* - as it is not always a Trusted OS.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001076
Dan Handley610e7e12018-03-01 18:44:00 +00001077TF-A provides a Test Secure-EL1 Payload (TSP) and a Test Secure-EL1 Payload
1078Dispatcher (TSPD) service as an example of how a Trusted OS is supported on a
1079production system using the Runtime Services Framework. On such a system, the
1080Test BL32 image and service are replaced by the Trusted OS and its dispatcher
1081service. The TF-A build system expects that the dispatcher will define the
1082build flag ``NEED_BL32`` to enable it to include the BL32 in the build either
1083as a binary or to compile from source depending on whether the ``BL32`` build
1084option is specified or not.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001085
1086The TSP runs in Secure-EL1. It is designed to demonstrate synchronous
1087communication with the normal-world software running in EL1/EL2. Communication
1088is initiated by the normal-world software
1089
1090- either directly through a Fast SMC (as defined in the `SMCCC`_)
1091
1092- or indirectly through a `PSCI`_ SMC. The `PSCI`_ implementation in turn
1093 informs the TSPD about the requested power management operation. This allows
1094 the TSP to prepare for or respond to the power state change
1095
1096The TSPD service is responsible for.
1097
1098- Initializing the TSP
1099
1100- Routing requests and responses between the secure and the non-secure
1101 states during the two types of communications just described
1102
1103Initializing a BL32 Image
1104~~~~~~~~~~~~~~~~~~~~~~~~~
1105
1106The Secure-EL1 Payload Dispatcher (SPD) service is responsible for initializing
1107the BL32 image. It needs access to the information passed by BL2 to BL31 to do
1108so. This is provided by:
1109
1110.. code:: c
1111
1112 entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t);
1113
1114which returns a reference to the ``entry_point_info`` structure corresponding to
1115the image which will be run in the specified security state. The SPD uses this
1116API to get entry point information for the SECURE image, BL32.
1117
1118In the absence of a BL32 image, BL31 passes control to the normal world
1119bootloader image (BL33). When the BL32 image is present, it is typical
1120that the SPD wants control to be passed to BL32 first and then later to BL33.
1121
1122To do this the SPD has to register a BL32 initialization function during
1123initialization of the SPD service. The BL32 initialization function has this
1124prototype:
1125
1126.. code:: c
1127
1128 int32_t init(void);
1129
1130and is registered using the ``bl31_register_bl32_init()`` function.
1131
Dan Handley610e7e12018-03-01 18:44:00 +00001132TF-A supports two approaches for the SPD to pass control to BL32 before
1133returning through EL3 and running the non-trusted firmware (BL33):
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001134
1135#. In the BL32 setup function, use ``bl31_set_next_image_type()`` to
1136 request that the exit from ``bl31_main()`` is to the BL32 entrypoint in
1137 Secure-EL1. BL31 will exit to BL32 using the asynchronous method by
1138 calling ``bl31_prepare_next_image_entry()`` and ``el3_exit()``.
1139
1140 When the BL32 has completed initialization at Secure-EL1, it returns to
1141 BL31 by issuing an SMC, using a Function ID allocated to the SPD. On
1142 receipt of this SMC, the SPD service handler should switch the CPU context
1143 from trusted to normal world and use the ``bl31_set_next_image_type()`` and
1144 ``bl31_prepare_next_image_entry()`` functions to set up the initial return to
1145 the normal world firmware BL33. On return from the handler the framework
1146 will exit to EL2 and run BL33.
1147
1148#. The BL32 setup function registers an initialization function using
1149 ``bl31_register_bl32_init()`` which provides a SPD-defined mechanism to
1150 invoke a 'world-switch synchronous call' to Secure-EL1 to run the BL32
1151 entrypoint.
Dan Handley610e7e12018-03-01 18:44:00 +00001152 NOTE: The Test SPD service included with TF-A provides one implementation
1153 of such a mechanism.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001154
1155 On completion BL32 returns control to BL31 via a SMC, and on receipt the
1156 SPD service handler invokes the synchronous call return mechanism to return
1157 to the BL32 initialization function. On return from this function,
1158 ``bl31_main()`` will set up the return to the normal world firmware BL33 and
1159 continue the boot process in the normal world.
1160
Jeenu Viswambharanb60420a2017-08-24 15:43:44 +01001161Crash Reporting in BL31
1162-----------------------
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001163
1164BL31 implements a scheme for reporting the processor state when an unhandled
1165exception is encountered. The reporting mechanism attempts to preserve all the
1166register contents and report it via a dedicated UART (PL011 console). BL31
1167reports the general purpose, EL3, Secure EL1 and some EL2 state registers.
1168
1169A dedicated per-CPU crash stack is maintained by BL31 and this is retrieved via
1170the per-CPU pointer cache. The implementation attempts to minimise the memory
1171required for this feature. The file ``crash_reporting.S`` contains the
1172implementation for crash reporting.
1173
1174The sample crash output is shown below.
1175
1176::
1177
1178 x0 :0x000000004F00007C
1179 x1 :0x0000000007FFFFFF
1180 x2 :0x0000000004014D50
1181 x3 :0x0000000000000000
1182 x4 :0x0000000088007998
1183 x5 :0x00000000001343AC
1184 x6 :0x0000000000000016
1185 x7 :0x00000000000B8A38
1186 x8 :0x00000000001343AC
1187 x9 :0x00000000000101A8
1188 x10 :0x0000000000000002
1189 x11 :0x000000000000011C
1190 x12 :0x00000000FEFDC644
1191 x13 :0x00000000FED93FFC
1192 x14 :0x0000000000247950
1193 x15 :0x00000000000007A2
1194 x16 :0x00000000000007A4
1195 x17 :0x0000000000247950
1196 x18 :0x0000000000000000
1197 x19 :0x00000000FFFFFFFF
1198 x20 :0x0000000004014D50
1199 x21 :0x000000000400A38C
1200 x22 :0x0000000000247950
1201 x23 :0x0000000000000010
1202 x24 :0x0000000000000024
1203 x25 :0x00000000FEFDC868
1204 x26 :0x00000000FEFDC86A
1205 x27 :0x00000000019EDEDC
1206 x28 :0x000000000A7CFDAA
1207 x29 :0x0000000004010780
1208 x30 :0x000000000400F004
1209 scr_el3 :0x0000000000000D3D
1210 sctlr_el3 :0x0000000000C8181F
1211 cptr_el3 :0x0000000000000000
1212 tcr_el3 :0x0000000080803520
1213 daif :0x00000000000003C0
1214 mair_el3 :0x00000000000004FF
1215 spsr_el3 :0x00000000800003CC
1216 elr_el3 :0x000000000400C0CC
1217 ttbr0_el3 :0x00000000040172A0
1218 esr_el3 :0x0000000096000210
1219 sp_el3 :0x0000000004014D50
1220 far_el3 :0x000000004F00007C
1221 spsr_el1 :0x0000000000000000
1222 elr_el1 :0x0000000000000000
1223 spsr_abt :0x0000000000000000
1224 spsr_und :0x0000000000000000
1225 spsr_irq :0x0000000000000000
1226 spsr_fiq :0x0000000000000000
1227 sctlr_el1 :0x0000000030C81807
1228 actlr_el1 :0x0000000000000000
1229 cpacr_el1 :0x0000000000300000
1230 csselr_el1 :0x0000000000000002
1231 sp_el1 :0x0000000004028800
1232 esr_el1 :0x0000000000000000
1233 ttbr0_el1 :0x000000000402C200
1234 ttbr1_el1 :0x0000000000000000
1235 mair_el1 :0x00000000000004FF
1236 amair_el1 :0x0000000000000000
1237 tcr_el1 :0x0000000000003520
1238 tpidr_el1 :0x0000000000000000
1239 tpidr_el0 :0x0000000000000000
1240 tpidrro_el0 :0x0000000000000000
1241 dacr32_el2 :0x0000000000000000
1242 ifsr32_el2 :0x0000000000000000
1243 par_el1 :0x0000000000000000
1244 far_el1 :0x0000000000000000
1245 afsr0_el1 :0x0000000000000000
1246 afsr1_el1 :0x0000000000000000
1247 contextidr_el1 :0x0000000000000000
1248 vbar_el1 :0x0000000004027000
1249 cntp_ctl_el0 :0x0000000000000000
1250 cntp_cval_el0 :0x0000000000000000
1251 cntv_ctl_el0 :0x0000000000000000
1252 cntv_cval_el0 :0x0000000000000000
1253 cntkctl_el1 :0x0000000000000000
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001254 sp_el0 :0x0000000004010780
1255
1256Guidelines for Reset Handlers
1257-----------------------------
1258
Dan Handley610e7e12018-03-01 18:44:00 +00001259TF-A implements a framework that allows CPU and platform ports to perform
1260actions very early after a CPU is released from reset in both the cold and warm
1261boot paths. This is done by calling the ``reset_handler()`` function in both
1262the BL1 and BL31 images. It in turn calls the platform and CPU specific reset
1263handling functions.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001264
1265Details for implementing a CPU specific reset handler can be found in
1266Section 8. Details for implementing a platform specific reset handler can be
1267found in the `Porting Guide`_ (see the ``plat_reset_handler()`` function).
1268
1269When adding functionality to a reset handler, keep in mind that if a different
1270reset handling behavior is required between the first and the subsequent
1271invocations of the reset handling code, this should be detected at runtime.
1272In other words, the reset handler should be able to detect whether an action has
1273already been performed and act as appropriate. Possible courses of actions are,
1274e.g. skip the action the second time, or undo/redo it.
1275
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +01001276Configuring secure interrupts
1277-----------------------------
1278
1279The GIC driver is responsible for performing initial configuration of secure
1280interrupts on the platform. To this end, the platform is expected to provide the
1281GIC driver (either GICv2 or GICv3, as selected by the platform) with the
1282interrupt configuration during the driver initialisation.
1283
1284There are two ways to specify secure interrupt configuration:
1285
1286#. Array of secure interrupt properties: In this scheme, in both GICv2 and GICv3
1287 driver data structures, the ``interrupt_props`` member points to an array of
1288 interrupt properties. Each element of the array specifies the interrupt
1289 number and its configuration, viz. priority, group, configuration. Each
1290 element of the array shall be populated by the macro ``INTR_PROP_DESC()``.
1291 The macro takes the following arguments:
1292
1293 - 10-bit interrupt number,
1294
1295 - 8-bit interrupt priority,
1296
1297 - Interrupt type (one of ``INTR_TYPE_EL3``, ``INTR_TYPE_S_EL1``,
1298 ``INTR_TYPE_NS``),
1299
1300 - Interrupt configuration (either ``GIC_INTR_CFG_LEVEL`` or
1301 ``GIC_INTR_CFG_EDGE``).
1302
1303#. Array of secure interrupts: In this scheme, the GIC driver is provided an
1304 array of secure interrupt numbers. The GIC driver, at the time of
1305 initialisation, iterates through the array and assigns each interrupt
1306 the appropriate group.
1307
1308 - For the GICv2 driver, in ``gicv2_driver_data`` structure, the
1309 ``g0_interrupt_array`` member of the should point to the array of
1310 interrupts to be assigned to *Group 0*, and the ``g0_interrupt_num``
1311 member of the should be set to the number of interrupts in the array.
1312
1313 - For the GICv3 driver, in ``gicv3_driver_data`` structure:
1314
1315 - The ``g0_interrupt_array`` member of the should point to the array of
1316 interrupts to be assigned to *Group 0*, and the ``g0_interrupt_num``
1317 member of the should be set to the number of interrupts in the array.
1318
1319 - The ``g1s_interrupt_array`` member of the should point to the array of
1320 interrupts to be assigned to *Group 1 Secure*, and the
1321 ``g1s_interrupt_num`` member of the should be set to the number of
1322 interrupts in the array.
1323
1324 **Note that this scheme is deprecated.**
1325
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001326CPU specific operations framework
1327---------------------------------
1328
Dan Handley610e7e12018-03-01 18:44:00 +00001329Certain aspects of the Armv8-A architecture are implementation defined,
1330that is, certain behaviours are not architecturally defined, but must be
1331defined and documented by individual processor implementations. TF-A
1332implements a framework which categorises the common implementation defined
1333behaviours and allows a processor to export its implementation of that
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001334behaviour. The categories are:
1335
1336#. Processor specific reset sequence.
1337
1338#. Processor specific power down sequences.
1339
1340#. Processor specific register dumping as a part of crash reporting.
1341
1342#. Errata status reporting.
1343
1344Each of the above categories fulfils a different requirement.
1345
1346#. allows any processor specific initialization before the caches and MMU
1347 are turned on, like implementation of errata workarounds, entry into
1348 the intra-cluster coherency domain etc.
1349
1350#. allows each processor to implement the power down sequence mandated in
1351 its Technical Reference Manual (TRM).
1352
1353#. allows a processor to provide additional information to the developer
1354 in the event of a crash, for example Cortex-A53 has registers which
1355 can expose the data cache contents.
1356
1357#. allows a processor to define a function that inspects and reports the status
1358 of all errata workarounds on that processor.
1359
1360Please note that only 2. is mandated by the TRM.
1361
1362The CPU specific operations framework scales to accommodate a large number of
1363different CPUs during power down and reset handling. The platform can specify
1364any CPU optimization it wants to enable for each CPU. It can also specify
1365the CPU errata workarounds to be applied for each CPU type during reset
1366handling by defining CPU errata compile time macros. Details on these macros
1367can be found in the `cpu-specific-build-macros.rst`_ file.
1368
1369The CPU specific operations framework depends on the ``cpu_ops`` structure which
1370needs to be exported for each type of CPU in the platform. It is defined in
1371``include/lib/cpus/aarch64/cpu_macros.S`` and has the following fields : ``midr``,
1372``reset_func()``, ``cpu_pwr_down_ops`` (array of power down functions) and
1373``cpu_reg_dump()``.
1374
1375The CPU specific files in ``lib/cpus`` export a ``cpu_ops`` data structure with
1376suitable handlers for that CPU. For example, ``lib/cpus/aarch64/cortex_a53.S``
1377exports the ``cpu_ops`` for Cortex-A53 CPU. According to the platform
1378configuration, these CPU specific files must be included in the build by
1379the platform makefile. The generic CPU specific operations framework code exists
1380in ``lib/cpus/aarch64/cpu_helpers.S``.
1381
1382CPU specific Reset Handling
1383~~~~~~~~~~~~~~~~~~~~~~~~~~~
1384
1385After a reset, the state of the CPU when it calls generic reset handler is:
1386MMU turned off, both instruction and data caches turned off and not part
1387of any coherency domain.
1388
1389The BL entrypoint code first invokes the ``plat_reset_handler()`` to allow
1390the platform to perform any system initialization required and any system
1391errata workarounds that needs to be applied. The ``get_cpu_ops_ptr()`` reads
1392the current CPU midr, finds the matching ``cpu_ops`` entry in the ``cpu_ops``
1393array and returns it. Note that only the part number and implementer fields
1394in midr are used to find the matching ``cpu_ops`` entry. The ``reset_func()`` in
1395the returned ``cpu_ops`` is then invoked which executes the required reset
1396handling for that CPU and also any errata workarounds enabled by the platform.
1397This function must preserve the values of general purpose registers x20 to x29.
1398
1399Refer to Section "Guidelines for Reset Handlers" for general guidelines
1400regarding placement of code in a reset handler.
1401
1402CPU specific power down sequence
1403~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1404
1405During the BL31 initialization sequence, the pointer to the matching ``cpu_ops``
1406entry is stored in per-CPU data by ``init_cpu_ops()`` so that it can be quickly
1407retrieved during power down sequences.
1408
1409Various CPU drivers register handlers to perform power down at certain power
1410levels for that specific CPU. The PSCI service, upon receiving a power down
1411request, determines the highest power level at which to execute power down
1412sequence for a particular CPU. It uses the ``prepare_cpu_pwr_dwn()`` function to
1413pick the right power down handler for the requested level. The function
1414retrieves ``cpu_ops`` pointer member of per-CPU data, and from that, further
1415retrieves ``cpu_pwr_down_ops`` array, and indexes into the required level. If the
1416requested power level is higher than what a CPU driver supports, the handler
1417registered for highest level is invoked.
1418
1419At runtime the platform hooks for power down are invoked by the PSCI service to
1420perform platform specific operations during a power down sequence, for example
1421turning off CCI coherency during a cluster power down.
1422
1423CPU specific register reporting during crash
1424~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1425
1426If the crash reporting is enabled in BL31, when a crash occurs, the crash
1427reporting framework calls ``do_cpu_reg_dump`` which retrieves the matching
1428``cpu_ops`` using ``get_cpu_ops_ptr()`` function. The ``cpu_reg_dump()`` in
1429``cpu_ops`` is invoked, which then returns the CPU specific register values to
1430be reported and a pointer to the ASCII list of register names in a format
1431expected by the crash reporting framework.
1432
1433CPU errata status reporting
1434~~~~~~~~~~~~~~~~~~~~~~~~~~~
1435
Dan Handley610e7e12018-03-01 18:44:00 +00001436Errata workarounds for CPUs supported in TF-A are applied during both cold and
1437warm boots, shortly after reset. Individual Errata workarounds are enabled as
1438build options. Some errata workarounds have potential run-time implications;
1439therefore some are enabled by default, others not. Platform ports shall
1440override build options to enable or disable errata as appropriate. The CPU
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001441drivers take care of applying errata workarounds that are enabled and applicable
1442to a given CPU. Refer to the section titled *CPU Errata Workarounds* in `CPUBM`_
1443for more information.
1444
1445Functions in CPU drivers that apply errata workaround must follow the
1446conventions listed below.
1447
1448The errata workaround must be authored as two separate functions:
1449
1450- One that checks for errata. This function must determine whether that errata
1451 applies to the current CPU. Typically this involves matching the current
1452 CPUs revision and variant against a value that's known to be affected by the
1453 errata. If the function determines that the errata applies to this CPU, it
1454 must return ``ERRATA_APPLIES``; otherwise, it must return
1455 ``ERRATA_NOT_APPLIES``. The utility functions ``cpu_get_rev_var`` and
1456 ``cpu_rev_var_ls`` functions may come in handy for this purpose.
1457
1458For an errata identified as ``E``, the check function must be named
1459``check_errata_E``.
1460
1461This function will be invoked at different times, both from assembly and from
1462C run time. Therefore it must follow AAPCS, and must not use stack.
1463
1464- Another one that applies the errata workaround. This function would call the
1465 check function described above, and applies errata workaround if required.
1466
1467CPU drivers that apply errata workaround can optionally implement an assembly
1468function that report the status of errata workarounds pertaining to that CPU.
1469For a driver that registers the CPU, for example, ``cpux`` via. ``declare_cpu_ops``
1470macro, the errata reporting function, if it exists, must be named
1471``cpux_errata_report``. This function will always be called with MMU enabled; it
1472must follow AAPCS and may use stack.
1473
Dan Handley610e7e12018-03-01 18:44:00 +00001474In a debug build of TF-A, on a CPU that comes out of reset, both BL1 and the
1475runtime firmware (BL31 in AArch64, and BL32 in AArch32) will invoke errata
1476status reporting function, if one exists, for that type of CPU.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001477
1478To report the status of each errata workaround, the function shall use the
1479assembler macro ``report_errata``, passing it:
1480
1481- The build option that enables the errata;
1482
1483- The name of the CPU: this must be the same identifier that CPU driver
1484 registered itself with, using ``declare_cpu_ops``;
1485
1486- And the errata identifier: the identifier must match what's used in the
1487 errata's check function described above.
1488
1489The errata status reporting function will be called once per CPU type/errata
1490combination during the software's active life time.
1491
Dan Handley610e7e12018-03-01 18:44:00 +00001492It's expected that whenever an errata workaround is submitted to TF-A, the
1493errata reporting function is appropriately extended to report its status as
1494well.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001495
1496Reporting the status of errata workaround is for informational purpose only; it
1497has no functional significance.
1498
1499Memory layout of BL images
1500--------------------------
1501
1502Each bootloader image can be divided in 2 parts:
1503
1504- the static contents of the image. These are data actually stored in the
1505 binary on the disk. In the ELF terminology, they are called ``PROGBITS``
1506 sections;
1507
1508- the run-time contents of the image. These are data that don't occupy any
1509 space in the binary on the disk. The ELF binary just contains some
1510 metadata indicating where these data will be stored at run-time and the
1511 corresponding sections need to be allocated and initialized at run-time.
1512 In the ELF terminology, they are called ``NOBITS`` sections.
1513
1514All PROGBITS sections are grouped together at the beginning of the image,
Dan Handley610e7e12018-03-01 18:44:00 +00001515followed by all NOBITS sections. This is true for all TF-A images and it is
1516governed by the linker scripts. This ensures that the raw binary images are
1517as small as possible. If a NOBITS section was inserted in between PROGBITS
1518sections then the resulting binary file would contain zero bytes in place of
1519this NOBITS section, making the image unnecessarily bigger. Smaller images
1520allow faster loading from the FIP to the main memory.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001521
1522Linker scripts and symbols
1523~~~~~~~~~~~~~~~~~~~~~~~~~~
1524
1525Each bootloader stage image layout is described by its own linker script. The
1526linker scripts export some symbols into the program symbol table. Their values
Dan Handley610e7e12018-03-01 18:44:00 +00001527correspond to particular addresses. TF-A code can refer to these symbols to
1528figure out the image memory layout.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001529
Dan Handley610e7e12018-03-01 18:44:00 +00001530Linker symbols follow the following naming convention in TF-A.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001531
1532- ``__<SECTION>_START__``
1533
1534 Start address of a given section named ``<SECTION>``.
1535
1536- ``__<SECTION>_END__``
1537
1538 End address of a given section named ``<SECTION>``. If there is an alignment
1539 constraint on the section's end address then ``__<SECTION>_END__`` corresponds
1540 to the end address of the section's actual contents, rounded up to the right
1541 boundary. Refer to the value of ``__<SECTION>_UNALIGNED_END__`` to know the
1542 actual end address of the section's contents.
1543
1544- ``__<SECTION>_UNALIGNED_END__``
1545
1546 End address of a given section named ``<SECTION>`` without any padding or
1547 rounding up due to some alignment constraint.
1548
1549- ``__<SECTION>_SIZE__``
1550
1551 Size (in bytes) of a given section named ``<SECTION>``. If there is an
1552 alignment constraint on the section's end address then ``__<SECTION>_SIZE__``
1553 corresponds to the size of the section's actual contents, rounded up to the
1554 right boundary. In other words, ``__<SECTION>_SIZE__ = __<SECTION>_END__ - _<SECTION>_START__``. Refer to the value of ``__<SECTION>_UNALIGNED_SIZE__``
1555 to know the actual size of the section's contents.
1556
1557- ``__<SECTION>_UNALIGNED_SIZE__``
1558
1559 Size (in bytes) of a given section named ``<SECTION>`` without any padding or
1560 rounding up due to some alignment constraint. In other words,
1561 ``__<SECTION>_UNALIGNED_SIZE__ = __<SECTION>_UNALIGNED_END__ - __<SECTION>_START__``.
1562
Dan Handley610e7e12018-03-01 18:44:00 +00001563Some of the linker symbols are mandatory as TF-A code relies on them to be
1564defined. They are listed in the following subsections. Some of them must be
1565provided for each bootloader stage and some are specific to a given bootloader
1566stage.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001567
1568The linker scripts define some extra, optional symbols. They are not actually
1569used by any code but they help in understanding the bootloader images' memory
1570layout as they are easy to spot in the link map files.
1571
1572Common linker symbols
1573^^^^^^^^^^^^^^^^^^^^^
1574
1575All BL images share the following requirements:
1576
1577- The BSS section must be zero-initialised before executing any C code.
1578- The coherent memory section (if enabled) must be zero-initialised as well.
1579- The MMU setup code needs to know the extents of the coherent and read-only
1580 memory regions to set the right memory attributes. When
1581 ``SEPARATE_CODE_AND_RODATA=1``, it needs to know more specifically how the
1582 read-only memory region is divided between code and data.
1583
1584The following linker symbols are defined for this purpose:
1585
1586- ``__BSS_START__``
1587- ``__BSS_SIZE__``
1588- ``__COHERENT_RAM_START__`` Must be aligned on a page-size boundary.
1589- ``__COHERENT_RAM_END__`` Must be aligned on a page-size boundary.
1590- ``__COHERENT_RAM_UNALIGNED_SIZE__``
1591- ``__RO_START__``
1592- ``__RO_END__``
1593- ``__TEXT_START__``
1594- ``__TEXT_END__``
1595- ``__RODATA_START__``
1596- ``__RODATA_END__``
1597
1598BL1's linker symbols
1599^^^^^^^^^^^^^^^^^^^^
1600
1601BL1 being the ROM image, it has additional requirements. BL1 resides in ROM and
1602it is entirely executed in place but it needs some read-write memory for its
1603mutable data. Its ``.data`` section (i.e. its allocated read-write data) must be
1604relocated from ROM to RAM before executing any C code.
1605
1606The following additional linker symbols are defined for BL1:
1607
1608- ``__BL1_ROM_END__`` End address of BL1's ROM contents, covering its code
1609 and ``.data`` section in ROM.
1610- ``__DATA_ROM_START__`` Start address of the ``.data`` section in ROM. Must be
1611 aligned on a 16-byte boundary.
1612- ``__DATA_RAM_START__`` Address in RAM where the ``.data`` section should be
1613 copied over. Must be aligned on a 16-byte boundary.
1614- ``__DATA_SIZE__`` Size of the ``.data`` section (in ROM or RAM).
1615- ``__BL1_RAM_START__`` Start address of BL1 read-write data.
1616- ``__BL1_RAM_END__`` End address of BL1 read-write data.
1617
1618How to choose the right base addresses for each bootloader stage image
1619~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1620
Dan Handley610e7e12018-03-01 18:44:00 +00001621There is currently no support for dynamic image loading in TF-A. This means
1622that all bootloader images need to be linked against their ultimate runtime
1623locations and the base addresses of each image must be chosen carefully such
1624that images don't overlap each other in an undesired way. As the code grows,
1625the base addresses might need adjustments to cope with the new memory layout.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001626
1627The memory layout is completely specific to the platform and so there is no
1628general recipe for choosing the right base addresses for each bootloader image.
1629However, there are tools to aid in understanding the memory layout. These are
1630the link map files: ``build/<platform>/<build-type>/bl<x>/bl<x>.map``, with ``<x>``
1631being the stage bootloader. They provide a detailed view of the memory usage of
1632each image. Among other useful information, they provide the end address of
1633each image.
1634
1635- ``bl1.map`` link map file provides ``__BL1_RAM_END__`` address.
1636- ``bl2.map`` link map file provides ``__BL2_END__`` address.
1637- ``bl31.map`` link map file provides ``__BL31_END__`` address.
1638- ``bl32.map`` link map file provides ``__BL32_END__`` address.
1639
1640For each bootloader image, the platform code must provide its start address
1641as well as a limit address that it must not overstep. The latter is used in the
1642linker scripts to check that the image doesn't grow past that address. If that
1643happens, the linker will issue a message similar to the following:
1644
1645::
1646
1647 aarch64-none-elf-ld: BLx has exceeded its limit.
1648
1649Additionally, if the platform memory layout implies some image overlaying like
1650on FVP, BL31 and TSP need to know the limit address that their PROGBITS
1651sections must not overstep. The platform code must provide those.
1652
Dan Handley610e7e12018-03-01 18:44:00 +00001653When LOAD\_IMAGE\_V2 is disabled, TF-A provides a mechanism to verify at boot
1654time that the memory to load a new image is free to prevent overwriting a
1655previously loaded image. For this mechanism to work, the platform must specify
1656the memory available in the system as regions, where each region consists of
1657base address, total size and the free area within it (as defined in the
1658``meminfo_t`` structure). TF-A retrieves these memory regions by calling the
1659corresponding platform API:
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001660
1661- ``meminfo_t *bl1_plat_sec_mem_layout(void)``
1662- ``meminfo_t *bl2_plat_sec_mem_layout(void)``
1663- ``void bl2_plat_get_scp_bl2_meminfo(meminfo_t *scp_bl2_meminfo)``
1664- ``void bl2_plat_get_bl32_meminfo(meminfo_t *bl32_meminfo)``
1665- ``void bl2_plat_get_bl33_meminfo(meminfo_t *bl33_meminfo)``
1666
1667For example, in the case of BL1 loading BL2, ``bl1_plat_sec_mem_layout()`` will
1668return the region defined by the platform where BL1 intends to load BL2. The
1669``load_image()`` function will check that the memory where BL2 will be loaded is
1670within the specified region and marked as free.
1671
1672The actual number of regions and their base addresses and sizes is platform
1673specific. The platform may return the same region or define a different one for
1674each API. However, the overlap verification mechanism applies only to a single
1675region. Hence, it is the platform responsibility to guarantee that different
1676regions do not overlap, or that if they do, the overlapping images are not
1677accessed at the same time. This could be used, for example, to load temporary
1678images (e.g. certificates) or firmware images prior to being transfered to its
1679corresponding processor (e.g. the SCP BL2 image).
1680
1681To reduce fragmentation and simplify the tracking of free memory, all the free
1682memory within a region is always located in one single buffer defined by its
Dan Handley610e7e12018-03-01 18:44:00 +00001683base address and size. TF-A implements a top/bottom load approach:
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001684after a new image is loaded, it checks how much memory remains free above and
1685below the image. The smallest area is marked as unavailable, while the larger
1686area becomes the new free memory buffer. Platforms should take this behaviour
1687into account when defining the base address for each of the images. For example,
1688if an image is loaded near the middle of the region, small changes in image size
1689could cause a flip between a top load and a bottom load, which may result in an
1690unexpected memory layout.
1691
1692The following diagram is an example of an image loaded in the bottom part of
1693the memory region. The region is initially free (nothing has been loaded yet):
1694
1695::
1696
1697 Memory region
1698 +----------+
1699 | |
1700 | | <<<<<<<<<<<<< Free
1701 | |
1702 |----------| +------------+
1703 | image | <<<<<<<<<<<<< | image |
1704 |----------| +------------+
1705 | xxxxxxxx | <<<<<<<<<<<<< Marked as unavailable
1706 +----------+
1707
1708And the following diagram is an example of an image loaded in the top part:
1709
1710::
1711
1712 Memory region
1713 +----------+
1714 | xxxxxxxx | <<<<<<<<<<<<< Marked as unavailable
1715 |----------| +------------+
1716 | image | <<<<<<<<<<<<< | image |
1717 |----------| +------------+
1718 | |
1719 | | <<<<<<<<<<<<< Free
1720 | |
1721 +----------+
1722
Dan Handley610e7e12018-03-01 18:44:00 +00001723When LOAD\_IMAGE\_V2 is enabled, TF-A does not provide any mechanism to verify
1724at boot time that the memory to load a new image is free to prevent overwriting
1725a previously loaded image. The platform must specify the memory available in
1726the system for all the relevant BL images to be loaded.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001727
1728For example, in the case of BL1 loading BL2, ``bl1_plat_sec_mem_layout()`` will
1729return the region defined by the platform where BL1 intends to load BL2. The
1730``load_image()`` function performs bounds check for the image size based on the
1731base and maximum image size provided by the platforms. Platforms must take
1732this behaviour into account when defining the base/size for each of the images.
1733
Dan Handley610e7e12018-03-01 18:44:00 +00001734Memory layout on Arm development platforms
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001735^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1736
Dan Handley610e7e12018-03-01 18:44:00 +00001737The following list describes the memory layout on the Arm development platforms:
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001738
1739- A 4KB page of shared memory is used for communication between Trusted
1740 Firmware and the platform's power controller. This is located at the base of
1741 Trusted SRAM. The amount of Trusted SRAM available to load the bootloader
1742 images is reduced by the size of the shared memory.
1743
1744 The shared memory is used to store the CPUs' entrypoint mailbox. On Juno,
1745 this is also used for the MHU payload when passing messages to and from the
1746 SCP.
1747
Soby Mathew492e2452018-06-06 16:03:10 +01001748- Another 4 KB page is reserved for passing memory layout between BL1 and BL2
1749 and also the dynamic firmware configurations.
1750
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001751- On FVP, BL1 is originally sitting in the Trusted ROM at address ``0x0``. On
1752 Juno, BL1 resides in flash memory at address ``0x0BEC0000``. BL1 read-write
1753 data are relocated to the top of Trusted SRAM at runtime.
1754
Soby Mathew492e2452018-06-06 16:03:10 +01001755- BL2 is loaded below BL1 RW
1756
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001757- EL3 Runtime Software, BL31 for AArch64 and BL32 for AArch32 (e.g. SP\_MIN),
1758 is loaded at the top of the Trusted SRAM, such that its NOBITS sections will
Soby Mathew492e2452018-06-06 16:03:10 +01001759 overwrite BL1 R/W data and BL2. This implies that BL1 global variables
1760 remain valid only until execution reaches the EL3 Runtime Software entry
1761 point during a cold boot.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001762
1763- On Juno, SCP\_BL2 is loaded temporarily into the EL3 Runtime Software memory
1764 region and transfered to the SCP before being overwritten by EL3 Runtime
1765 Software.
1766
1767- BL32 (for AArch64) can be loaded in one of the following locations:
1768
1769 - Trusted SRAM
1770 - Trusted DRAM (FVP only)
1771 - Secure region of DRAM (top 16MB of DRAM configured by the TrustZone
1772 controller)
1773
Soby Mathew492e2452018-06-06 16:03:10 +01001774 When BL32 (for AArch64) is loaded into Trusted SRAM, it is loaded below
1775 BL31.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001776
1777When LOAD\_IMAGE\_V2 is disabled the memory regions for the overlap detection
1778mechanism at boot time are defined as follows (shown per API):
1779
1780- ``meminfo_t *bl1_plat_sec_mem_layout(void)``
1781
1782 This region corresponds to the whole Trusted SRAM except for the shared
1783 memory at the base. This region is initially free. At boot time, BL1 will
1784 mark the BL1(rw) section within this region as occupied. The BL1(rw) section
1785 is placed at the top of Trusted SRAM.
1786
1787- ``meminfo_t *bl2_plat_sec_mem_layout(void)``
1788
1789 This region corresponds to the whole Trusted SRAM as defined by
1790 ``bl1_plat_sec_mem_layout()``, but with the BL1(rw) section marked as
1791 occupied. This memory region is used to check that BL2 and BL31 do not
1792 overlap with each other. BL2\_BASE and BL1\_RW\_BASE are carefully chosen so
1793 that the memory for BL31 is top loaded above BL2.
1794
1795- ``void bl2_plat_get_scp_bl2_meminfo(meminfo_t *scp_bl2_meminfo)``
1796
1797 This region is an exact copy of the region defined by
1798 ``bl2_plat_sec_mem_layout()``. Being a disconnected copy means that all the
Dan Handley610e7e12018-03-01 18:44:00 +00001799 changes made to this region by the TF-A will not be propagated. This
1800 approach is valid because the SCP BL2 image is loaded temporarily while it
1801 is being transferred to the SCP, so this memory is reused afterwards.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001802
1803- ``void bl2_plat_get_bl32_meminfo(meminfo_t *bl32_meminfo)``
1804
Dan Handley610e7e12018-03-01 18:44:00 +00001805 This region depends on the location of the BL32 image. Currently, Arm
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001806 platforms support three different locations (detailed below): Trusted SRAM,
1807 Trusted DRAM and the TZC-Secured DRAM.
1808
1809- ``void bl2_plat_get_bl33_meminfo(meminfo_t *bl33_meminfo)``
1810
1811 This region corresponds to the Non-Secure DDR-DRAM, excluding the
1812 TZC-Secured area.
1813
1814The location of the BL32 image will result in different memory maps. This is
1815illustrated for both FVP and Juno in the following diagrams, using the TSP as
1816an example.
1817
1818Note: Loading the BL32 image in TZC secured DRAM doesn't change the memory
1819layout of the other images in Trusted SRAM.
1820
Soby Mathew492e2452018-06-06 16:03:10 +01001821**FVP with TSP in Trusted SRAM with firmware configs :**
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001822(These diagrams only cover the AArch64 case)
1823
1824::
1825
Soby Mathew492e2452018-06-06 16:03:10 +01001826 DRAM
1827 0xffffffff +----------+
1828 : :
1829 |----------|
1830 |HW_CONFIG |
1831 0x83000000 |----------| (non-secure)
1832 | |
1833 0x80000000 +----------+
1834
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001835 Trusted SRAM
Soby Mathew492e2452018-06-06 16:03:10 +01001836 0x04040000 +----------+ loaded by BL2 +----------------+
1837 | BL1 (rw) | <<<<<<<<<<<<< | |
1838 |----------| <<<<<<<<<<<<< | BL31 NOBITS |
1839 | BL2 | <<<<<<<<<<<<< | |
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001840 |----------| <<<<<<<<<<<<< |----------------|
1841 | | <<<<<<<<<<<<< | BL31 PROGBITS |
Soby Mathew492e2452018-06-06 16:03:10 +01001842 | | <<<<<<<<<<<<< |----------------|
1843 | | <<<<<<<<<<<<< | BL32 |
1844 0x04002000 +----------+ +----------------+
1845 |fw_configs|
1846 0x04001000 +----------+
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001847 | Shared |
1848 0x04000000 +----------+
1849
1850 Trusted ROM
1851 0x04000000 +----------+
1852 | BL1 (ro) |
1853 0x00000000 +----------+
1854
Soby Mathew492e2452018-06-06 16:03:10 +01001855**FVP with TSP in Trusted DRAM with firmware configs (default option):**
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001856
1857::
1858
Soby Mathewb1bf0442018-02-16 14:52:52 +00001859 DRAM
1860 0xffffffff +--------------+
1861 : :
1862 |--------------|
1863 | HW_CONFIG |
1864 0x83000000 |--------------| (non-secure)
1865 | |
1866 0x80000000 +--------------+
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001867
Soby Mathewb1bf0442018-02-16 14:52:52 +00001868 Trusted DRAM
1869 0x08000000 +--------------+
1870 | BL32 |
1871 0x06000000 +--------------+
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001872
Soby Mathewb1bf0442018-02-16 14:52:52 +00001873 Trusted SRAM
Soby Mathew492e2452018-06-06 16:03:10 +01001874 0x04040000 +--------------+ loaded by BL2 +----------------+
1875 | BL1 (rw) | <<<<<<<<<<<<< | |
1876 |--------------| <<<<<<<<<<<<< | BL31 NOBITS |
1877 | BL2 | <<<<<<<<<<<<< | |
Soby Mathewb1bf0442018-02-16 14:52:52 +00001878 |--------------| <<<<<<<<<<<<< |----------------|
1879 | | <<<<<<<<<<<<< | BL31 PROGBITS |
Soby Mathew492e2452018-06-06 16:03:10 +01001880 | | +----------------+
1881 +--------------+
1882 | fw_configs |
Soby Mathewb1bf0442018-02-16 14:52:52 +00001883 0x04001000 +--------------+
1884 | Shared |
1885 0x04000000 +--------------+
1886
1887 Trusted ROM
1888 0x04000000 +--------------+
1889 | BL1 (ro) |
1890 0x00000000 +--------------+
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001891
Soby Mathew492e2452018-06-06 16:03:10 +01001892**FVP with TSP in TZC-Secured DRAM with firmware configs :**
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001893
1894::
1895
1896 DRAM
1897 0xffffffff +----------+
Soby Mathewb1bf0442018-02-16 14:52:52 +00001898 | BL32 | (secure)
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001899 0xff000000 +----------+
1900 | |
Soby Mathew492e2452018-06-06 16:03:10 +01001901 |----------|
1902 |HW_CONFIG |
1903 0x83000000 |----------| (non-secure)
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001904 | |
1905 0x80000000 +----------+
1906
1907 Trusted SRAM
Soby Mathew492e2452018-06-06 16:03:10 +01001908 0x04040000 +----------+ loaded by BL2 +----------------+
1909 | BL1 (rw) | <<<<<<<<<<<<< | |
1910 |----------| <<<<<<<<<<<<< | BL31 NOBITS |
1911 | BL2 | <<<<<<<<<<<<< | |
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001912 |----------| <<<<<<<<<<<<< |----------------|
1913 | | <<<<<<<<<<<<< | BL31 PROGBITS |
Soby Mathew492e2452018-06-06 16:03:10 +01001914 | | +----------------+
1915 0x04002000 +----------+
1916 |fw_configs|
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001917 0x04001000 +----------+
1918 | Shared |
1919 0x04000000 +----------+
1920
1921 Trusted ROM
1922 0x04000000 +----------+
1923 | BL1 (ro) |
1924 0x00000000 +----------+
1925
Soby Mathew492e2452018-06-06 16:03:10 +01001926**Juno with BL32 in Trusted SRAM :**
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001927
1928::
1929
1930 Flash0
1931 0x0C000000 +----------+
1932 : :
1933 0x0BED0000 |----------|
1934 | BL1 (ro) |
1935 0x0BEC0000 |----------|
1936 : :
1937 0x08000000 +----------+ BL31 is loaded
1938 after SCP_BL2 has
1939 Trusted SRAM been sent to SCP
Soby Mathew492e2452018-06-06 16:03:10 +01001940 0x04040000 +----------+ loaded by BL2 +----------------+
1941 | BL1 (rw) | <<<<<<<<<<<<< | |
1942 |----------| <<<<<<<<<<<<< | BL31 NOBITS |
1943 | BL2 | <<<<<<<<<<<<< | |
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001944 |----------| <<<<<<<<<<<<< |----------------|
1945 | SCP_BL2 | <<<<<<<<<<<<< | BL31 PROGBITS |
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001946 |----------| <<<<<<<<<<<<< |----------------|
Soby Mathew492e2452018-06-06 16:03:10 +01001947 | | <<<<<<<<<<<<< | BL32 |
1948 | | +----------------+
1949 | |
1950 0x04001000 +----------+
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001951 | MHU |
1952 0x04000000 +----------+
1953
Soby Mathew492e2452018-06-06 16:03:10 +01001954**Juno with BL32 in TZC-secured DRAM :**
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001955
1956::
1957
1958 DRAM
1959 0xFFE00000 +----------+
Soby Mathewb1bf0442018-02-16 14:52:52 +00001960 | BL32 | (secure)
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001961 0xFF000000 |----------|
1962 | |
1963 : : (non-secure)
1964 | |
1965 0x80000000 +----------+
1966
1967 Flash0
1968 0x0C000000 +----------+
1969 : :
1970 0x0BED0000 |----------|
1971 | BL1 (ro) |
1972 0x0BEC0000 |----------|
1973 : :
1974 0x08000000 +----------+ BL31 is loaded
1975 after SCP_BL2 has
1976 Trusted SRAM been sent to SCP
Soby Mathew492e2452018-06-06 16:03:10 +01001977 0x04040000 +----------+ loaded by BL2 +----------------+
1978 | BL1 (rw) | <<<<<<<<<<<<< | |
1979 |----------| <<<<<<<<<<<<< | BL31 NOBITS |
1980 | BL2 | <<<<<<<<<<<<< | |
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001981 |----------| <<<<<<<<<<<<< |----------------|
1982 | SCP_BL2 | <<<<<<<<<<<<< | BL31 PROGBITS |
Soby Mathew492e2452018-06-06 16:03:10 +01001983 |----------| +----------------+
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001984 0x04001000 +----------+
1985 | MHU |
1986 0x04000000 +----------+
1987
1988Firmware Image Package (FIP)
1989----------------------------
1990
1991Using a Firmware Image Package (FIP) allows for packing bootloader images (and
Dan Handley610e7e12018-03-01 18:44:00 +00001992potentially other payloads) into a single archive that can be loaded by TF-A
1993from non-volatile platform storage. A driver to load images from a FIP has
1994been added to the storage layer and allows a package to be read from supported
1995platform storage. A tool to create Firmware Image Packages is also provided
1996and described below.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01001997
1998Firmware Image Package layout
1999~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2000
2001The FIP layout consists of a table of contents (ToC) followed by payload data.
2002The ToC itself has a header followed by one or more table entries. The ToC is
Jett Zhou75566102017-11-24 16:03:58 +08002003terminated by an end marker entry, and since the size of the ToC is 0 bytes,
2004the offset equals the total size of the FIP file. All ToC entries describe some
2005payload data that has been appended to the end of the binary package. With the
2006information provided in the ToC entry the corresponding payload data can be
2007retrieved.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002008
2009::
2010
2011 ------------------
2012 | ToC Header |
2013 |----------------|
2014 | ToC Entry 0 |
2015 |----------------|
2016 | ToC Entry 1 |
2017 |----------------|
2018 | ToC End Marker |
2019 |----------------|
2020 | |
2021 | Data 0 |
2022 | |
2023 |----------------|
2024 | |
2025 | Data 1 |
2026 | |
2027 ------------------
2028
2029The ToC header and entry formats are described in the header file
2030``include/tools_share/firmware_image_package.h``. This file is used by both the
Dan Handley610e7e12018-03-01 18:44:00 +00002031tool and TF-A.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002032
2033The ToC header has the following fields:
2034
2035::
2036
2037 `name`: The name of the ToC. This is currently used to validate the header.
2038 `serial_number`: A non-zero number provided by the creation tool
2039 `flags`: Flags associated with this data.
2040 Bits 0-31: Reserved
2041 Bits 32-47: Platform defined
2042 Bits 48-63: Reserved
2043
2044A ToC entry has the following fields:
2045
2046::
2047
2048 `uuid`: All files are referred to by a pre-defined Universally Unique
2049 IDentifier [UUID] . The UUIDs are defined in
2050 `include/tools_share/firmware_image_package.h`. The platform translates
2051 the requested image name into the corresponding UUID when accessing the
2052 package.
2053 `offset_address`: The offset address at which the corresponding payload data
2054 can be found. The offset is calculated from the ToC base address.
2055 `size`: The size of the corresponding payload data in bytes.
Etienne Carriere7421bf12017-08-23 15:43:33 +02002056 `flags`: Flags associated with this entry. None are yet defined.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002057
2058Firmware Image Package creation tool
2059~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2060
Dan Handley610e7e12018-03-01 18:44:00 +00002061The FIP creation tool can be used to pack specified images into a binary
2062package that can be loaded by TF-A from platform storage. The tool currently
2063only supports packing bootloader images. Additional image definitions can be
2064added to the tool as required.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002065
2066The tool can be found in ``tools/fiptool``.
2067
2068Loading from a Firmware Image Package (FIP)
2069~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2070
2071The Firmware Image Package (FIP) driver can load images from a binary package on
Dan Handley610e7e12018-03-01 18:44:00 +00002072non-volatile platform storage. For the Arm development platforms, this is
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002073currently NOR FLASH.
2074
2075Bootloader images are loaded according to the platform policy as specified by
Dan Handley610e7e12018-03-01 18:44:00 +00002076the function ``plat_get_image_source()``. For the Arm development platforms, this
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002077means the platform will attempt to load images from a Firmware Image Package
2078located at the start of NOR FLASH0.
2079
Dan Handley610e7e12018-03-01 18:44:00 +00002080The Arm development platforms' policy is to only allow loading of a known set of
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002081images. The platform policy can be modified to allow additional images.
2082
Dan Handley610e7e12018-03-01 18:44:00 +00002083Use of coherent memory in TF-A
2084------------------------------
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002085
2086There might be loss of coherency when physical memory with mismatched
2087shareability, cacheability and memory attributes is accessed by multiple CPUs
Dan Handley610e7e12018-03-01 18:44:00 +00002088(refer to section B2.9 of `Arm ARM`_ for more details). This possibility occurs
2089in TF-A during power up/down sequences when coherency, MMU and caches are
2090turned on/off incrementally.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002091
Dan Handley610e7e12018-03-01 18:44:00 +00002092TF-A defines coherent memory as a region of memory with Device nGnRE attributes
2093in the translation tables. The translation granule size in TF-A is 4KB. This
2094is the smallest possible size of the coherent memory region.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002095
2096By default, all data structures which are susceptible to accesses with
2097mismatched attributes from various CPUs are allocated in a coherent memory
2098region (refer to section 2.1 of `Porting Guide`_). The coherent memory region
2099accesses are Outer Shareable, non-cacheable and they can be accessed
2100with the Device nGnRE attributes when the MMU is turned on. Hence, at the
Dan Handley610e7e12018-03-01 18:44:00 +00002101expense of at least an extra page of memory, TF-A is able to work around
2102coherency issues due to mismatched memory attributes.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002103
2104The alternative to the above approach is to allocate the susceptible data
2105structures in Normal WriteBack WriteAllocate Inner shareable memory. This
2106approach requires the data structures to be designed so that it is possible to
2107work around the issue of mismatched memory attributes by performing software
2108cache maintenance on them.
2109
Dan Handley610e7e12018-03-01 18:44:00 +00002110Disabling the use of coherent memory in TF-A
2111~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002112
2113It might be desirable to avoid the cost of allocating coherent memory on
Dan Handley610e7e12018-03-01 18:44:00 +00002114platforms which are memory constrained. TF-A enables inclusion of coherent
2115memory in firmware images through the build flag ``USE_COHERENT_MEM``.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002116This flag is enabled by default. It can be disabled to choose the second
2117approach described above.
2118
2119The below sections analyze the data structures allocated in the coherent memory
2120region and the changes required to allocate them in normal memory.
2121
2122Coherent memory usage in PSCI implementation
2123~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2124
2125The ``psci_non_cpu_pd_nodes`` data structure stores the platform's power domain
2126tree information for state management of power domains. By default, this data
Dan Handley610e7e12018-03-01 18:44:00 +00002127structure is allocated in the coherent memory region in TF-A because it can be
2128accessed by multple CPUs, either with caches enabled or disabled.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002129
2130.. code:: c
2131
2132 typedef struct non_cpu_pwr_domain_node {
2133 /*
2134 * Index of the first CPU power domain node level 0 which has this node
2135 * as its parent.
2136 */
2137 unsigned int cpu_start_idx;
2138
2139 /*
2140 * Number of CPU power domains which are siblings of the domain indexed
2141 * by 'cpu_start_idx' i.e. all the domains in the range 'cpu_start_idx
2142 * -> cpu_start_idx + ncpus' have this node as their parent.
2143 */
2144 unsigned int ncpus;
2145
2146 /*
2147 * Index of the parent power domain node.
2148 * TODO: Figure out whether to whether using pointer is more efficient.
2149 */
2150 unsigned int parent_node;
2151
2152 plat_local_state_t local_state;
2153
2154 unsigned char level;
2155
2156 /* For indexing the psci_lock array*/
2157 unsigned char lock_index;
2158 } non_cpu_pd_node_t;
2159
2160In order to move this data structure to normal memory, the use of each of its
2161fields must be analyzed. Fields like ``cpu_start_idx``, ``ncpus``, ``parent_node``
2162``level`` and ``lock_index`` are only written once during cold boot. Hence removing
2163them from coherent memory involves only doing a clean and invalidate of the
2164cache lines after these fields are written.
2165
2166The field ``local_state`` can be concurrently accessed by multiple CPUs in
2167different cache states. A Lamport's Bakery lock ``psci_locks`` is used to ensure
2168mutual exlusion to this field and a clean and invalidate is needed after it
2169is written.
2170
2171Bakery lock data
2172~~~~~~~~~~~~~~~~
2173
2174The bakery lock data structure ``bakery_lock_t`` is allocated in coherent memory
2175and is accessed by multiple CPUs with mismatched attributes. ``bakery_lock_t`` is
2176defined as follows:
2177
2178.. code:: c
2179
2180 typedef struct bakery_lock {
2181 /*
2182 * The lock_data is a bit-field of 2 members:
2183 * Bit[0] : choosing. This field is set when the CPU is
2184 * choosing its bakery number.
2185 * Bits[1 - 15] : number. This is the bakery number allocated.
2186 */
2187 volatile uint16_t lock_data[BAKERY_LOCK_MAX_CPUS];
2188 } bakery_lock_t;
2189
2190It is a characteristic of Lamport's Bakery algorithm that the volatile per-CPU
2191fields can be read by all CPUs but only written to by the owning CPU.
2192
2193Depending upon the data cache line size, the per-CPU fields of the
2194``bakery_lock_t`` structure for multiple CPUs may exist on a single cache line.
2195These per-CPU fields can be read and written during lock contention by multiple
2196CPUs with mismatched memory attributes. Since these fields are a part of the
2197lock implementation, they do not have access to any other locking primitive to
2198safeguard against the resulting coherency issues. As a result, simple software
2199cache maintenance is not enough to allocate them in coherent memory. Consider
2200the following example.
2201
2202CPU0 updates its per-CPU field with data cache enabled. This write updates a
2203local cache line which contains a copy of the fields for other CPUs as well. Now
2204CPU1 updates its per-CPU field of the ``bakery_lock_t`` structure with data cache
2205disabled. CPU1 then issues a DCIVAC operation to invalidate any stale copies of
2206its field in any other cache line in the system. This operation will invalidate
2207the update made by CPU0 as well.
2208
2209To use bakery locks when ``USE_COHERENT_MEM`` is disabled, the lock data structure
2210has been redesigned. The changes utilise the characteristic of Lamport's Bakery
2211algorithm mentioned earlier. The bakery\_lock structure only allocates the memory
2212for a single CPU. The macro ``DEFINE_BAKERY_LOCK`` allocates all the bakery locks
2213needed for a CPU into a section ``bakery_lock``. The linker allocates the memory
2214for other cores by using the total size allocated for the bakery\_lock section
2215and multiplying it with (PLATFORM\_CORE\_COUNT - 1). This enables software to
2216perform software cache maintenance on the lock data structure without running
2217into coherency issues associated with mismatched attributes.
2218
2219The bakery lock data structure ``bakery_info_t`` is defined for use when
2220``USE_COHERENT_MEM`` is disabled as follows:
2221
2222.. code:: c
2223
2224 typedef struct bakery_info {
2225 /*
2226 * The lock_data is a bit-field of 2 members:
2227 * Bit[0] : choosing. This field is set when the CPU is
2228 * choosing its bakery number.
2229 * Bits[1 - 15] : number. This is the bakery number allocated.
2230 */
2231 volatile uint16_t lock_data;
2232 } bakery_info_t;
2233
2234The ``bakery_info_t`` represents a single per-CPU field of one lock and
2235the combination of corresponding ``bakery_info_t`` structures for all CPUs in the
2236system represents the complete bakery lock. The view in memory for a system
2237with n bakery locks are:
2238
2239::
2240
2241 bakery_lock section start
2242 |----------------|
2243 | `bakery_info_t`| <-- Lock_0 per-CPU field
2244 | Lock_0 | for CPU0
2245 |----------------|
2246 | `bakery_info_t`| <-- Lock_1 per-CPU field
2247 | Lock_1 | for CPU0
2248 |----------------|
2249 | .... |
2250 |----------------|
2251 | `bakery_info_t`| <-- Lock_N per-CPU field
2252 | Lock_N | for CPU0
2253 ------------------
2254 | XXXXX |
2255 | Padding to |
2256 | next Cache WB | <--- Calculate PERCPU_BAKERY_LOCK_SIZE, allocate
2257 | Granule | continuous memory for remaining CPUs.
2258 ------------------
2259 | `bakery_info_t`| <-- Lock_0 per-CPU field
2260 | Lock_0 | for CPU1
2261 |----------------|
2262 | `bakery_info_t`| <-- Lock_1 per-CPU field
2263 | Lock_1 | for CPU1
2264 |----------------|
2265 | .... |
2266 |----------------|
2267 | `bakery_info_t`| <-- Lock_N per-CPU field
2268 | Lock_N | for CPU1
2269 ------------------
2270 | XXXXX |
2271 | Padding to |
2272 | next Cache WB |
2273 | Granule |
2274 ------------------
2275
2276Consider a system of 2 CPUs with 'N' bakery locks as shown above. For an
2277operation on Lock\_N, the corresponding ``bakery_info_t`` in both CPU0 and CPU1
2278``bakery_lock`` section need to be fetched and appropriate cache operations need
2279to be performed for each access.
2280
Dan Handley610e7e12018-03-01 18:44:00 +00002281On Arm Platforms, bakery locks are used in psci (``psci_locks``) and power controller
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002282driver (``arm_lock``).
2283
2284Non Functional Impact of removing coherent memory
2285~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2286
2287Removal of the coherent memory region leads to the additional software overhead
2288of performing cache maintenance for the affected data structures. However, since
2289the memory where the data structures are allocated is cacheable, the overhead is
2290mostly mitigated by an increase in performance.
2291
2292There is however a performance impact for bakery locks, due to:
2293
2294- Additional cache maintenance operations, and
2295- Multiple cache line reads for each lock operation, since the bakery locks
2296 for each CPU are distributed across different cache lines.
2297
2298The implementation has been optimized to minimize this additional overhead.
2299Measurements indicate that when bakery locks are allocated in Normal memory, the
2300minimum latency of acquiring a lock is on an average 3-4 micro seconds whereas
2301in Device memory the same is 2 micro seconds. The measurements were done on the
Dan Handley610e7e12018-03-01 18:44:00 +00002302Juno Arm development platform.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002303
2304As mentioned earlier, almost a page of memory can be saved by disabling
2305``USE_COHERENT_MEM``. Each platform needs to consider these trade-offs to decide
2306whether coherent memory should be used. If a platform disables
2307``USE_COHERENT_MEM`` and needs to use bakery locks in the porting layer, it can
2308optionally define macro ``PLAT_PERCPU_BAKERY_LOCK_SIZE`` (see the
2309`Porting Guide`_). Refer to the reference platform code for examples.
2310
2311Isolating code and read-only data on separate memory pages
2312----------------------------------------------------------
2313
Dan Handley610e7e12018-03-01 18:44:00 +00002314In the Armv8-A VMSA, translation table entries include fields that define the
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002315properties of the target memory region, such as its access permissions. The
2316smallest unit of memory that can be addressed by a translation table entry is
2317a memory page. Therefore, if software needs to set different permissions on two
2318memory regions then it needs to map them using different memory pages.
2319
2320The default memory layout for each BL image is as follows:
2321
2322::
2323
2324 | ... |
2325 +-------------------+
2326 | Read-write data |
2327 +-------------------+ Page boundary
2328 | <Padding> |
2329 +-------------------+
2330 | Exception vectors |
2331 +-------------------+ 2 KB boundary
2332 | <Padding> |
2333 +-------------------+
2334 | Read-only data |
2335 +-------------------+
2336 | Code |
2337 +-------------------+ BLx_BASE
2338
2339Note: The 2KB alignment for the exception vectors is an architectural
2340requirement.
2341
2342The read-write data start on a new memory page so that they can be mapped with
2343read-write permissions, whereas the code and read-only data below are configured
2344as read-only.
2345
2346However, the read-only data are not aligned on a page boundary. They are
2347contiguous to the code. Therefore, the end of the code section and the beginning
2348of the read-only data one might share a memory page. This forces both to be
2349mapped with the same memory attributes. As the code needs to be executable, this
2350means that the read-only data stored on the same memory page as the code are
2351executable as well. This could potentially be exploited as part of a security
2352attack.
2353
2354TF provides the build flag ``SEPARATE_CODE_AND_RODATA`` to isolate the code and
2355read-only data on separate memory pages. This in turn allows independent control
2356of the access permissions for the code and read-only data. In this case,
2357platform code gets a finer-grained view of the image layout and can
2358appropriately map the code region as executable and the read-only data as
2359execute-never.
2360
2361This has an impact on memory footprint, as padding bytes need to be introduced
2362between the code and read-only data to ensure the segragation of the two. To
2363limit the memory cost, this flag also changes the memory layout such that the
2364code and exception vectors are now contiguous, like so:
2365
2366::
2367
2368 | ... |
2369 +-------------------+
2370 | Read-write data |
2371 +-------------------+ Page boundary
2372 | <Padding> |
2373 +-------------------+
2374 | Read-only data |
2375 +-------------------+ Page boundary
2376 | <Padding> |
2377 +-------------------+
2378 | Exception vectors |
2379 +-------------------+ 2 KB boundary
2380 | <Padding> |
2381 +-------------------+
2382 | Code |
2383 +-------------------+ BLx_BASE
2384
2385With this more condensed memory layout, the separation of read-only data will
2386add zero or one page to the memory footprint of each BL image. Each platform
2387should consider the trade-off between memory footprint and security.
2388
Dan Handley610e7e12018-03-01 18:44:00 +00002389This build flag is disabled by default, minimising memory footprint. On Arm
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002390platforms, it is enabled.
2391
Jeenu Viswambharane3f22002017-09-22 08:32:10 +01002392Publish and Subscribe Framework
2393-------------------------------
2394
2395The Publish and Subscribe Framework allows EL3 components to define and publish
2396events, to which other EL3 components can subscribe.
2397
2398The following macros are provided by the framework:
2399
2400- ``REGISTER_PUBSUB_EVENT(event)``: Defines an event, and takes one argument,
2401 the event name, which must be a valid C identifier. All calls to
2402 ``REGISTER_PUBSUB_EVENT`` macro must be placed in the file
2403 ``pubsub_events.h``.
2404
2405- ``PUBLISH_EVENT_ARG(event, arg)``: Publishes a defined event, by iterating
2406 subscribed handlers and calling them in turn. The handlers will be passed the
2407 parameter ``arg``. The expected use-case is to broadcast an event.
2408
2409- ``PUBLISH_EVENT(event)``: Like ``PUBLISH_EVENT_ARG``, except that the value
2410 ``NULL`` is passed to subscribed handlers.
2411
2412- ``SUBSCRIBE_TO_EVENT(event, handler)``: Registers the ``handler`` to
2413 subscribe to ``event``. The handler will be executed whenever the ``event``
2414 is published.
2415
2416- ``for_each_subscriber(event, subscriber)``: Iterates through all handlers
2417 subscribed for ``event``. ``subscriber`` must be a local variable of type
2418 ``pubsub_cb_t *``, and will point to each subscribed handler in turn during
2419 iteration. This macro can be used for those patterns that none of the
2420 ``PUBLISH_EVENT_*()`` macros cover.
2421
2422Publishing an event that wasn't defined using ``REGISTER_PUBSUB_EVENT`` will
2423result in build error. Subscribing to an undefined event however won't.
2424
2425Subscribed handlers must be of type ``pubsub_cb_t``, with following function
2426signature:
2427
2428::
2429
2430 typedef void* (*pubsub_cb_t)(const void *arg);
2431
2432There may be arbitrary number of handlers registered to the same event. The
2433order in which subscribed handlers are notified when that event is published is
2434not defined. Subscribed handlers may be executed in any order; handlers should
2435not assume any relative ordering amongst them.
2436
2437Publishing an event on a PE will result in subscribed handlers executing on that
2438PE only; it won't cause handlers to execute on a different PE.
2439
2440Note that publishing an event on a PE blocks until all the subscribed handlers
2441finish executing on the PE.
2442
Dan Handley610e7e12018-03-01 18:44:00 +00002443TF-A generic code publishes and subscribes to some events within. Platform
2444ports are discouraged from subscribing to them. These events may be withdrawn,
2445renamed, or have their semantics altered in the future. Platforms may however
2446register, publish, and subscribe to platform-specific events.
Dimitris Papastamosa7921b92017-10-13 15:27:58 +01002447
Jeenu Viswambharane3f22002017-09-22 08:32:10 +01002448Publish and Subscribe Example
2449~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2450
2451A publisher that wants to publish event ``foo`` would:
2452
2453- Define the event ``foo`` in the ``pubsub_events.h``.
2454
2455 ::
2456
2457 REGISTER_PUBSUB_EVENT(foo);
2458
2459- Depending on the nature of event, use one of ``PUBLISH_EVENT_*()`` macros to
2460 publish the event at the appropriate path and time of execution.
2461
2462A subscriber that wants to subscribe to event ``foo`` published above would
2463implement:
2464
2465::
2466
2467 void *foo_handler(const void *arg)
2468 {
2469 void *result;
2470
2471 /* Do handling ... */
2472
2473 return result;
2474 }
2475
2476 SUBSCRIBE_TO_EVENT(foo, foo_handler);
2477
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002478Performance Measurement Framework
2479---------------------------------
2480
2481The Performance Measurement Framework (PMF) facilitates collection of
Dan Handley610e7e12018-03-01 18:44:00 +00002482timestamps by registered services and provides interfaces to retrieve them
2483from within TF-A. A platform can choose to expose appropriate SMCs to
2484retrieve these collected timestamps.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002485
2486By default, the global physical counter is used for the timestamp
2487value and is read via ``CNTPCT_EL0``. The framework allows to retrieve
2488timestamps captured by other CPUs.
2489
2490Timestamp identifier format
2491~~~~~~~~~~~~~~~~~~~~~~~~~~~
2492
2493A PMF timestamp is uniquely identified across the system via the
2494timestamp ID or ``tid``. The ``tid`` is composed as follows:
2495
2496::
2497
2498 Bits 0-7: The local timestamp identifier.
2499 Bits 8-9: Reserved.
2500 Bits 10-15: The service identifier.
2501 Bits 16-31: Reserved.
2502
2503#. The service identifier. Each PMF service is identified by a
2504 service name and a service identifier. Both the service name and
2505 identifier are unique within the system as a whole.
2506
2507#. The local timestamp identifier. This identifier is unique within a given
2508 service.
2509
2510Registering a PMF service
2511~~~~~~~~~~~~~~~~~~~~~~~~~
2512
2513To register a PMF service, the ``PMF_REGISTER_SERVICE()`` macro from ``pmf.h``
2514is used. The arguments required are the service name, the service ID,
2515the total number of local timestamps to be captured and a set of flags.
2516
2517The ``flags`` field can be specified as a bitwise-OR of the following values:
2518
2519::
2520
2521 PMF_STORE_ENABLE: The timestamp is stored in memory for later retrieval.
2522 PMF_DUMP_ENABLE: The timestamp is dumped on the serial console.
2523
2524The ``PMF_REGISTER_SERVICE()`` reserves memory to store captured
2525timestamps in a PMF specific linker section at build time.
2526Additionally, it defines necessary functions to capture and
2527retrieve a particular timestamp for the given service at runtime.
2528
Dan Handley610e7e12018-03-01 18:44:00 +00002529The macro ``PMF_REGISTER_SERVICE()`` only enables capturing PMF timestamps
2530from within TF-A. In order to retrieve timestamps from outside of TF-A, the
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002531``PMF_REGISTER_SERVICE_SMC()`` macro must be used instead. This macro
2532accepts the same set of arguments as the ``PMF_REGISTER_SERVICE()``
2533macro but additionally supports retrieving timestamps using SMCs.
2534
2535Capturing a timestamp
2536~~~~~~~~~~~~~~~~~~~~~
2537
2538PMF timestamps are stored in a per-service timestamp region. On a
2539system with multiple CPUs, each timestamp is captured and stored
2540in a per-CPU cache line aligned memory region.
2541
2542Having registered the service, the ``PMF_CAPTURE_TIMESTAMP()`` macro can be
2543used to capture a timestamp at the location where it is used. The macro
2544takes the service name, a local timestamp identifier and a flag as arguments.
2545
2546The ``flags`` field argument can be zero, or ``PMF_CACHE_MAINT`` which
2547instructs PMF to do cache maintenance following the capture. Cache
2548maintenance is required if any of the service's timestamps are captured
2549with data cache disabled.
2550
2551To capture a timestamp in assembly code, the caller should use
2552``pmf_calc_timestamp_addr`` macro (defined in ``pmf_asm_macros.S``) to
2553calculate the address of where the timestamp would be stored. The
2554caller should then read ``CNTPCT_EL0`` register to obtain the timestamp
2555and store it at the determined address for later retrieval.
2556
2557Retrieving a timestamp
2558~~~~~~~~~~~~~~~~~~~~~~
2559
Dan Handley610e7e12018-03-01 18:44:00 +00002560From within TF-A, timestamps for individual CPUs can be retrieved using either
2561``PMF_GET_TIMESTAMP_BY_MPIDR()`` or ``PMF_GET_TIMESTAMP_BY_INDEX()`` macros.
2562These macros accept the CPU's MPIDR value, or its ordinal position
2563respectively.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002564
Dan Handley610e7e12018-03-01 18:44:00 +00002565From outside TF-A, timestamps for individual CPUs can be retrieved by calling
2566into ``pmf_smc_handler()``.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002567
2568.. code:: c
2569
2570 Interface : pmf_smc_handler()
2571 Argument : unsigned int smc_fid, u_register_t x1,
2572 u_register_t x2, u_register_t x3,
2573 u_register_t x4, void *cookie,
2574 void *handle, u_register_t flags
2575 Return : uintptr_t
2576
2577 smc_fid: Holds the SMC identifier which is either `PMF_SMC_GET_TIMESTAMP_32`
2578 when the caller of the SMC is running in AArch32 mode
2579 or `PMF_SMC_GET_TIMESTAMP_64` when the caller is running in AArch64 mode.
2580 x1: Timestamp identifier.
2581 x2: The `mpidr` of the CPU for which the timestamp has to be retrieved.
2582 This can be the `mpidr` of a different core to the one initiating
2583 the SMC. In that case, service specific cache maintenance may be
2584 required to ensure the updated copy of the timestamp is returned.
2585 x3: A flags value that is either 0 or `PMF_CACHE_MAINT`. If
2586 `PMF_CACHE_MAINT` is passed, then the PMF code will perform a
2587 cache invalidate before reading the timestamp. This ensures
2588 an updated copy is returned.
2589
2590The remaining arguments, ``x4``, ``cookie``, ``handle`` and ``flags`` are unused
2591in this implementation.
2592
2593PMF code structure
2594~~~~~~~~~~~~~~~~~~
2595
2596#. ``pmf_main.c`` consists of core functions that implement service registration,
2597 initialization, storing, dumping and retrieving timestamps.
2598
2599#. ``pmf_smc.c`` contains the SMC handling for registered PMF services.
2600
2601#. ``pmf.h`` contains the public interface to Performance Measurement Framework.
2602
2603#. ``pmf_asm_macros.S`` consists of macros to facilitate capturing timestamps in
2604 assembly code.
2605
2606#. ``pmf_helpers.h`` is an internal header used by ``pmf.h``.
2607
Dan Handley610e7e12018-03-01 18:44:00 +00002608Armv8-A Architecture Extensions
2609-------------------------------
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002610
Dan Handley610e7e12018-03-01 18:44:00 +00002611TF-A makes use of Armv8-A Architecture Extensions where applicable. This
2612section lists the usage of Architecture Extensions, and build flags
2613controlling them.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002614
2615In general, and unless individually mentioned, the build options
2616``ARM_ARCH_MAJOR`` and ``ARM_ARCH_MINOR`` selects the Architecture Extension to
Dan Handley610e7e12018-03-01 18:44:00 +00002617target when building TF-A. Subsequent Arm Architecture Extensions are backward
2618compatible with previous versions.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002619
2620The build system only requires that ``ARM_ARCH_MAJOR`` and ``ARM_ARCH_MINOR`` have a
2621valid numeric value. These build options only control whether or not
Dan Handley610e7e12018-03-01 18:44:00 +00002622Architecture Extension-specific code is included in the build. Otherwise, TF-A
2623targets the base Armv8.0-A architecture; i.e. as if ``ARM_ARCH_MAJOR`` == 8
2624and ``ARM_ARCH_MINOR`` == 0, which are also their respective default values.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002625
2626See also the *Summary of build options* in `User Guide`_.
2627
2628For details on the Architecture Extension and available features, please refer
2629to the respective Architecture Extension Supplement.
2630
Dan Handley610e7e12018-03-01 18:44:00 +00002631Armv8.1-A
2632~~~~~~~~~
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002633
2634This Architecture Extension is targeted when ``ARM_ARCH_MAJOR`` >= 8, or when
2635``ARM_ARCH_MAJOR`` == 8 and ``ARM_ARCH_MINOR`` >= 1.
2636
2637- The Compare and Swap instruction is used to implement spinlocks. Otherwise,
2638 the load-/store-exclusive instruction pair is used.
2639
Dan Handley610e7e12018-03-01 18:44:00 +00002640Armv8.2-A
2641~~~~~~~~~
Isla Mitchellc4a1a072017-08-07 11:20:13 +01002642
2643This Architecture Extension is targeted when ``ARM_ARCH_MAJOR`` == 8 and
2644``ARM_ARCH_MINOR`` >= 2.
2645
2646- The Common not Private (CnP) bit is enabled to indicate that multiple
Sandrine Bailleuxfee6e262018-01-29 14:48:15 +01002647 Processing Elements in the same Inner Shareable domain use the same
2648 translation table entries for a given stage of translation for a particular
2649 translation regime.
Isla Mitchellc4a1a072017-08-07 11:20:13 +01002650
Dan Handley610e7e12018-03-01 18:44:00 +00002651Armv7-A
2652~~~~~~~
Etienne Carriere1374fcb2017-11-08 13:48:40 +01002653
2654This Architecture Extension is targeted when ``ARM_ARCH_MAJOR`` == 7.
2655
Dan Handley610e7e12018-03-01 18:44:00 +00002656There are several Armv7-A extensions available. Obviously the TrustZone
2657extension is mandatory to support the TF-A bootloader and runtime services.
Etienne Carriere1374fcb2017-11-08 13:48:40 +01002658
Dan Handley610e7e12018-03-01 18:44:00 +00002659Platform implementing an Armv7-A system can to define from its target
Etienne Carriere1374fcb2017-11-08 13:48:40 +01002660Cortex-A architecture through ``ARM_CORTEX_A<X> = yes`` in their
2661``plaform.mk`` script. For example ``ARM_CORTEX_A15=yes`` for a
2662Cortex-A15 target.
2663
2664Platform can also set ``ARM_WITH_NEON=yes`` to enable neon support.
2665Note that using neon at runtime has constraints on non secure wolrd context.
Dan Handley610e7e12018-03-01 18:44:00 +00002666TF-A does not yet provide VFP context management.
Etienne Carriere1374fcb2017-11-08 13:48:40 +01002667
2668Directive ``ARM_CORTEX_A<x>`` and ``ARM_WITH_NEON`` are used to set
2669the toolchain target architecture directive.
2670
2671Platform may choose to not define straight the toolchain target architecture
2672directive by defining ``MARCH32_DIRECTIVE``.
2673I.e:
2674
2675::
2676
2677 MARCH32_DIRECTIVE := -mach=armv7-a
2678
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002679Code Structure
2680--------------
2681
Dan Handley610e7e12018-03-01 18:44:00 +00002682TF-A code is logically divided between the three boot loader stages mentioned
2683in the previous sections. The code is also divided into the following
2684categories (present as directories in the source code):
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002685
2686- **Platform specific.** Choice of architecture specific code depends upon
2687 the platform.
2688- **Common code.** This is platform and architecture agnostic code.
2689- **Library code.** This code comprises of functionality commonly used by all
2690 other code. The PSCI implementation and other EL3 runtime frameworks reside
2691 as Library components.
2692- **Stage specific.** Code specific to a boot stage.
2693- **Drivers.**
2694- **Services.** EL3 runtime services (eg: SPD). Specific SPD services
2695 reside in the ``services/spd`` directory (e.g. ``services/spd/tspd``).
2696
2697Each boot loader stage uses code from one or more of the above mentioned
2698categories. Based upon the above, the code layout looks like this:
2699
2700::
2701
2702 Directory Used by BL1? Used by BL2? Used by BL31?
2703 bl1 Yes No No
2704 bl2 No Yes No
2705 bl31 No No Yes
2706 plat Yes Yes Yes
2707 drivers Yes No Yes
2708 common Yes Yes Yes
2709 lib Yes Yes Yes
2710 services No No Yes
2711
2712The build system provides a non configurable build option IMAGE\_BLx for each
2713boot loader stage (where x = BL stage). e.g. for BL1 , IMAGE\_BL1 will be
Dan Handley610e7e12018-03-01 18:44:00 +00002714defined by the build system. This enables TF-A to compile certain code only
2715for specific boot loader stages
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002716
2717All assembler files have the ``.S`` extension. The linker source files for each
2718boot stage have the extension ``.ld.S``. These are processed by GCC to create the
2719linker scripts which have the extension ``.ld``.
2720
2721FDTs provide a description of the hardware platform and are used by the Linux
2722kernel at boot time. These can be found in the ``fdts`` directory.
2723
2724References
2725----------
2726
Dan Handley610e7e12018-03-01 18:44:00 +00002727.. [#] Trusted Board Boot Requirements CLIENT PDD (Arm DEN0006C-1). Available
2728 under NDA through your Arm account representative.
Douglas Raillard30d7b362017-06-28 16:14:55 +01002729.. [#] `Power State Coordination Interface PDD`_
2730.. [#] `SMC Calling Convention PDD`_
Dan Handley610e7e12018-03-01 18:44:00 +00002731.. [#] `TF-A Interrupt Management Design guide`_.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002732
2733--------------
2734
Dan Handley610e7e12018-03-01 18:44:00 +00002735*Copyright (c) 2013-2018, Arm Limited and Contributors. All rights reserved.*
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002736
2737.. _Reset Design: ./reset-design.rst
2738.. _Porting Guide: ./porting-guide.rst
2739.. _Firmware Update: ./firmware-update.rst
2740.. _PSCI PDD: http://infocenter.arm.com/help/topic/com.arm.doc.den0022d/Power_State_Coordination_Interface_PDD_v1_1_DEN0022D.pdf
2741.. _SMC calling convention PDD: http://infocenter.arm.com/help/topic/com.arm.doc.den0028b/ARM_DEN0028B_SMC_Calling_Convention.pdf
2742.. _PSCI Library integration guide: ./psci-lib-integration-guide.rst
2743.. _SMCCC: http://infocenter.arm.com/help/topic/com.arm.doc.den0028b/ARM_DEN0028B_SMC_Calling_Convention.pdf
2744.. _PSCI: http://infocenter.arm.com/help/topic/com.arm.doc.den0022d/Power_State_Coordination_Interface_PDD_v1_1_DEN0022D.pdf
2745.. _Power State Coordination Interface PDD: http://infocenter.arm.com/help/topic/com.arm.doc.den0022d/Power_State_Coordination_Interface_PDD_v1_1_DEN0022D.pdf
2746.. _here: ./psci-lib-integration-guide.rst
2747.. _cpu-specific-build-macros.rst: ./cpu-specific-build-macros.rst
2748.. _CPUBM: ./cpu-specific-build-macros.rst
Dan Handley610e7e12018-03-01 18:44:00 +00002749.. _Arm ARM: http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0487a.e/index.html
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002750.. _User Guide: ./user-guide.rst
2751.. _SMC Calling Convention PDD: http://infocenter.arm.com/help/topic/com.arm.doc.den0028b/ARM_DEN0028B_SMC_Calling_Convention.pdf
Dan Handley610e7e12018-03-01 18:44:00 +00002752.. _TF-A Interrupt Management Design guide: ./interrupt-framework-design.rst
Antonio Nino Diazb5d68092017-05-23 11:49:22 +01002753.. _Xlat_tables design: xlat-tables-lib-v2-design.rst
Douglas Raillardd7c21b72017-06-28 15:23:03 +01002754
2755.. |Image 1| image:: diagrams/rt-svc-descs-layout.png?raw=true