diff options
author | Juan Castillo <juan.castillo@arm.com> | 2015-12-14 09:35:25 +0000 |
---|---|---|
committer | Juan Castillo <juan.castillo@arm.com> | 2015-12-14 12:31:37 +0000 |
commit | d178637d2bac46ef0d227395663c55cc46a25d73 (patch) | |
tree | d5cc70b9270853267cfbb213b1d65b39c0d2899d /docs/platform-migration-guide.md | |
parent | f59821d51255f14e0ac00eef7bc98ef75c686876 (diff) |
Remove dashes from image names: 'BL3-x' --> 'BL3x'
This patch removes the dash character from the image name, to
follow the image terminology in the Trusted Firmware Wiki page:
https://github.com/ARM-software/arm-trusted-firmware/wiki
Changes apply to output messages, comments and documentation.
non-ARM platform files have been left unmodified.
Change-Id: Ic2a99be4ed929d52afbeb27ac765ceffce46ed76
Diffstat (limited to 'docs/platform-migration-guide.md')
-rw-r--r-- | docs/platform-migration-guide.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/platform-migration-guide.md b/docs/platform-migration-guide.md index f6790ef1..27cd0671 100644 --- a/docs/platform-migration-guide.md +++ b/docs/platform-migration-guide.md @@ -314,7 +314,7 @@ This function is called with the `SCTLR.M` and `SCTLR.C` bits disabled. The core is identified by its `MPIDR`, which is passed as the argument. The function is responsible for distinguishing between a warm and cold reset using platform- specific means. If it is a warm reset, it returns the entrypoint into the -BL3-1 image that the core must jump to. If it is a cold reset, this function +BL31 image that the core must jump to. If it is a cold reset, this function must return zero. This function is also responsible for implementing a platform-specific mechanism @@ -387,7 +387,7 @@ provided in [plat/common/aarch64/platform_up_stack.S] and [plat/common/aarch64/platform_mp_stack.S] -## Modifications for Power State Coordination Interface (in BL3-1) +## Modifications for Power State Coordination Interface (in BL31) The following functions must be implemented to initialize PSCI functionality in the ARM Trusted Firmware. @@ -448,7 +448,7 @@ called by the primary core. This function is called by PSCI initialization code. Its purpose is to export handler routines for platform-specific power management actions by populating the passed pointer with a pointer to the private `plat_pm_ops` structure of -BL3-1. +BL31. A description of each member of this structure is given below. A platform port is expected to implement these handlers if the corresponding PSCI operation |