Add support for romlib in the build system
authorRoberto Vargas <roberto.vargas@arm.com>
Tue, 22 May 2018 15:05:42 +0000 (16:05 +0100)
committerRoberto Vargas <roberto.vargas@arm.com>
Fri, 3 Aug 2018 10:31:42 +0000 (11:31 +0100)
commit5accce5bcc211c08e80c638acbd01099af81cc37
tree923fe8d7c1cd69eccef6eeb9ed5c875f65f9b5c8
parent6c3733456706809d5c9fb78a9746bf2fa484fb91
Add support for romlib in the build system

Romlib is a new image that is stored in ROM and contains the code of
several libraries that can be shared between different images. All
the functions within in the library are accessed using a jump table
which allows to update the romlib image whithout changing the binary
compatibility. This jump table can be also stored in RAM and it can
allow to patch a romlib with potential bugs fixes..

Change-Id: If980ccdaca24b7aaca900e32acc68baf6f94ab35
Signed-off-by: Roberto Vargas <roberto.vargas@arm.com>
Makefile
include/common/romlib.h [new file with mode: 0644]
lib/romlib/Makefile [new file with mode: 0644]
lib/romlib/gentbl.sh [new file with mode: 0755]
lib/romlib/genvar.sh [new file with mode: 0755]
lib/romlib/genwrappers.sh [new file with mode: 0755]
lib/romlib/init.s [new file with mode: 0644]
lib/romlib/jmptbl.i [new file with mode: 0644]
lib/romlib/romlib.ld.S [new file with mode: 0644]
make_helpers/build_macros.mk
make_helpers/defaults.mk