plat_psci_common.c 4.57 KB
Newer Older
1
/*
Zelalem's avatar
Zelalem committed
2
 * Copyright (c) 2016-2020, ARM Limited and Contributors. All rights reserved.
3
 * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
4
 *
dp-arm's avatar
dp-arm committed
5
 * SPDX-License-Identifier: BSD-3-Clause
6
7
 */

8
#include <assert.h>
9
10
11
12

#include <arch.h>
#include <lib/pmf/pmf.h>
#include <lib/psci/psci.h>
13
#include <lib/utils_def.h>
14
#include <plat/common/platform.h>
15

16
17
18
19
20
#if ENABLE_PSCI_STAT && ENABLE_PMF
#pragma weak plat_psci_stat_accounting_start
#pragma weak plat_psci_stat_accounting_stop
#pragma weak plat_psci_stat_get_residency

21
/* Maximum time-stamp value read from architectural counters */
22
#ifdef __aarch64__
23
#define MAX_TS	UINT64_MAX
24
25
#else
#define MAX_TS	UINT32_MAX
26
27
#endif

28
29
30
31
32
/* Following are used as ID's to capture time-stamp */
#define PSCI_STAT_ID_ENTER_LOW_PWR		0
#define PSCI_STAT_ID_EXIT_LOW_PWR		1
#define PSCI_STAT_TOTAL_IDS			2

33
34
PMF_DECLARE_CAPTURE_TIMESTAMP(psci_svc)
PMF_DECLARE_GET_TIMESTAMP(psci_svc)
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
PMF_REGISTER_SERVICE(psci_svc, PMF_PSCI_STAT_SVC_ID, PSCI_STAT_TOTAL_IDS,
	PMF_STORE_ENABLE)

/*
 * This function calculates the stats residency in microseconds,
 * taking in account the wrap around condition.
 */
static u_register_t calc_stat_residency(unsigned long long pwrupts,
	unsigned long long pwrdnts)
{
	/* The divisor to use to convert raw timestamp into microseconds. */
	u_register_t residency_div;
	u_register_t res;

	/*
	 * Calculate divisor so that it can be directly used to
	 * convert time-stamp into microseconds.
	 */
	residency_div = read_cntfrq_el0() / MHZ_TICKS_PER_SEC;
54
	assert(residency_div > 0U);
55
56

	if (pwrupts < pwrdnts)
57
		res = MAX_TS - pwrdnts + pwrupts;
58
59
60
61
62
63
64
65
66
67
68
69
70
	else
		res = pwrupts - pwrdnts;

	return res / residency_div;
}

/*
 * Capture timestamp before entering a low power state.
 * Cache maintenance may be needed when reading these timestamps.
 */
void plat_psci_stat_accounting_start(
	__unused const psci_power_state_t *state_info)
{
71
	assert(state_info != NULL);
72
	PMF_CAPTURE_TIMESTAMP(psci_svc, PSCI_STAT_ID_ENTER_LOW_PWR,
Zelalem's avatar
Zelalem committed
73
		PMF_CACHE_MAINT);
74
75
76
77
78
79
80
81
82
}

/*
 * Capture timestamp after exiting a low power state.
 * Cache maintenance may be needed when reading these timestamps.
 */
void plat_psci_stat_accounting_stop(
	__unused const psci_power_state_t *state_info)
{
83
	assert(state_info != NULL);
84
	PMF_CAPTURE_TIMESTAMP(psci_svc, PSCI_STAT_ID_EXIT_LOW_PWR,
Zelalem's avatar
Zelalem committed
85
		PMF_CACHE_MAINT);
86
87
88
89
90
91
92
93
}

/*
 * Calculate the residency for the given level and power state
 * information.
 */
u_register_t plat_psci_stat_get_residency(unsigned int lvl,
	const psci_power_state_t *state_info,
94
	unsigned int last_cpu_idx)
95
96
97
98
99
{
	plat_local_state_t state;
	unsigned long long pwrup_ts = 0, pwrdn_ts = 0;
	unsigned int pmf_flags;

100
101
102
	assert((lvl >= PSCI_CPU_PWR_LVL) && (lvl <= PLAT_MAX_PWR_LVL));
	assert(state_info != NULL);
	assert(last_cpu_idx <= PLATFORM_CORE_COUNT);
103
104

	if (lvl == PSCI_CPU_PWR_LVL)
105
		assert(last_cpu_idx == plat_my_core_pos());
106
107
108
109
110
111
112

	/*
	 * If power down is requested, then timestamp capture will
	 * be with caches OFF.  Hence we have to do cache maintenance
	 * when reading the timestamp.
	 */
	state = state_info->pwr_domain_state[PSCI_CPU_PWR_LVL];
113
	if (is_local_state_off(state) != 0) {
114
115
		pmf_flags = PMF_CACHE_MAINT;
	} else {
116
		assert(is_local_state_retn(state) == 1);
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
		pmf_flags = PMF_NO_CACHE_MAINT;
	}

	PMF_GET_TIMESTAMP_BY_INDEX(psci_svc,
		PSCI_STAT_ID_ENTER_LOW_PWR,
		last_cpu_idx,
		pmf_flags,
		pwrdn_ts);

	PMF_GET_TIMESTAMP_BY_INDEX(psci_svc,
		PSCI_STAT_ID_EXIT_LOW_PWR,
		plat_my_core_pos(),
		pmf_flags,
		pwrup_ts);

	return calc_stat_residency(pwrup_ts, pwrdn_ts);
}
#endif /* ENABLE_PSCI_STAT && ENABLE_PMF */

136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*
 * The PSCI generic code uses this API to let the platform participate in state
 * coordination during a power management operation. It compares the platform
 * specific local power states requested by each cpu for a given power domain
 * and returns the coordinated target power state that the domain should
 * enter. A platform assigns a number to a local power state. This default
 * implementation assumes that the platform assigns these numbers in order of
 * increasing depth of the power state i.e. for two power states X & Y, if X < Y
 * then X represents a shallower power state than Y. As a result, the
 * coordinated target local power state for a power domain will be the minimum
 * of the requested local power states.
 */
plat_local_state_t plat_get_target_pwr_state(unsigned int lvl,
					     const plat_local_state_t *states,
					     unsigned int ncpu)
151
{
152
	plat_local_state_t target = PLAT_MAX_OFF_STATE, temp;
153
154
	const plat_local_state_t *st = states;
	unsigned int n = ncpu;
155

156
	assert(ncpu > 0U);
157

158
	do {
159
160
		temp = *st;
		st++;
161
162
		if (temp < target)
			target = temp;
163
164
		n--;
	} while (n > 0U);
165

166
	return target;
167
}