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