Fix integer extension in mpidr_set_aff_inst()
authorAndrew Thoelke <andrew.thoelke@arm.com>
Thu, 11 Jun 2015 13:22:07 +0000 (14:22 +0100)
committerAndrew Thoelke <andrew.thoelke@arm.com>
Fri, 19 Jun 2015 10:26:16 +0000 (11:26 +0100)
mpidr_set_aff_inst() is left shifting an int constant and an
unsigned char value to construct an MPIDR. For affinity level 3 a
shift of 32 would result in shifting out of the 32-bit type and
have no effect on the MPIDR.

These values need to be extended to unsigned long before shifting
to ensure correct results for affinity level 3.

Change-Id: I1ef40afea535f14cfd820c347a065a228e8f4536

services/std_svc/psci/psci_common.c

index 237cf1e952fb69c99041b06db9d4588a5c7f1e73..63d84760890cf43938d5f43bdc13fba2bea5a665 100644 (file)
@@ -185,8 +185,8 @@ unsigned long mpidr_set_aff_inst(unsigned long mpidr,
        aff_shift = get_afflvl_shift(aff_lvl);
 
        /* Clear the existing affinity instance & set the new one*/
-       mpidr &= ~(MPIDR_AFFLVL_MASK << aff_shift);
-       mpidr |= aff_inst << aff_shift;
+       mpidr &= ~(((unsigned long)MPIDR_AFFLVL_MASK) << aff_shift);
+       mpidr |= ((unsigned long)aff_inst) << aff_shift;
 
        return mpidr;
 }