aml_scpi.c 5.56 KB
Newer Older
1
/*
2
 * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
3
4
5
6
7
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <assert.h>
8
#include <crypto/sha_dma.h>
9
10
11
12
13
#include <lib/mmio.h>
#include <plat/common/platform.h>
#include <platform_def.h>
#include <string.h>

14
#include "aml_private.h"
15
16
17

#define SIZE_SHIFT	20
#define SIZE_MASK	0x1FF
18
#define SIZE_FWBLK	0x200UL
19
20
21
22
23
24
25
26
27
28

/*
 * Note: The Amlogic SCP firmware uses the legacy SCPI protocol.
 */
#define SCPI_CMD_SET_CSS_POWER_STATE	0x04
#define SCPI_CMD_SET_SYS_POWER_STATE	0x08

#define SCPI_CMD_JTAG_SET_STATE		0xC0
#define SCPI_CMD_EFUSE_READ		0xC2

29
30
31
32
#define SCPI_CMD_COPY_FW 0xd4
#define SCPI_CMD_SET_FW_ADDR 0xd3
#define SCPI_CMD_FW_SIZE 0xd2

33
static inline uint32_t aml_scpi_cmd(uint32_t command, uint32_t size)
34
35
36
37
{
	return command | (size << SIZE_SHIFT);
}

38
static void aml_scpi_secure_message_send(uint32_t command, uint32_t size)
39
{
40
	aml_mhu_secure_message_send(aml_scpi_cmd(command, size));
41
42
}

43
static uint32_t aml_scpi_secure_message_receive(void **message_out, size_t *size_out)
44
{
45
	uint32_t response = aml_mhu_secure_message_wait();
46
47
48
49
50
51
52
53
54

	size_t size = (response >> SIZE_SHIFT) & SIZE_MASK;

	response &= ~(SIZE_MASK << SIZE_SHIFT);

	if (size_out != NULL)
		*size_out = size;

	if (message_out != NULL)
55
		*message_out = (void *)AML_MHU_SECURE_SCP_TO_AP_PAYLOAD;
56
57
58
59

	return response;
}

60
void aml_scpi_set_css_power_state(u_register_t mpidr, uint32_t cpu_state,
61
62
63
64
65
66
67
68
			      uint32_t cluster_state, uint32_t css_state)
{
	uint32_t state = (mpidr & 0x0F) | /* CPU ID */
			 ((mpidr & 0xF00) >> 4) | /* Cluster ID */
			 (cpu_state << 8) |
			 (cluster_state << 12) |
			 (css_state << 16);

69
70
	aml_mhu_secure_message_start();
	mmio_write_32(AML_MHU_SECURE_AP_TO_SCP_PAYLOAD, state);
71
	aml_mhu_secure_message_send(aml_scpi_cmd(SCPI_CMD_SET_CSS_POWER_STATE, 4));
72
73
	aml_mhu_secure_message_wait();
	aml_mhu_secure_message_end();
74
75
}

76
uint32_t aml_scpi_sys_power_state(uint64_t system_state)
77
78
79
80
{
	uint32_t *response;
	size_t size;

81
82
	aml_mhu_secure_message_start();
	mmio_write_8(AML_MHU_SECURE_AP_TO_SCP_PAYLOAD, system_state);
83
84
	aml_mhu_secure_message_send(aml_scpi_cmd(SCPI_CMD_SET_SYS_POWER_STATE, 1));
	aml_scpi_secure_message_receive((void *)&response, &size);
85
	aml_mhu_secure_message_end();
86
87
88
89

	return *response;
}

90
void aml_scpi_jtag_set_state(uint32_t state, uint8_t select)
91
{
92
	assert(state <= AML_JTAG_STATE_OFF);
93

94
	if (select > AML_JTAG_A53_EE) {
95
96
97
98
		WARN("BL31: Invalid JTAG select (0x%x).\n", select);
		return;
	}

99
100
	aml_mhu_secure_message_start();
	mmio_write_32(AML_MHU_SECURE_AP_TO_SCP_PAYLOAD,
101
		      (state << 8) | (uint32_t)select);
102
	aml_mhu_secure_message_send(aml_scpi_cmd(SCPI_CMD_JTAG_SET_STATE, 4));
103
104
	aml_mhu_secure_message_wait();
	aml_mhu_secure_message_end();
105
106
}

107
uint32_t aml_scpi_efuse_read(void *dst, uint32_t base, uint32_t size)
108
109
110
111
112
113
114
{
	uint32_t *response;
	size_t resp_size;

	if (size > 0x1FC)
		return 0;

115
116
117
	aml_mhu_secure_message_start();
	mmio_write_32(AML_MHU_SECURE_AP_TO_SCP_PAYLOAD, base);
	mmio_write_32(AML_MHU_SECURE_AP_TO_SCP_PAYLOAD + 4, size);
118
119
	aml_mhu_secure_message_send(aml_scpi_cmd(SCPI_CMD_EFUSE_READ, 8));
	aml_scpi_secure_message_receive((void *)&response, &resp_size);
120
	aml_mhu_secure_message_end();
121
122
123
124
125
126
127
128
129
130
131

	/*
	 * response[0] is the size of the response message.
	 * response[1 ... N] are the contents.
	 */
	if (*response != 0)
		memcpy(dst, response + 1, *response);

	return *response;
}

132
133
void aml_scpi_unknown_thermal(uint32_t arg0, uint32_t arg1,
			      uint32_t arg2, uint32_t arg3)
134
{
135
136
137
138
139
	aml_mhu_secure_message_start();
	mmio_write_32(AML_MHU_SECURE_AP_TO_SCP_PAYLOAD + 0x0, arg0);
	mmio_write_32(AML_MHU_SECURE_AP_TO_SCP_PAYLOAD + 0x4, arg1);
	mmio_write_32(AML_MHU_SECURE_AP_TO_SCP_PAYLOAD + 0x8, arg2);
	mmio_write_32(AML_MHU_SECURE_AP_TO_SCP_PAYLOAD + 0xC, arg3);
140
	aml_mhu_secure_message_send(aml_scpi_cmd(0xC3, 16));
141
142
	aml_mhu_secure_message_wait();
	aml_mhu_secure_message_end();
143
}
144

145
static inline void aml_scpi_copy_scp_data(uint8_t *data, size_t len)
146
{
147
	void *dst = (void *)AML_MHU_SECURE_AP_TO_SCP_PAYLOAD;
148
149
	size_t sz;

150
	mmio_write_32(AML_MHU_SECURE_AP_TO_SCP_PAYLOAD, len);
151
	aml_scpi_secure_message_send(SCPI_CMD_FW_SIZE, len);
152
	aml_mhu_secure_message_wait();
153
154
155

	for (sz = 0; sz < len; sz += SIZE_FWBLK) {
		memcpy(dst, data + sz, MIN(SIZE_FWBLK, len - sz));
156
		aml_mhu_secure_message_send(SCPI_CMD_COPY_FW);
157
158
159
	}
}

160
static inline void aml_scpi_set_scp_addr(uint64_t addr, size_t len)
161
{
162
	volatile uint64_t *dst = (uint64_t *)AML_MHU_SECURE_AP_TO_SCP_PAYLOAD;
163
164

	/*
165
	 * It is ok as AML_MHU_SECURE_AP_TO_SCP_PAYLOAD is mapped as
166
167
168
	 * non cachable
	 */
	*dst = addr;
169
	aml_scpi_secure_message_send(SCPI_CMD_SET_FW_ADDR, sizeof(addr));
170
	aml_mhu_secure_message_wait();
171

172
	mmio_write_32(AML_MHU_SECURE_AP_TO_SCP_PAYLOAD, len);
173
	aml_scpi_secure_message_send(SCPI_CMD_FW_SIZE, len);
174
	aml_mhu_secure_message_wait();
175
176
}

177
static inline void aml_scpi_send_fw_hash(uint8_t hash[], size_t len)
178
{
179
	void *dst = (void *)AML_MHU_SECURE_AP_TO_SCP_PAYLOAD;
180
181

	memcpy(dst, hash, len);
182
183
184
185
	aml_mhu_secure_message_send(0xd0);
	aml_mhu_secure_message_send(0xd1);
	aml_mhu_secure_message_send(0xd5);
	aml_mhu_secure_message_end();
186
187
188
189
190
191
192
193
194
195
}

/**
 * Upload a FW to SCP.
 *
 * @param addr: firmware data address
 * @param size: size of firmware
 * @param send: If set, actually copy the firmware in SCP memory otherwise only
 *  send the firmware address.
 */
196
void aml_scpi_upload_scp_fw(uintptr_t addr, size_t size, int send)
197
198
199
200
201
202
203
{
	struct asd_ctx ctx;

	asd_sha_init(&ctx, ASM_SHA256);
	asd_sha_update(&ctx, (void *)addr, size);
	asd_sha_finalize(&ctx);

204
	aml_mhu_secure_message_start();
205
	if (send == 0)
206
		aml_scpi_set_scp_addr(addr, size);
207
	else
208
		aml_scpi_copy_scp_data((void *)addr, size);
209

210
	aml_scpi_send_fw_hash(ctx.digest, sizeof(ctx.digest));
211
}