cpu_data.h 4.98 KB
Newer Older
1
/*
2
 * Copyright (c) 2014-2018, 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
#ifndef CPU_DATA_H
#define CPU_DATA_H
9

10
#include <ehf.h>
11
12
#include <platform_def.h>	/* CACHE_WRITEBACK_GRANULE required */

13
14
15
16
17
18
#ifdef AARCH32

#if CRASH_REPORTING
#error "Crash reporting is not supported in AArch32"
#endif
#define CPU_DATA_CPU_OPS_PTR		0x0
19
#define CPU_DATA_CRASH_BUF_OFFSET	0x4
20
21
22

#else /* AARCH32 */

23
/* Offsets for the cpu_data structure */
24
#define CPU_DATA_CRASH_BUF_OFFSET	0x18
25
26
27
28
29
30
/* need enough space in crash buffer to save 8 registers */
#define CPU_DATA_CRASH_BUF_SIZE		64
#define CPU_DATA_CPU_OPS_PTR		0x10

#endif /* AARCH32 */

31
#if CRASH_REPORTING
dp-arm's avatar
dp-arm committed
32
33
#define CPU_DATA_CRASH_BUF_END		(CPU_DATA_CRASH_BUF_OFFSET + \
						CPU_DATA_CRASH_BUF_SIZE)
34
#else
dp-arm's avatar
dp-arm committed
35
36
37
#define CPU_DATA_CRASH_BUF_END		CPU_DATA_CRASH_BUF_OFFSET
#endif

38
39
40
41
42
43
/* cpu_data size is the data size rounded up to the platform cache line size */
#define CPU_DATA_SIZE			(((CPU_DATA_CRASH_BUF_END + \
					CACHE_WRITEBACK_GRANULE - 1) / \
						CACHE_WRITEBACK_GRANULE) * \
							CACHE_WRITEBACK_GRANULE)

dp-arm's avatar
dp-arm committed
44
45
46
47
48
#if ENABLE_RUNTIME_INSTRUMENTATION
/* Temporary space to store PMF timestamps from assembly code */
#define CPU_DATA_PMF_TS_COUNT		1
#define CPU_DATA_PMF_TS0_OFFSET		CPU_DATA_CRASH_BUF_END
#define CPU_DATA_PMF_TS0_IDX		0
49
#endif
50

51
52
53
#ifndef __ASSEMBLY__

#include <arch_helpers.h>
54
#include <cassert.h>
55
#include <platform_def.h>
56
#include <psci.h>
57
58
#include <stdint.h>

59
60
61
62
63
64
65
66
67
/* Offsets for the cpu_data structure */
#define CPU_DATA_PSCI_LOCK_OFFSET	__builtin_offsetof\
		(cpu_data_t, psci_svc_cpu_data.pcpu_bakery_info)

#if PLAT_PCPU_DATA_SIZE
#define CPU_DATA_PLAT_PCPU_OFFSET	__builtin_offsetof\
		(cpu_data_t, platform_cpu_data)
#endif

68
69
70
71
72
73
/*******************************************************************************
 * Function & variable prototypes
 ******************************************************************************/

/*******************************************************************************
 * Cache of frequently used per-cpu data:
74
 *   Pointers to non-secure and secure security state contexts
75
76
77
78
79
80
81
82
83
84
85
 *   Address of the crash stack
 * It is aligned to the cache line boundary to allow efficient concurrent
 * manipulation of these pointers on different cpus
 *
 * TODO: Add other commonly used variables to this (tf_issues#90)
 *
 * The data structure and the _cpu_data accessors should not be used directly
 * by components that have per-cpu members. The member access macros should be
 * used for this.
 ******************************************************************************/
typedef struct cpu_data {
86
#ifndef AARCH32
87
	void *cpu_context[2];
88
#endif
89
	uintptr_t cpu_ops_ptr;
90
#if CRASH_REPORTING
91
	u_register_t crash_buf[CPU_DATA_CRASH_BUF_SIZE >> 3];
dp-arm's avatar
dp-arm committed
92
93
94
#endif
#if ENABLE_RUNTIME_INSTRUMENTATION
	uint64_t cpu_data_pmf_ts[CPU_DATA_PMF_TS_COUNT];
95
96
97
98
#endif
	struct psci_cpu_data psci_svc_cpu_data;
#if PLAT_PCPU_DATA_SIZE
	uint8_t platform_cpu_data[PLAT_PCPU_DATA_SIZE];
99
#endif
100
101
102
#if defined(IMAGE_BL31) && EL3_EXCEPTION_HANDLING
	pe_exc_data_t ehf_data;
#endif
103
104
} __aligned(CACHE_WRITEBACK_GRANULE) cpu_data_t;

105
106
extern cpu_data_t percpu_data[PLATFORM_CORE_COUNT];

107
108
109
110
111
112
113
#if CRASH_REPORTING
/* verify assembler offsets match data structures */
CASSERT(CPU_DATA_CRASH_BUF_OFFSET == __builtin_offsetof
	(cpu_data_t, crash_buf),
	assert_cpu_data_crash_stack_offset_mismatch);
#endif

114
115
CASSERT(CPU_DATA_SIZE == sizeof(cpu_data_t),
		assert_cpu_data_size_mismatch);
116

117
118
119
120
CASSERT(CPU_DATA_CPU_OPS_PTR == __builtin_offsetof
		(cpu_data_t, cpu_ops_ptr),
		assert_cpu_data_cpu_ops_ptr_offset_mismatch);

dp-arm's avatar
dp-arm committed
121
122
123
124
125
126
#if ENABLE_RUNTIME_INSTRUMENTATION
CASSERT(CPU_DATA_PMF_TS0_OFFSET == __builtin_offsetof
		(cpu_data_t, cpu_data_pmf_ts[0]),
		assert_cpu_data_pmf_ts0_offset_mismatch);
#endif

127
128
struct cpu_data *_cpu_data_by_index(uint32_t cpu_index);

129
#ifndef AARCH32
130
131
132
133
134
/* Return the cpu_data structure for the current CPU. */
static inline struct cpu_data *_cpu_data(void)
{
	return (cpu_data_t *)read_tpidr_el3();
}
135
136
137
#else
struct cpu_data *_cpu_data(void);
#endif
138
139
140
141
142
143

/**************************************************************************
 * APIs for initialising and accessing per-cpu data
 *************************************************************************/

void init_cpu_data_ptr(void);
144
void init_cpu_ops(void);
145
146
147
148
149

#define get_cpu_data(_m)		   _cpu_data()->_m
#define set_cpu_data(_m, _v)		   _cpu_data()->_m = _v
#define get_cpu_data_by_index(_ix, _m)	   _cpu_data_by_index(_ix)->_m
#define set_cpu_data_by_index(_ix, _m, _v) _cpu_data_by_index(_ix)->_m = _v
150
/* ((cpu_data_t *)0)->_m is a dummy to get the sizeof the struct member _m */
Soby Mathew's avatar
Soby Mathew committed
151
#define flush_cpu_data(_m)	   flush_dcache_range((uintptr_t)	  \
152
153
						&(_cpu_data()->_m), \
						sizeof(((cpu_data_t *)0)->_m))
Soby Mathew's avatar
Soby Mathew committed
154
#define inv_cpu_data(_m)	   inv_dcache_range((uintptr_t)	  	  \
155
156
						&(_cpu_data()->_m), \
						sizeof(((cpu_data_t *)0)->_m))
157
#define flush_cpu_data_by_index(_ix, _m)	\
158
				   flush_dcache_range((uintptr_t)	  \
159
					 &(_cpu_data_by_index(_ix)->_m),  \
160
						sizeof(((cpu_data_t *)0)->_m))
Achin Gupta's avatar
Achin Gupta committed
161

162
163

#endif /* __ASSEMBLY__ */
164
#endif /* CPU_DATA_H */