blob: e813cb159bd8c4c6a81cd067176f76524addf417 [file] [log] [blame] [view]
James Morrisseyba3155b2013-10-29 10:56:46 +00001ARM Trusted Firmware
2====================
Harry Liebelcff4e292013-11-05 18:00:38 +00003
4Detailed changes since last release
5-----------------------------------
6
James Morrisseyba3155b2013-10-29 10:56:46 +00007* Support for Foundation FVP Version 2.0 added.
Harry Liebelcff4e292013-11-05 18:00:38 +00008 The documented UEFI configuration disables some devices that are unavailable
9 in the Foundation FVP, including MMC and CLCD. The resultant UEFI binary can
10 be used on the AEMv8 and Cortex-A57-A53 FVPs, as well as the Foundation FVP.
James Morrisseyba3155b2013-10-29 10:56:46 +000011 NOTE: The software will not work on Version 1.0 of the Foundation FVP.
12
13* Regression-checked against latest Base FVPs (Version 5.2).
14
15* The supplied FDTs expose the Interrupt Translation Service (ITS) available
16 in GICv3.
Harry Liebelcff4e292013-11-05 18:00:38 +000017
Sandrine Bailleux204aa032013-10-28 15:14:00 +000018* Fixed various GCC compiler warnings.
19
Sandrine Bailleux37382742013-11-18 17:26:59 +000020* Unmask SError and Debug exceptions in the trusted firmware.
21 Also route external abort and SError interrupts to EL3.
22
Harry Liebel375ae682013-11-18 16:05:21 +000023* The amount of physical RAM available to Linux as specified in the FDTs for
24 Base FVPs have been increased from 2GB to 4GB. This resolves the issue of
25 failing to start user-space when using a RAM-disk file-system.
26
James Morrisseyeaaeece2013-11-01 13:56:59 +000027* Build products are now created in a separate build directory tree.
28
Sandrine Bailleuxcd29b0a2013-11-27 10:32:17 +000029* Analyze at link-time whether bootloader images will fit in memory and won't
30 overlap each other at run time. If it is not the case then image linking
31 will now fail.
32
33* Reduce the size of the bootloader images by cutting some sections out of
34 their disk images and allocating them at load time, whenever possible.
35
36* Properly initialise the C runtime environment. C code can now safely assume
37 that global variables are initialised to 0 and that initialised data holds
38 the correct value.
39
40* General changes on the memory layout: some sections have been moved, some of
41 them have been merged together, and some alignment constraints on sections
42 have changed.
Harry Liebelcff4e292013-11-05 18:00:38 +000043
Dan Handleyab2d31e2013-12-02 19:25:12 +000044* Enable third party contributions. Add a new contributing.md containing
45 instructions for how to contribute and update copyright text in all files to
46 acknowledge contributors.
47
Achin Guptab127cdb2013-11-12 16:40:00 +000048* The wake up enable bit in the FVP power controller is cleared when a cpu is
49 physically powered up to prevent a spurious wake up from a subsequent cpu
50 off state.
Dan Handleyab2d31e2013-12-02 19:25:12 +000051
Achin Gupta994dfce2013-10-26 13:10:31 +010052* Definitions of some constants related to the PSCI api calls AFFINITY_INFO
53 and CPU_SUSPEND have been corrected.
54
Achin Guptac8afc782013-11-25 18:45:02 +000055* A bug which triggered an error condition in the code executed after a cpu
56 is powered on, if a non zero context id parameter was passed in the PSCI
57 CPU_ON and CPU_SUSPEND api calls has been corrected.
58
Achin Gupta2d94d4a2013-11-05 11:10:38 +000059* A restriction in the FVP code which did not allow the non-secure entrypoint
60 to lie outside the DRAM has been removed.
61
Achin Guptadc98e532013-11-26 15:34:12 +000062* The PSCI CPU_SUSPEND api has been stabilised to an extent where it can be
63 used for entry into power down states with the following restrictions:
64 - Entry into standby states is not supported.
65 - The api is only supported on the AEMv8 Base FVP.
66
67
68* The PSCI AFFINITY_INFO api has undergone limited testing on the AEMv8 Base
69 FVP to allow experimental use.
70
71* Locks corresponding to each affinity level are acquired and released in
72 the correct sequence in the PSCI implementation. Invocation of the PSCI
73 CPU_SUSPEND and CPU_OFF apis simultaneously across cpus & clusters should
74 not result in unexpected behaviour.
75
Sandrine Bailleuxee12f6f2013-11-28 14:55:58 +000076* The API to return the memory layout structures for each bootloader stage has
77 undergone change. A pointer to these structures is returned instead of their
78 copy.
79
80
Achin Gupta4f6ad662013-10-25 09:08:21 +010081ARM Trusted Firmware - version 0.2
82==================================
83
84New features
85------------
86
87* First source release.
88
89* Code for the PSCI suspend feature is supplied, although this is not enabled
90 by default since there are known issues (see below).
91
92
93Issues resolved since last release
94----------------------------------
95
96* The "psci" nodes in the FDTs provided in this release now fully comply
97 with the recommendations made in the PSCI specification.
98
99
100Known issues
101------------
102
103The following is a list of issues which are expected to be fixed in the future
104releases of the ARM Trusted Firmware.
105
106* The TrustZone Address Space Controller (TZC-400) is not being programmed
107 yet. Use of model parameter `-C bp.secure_memory=1` is not supported.
108
109* No support yet for secure world interrupt handling or for switching context
110 between secure and normal worlds in EL3.
111
112* GICv3 support is experimental. The Linux kernel patches to support this are
113 not widely available. There are known issues with GICv3 initialization in
114 the ARM Trusted Firmware.
115
116* Dynamic image loading is not available yet. The current image loader
117 implementation (used to load BL2 and all subsequent images) has some
118 limitations. Changing BL2 or BL3-1 load addresses in certain ways can lead
119 to loading errors, even if the images should theoretically fit in memory.
120
121* Although support for PSCI `CPU_SUSPEND` is present, it is not yet stable
122 and ready for use.
123
James Morrisseyba3155b2013-10-29 10:56:46 +0000124* PSCI API calls `AFFINITY_INFO` & `PSCI_VERSION` are implemented but have not
Achin Gupta4f6ad662013-10-25 09:08:21 +0100125 been tested.
126
127* The ARM Trusted Firmware make files result in all build artifacts being
128 placed in the root of the project. These should be placed in appropriate
129 sub-directories.
130
131* The compilation of ARM Trusted Firmware is not free from compilation
132 warnings. Some of these warnings have not been investigated yet so they
133 could mask real bugs.
134
135* The ARM Trusted Firmware currently uses toolchain/system include files like
136 stdio.h. It should provide versions of these within the project to maintain
137 compatibility between toolchains/systems.
138
139* The PSCI code takes some locks in an incorrect sequence. This may cause
140 problems with suspend and hotplug in certain conditions.
141
142* The Linux kernel used in this release is based on version 3.12-rc4. Using
143 this kernel with the ARM Trusted Firmware fails to start the file-system as
144 a RAM-disk. It fails to execute user-space `init` from the RAM-disk. As an
145 alternative, the VirtioBlock mechanism can be used to provide a file-system
146 to the kernel.
147
148
149Detailed changes since last release
150-----------------------------------
151
Dan Handleyab2d31e2013-12-02 19:25:12 +0000152First source release - not applicable.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100153
154- - - - - - - - - - - - - - - - - - - - - - - - - -
155
Dan Handleyab2d31e2013-12-02 19:25:12 +0000156_Copyright (c) 2013, ARM Limited and Contributors. All rights reserved._