AArch32: Add tf_printf support
authorSoby Mathew <soby.mathew@arm.com>
Thu, 5 May 2016 11:34:41 +0000 (12:34 +0100)
committerSoby Mathew <soby.mathew@arm.com>
Wed, 10 Aug 2016 11:35:46 +0000 (12:35 +0100)
commitbc202b44939eabf061d78e03fdced3112325ef92
tree091e594f34f52779865701366ffb6650795233ce
parentb2bca61da51b22cfba303cf389199b9d9d06be4c
AArch32: Add tf_printf support

The tf_printf library uses 64 bit division to print numbers
in appropriate formats but AArch32 mode cannot do 64 bit division
natively. Hence this patch adds additional number printing routines
to handle AArch32 mode in tf_printf library. The decimal format
printing capability is limited to 32 bit integers whereas 64 bits
are supported in hexadecimal format. The library assumes that
secure world is running in Little-Endian mode to do bit
manipulations on 64 bit. Suitable assertions are present to
enforce this assumption.

Change-Id: I55a21e448cef4915d1834d76e48a84ccf0bec36d
common/tf_printf.c