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