Prevent optimisation of sysregs accessors calls
authorSandrine Bailleux <sandrine.bailleux@arm.com>
Wed, 7 Jan 2015 16:36:11 +0000 (16:36 +0000)
committerSandrine Bailleux <sandrine.bailleux@arm.com>
Wed, 7 Jan 2015 17:24:47 +0000 (17:24 +0000)
commit36e2fd0139b9e1a69cffb0766dee5651ec63e8f3
tree06a12e78baa92916402c3aded09ffab9929c1a73
parent29e32cba4ad243071c643c839dfd4f46a0b19655
Prevent optimisation of sysregs accessors calls

Calls to system register read accessors functions may be optimised
out by the compiler if called twice in a row for the same register.
This is because the compiler is not aware that the result from
the instruction may be modified by external agents. Therefore, if
nothing modifies the register between the 2 reads as far as the
compiler knows then it might consider that it is useless to read
it twice and emit only 1 call.

This behaviour is faulty for registers that may not have the same
value if read twice in succession. E.g.: counters, timer
control/countdown registers, GICv3 interrupt status registers and
so on.

The same problem happens for calls to system register write
accessors functions. The compiler might optimise out some calls
if it considers that it will produce the same result. Again, this
behaviour is faulty for cases where intermediate writes to these
registers make a difference in the system.

This patch fixes the problem by making these assembly register
accesses volatile.

Fixes ARM-software/tf-issues#273

Change-Id: I33903bc4cc4eea8a8d87bc2c757909fbb0138925
include/lib/aarch64/arch_helpers.h