summaryrefslogtreecommitdiff
path: root/plat/freescale/common
diff options
context:
space:
mode:
authorAnson Huang <Anson.Huang@nxp.com>2017-05-12 18:32:49 +0800
committerAnson Huang <Anson.Huang@nxp.com>2017-07-12 23:28:44 +0800
commitc5c85e87950303188abc3ce8cfc0d64ee09d124f (patch)
tree48738695393097191329122c16caf3c42e0bf990 /plat/freescale/common
parentde3efc86fcbcdf90e44a3f389db23d24fda8adda (diff)
Add support for A72 CPU0 as primary cpu
Need to add support for booting up A72 cluster only, so on need to check the cluster ID for primary CPU, that means if CPU ID is 0, then it can be as primary CPU. Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
Diffstat (limited to 'plat/freescale/common')
-rw-r--r--plat/freescale/common/imx8_helpers.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/plat/freescale/common/imx8_helpers.S b/plat/freescale/common/imx8_helpers.S
index 091d60a5..f2da325d 100644
--- a/plat/freescale/common/imx8_helpers.S
+++ b/plat/freescale/common/imx8_helpers.S
@@ -74,7 +74,7 @@
*/
func plat_is_my_cpu_primary
mrs x0, mpidr_el1
- and x0, x0, #(MPIDR_CLUSTER_MASK | MPIDR_CPU_MASK)
+ and x0, x0, #(MPIDR_CPU_MASK)
cmp x0, #PLAT_PRIMARY_CPU
cset x0, eq
ret