socfpga_mailbox.c 11 KB
Newer Older
1
/*
2
 * Copyright (c) 2020, Intel Corporation. All rights reserved.
3
4
5
6
7
8
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <lib/mmio.h>
#include <common/debug.h>
9
#include <drivers/delay_timer.h>
10

11
#include "socfpga_mailbox.h"
12
#include "socfpga_sip_svc.h"
13

14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82

static bool is_mailbox_cmdbuf_full(uint32_t cin)
{
	uint32_t cout = mmio_read_32(MBOX_OFFSET + MBOX_COUT);

	return (((cin + 1U) % MBOX_CMD_BUFFER_SIZE) == cout);
}

static bool is_mailbox_cmdbuf_empty(uint32_t cin)
{
	uint32_t cout = mmio_read_32(MBOX_OFFSET + MBOX_COUT);

	return (((cout + 1U) % MBOX_CMD_BUFFER_SIZE) == cin);
}

static int wait_for_mailbox_cmdbuf_empty(uint32_t cin)
{
	uint32_t timeout = 200U;

	do {
		if (is_mailbox_cmdbuf_empty(cin)) {
			break;
		}
		mdelay(10U);
	} while (--timeout != 0U);

	if (timeout == 0U) {
		return MBOX_TIMEOUT;
	}

	return MBOX_RET_OK;
}

static int write_mailbox_cmd_buffer(uint32_t *cin, uint32_t cout,
				    uint32_t data,
				    bool *is_doorbell_triggered)
{
	uint32_t timeout = 100U;

	do {
		if (is_mailbox_cmdbuf_full(*cin)) {
			if (!(*is_doorbell_triggered)) {
				mmio_write_32(MBOX_OFFSET +
					      MBOX_DOORBELL_TO_SDM, 1);
				*is_doorbell_triggered = true;
			}
			mdelay(10U);
		} else {
			mmio_write_32(MBOX_OFFSET + MBOX_CMD_BUFFER +
				      (*cin * 4), data);
			(*cin)++;
			*cin %= MBOX_CMD_BUFFER_SIZE;
			mmio_write_32(MBOX_OFFSET + MBOX_CIN, *cin);
			break;
		}
	} while (--timeout != 0U);

	if (timeout == 0U) {
		return MBOX_TIMEOUT;
	}

	if (*is_doorbell_triggered) {
		int ret = wait_for_mailbox_cmdbuf_empty(*cin);
		return ret;
	}

	return MBOX_RET_OK;
}

83
static int fill_mailbox_circular_buffer(uint32_t header_cmd, uint32_t *args,
84
85
					int len)
{
86
	uint32_t sdm_read_offset, cmd_free_offset;
87
88
89
	uint32_t i;
	int ret;
	bool is_doorbell_triggered = false;
90
91

	cmd_free_offset = mmio_read_32(MBOX_OFFSET + MBOX_CIN);
92
93
	sdm_read_offset = mmio_read_32(MBOX_OFFSET + MBOX_COUT);

94
95
96
	ret = write_mailbox_cmd_buffer(&cmd_free_offset, sdm_read_offset,
				       header_cmd, &is_doorbell_triggered);
	if (ret != 0) {
97
		goto restart_mailbox;
98
	}
99

100
101
102
103
104
105
	for (i = 0U; i < len; i++) {
		is_doorbell_triggered = false;
		ret = write_mailbox_cmd_buffer(&cmd_free_offset,
					       sdm_read_offset, args[i],
					       &is_doorbell_triggered);
		if (ret != 0) {
106
			goto restart_mailbox;
107
		}
108
109
	}

110
111
112
	if (!is_doorbell_triggered) {
		mmio_write_32(MBOX_OFFSET + MBOX_DOORBELL_TO_SDM, 1);
	}
113

114
	return MBOX_RET_OK;
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130

restart_mailbox:
	/*
	 * Attempt to restart mailbox if the driver not able to write
	 * into mailbox command buffer
	 */
	if (MBOX_CMD_MASK(header_cmd) != MBOX_CMD_RESTART) {
		INFO("Mailbox timed out: Attempting mailbox reset\n");
		ret = mailbox_init();

		if (ret == MBOX_TIMEOUT) {
			INFO("Error: Mailbox fail to restart\n");
		}
	}

	return MBOX_TIMEOUT;
131
132
}

133
int mailbox_read_response(uint32_t *job_id, uint32_t *response, int resp_len)
134
135
136
{
	int rin = 0;
	int rout = 0;
137
	int resp_data = 0;
138
	int ret_resp_len;
139

140
141
	if (mmio_read_32(MBOX_OFFSET + MBOX_DOORBELL_FROM_SDM))
		mmio_write_32(MBOX_OFFSET + MBOX_DOORBELL_FROM_SDM, 0);
142
143
144
145

	rin = mmio_read_32(MBOX_OFFSET + MBOX_RIN);
	rout = mmio_read_32(MBOX_OFFSET + MBOX_ROUT);

146
	if (rout != rin) {
147
		resp_data = mmio_read_32(MBOX_OFFSET +
148
149
150
151
152
				    MBOX_RESP_BUFFER + ((rout++)*4));

		rout %= MBOX_RESP_BUFFER_SIZE;
		mmio_write_32(MBOX_OFFSET + MBOX_ROUT, rout);

153
154

		if (MBOX_RESP_CLIENT_ID(resp_data) != MBOX_ATF_CLIENT_ID) {
155
156
157
			return MBOX_WRONG_ID;
		}

158
159
		*job_id = MBOX_RESP_JOB_ID(resp_data);

160
161
162
163
164
165
166
		ret_resp_len = MBOX_RESP_LEN(resp_data);

		if (ret_resp_len != 0) {
			ret_resp_len = iterate_resp(ret_resp_len, response,
						    resp_len);
		}

167
168
		if (MBOX_RESP_ERR(resp_data) > 0) {
			INFO("Error in response: %x\n", resp_data);
169
			return -MBOX_RESP_ERR(resp_data);
170
171
		}

172
		return ret_resp_len;
173
174
175
176
177
	}
	return MBOX_NO_RESPONSE;
}


178
int mailbox_poll_response(uint32_t job_id, int urgent, uint32_t *response,
179
				int resp_len)
180
{
181
	uint32_t timeout = 40U;
182
	uint32_t sdm_loop = 255U;
183
184
	int rin = 0;
	int rout = 0;
185
	int resp_data = 0;
186
	int ret_resp_len;
187

188
	while (sdm_loop != 0U) {
189

190
191
192
193
194
		do {
			if (mmio_read_32(MBOX_OFFSET + MBOX_DOORBELL_FROM_SDM)
			    & 1) {
				break;
			}
195
			mdelay(10U);
196
		} while (--timeout != 0U);
197

198
		if (timeout == 0U) {
199
			break;
200
201
202
203
204
		}

		mmio_write_32(MBOX_OFFSET + MBOX_DOORBELL_FROM_SDM, 0);

		if (urgent & 1) {
205
			mdelay(5);
206
207
208
209
			if ((mmio_read_32(MBOX_OFFSET + MBOX_STATUS) &
				MBOX_STATUS_UA_MASK) ^
				(urgent & MBOX_STATUS_UA_MASK)) {
				mmio_write_32(MBOX_OFFSET + MBOX_URG, 0);
210
				return MBOX_RET_OK;
211
212
213
214
			}

			mmio_write_32(MBOX_OFFSET + MBOX_URG, 0);
			INFO("Error: Mailbox did not get UA");
215
			return MBOX_RET_ERROR;
216
217
218
219
220
221
		}

		rin = mmio_read_32(MBOX_OFFSET + MBOX_RIN);
		rout = mmio_read_32(MBOX_OFFSET + MBOX_ROUT);

		while (rout != rin) {
222
			resp_data = mmio_read_32(MBOX_OFFSET +
223
224
225
226
227
					    MBOX_RESP_BUFFER + ((rout++)*4));

			rout %= MBOX_RESP_BUFFER_SIZE;
			mmio_write_32(MBOX_OFFSET + MBOX_ROUT, rout);

228
229
			if (MBOX_RESP_CLIENT_ID(resp_data) != MBOX_ATF_CLIENT_ID
				|| MBOX_RESP_JOB_ID(resp_data) != job_id)
230
231
				continue;

232
233
234
235
236
237
238
239
			ret_resp_len = MBOX_RESP_LEN(resp_data);

			if (ret_resp_len != 0) {
				ret_resp_len = iterate_resp(ret_resp_len,
							    response,
							    resp_len);
			}

240
241
242
			if (MBOX_RESP_ERR(resp_data) > 0) {
				INFO("Error in response: %x\n", resp_data);
				return -MBOX_RESP_ERR(resp_data);
243
			}
244

245
			return ret_resp_len;
246
		}
247
248

	sdm_loop--;
249
	}
250
251
252

	INFO("Timed out waiting for SDM\n");
	return MBOX_TIMEOUT;
253
254
255
256
257
258
259
260
261
262
}

int iterate_resp(int mbox_resp_len, uint32_t *resp_buf, int resp_len)
{
	uint32_t timeout;
	int resp_data = 0, total_resp_len = 0;
	int rin = mmio_read_32(MBOX_OFFSET + MBOX_RIN);
	int rout = mmio_read_32(MBOX_OFFSET + MBOX_ROUT);

	while (mbox_resp_len > 0) {
263
		timeout = 100U;
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
		mbox_resp_len--;
		resp_data = mmio_read_32(MBOX_OFFSET +
					MBOX_RESP_BUFFER +
					(rout)*4);
		if (resp_buf && resp_len) {
			*(resp_buf + total_resp_len)
					= resp_data;
			resp_len--;
			total_resp_len++;
		}
		rout++;
		rout %= MBOX_RESP_BUFFER_SIZE;
		mmio_write_32(MBOX_OFFSET + MBOX_ROUT, rout);

		do {
			rin = mmio_read_32(MBOX_OFFSET + MBOX_RIN);
280
			if (rout == rin) {
281
				mdelay(10U);
282
283
284
285
286
			} else {
				break;
			}
			timeout--;
		} while ((mbox_resp_len > 0) && (timeout != 0U));
287

288
		if (timeout == 0U) {
289
290
			INFO("Timed out waiting for SDM\n");
			return MBOX_TIMEOUT;
291
292
		}
	}
293
	return total_resp_len;
294
295
}

296
int mailbox_send_cmd_async(uint32_t *job_id, unsigned int cmd, uint32_t *args,
297
			  int len, int indirect)
298
{
299
300
301
302
303
304
305
306
307
308
309
	int status;

	status = fill_mailbox_circular_buffer(
				MBOX_CLIENT_ID_CMD(MBOX_ATF_CLIENT_ID) |
				MBOX_JOB_ID_CMD(*job_id) |
				MBOX_CMD_LEN_CMD(len) |
				MBOX_INDIRECT(indirect) |
				cmd, args, len);
	if (status < 0) {
		return status;
	}
310

311
	*job_id = (*job_id + 1) % MBOX_MAX_IND_JOB_ID;
312

313
	return MBOX_RET_OK;
314
315
}

316
int mailbox_send_cmd(uint32_t job_id, unsigned int cmd, uint32_t *args,
317
			int len, int urgent, uint32_t *response, int resp_len)
318
{
319
	int status = 0;
320
321
322
323
324

	if (urgent) {
		urgent |= mmio_read_32(MBOX_OFFSET + MBOX_STATUS) &
					MBOX_STATUS_UA_MASK;
		mmio_write_32(MBOX_OFFSET + MBOX_URG, cmd);
325
		mmio_write_32(MBOX_OFFSET + MBOX_DOORBELL_TO_SDM, 1);
326
327
328
	}

	else {
329
330
331
		status = fill_mailbox_circular_buffer(
			MBOX_CLIENT_ID_CMD(MBOX_ATF_CLIENT_ID) |
			MBOX_JOB_ID_CMD(job_id) |
332
			MBOX_CMD_LEN_CMD(len) |
333
334
335
336
337
338
			cmd, args, len);
	}

	if (status)
		return status;

339
	status = mailbox_poll_response(job_id, urgent, response, resp_len);
340
341
342
343
344
345
346
347

	return status;
}

void mailbox_clear_response(void)
{
	mmio_write_32(MBOX_OFFSET + MBOX_ROUT,
		mmio_read_32(MBOX_OFFSET + MBOX_RIN));
348
349
350
351
352
353
354
355
356
357
358
359
360
}

void mailbox_set_int(int interrupt)
{

	mmio_write_32(MBOX_OFFSET+MBOX_INT, MBOX_COE_BIT(interrupt) |
			MBOX_UAE_BIT(interrupt));
}


void mailbox_set_qspi_open(void)
{
	mailbox_set_int(MBOX_INT_FLAG_COE | MBOX_INT_FLAG_RIE);
361
362
	mailbox_send_cmd(MBOX_JOB_ID, MBOX_CMD_QSPI_OPEN, NULL, 0,
				CMD_CASUAL, NULL, 0);
363
364
365
366
}

void mailbox_set_qspi_direct(void)
{
367
368
	mailbox_send_cmd(MBOX_JOB_ID, MBOX_CMD_QSPI_DIRECT, NULL, 0,
				CMD_CASUAL, NULL, 0);
369
370
371
372
373
}

void mailbox_set_qspi_close(void)
{
	mailbox_set_int(MBOX_INT_FLAG_COE | MBOX_INT_FLAG_RIE);
374
375
	mailbox_send_cmd(MBOX_JOB_ID, MBOX_CMD_QSPI_CLOSE, NULL, 0,
				CMD_CASUAL, NULL, 0);
376
377
378
379
}

void mailbox_qspi_set_cs(int device_select)
{
380
	uint32_t cs_setting = device_select;
381
382
383
384
385

	/* QSPI device select settings at 31:28 */
	cs_setting = (cs_setting << 28);
	mailbox_set_int(MBOX_INT_FLAG_COE | MBOX_INT_FLAG_RIE);
	mailbox_send_cmd(MBOX_JOB_ID, MBOX_CMD_QSPI_SET_CS, &cs_setting,
386
				1, CMD_CASUAL, NULL, 0);
387
388
389
390
391
}

void mailbox_reset_cold(void)
{
	mailbox_set_int(MBOX_INT_FLAG_COE | MBOX_INT_FLAG_RIE);
392
393
	mailbox_send_cmd(MBOX_JOB_ID, MBOX_CMD_REBOOT_HPS, NULL, 0,
				CMD_CASUAL, NULL, 0);
394
395
}

396
397
398
int mailbox_rsu_get_spt_offset(uint32_t *resp_buf, uint32_t resp_buf_len)
{
	return mailbox_send_cmd(MBOX_JOB_ID, MBOX_GET_SUBPARTITION_TABLE,
399
				NULL, 0, CMD_CASUAL, (uint32_t *)resp_buf,
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
				resp_buf_len);
}

struct rsu_status_info {
	uint64_t current_image;
	uint64_t fail_image;
	uint32_t state;
	uint32_t version;
	uint32_t error_location;
	uint32_t error_details;
	uint32_t retry_counter;
};

int mailbox_rsu_status(uint32_t *resp_buf, uint32_t resp_buf_len)
{
	int ret;
	struct rsu_status_info *info = (struct rsu_status_info *)resp_buf;

	info->retry_counter = ~0;

420
421
422
	ret = mailbox_send_cmd(MBOX_JOB_ID, MBOX_RSU_STATUS, NULL, 0,
				CMD_CASUAL, (uint32_t *)resp_buf,
				resp_buf_len);
423
424
425
426
427
428
429
430
431
432
433

	if (ret < 0)
		return ret;

	if (info->retry_counter != ~0)
		if (!(info->version & RSU_VERSION_ACMF_MASK))
			info->version |= RSU_VERSION_ACMF;

	return ret;
}

434
int mailbox_rsu_update(uint32_t *flash_offset)
435
436
{
	return mailbox_send_cmd(MBOX_JOB_ID, MBOX_RSU_UPDATE,
437
438
				flash_offset, 2,
				CMD_CASUAL, NULL, 0);
439
440
}

441
int mailbox_hps_stage_notify(uint32_t execution_stage)
442
443
{
	return mailbox_send_cmd(MBOX_JOB_ID, MBOX_HPS_STAGE_NOTIFY,
444
445
				&execution_stage, 1, CMD_CASUAL,
				NULL, 0);
446
447
}

448
449
450
451
452
453
int mailbox_init(void)
{
	int status = 0;

	mailbox_set_int(MBOX_INT_FLAG_COE | MBOX_INT_FLAG_RIE |
			MBOX_INT_FLAG_UAE);
454
455
456
	mmio_write_32(MBOX_OFFSET + MBOX_URG, 0);
	mmio_write_32(MBOX_OFFSET + MBOX_DOORBELL_FROM_SDM, 0);

457
458
	status = mailbox_send_cmd(0, MBOX_CMD_RESTART, NULL, 0,
					CMD_URGENT, NULL, 0);
459
460
461
462

	if (status)
		return status;

463
464
	mailbox_set_int(MBOX_INT_FLAG_COE | MBOX_INT_FLAG_RIE |
			MBOX_INT_FLAG_UAE);
465

466
	return MBOX_RET_OK;
467
468
}

469
int intel_mailbox_get_config_status(uint32_t cmd)
470
{
471
472
	int status;
	uint32_t res, response[6];
473

474
475
	status = mailbox_send_cmd(MBOX_JOB_ID, cmd, NULL, 0, CMD_CASUAL, response,
				ARRAY_SIZE(response));
476
477

	if (status < 0)
478
		return status;
479
480
481

	res = response[RECONFIG_STATUS_STATE];
	if (res && res != MBOX_CFGSTAT_STATE_CONFIG)
482
		return res;
483
484
485

	res = response[RECONFIG_STATUS_PIN_STATUS];
	if (!(res & PIN_STATUS_NSTATUS))
486
		return MBOX_CFGSTAT_STATE_ERROR_HARDWARE;
487
488
489

	res = response[RECONFIG_STATUS_SOFTFUNC_STATUS];
	if (res & SOFTFUNC_STATUS_SEU_ERROR)
490
		return MBOX_CFGSTAT_STATE_ERROR_HARDWARE;
491
492
493

	if ((res & SOFTFUNC_STATUS_CONF_DONE) &&
		(res & SOFTFUNC_STATUS_INIT_DONE))
494
		return MBOX_RET_OK;
495

496
	return MBOX_CFGSTAT_STATE_CONFIG;
497
}
498
499
500
501
502
503
504
505
506
507

int intel_mailbox_is_fpga_not_ready(void)
{
	int ret = intel_mailbox_get_config_status(MBOX_RECONFIG_STATUS);

	if (ret && ret != MBOX_CFGSTAT_STATE_CONFIG)
		ret = intel_mailbox_get_config_status(MBOX_CONFIG_STATUS);

	return ret;
}