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