blob: 829a1742ead73cf88d8704a5e5bf705202cd01a7 [file] [log] [blame]
Dan Handleyb4315302015-03-19 18:58:55 +00001/*
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +00002 * Copyright (c) 2014-2015, ARM Limited and Contributors. All rights reserved.
Dan Handleyb4315302015-03-19 18:58:55 +00003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#include <arch_helpers.h>
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000032#include <assert.h>
Dan Handleyb4315302015-03-19 18:58:55 +000033#include <css_def.h>
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000034#include <debug.h>
Dan Handleyb4315302015-03-19 18:58:55 +000035#include <platform.h>
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000036#include <string.h>
Dan Handleyb4315302015-03-19 18:58:55 +000037#include "css_mhu.h"
38#include "css_scpi.h"
39
Sandrine Bailleuxfe556122015-06-09 11:53:33 +010040#define SCPI_SHARED_MEM_SCP_TO_AP SCP_COM_SHARED_MEM_BASE
41#define SCPI_SHARED_MEM_AP_TO_SCP (SCP_COM_SHARED_MEM_BASE + 0x100)
Dan Handleyb4315302015-03-19 18:58:55 +000042
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000043#define SCPI_CMD_HEADER_AP_TO_SCP \
44 ((scpi_cmd_t *) SCPI_SHARED_MEM_AP_TO_SCP)
45#define SCPI_CMD_PAYLOAD_AP_TO_SCP \
46 ((void *) (SCPI_SHARED_MEM_AP_TO_SCP + sizeof(scpi_cmd_t)))
Dan Handleyb4315302015-03-19 18:58:55 +000047
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000048/* ID of the MHU slot used for the SCPI protocol */
49#define SCPI_MHU_SLOT_ID 0
Dan Handleyb4315302015-03-19 18:58:55 +000050
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000051static void scpi_secure_message_start(void)
Dan Handleyb4315302015-03-19 18:58:55 +000052{
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000053 mhu_secure_message_start(SCPI_MHU_SLOT_ID);
Dan Handleyb4315302015-03-19 18:58:55 +000054}
55
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000056static void scpi_secure_message_send(size_t payload_size)
Dan Handleyb4315302015-03-19 18:58:55 +000057{
Juan Castillo74eb26e2016-01-13 15:01:09 +000058 /* Ensure that any write to the SCPI payload area is seen by SCP before
59 * we write to the MHU register. If these 2 writes were reordered by
60 * the CPU then SCP would read stale payload data */
61 dmbst();
Dan Handleyb4315302015-03-19 18:58:55 +000062
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000063 mhu_secure_message_send(SCPI_MHU_SLOT_ID);
Dan Handleyb4315302015-03-19 18:58:55 +000064}
65
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000066static void scpi_secure_message_receive(scpi_cmd_t *cmd)
Dan Handleyb4315302015-03-19 18:58:55 +000067{
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000068 uint32_t mhu_status;
Dan Handleyb4315302015-03-19 18:58:55 +000069
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000070 assert(cmd != NULL);
Dan Handleyb4315302015-03-19 18:58:55 +000071
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000072 mhu_status = mhu_secure_message_wait();
73
74 /* Expect an SCPI message, reject any other protocol */
75 if (mhu_status != (1 << SCPI_MHU_SLOT_ID)) {
76 ERROR("MHU: Unexpected protocol (MHU status: 0x%x)\n",
77 mhu_status);
78 panic();
79 }
Dan Handleyb4315302015-03-19 18:58:55 +000080
Juan Castillo74eb26e2016-01-13 15:01:09 +000081 /* Ensure that any read to the SCPI payload area is done after reading
82 * the MHU register. If these 2 reads were reordered then the CPU would
83 * read invalid payload data */
84 dmbld();
Dan Handleyb4315302015-03-19 18:58:55 +000085
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000086 memcpy(cmd, (void *) SCPI_SHARED_MEM_SCP_TO_AP, sizeof(*cmd));
Dan Handleyb4315302015-03-19 18:58:55 +000087}
88
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000089static void scpi_secure_message_end(void)
Dan Handleyb4315302015-03-19 18:58:55 +000090{
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000091 mhu_secure_message_end(SCPI_MHU_SLOT_ID);
Dan Handleyb4315302015-03-19 18:58:55 +000092}
93
94int scpi_wait_ready(void)
95{
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +000096 scpi_cmd_t scpi_cmd;
97
98 VERBOSE("Waiting for SCP_READY command...\n");
99
Dan Handleyb4315302015-03-19 18:58:55 +0000100 /* Get a message from the SCP */
101 scpi_secure_message_start();
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +0000102 scpi_secure_message_receive(&scpi_cmd);
Dan Handleyb4315302015-03-19 18:58:55 +0000103 scpi_secure_message_end();
104
105 /* We are expecting 'SCP Ready', produce correct error if it's not */
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +0000106 scpi_status_t status = SCP_OK;
107 if (scpi_cmd.id != SCPI_CMD_SCP_READY) {
108 ERROR("Unexpected SCP command: expected command #%u, got command #%u\n",
109 SCPI_CMD_SCP_READY, scpi_cmd.id);
110 status = SCP_E_SUPPORT;
111 } else if (scpi_cmd.size != 0) {
112 ERROR("SCP_READY command has incorrect size: expected 0, got %u\n",
113 scpi_cmd.size);
114 status = SCP_E_SIZE;
115 }
Dan Handleyb4315302015-03-19 18:58:55 +0000116
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +0000117 VERBOSE("Sending response for SCP_READY command\n");
Dan Handleyb4315302015-03-19 18:58:55 +0000118
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +0000119 /*
120 * Send our response back to SCP.
121 * We are using the same SCPI header, just update the status field.
122 */
123 scpi_cmd.status = status;
124 scpi_secure_message_start();
125 memcpy((void *) SCPI_SHARED_MEM_AP_TO_SCP, &scpi_cmd, sizeof(scpi_cmd));
126 scpi_secure_message_send(0);
127 scpi_secure_message_end();
128
129 return status == SCP_OK ? 0 : -1;
Dan Handleyb4315302015-03-19 18:58:55 +0000130}
131
132void scpi_set_css_power_state(unsigned mpidr, scpi_power_state_t cpu_state,
133 scpi_power_state_t cluster_state, scpi_power_state_t css_state)
134{
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +0000135 scpi_cmd_t *cmd;
136 uint32_t state = 0;
137 uint32_t *payload_addr;
138
139 state |= mpidr & 0x0f; /* CPU ID */
Dan Handleyb4315302015-03-19 18:58:55 +0000140 state |= (mpidr & 0xf00) >> 4; /* Cluster ID */
141 state |= cpu_state << 8;
142 state |= cluster_state << 12;
143 state |= css_state << 16;
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +0000144
145 scpi_secure_message_start();
146
147 /* Populate the command header */
148 cmd = SCPI_CMD_HEADER_AP_TO_SCP;
149 cmd->id = SCPI_CMD_SET_CSS_POWER_STATE;
150 cmd->set = SCPI_SET_NORMAL;
151 cmd->sender = 0;
152 cmd->size = sizeof(state);
153 /* Populate the command payload */
154 payload_addr = SCPI_CMD_PAYLOAD_AP_TO_SCP;
155 *payload_addr = state;
156 scpi_secure_message_send(sizeof(state));
157 /*
158 * SCP does not reply to this command in order to avoid MHU interrupts
159 * from the sender, which could interfere with its power state request.
160 */
161
162 scpi_secure_message_end();
Dan Handleyb4315302015-03-19 18:58:55 +0000163}
164
165uint32_t scpi_sys_power_state(scpi_system_state_t system_state)
166{
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +0000167 scpi_cmd_t *cmd;
168 uint8_t *payload_addr;
169 scpi_cmd_t response;
Dan Handleyb4315302015-03-19 18:58:55 +0000170
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +0000171 scpi_secure_message_start();
172
173 /* Populate the command header */
174 cmd = SCPI_CMD_HEADER_AP_TO_SCP;
175 cmd->id = SCPI_CMD_SYS_POWER_STATE;
176 cmd->set = 0;
177 cmd->sender = 0;
178 cmd->size = sizeof(*payload_addr);
179 /* Populate the command payload */
180 payload_addr = SCPI_CMD_PAYLOAD_AP_TO_SCP;
181 *payload_addr = system_state & 0xff;
182 scpi_secure_message_send(sizeof(*payload_addr));
183
184 scpi_secure_message_receive(&response);
185
Dan Handleyb4315302015-03-19 18:58:55 +0000186 scpi_secure_message_end();
Sandrine Bailleuxe234ba02015-03-18 14:52:53 +0000187
188 return response.status;
Dan Handleyb4315302015-03-19 18:58:55 +0000189}