css_helpers.S 3.28 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
8
9
10
11
 */
#include <arch.h>
#include <asm_macros.S>
#include <cpu_macros.S>
#include <css_def.h>

	.weak	plat_secondary_cold_boot_setup
12
	.weak	plat_get_my_entrypoint
13
	.globl	css_calc_core_pos_swap_cluster
14
	.weak	plat_is_my_cpu_primary
15

16
17
18
19
20
	/* ---------------------------------------------------------------------
	 * void plat_secondary_cold_boot_setup(void);
	 *
	 * In the normal boot flow, cold-booting secondary CPUs is not yet
	 * implemented and they panic.
21
	 *
22
23
24
25
26
27
	 * When booting an EL3 payload, secondary CPUs are placed in a holding
	 * pen, waiting for their mailbox to be populated. Note that all CPUs
	 * share the same mailbox ; therefore, populating it will release all
	 * CPUs from their holding pen. If finer-grained control is needed then
	 * this should be handled in the code that secondary CPUs jump to.
	 * ---------------------------------------------------------------------
28
29
	 */
func plat_secondary_cold_boot_setup
30
31
#ifndef EL3_PAYLOAD_BASE
	/* TODO: Implement secondary CPU cold boot setup on CSS platforms */
32
33
cb_panic:
	b	cb_panic
34
35
36
37
38
39
40
41
42
43
44
45
#else
	mov_imm	x0, PLAT_ARM_TRUSTED_MAILBOX_BASE

	/* Wait until the mailbox gets populated */
poll_mailbox:
	ldr	x1, [x0]
	cbz	x1, 1f
	br	x1
1:
	wfe
	b	poll_mailbox
#endif /* EL3_PAYLOAD_BASE */
46
47
endfunc plat_secondary_cold_boot_setup

48
	/* ---------------------------------------------------------------------
49
	 * uintptr_t plat_get_my_entrypoint (void);
50
	 *
51
52
53
54
55
	 * Main job of this routine is to distinguish between a cold and a warm
	 * boot. On CSS platforms, this distinction is based on the contents of
	 * the Trusted Mailbox. It is initialised to zero by the SCP before the
	 * AP cores are released from reset. Therefore, a zero mailbox means
	 * it's a cold reset.
56
	 *
57
58
59
60
	 * This functions returns the contents of the mailbox, i.e.:
	 *  - 0 for a cold boot;
	 *  - the warm boot entrypoint for a warm boot.
	 * ---------------------------------------------------------------------
61
	 */
62
func plat_get_my_entrypoint
63
	mov_imm	x0, PLAT_ARM_TRUSTED_MAILBOX_BASE
64
65
	ldr	x0, [x0]
	ret
66
endfunc plat_get_my_entrypoint
67

68
	/* -----------------------------------------------------------
69
	 * unsigned int css_calc_core_pos_swap_cluster(u_register_t mpidr)
70
	 * Utility function to calculate the core position by
71
72
	 * swapping the cluster order. This is necessary in order to
	 * match the format of the boot information passed by the SCP
73
	 * and read in plat_is_my_cpu_primary below.
74
	 * -----------------------------------------------------------
75
	 */
76
func css_calc_core_pos_swap_cluster
77
78
79
80
81
	and	x1, x0, #MPIDR_CPU_MASK
	and	x0, x0, #MPIDR_CLUSTER_MASK
	eor	x0, x0, #(1 << MPIDR_AFFINITY_BITS)  // swap cluster order
	add	x0, x1, x0, LSR #6
	ret
82
endfunc css_calc_core_pos_swap_cluster
83
84

	/* -----------------------------------------------------
85
	 * unsigned int plat_is_my_cpu_primary (void);
86
	 *
87
	 * Find out whether the current cpu is the primary
88
89
90
	 * cpu (applicable ony after a cold boot)
	 * -----------------------------------------------------
	 */
91
func plat_is_my_cpu_primary
92
	mov	x9, x30
93
	bl	plat_my_core_pos
94
95
	ldr	x1, =SCP_BOOT_CFG_ADDR
	ldr	x1, [x1]
96
97
	ubfx	x1, x1, #PLAT_CSS_PRIMARY_CPU_SHIFT, \
			#PLAT_CSS_PRIMARY_CPU_BIT_WIDTH
98
	cmp	x0, x1
99
	cset	w0, eq
100
	ret	x9
101
endfunc plat_is_my_cpu_primary