blob: 3da55b66ffb985033bb4ebffe9b8609c75fa070d [file] [log] [blame]
Deepak Pandey9cbacf62018-08-08 10:32:51 +05301/*
John Tsichritzis56369c12019-02-19 13:49:06 +00002 * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
Deepak Pandey9cbacf62018-08-08 10:32:51 +05303 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch.h>
8#include <asm_macros.S>
John Tsichritzis56369c12019-02-19 13:49:06 +00009#include <neoverse_n1.h>
Deepak Pandey9cbacf62018-08-08 10:32:51 +053010#include <cpu_macros.S>
11#include <platform_def.h>
12
13 .globl plat_arm_calc_core_pos
14 .globl plat_reset_handler
15
16 /* -----------------------------------------------------
17 * unsigned int plat_arm_calc_core_pos(u_register_t mpidr)
18 *
19 * Helper function to calculate the core position.
Manish Pandeyb68e2862019-09-11 17:07:40 +010020 * ((ChipId * N1SDP_MAX_CLUSTERS_PER_CHIP + ClusterId) *
21 * N1SDP_MAX_CPUS_PER_CLUSTER * N1SDP_MAX_PE_PER_CPU) +
22 * (CPUId * N1SDP_MAX_PE_PER_CPU) + ThreadId
Deepak Pandey9cbacf62018-08-08 10:32:51 +053023 *
24 * which can be simplified as:
25 *
Manish Pandeyb68e2862019-09-11 17:07:40 +010026 * (((ChipId * N1SDP_MAX_CLUSTERS_PER_CHIP + ClusterId) *
27 * N1SDP_MAX_CPUS_PER_CLUSTER + CPUId) * N1SDP_MAX_PE_PER_CPU) +
28 * ThreadId
Deepak Pandey9cbacf62018-08-08 10:32:51 +053029 * ------------------------------------------------------
30 */
31
32func plat_arm_calc_core_pos
Manish Pandeyb68e2862019-09-11 17:07:40 +010033 mov x4, x0
Deepak Pandey9cbacf62018-08-08 10:32:51 +053034
35 /*
36 * The MT bit in MPIDR is always set for n1sdp and the
37 * affinity level 0 corresponds to thread affinity level.
38 */
39
40 /* Extract individual affinity fields from MPIDR */
Manish Pandeyb68e2862019-09-11 17:07:40 +010041 ubfx x0, x4, #MPIDR_AFF0_SHIFT, #MPIDR_AFFINITY_BITS
42 ubfx x1, x4, #MPIDR_AFF1_SHIFT, #MPIDR_AFFINITY_BITS
43 ubfx x2, x4, #MPIDR_AFF2_SHIFT, #MPIDR_AFFINITY_BITS
44 ubfx x3, x4, #MPIDR_AFF3_SHIFT, #MPIDR_AFFINITY_BITS
Deepak Pandey9cbacf62018-08-08 10:32:51 +053045
46 /* Compute linear position */
Manish Pandeyb68e2862019-09-11 17:07:40 +010047 mov x4, #N1SDP_MAX_CLUSTERS_PER_CHIP
48 madd x2, x3, x4, x2
Deepak Pandey9cbacf62018-08-08 10:32:51 +053049 mov x4, #N1SDP_MAX_CPUS_PER_CLUSTER
50 madd x1, x2, x4, x1
Manish Pandeyb68e2862019-09-11 17:07:40 +010051 mov x4, #N1SDP_MAX_PE_PER_CPU
52 madd x0, x1, x4, x0
Deepak Pandey9cbacf62018-08-08 10:32:51 +053053 ret
54endfunc plat_arm_calc_core_pos
55
56 /* -----------------------------------------------------
57 * void plat_reset_handler(void);
58 *
59 * Determine the CPU MIDR and disable power down bit for
60 * that CPU.
61 * -----------------------------------------------------
62 */
63
64func plat_reset_handler
John Tsichritzis56369c12019-02-19 13:49:06 +000065 jump_if_cpu_midr NEOVERSE_N1_MIDR, N1
Deepak Pandey9cbacf62018-08-08 10:32:51 +053066 ret
67
68 /* -----------------------------------------------------
69 * Disable CPU power down bit in power control register
70 * -----------------------------------------------------
71 */
John Tsichritzis56369c12019-02-19 13:49:06 +000072N1:
73 mrs x0, NEOVERSE_N1_CPUPWRCTLR_EL1
74 bic x0, x0, #NEOVERSE_N1_CORE_PWRDN_EN_MASK
75 msr NEOVERSE_N1_CPUPWRCTLR_EL1, x0
Deepak Pandey9cbacf62018-08-08 10:32:51 +053076 isb
77 ret
78endfunc plat_reset_handler