Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 1 | /* |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 2 | * Copyright (c) 2014-2015, ARM Limited and Contributors. All rights reserved. |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 3 | * |
| 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 Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 32 | #include <assert.h> |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 33 | #include <css_def.h> |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 34 | #include <debug.h> |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 35 | #include <platform.h> |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 36 | #include <string.h> |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 37 | #include "css_mhu.h" |
| 38 | #include "css_scpi.h" |
| 39 | |
Sandrine Bailleux | 47ea1bc | 2015-06-09 11:53:33 +0100 | [diff] [blame] | 40 | #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 Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 42 | |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 43 | #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 Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 47 | |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 48 | /* ID of the MHU slot used for the SCPI protocol */ |
| 49 | #define SCPI_MHU_SLOT_ID 0 |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 50 | |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 51 | static void scpi_secure_message_start(void) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 52 | { |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 53 | mhu_secure_message_start(SCPI_MHU_SLOT_ID); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 54 | } |
| 55 | |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 56 | static void scpi_secure_message_send(size_t payload_size) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 57 | { |
| 58 | /* Make sure payload can be seen by SCP */ |
| 59 | if (MHU_PAYLOAD_CACHED) |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 60 | flush_dcache_range(SCPI_SHARED_MEM_AP_TO_SCP, |
| 61 | sizeof(scpi_cmd_t) + payload_size); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 62 | |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 63 | mhu_secure_message_send(SCPI_MHU_SLOT_ID); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 64 | } |
| 65 | |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 66 | static void scpi_secure_message_receive(scpi_cmd_t *cmd) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 67 | { |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 68 | uint32_t mhu_status; |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 69 | |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 70 | assert(cmd != NULL); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 71 | |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 72 | 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 Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 80 | |
| 81 | /* Make sure we don't read stale data */ |
| 82 | if (MHU_PAYLOAD_CACHED) |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 83 | inv_dcache_range(SCPI_SHARED_MEM_SCP_TO_AP, sizeof(*cmd)); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 84 | |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 85 | memcpy(cmd, (void *) SCPI_SHARED_MEM_SCP_TO_AP, sizeof(*cmd)); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 88 | static void scpi_secure_message_end(void) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 89 | { |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 90 | mhu_secure_message_end(SCPI_MHU_SLOT_ID); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | int scpi_wait_ready(void) |
| 94 | { |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 95 | scpi_cmd_t scpi_cmd; |
| 96 | |
| 97 | VERBOSE("Waiting for SCP_READY command...\n"); |
| 98 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 99 | /* Get a message from the SCP */ |
| 100 | scpi_secure_message_start(); |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 101 | scpi_secure_message_receive(&scpi_cmd); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 102 | scpi_secure_message_end(); |
| 103 | |
| 104 | /* We are expecting 'SCP Ready', produce correct error if it's not */ |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 105 | scpi_status_t status = SCP_OK; |
| 106 | if (scpi_cmd.id != SCPI_CMD_SCP_READY) { |
| 107 | ERROR("Unexpected SCP command: expected command #%u, got command #%u\n", |
| 108 | SCPI_CMD_SCP_READY, scpi_cmd.id); |
| 109 | status = SCP_E_SUPPORT; |
| 110 | } else if (scpi_cmd.size != 0) { |
| 111 | ERROR("SCP_READY command has incorrect size: expected 0, got %u\n", |
| 112 | scpi_cmd.size); |
| 113 | status = SCP_E_SIZE; |
| 114 | } |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 115 | |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 116 | VERBOSE("Sending response for SCP_READY command\n"); |
| 117 | |
| 118 | /* |
| 119 | * Send our response back to SCP. |
| 120 | * We are using the same SCPI header, just update the status field. |
| 121 | */ |
| 122 | scpi_cmd.status = status; |
| 123 | scpi_secure_message_start(); |
| 124 | memcpy((void *) SCPI_SHARED_MEM_AP_TO_SCP, &scpi_cmd, sizeof(scpi_cmd)); |
| 125 | scpi_secure_message_send(0); |
| 126 | scpi_secure_message_end(); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 127 | |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 128 | return status == SCP_OK ? 0 : -1; |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | void scpi_set_css_power_state(unsigned mpidr, scpi_power_state_t cpu_state, |
| 132 | scpi_power_state_t cluster_state, scpi_power_state_t css_state) |
| 133 | { |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 134 | scpi_cmd_t *cmd; |
| 135 | uint32_t state = 0; |
| 136 | uint32_t *payload_addr; |
| 137 | |
| 138 | state |= mpidr & 0x0f; /* CPU ID */ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 139 | state |= (mpidr & 0xf00) >> 4; /* Cluster ID */ |
| 140 | state |= cpu_state << 8; |
| 141 | state |= cluster_state << 12; |
| 142 | state |= css_state << 16; |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 143 | |
| 144 | scpi_secure_message_start(); |
| 145 | |
| 146 | /* Populate the command header */ |
| 147 | cmd = SCPI_CMD_HEADER_AP_TO_SCP; |
| 148 | cmd->id = SCPI_CMD_SET_CSS_POWER_STATE; |
| 149 | cmd->set = SCPI_SET_NORMAL; |
| 150 | cmd->sender = 0; |
| 151 | cmd->size = sizeof(state); |
| 152 | /* Populate the command payload */ |
| 153 | payload_addr = SCPI_CMD_PAYLOAD_AP_TO_SCP; |
| 154 | *payload_addr = state; |
| 155 | scpi_secure_message_send(sizeof(state)); |
| 156 | /* |
| 157 | * SCP does not reply to this command in order to avoid MHU interrupts |
| 158 | * from the sender, which could interfere with its power state request. |
| 159 | */ |
| 160 | |
| 161 | scpi_secure_message_end(); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | uint32_t scpi_sys_power_state(scpi_system_state_t system_state) |
| 165 | { |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 166 | scpi_cmd_t *cmd; |
| 167 | uint8_t *payload_addr; |
| 168 | scpi_cmd_t response; |
| 169 | |
| 170 | scpi_secure_message_start(); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 171 | |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 172 | /* Populate the command header */ |
| 173 | cmd = SCPI_CMD_HEADER_AP_TO_SCP; |
| 174 | cmd->id = SCPI_CMD_SYS_POWER_STATE; |
| 175 | cmd->set = 0; |
| 176 | cmd->sender = 0; |
| 177 | cmd->size = sizeof(*payload_addr); |
| 178 | /* Populate the command payload */ |
| 179 | payload_addr = SCPI_CMD_PAYLOAD_AP_TO_SCP; |
| 180 | *payload_addr = system_state & 0xff; |
| 181 | scpi_secure_message_send(sizeof(*payload_addr)); |
| 182 | |
| 183 | scpi_secure_message_receive(&response); |
| 184 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 185 | scpi_secure_message_end(); |
Sandrine Bailleux | 04b66d8 | 2015-03-18 14:52:53 +0000 | [diff] [blame] | 186 | |
| 187 | return response.status; |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 188 | } |