pm_ipi.c 7.53 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2020, 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
#include <arch_helpers.h>
9

10
11
#include <lib/bakery_lock.h>
#include <lib/mmio.h>
12
13

#include <ipi.h>
14
#include <plat_ipi.h>
15
#include <plat_private.h>
16
17
#include <plat/common/platform.h>

18
#include "pm_ipi.h"
19

20

21
DEFINE_BAKERY_LOCK(pm_secure_lock);
22
23

/**
24
25
 * pm_ipi_init() - Initialize IPI peripheral for communication with
 *		   remote processor
26
 *
27
 * @proc	Pointer to the processor who is initiating request
28
29
30
31
32
33
 * @return	On success, the initialization function must return 0.
 *		Any other return value will cause the framework to ignore
 *		the service
 *
 * Called from pm_setup initialization function
 */
34
int pm_ipi_init(const struct pm_proc *proc)
35
36
{
	bakery_lock_init(&pm_secure_lock);
37
	ipi_mb_open(proc->ipi->local_ipi_id, proc->ipi->remote_ipi_id);
38
39
40
41
42

	return 0;
}

/**
43
 * pm_ipi_send_common() - Sends IPI request to the remote processor
44
45
46
47
48
49
50
51
52
 * @proc	Pointer to the processor who is initiating request
 * @payload	API id and call arguments to be written in IPI buffer
 *
 * Send an IPI request to the power controller. Caller needs to hold
 * the 'pm_secure_lock' lock.
 *
 * @return	Returns status, either success or error+reason
 */
static enum pm_ret_status pm_ipi_send_common(const struct pm_proc *proc,
53
54
					     uint32_t payload[PAYLOAD_ARG_CNT],
					     uint32_t is_blocking)
55
56
57
{
	unsigned int offset = 0;
	uintptr_t buffer_base = proc->ipi->buffer_base +
58
					IPI_BUFFER_TARGET_REMOTE_OFFSET +
59
					IPI_BUFFER_REQ_OFFSET;
60
61
62
#if ZYNQMP_IPI_CRC_CHECK
	payload[PAYLOAD_CRC_POS] = calculate_crc(payload, IPI_W0_TO_W6_SIZE);
#endif
63
64
65
66
67
68

	/* Write payload into IPI buffer */
	for (size_t i = 0; i < PAYLOAD_ARG_CNT; i++) {
		mmio_write_32(buffer_base + offset, payload[i]);
		offset += PAYLOAD_ARG_SIZE;
	}
69

70
	/* Generate IPI to remote processor */
71
	ipi_mb_notify(proc->ipi->local_ipi_id, proc->ipi->remote_ipi_id,
72
		      is_blocking);
73
74
75
76

	return PM_RET_SUCCESS;
}

77
/**
78
79
 * pm_ipi_send_non_blocking() - Sends IPI request to the remote processor
 *			        without blocking notification
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
 * @proc	Pointer to the processor who is initiating request
 * @payload	API id and call arguments to be written in IPI buffer
 *
 * Send an IPI request to the power controller.
 *
 * @return	Returns status, either success or error+reason
 */
enum pm_ret_status pm_ipi_send_non_blocking(const struct pm_proc *proc,
					    uint32_t payload[PAYLOAD_ARG_CNT])
{
	enum pm_ret_status ret;

	bakery_lock_get(&pm_secure_lock);

	ret = pm_ipi_send_common(proc, payload, IPI_NON_BLOCKING);

	bakery_lock_release(&pm_secure_lock);

	return ret;
}

101
/**
102
 * pm_ipi_send() - Sends IPI request to the remote processor
103
104
105
106
107
108
109
110
111
112
113
114
115
116
 * @proc	Pointer to the processor who is initiating request
 * @payload	API id and call arguments to be written in IPI buffer
 *
 * Send an IPI request to the power controller.
 *
 * @return	Returns status, either success or error+reason
 */
enum pm_ret_status pm_ipi_send(const struct pm_proc *proc,
			       uint32_t payload[PAYLOAD_ARG_CNT])
{
	enum pm_ret_status ret;

	bakery_lock_get(&pm_secure_lock);

117
	ret = pm_ipi_send_common(proc, payload, IPI_BLOCKING);
118
119
120
121
122
123
124
125

	bakery_lock_release(&pm_secure_lock);

	return ret;
}


/**
126
127
 * pm_ipi_buff_read() - Reads IPI response after remote processor has handled
 *			interrupt
128
 * @proc	Pointer to the processor who is waiting and reading response
129
130
 * @value	Used to return value from IPI buffer element (optional)
 * @count	Number of values to return in @value
131
132
133
134
 *
 * @return	Returns status, either success or error+reason
 */
static enum pm_ret_status pm_ipi_buff_read(const struct pm_proc *proc,
135
					   unsigned int *value, size_t count)
136
{
137
	size_t i;
138
139
140
141
#if ZYNQMP_IPI_CRC_CHECK
	size_t j;
	unsigned int response_payload[PAYLOAD_ARG_CNT];
#endif
142
	uintptr_t buffer_base = proc->ipi->buffer_base +
143
				IPI_BUFFER_TARGET_REMOTE_OFFSET +
144
145
146
147
148
149
150
151
152
				IPI_BUFFER_RESP_OFFSET;

	/*
	 * Read response from IPI buffer
	 * buf-0: success or error+reason
	 * buf-1: value
	 * buf-2: unused
	 * buf-3: unused
	 */
153
154
155
156
	for (i = 1; i <= count; i++) {
		*value = mmio_read_32(buffer_base + (i * PAYLOAD_ARG_SIZE));
		value++;
	}
157
158
159
160
161
162
163
164
165
166
#if ZYNQMP_IPI_CRC_CHECK
	for (j = 0; j < PAYLOAD_ARG_CNT; j++)
		response_payload[j] = mmio_read_32(buffer_base +
						(j * PAYLOAD_ARG_SIZE));

	if (response_payload[PAYLOAD_CRC_POS] !=
			calculate_crc(response_payload, IPI_W0_TO_W6_SIZE))
		NOTICE("ERROR in CRC response payload value:0x%x\n",
					response_payload[PAYLOAD_CRC_POS]);
#endif
167
168
169
170

	return mmio_read_32(buffer_base);
}

171
/**
172
173
 * pm_ipi_buff_read_callb() - Reads IPI response after remote processor has
 *			      handled interrupt
174
175
176
177
178
179
180
181
 * @value	Used to return value from IPI buffer element (optional)
 * @count	Number of values to return in @value
 *
 * @return	Returns status, either success or error+reason
 */
void pm_ipi_buff_read_callb(unsigned int *value, size_t count)
{
	size_t i;
182
183
184
185
#if ZYNQMP_IPI_CRC_CHECK
	size_t j;
	unsigned int response_payload[PAYLOAD_ARG_CNT];
#endif
186
187
	uintptr_t buffer_base = IPI_BUFFER_REMOTE_BASE +
				IPI_BUFFER_TARGET_LOCAL_OFFSET +
188
189
190
191
192
193
194
195
196
				IPI_BUFFER_REQ_OFFSET;

	if (count > IPI_BUFFER_MAX_WORDS)
		count = IPI_BUFFER_MAX_WORDS;

	for (i = 0; i <= count; i++) {
		*value = mmio_read_32(buffer_base + (i * PAYLOAD_ARG_SIZE));
		value++;
	}
197
198
199
200
201
202
203
204
205
206
#if ZYNQMP_IPI_CRC_CHECK
	for (j = 0; j < PAYLOAD_ARG_CNT; j++)
		response_payload[j] = mmio_read_32(buffer_base +
						(j * PAYLOAD_ARG_SIZE));

	if (response_payload[PAYLOAD_CRC_POS] !=
			calculate_crc(response_payload, IPI_W0_TO_W6_SIZE))
		NOTICE("ERROR in CRC response payload value:0x%x\n",
					response_payload[PAYLOAD_CRC_POS]);
#endif
207
208
}

209
/**
210
 * pm_ipi_send_sync() - Sends IPI request to the remote processor
211
212
 * @proc	Pointer to the processor who is initiating request
 * @payload	API id and call arguments to be written in IPI buffer
213
214
 * @value	Used to return value from IPI buffer element (optional)
 * @count	Number of values to return in @value
215
216
217
218
219
220
221
222
 *
 * Send an IPI request to the power controller and wait for it to be handled.
 *
 * @return	Returns status, either success or error+reason and, optionally,
 *		@value
 */
enum pm_ret_status pm_ipi_send_sync(const struct pm_proc *proc,
				    uint32_t payload[PAYLOAD_ARG_CNT],
223
				    unsigned int *value, size_t count)
224
225
226
227
228
{
	enum pm_ret_status ret;

	bakery_lock_get(&pm_secure_lock);

229
	ret = pm_ipi_send_common(proc, payload, IPI_BLOCKING);
230
231
232
	if (ret != PM_RET_SUCCESS)
		goto unlock;

233
	ret = pm_ipi_buff_read(proc, value, count);
234
235
236
237
238
239

unlock:
	bakery_lock_release(&pm_secure_lock);

	return ret;
}
240

241
void pm_ipi_irq_enable(const struct pm_proc *proc)
242
{
243
	ipi_mb_enable_irq(proc->ipi->local_ipi_id, proc->ipi->remote_ipi_id);
244
}
245

246
void pm_ipi_irq_clear(const struct pm_proc *proc)
247
{
248
	ipi_mb_ack(proc->ipi->local_ipi_id, proc->ipi->remote_ipi_id);
249
}
250
251
252
253
254
255
256
257
258
259
260
261

uint32_t pm_ipi_irq_status(const struct pm_proc *proc)
{
	int ret;

	ret = ipi_mb_enquire_status(proc->ipi->local_ipi_id,
				    proc->ipi->remote_ipi_id);
	if (ret & IPI_MB_STATUS_RECV_PENDING)
		return 1;
	else
		return 0;
}
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292

#if ZYNQMP_IPI_CRC_CHECK
uint32_t calculate_crc(uint32_t *payload, uint32_t bufsize)
{
	uint32_t crcinit = CRC_INIT_VALUE;
	uint32_t order   = CRC_ORDER;
	uint32_t polynom = CRC_POLYNOM;
	uint32_t i, j, c, bit, datain, crcmask, crchighbit;
	uint32_t crc = crcinit;

	crcmask = ((uint32_t)((1U << (order - 1U)) - 1U) << 1U) | 1U;
	crchighbit = (uint32_t)(1U << (order - 1U));

	for (i = 0U; i < bufsize; i++) {
		datain = mmio_read_8((unsigned long)payload + i);
		c = datain;
		j = 0x80U;
		while (j != 0U) {
			bit = crc & crchighbit;
			crc <<= 1U;
			if (0U != (c & j))
				bit ^= crchighbit;
			if (bit != 0U)
				crc ^= polynom;
			j >>= 1U;
		}
		crc &= crcmask;
	}
	return crc;
}
#endif