pm_ipi.c 6.32 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-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
#include <arch_helpers.h>
8
9
#include <lib/bakery_lock.h>
#include <lib/mmio.h>
10
11

#include <ipi.h>
12
#include <plat_ipi.h>
13
#include <plat_private.h>
14
15
#include <plat/common/platform.h>

16
#include "pm_ipi.h"
17
18
19
20
21
22
23

/* IPI message buffers */
#define IPI_BUFFER_BASEADDR	0xFF990000U

#define IPI_BUFFER_APU_BASE	(IPI_BUFFER_BASEADDR + 0x400U)
#define IPI_BUFFER_PMU_BASE	(IPI_BUFFER_BASEADDR + 0xE00U)

24
25
26
27
28
#define IPI_BUFFER_LOCAL_BASE	IPI_BUFFER_APU_BASE
#define IPI_BUFFER_REMOTE_BASE	IPI_BUFFER_PMU_BASE

#define IPI_BUFFER_TARGET_LOCAL_OFFSET	0x80U
#define IPI_BUFFER_TARGET_REMOTE_OFFSET	0x1C0U
29

30
31
#define IPI_BUFFER_MAX_WORDS	8

32
33
34
#define IPI_BUFFER_REQ_OFFSET	0x0U
#define IPI_BUFFER_RESP_OFFSET	0x20U

35
36
37
#define IPI_BLOCKING		1
#define IPI_NON_BLOCKING	0

38
DEFINE_BAKERY_LOCK(pm_secure_lock);
39
40

const struct pm_ipi apu_ipi = {
41
42
	.local_ipi_id = IPI_ID_APU,
	.remote_ipi_id = IPI_ID_PMU0,
43
44
45
46
	.buffer_base = IPI_BUFFER_APU_BASE,
};

/**
47
48
 * pm_ipi_init() - Initialize IPI peripheral for communication with
 *		   remote processor
49
 *
50
 * @proc	Pointer to the processor who is initiating request
51
52
53
54
55
56
 * @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
 */
57
int pm_ipi_init(const struct pm_proc *proc)
58
59
{
	bakery_lock_init(&pm_secure_lock);
60
	ipi_mb_open(proc->ipi->local_ipi_id, proc->ipi->remote_ipi_id);
61
62
63
64
65

	return 0;
}

/**
66
 * pm_ipi_send_common() - Sends IPI request to the remote processor
67
68
69
70
71
72
73
74
75
 * @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,
76
77
					     uint32_t payload[PAYLOAD_ARG_CNT],
					     uint32_t is_blocking)
78
79
80
{
	unsigned int offset = 0;
	uintptr_t buffer_base = proc->ipi->buffer_base +
81
					IPI_BUFFER_TARGET_REMOTE_OFFSET +
82
83
84
85
86
87
88
					IPI_BUFFER_REQ_OFFSET;

	/* 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;
	}
89

90
	/* Generate IPI to remote processor */
91
	ipi_mb_notify(proc->ipi->local_ipi_id, proc->ipi->remote_ipi_id,
92
		      is_blocking);
93
94
95
96

	return PM_RET_SUCCESS;
}

97
/**
98
99
 * pm_ipi_send_non_blocking() - Sends IPI request to the remote processor
 *			        without blocking notification
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
 * @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;
}

121
/**
122
 * pm_ipi_send() - Sends IPI request to the remote processor
123
124
125
126
127
128
129
130
131
132
133
134
135
136
 * @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);

137
	ret = pm_ipi_send_common(proc, payload, IPI_BLOCKING);
138
139
140
141
142
143
144
145

	bakery_lock_release(&pm_secure_lock);

	return ret;
}


/**
146
147
 * pm_ipi_buff_read() - Reads IPI response after remote processor has handled
 *			interrupt
148
 * @proc	Pointer to the processor who is waiting and reading response
149
150
 * @value	Used to return value from IPI buffer element (optional)
 * @count	Number of values to return in @value
151
152
153
154
 *
 * @return	Returns status, either success or error+reason
 */
static enum pm_ret_status pm_ipi_buff_read(const struct pm_proc *proc,
155
					   unsigned int *value, size_t count)
156
{
157
	size_t i;
158
	uintptr_t buffer_base = proc->ipi->buffer_base +
159
				IPI_BUFFER_TARGET_REMOTE_OFFSET +
160
161
162
163
164
165
166
167
168
				IPI_BUFFER_RESP_OFFSET;

	/*
	 * Read response from IPI buffer
	 * buf-0: success or error+reason
	 * buf-1: value
	 * buf-2: unused
	 * buf-3: unused
	 */
169
170
171
172
	for (i = 1; i <= count; i++) {
		*value = mmio_read_32(buffer_base + (i * PAYLOAD_ARG_SIZE));
		value++;
	}
173
174
175
176

	return mmio_read_32(buffer_base);
}

177
/**
178
179
 * pm_ipi_buff_read_callb() - Reads IPI response after remote processor has
 *			      handled interrupt
180
181
182
183
184
185
186
187
 * @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;
188
189
	uintptr_t buffer_base = IPI_BUFFER_REMOTE_BASE +
				IPI_BUFFER_TARGET_LOCAL_OFFSET +
190
191
192
193
194
195
196
197
198
199
200
				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++;
	}
}

201
/**
202
 * pm_ipi_send_sync() - Sends IPI request to the remote processor
203
204
 * @proc	Pointer to the processor who is initiating request
 * @payload	API id and call arguments to be written in IPI buffer
205
206
 * @value	Used to return value from IPI buffer element (optional)
 * @count	Number of values to return in @value
207
208
209
210
211
212
213
214
 *
 * 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],
215
				    unsigned int *value, size_t count)
216
217
218
219
220
{
	enum pm_ret_status ret;

	bakery_lock_get(&pm_secure_lock);

221
	ret = pm_ipi_send_common(proc, payload, IPI_BLOCKING);
222
223
224
	if (ret != PM_RET_SUCCESS)
		goto unlock;

225
	ret = pm_ipi_buff_read(proc, value, count);
226
227
228
229
230
231

unlock:
	bakery_lock_release(&pm_secure_lock);

	return ret;
}
232

233
void pm_ipi_irq_enable(const struct pm_proc *proc)
234
{
235
	ipi_mb_enable_irq(proc->ipi->local_ipi_id, proc->ipi->remote_ipi_id);
236
}
237

238
void pm_ipi_irq_clear(const struct pm_proc *proc)
239
{
240
	ipi_mb_ack(proc->ipi->local_ipi_id, proc->ipi->remote_ipi_id);
241
}