Skip reserving memory for non-executable and BL3-0 images
authorJuan Castillo <juan.castillo@arm.com>
Mon, 19 Jan 2015 16:51:21 +0000 (16:51 +0000)
committerDan Handley <dan.handley@arm.com>
Wed, 28 Jan 2015 18:24:31 +0000 (18:24 +0000)
commitc5fb47c389000c7a5189c0ad28a26bf50bf7e65c
tree868d0aceaa9472ac068c7e5dc664188b09bde53c
parent03b2370386f5acbb4fb11614825c67ff38ef9edc
Skip reserving memory for non-executable and BL3-0 images

This patch adds support to not reserve the memory where an image is
loaded if the image is:

  1. A non-executable image e.g. a certificate
  2. An executable image which is not meant to run on the
     application CPU (e.g. BL3-0)

Both types of images are characterized by a NULL entrypoint argument
to the load_image() function. It is used to distinguish them from
other type of images.

Important: Use this feature carefully. The caller is responsible for
providing a valid entrypoint while loading images which will execute
on the application CPU to prevent a potential overwrite of the
corresponding memory region.

Change-Id: Ied482280d9db714c529ec12c33a6c1d918d77a4e
common/bl_common.c