aboutsummaryrefslogtreecommitdiff
path: root/core/arch/arm/plat-vexpress/juno_core_pos_a64.S
blob: 316ce73459682a3b7118399f45abd2c005074979 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (c) 2014, Linaro Limited
 * All rights reserved.
 */

#include <asm.S>
#include <arm.h>

/* For Juno number the two A57s as 4 to 5 and A53s as 0 to 3 */
FUNC get_core_pos_mpidr , :
	/* Calculate CorePos = ((ClusterId ^ 1) * 4) + CoreId */
	and	x1, x0, #MPIDR_CPU_MASK
	and	x0, x0, #MPIDR_CLUSTER_MASK
	eor	x0, x0, #(1 << MPIDR_CLUSTER_SHIFT)
	add	x0, x1, x0, LSR #6
	ret
END_FUNC get_core_pos_mpidr