1 2 3 4 5 6 7 8 9 10 11 12 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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
/*
* K3 Secure proxy driver
*
* Copyright (C) 2019 Texas Instruments Incorporated - https://www.ti.com/
* Lokesh Vutla <lokeshvutla@ti.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the
* distribution.
*
* Neither the name of Texas Instruments Incorporated nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <stdint.h>
#include <sec_proxy.h>
#include <mmio.h>
#include <error.h>
#include <socinfo.h>
#include <string.h>
#ifdef DEBUG
#define dprintf(format, ...) printf(format, ## __VA_ARGS__)
#else
#define dprintf(format, ...)
#endif
/* SEC PROXY RT THREAD STATUS */
#define RT_THREAD_STATUS 0x0
#define RT_THREAD_THRESHOLD 0x4
#define RT_THREAD_STATUS_ERROR_SHIFT 31
#define RT_THREAD_STATUS_ERROR_MASK (1 << 31)
#define RT_THREAD_STATUS_CUR_CNT_SHIFT 0
#define RT_THREAD_STATUS_CUR_CNT_MASK 0xff
/* SEC PROXY SCFG THREAD CTRL */
#define SCFG_THREAD_CTRL 0x1000
#define SCFG_THREAD_CTRL_DIR_SHIFT 31
#define SCFG_THREAD_CTRL_DIR_MASK (1 << 31)
#define SEC_PROXY_THREAD(base, x) ((base) + (0x1000 * (x)))
#define SEC_PROXY_TX_THREAD 0
#define SEC_PROXY_RX_THREAD 1
#define SEC_PROXY_MAX_THREADS 2
#define SEC_PROXY_TIMEOUT_US 1000000
#define SEC_PROXY_DATA_START_OFFS 0x4
#define SEC_PROXY_DATA_END_OFFS 0x3c
struct k3_sec_proxy_base k3_generic_sec_proxy_base = {
.src_target_data = 0x32c00000,
.cfg_scfg = 0x32800000,
.cfg_rt = 0x32400000,
};
struct k3_sec_proxy_base k3_lite_sec_proxy_base = {
.src_target_data = 0x4d000000,
.cfg_scfg = 0x4a400000,
.cfg_rt = 0x4a600000,
};
struct k3_sec_proxy_thread {
uint32_t id;
uintptr_t data;
uintptr_t scfg;
uintptr_t rt;
} spts[SEC_PROXY_MAX_THREADS];
static inline uint32_t sp_readl(uintptr_t addr)
{
return mmio_read_32(addr);
}
static inline void sp_writel(uintptr_t addr, uint32_t data)
{
mmio_write_32(addr, data);
}
static int k3_sec_proxy_verify_thread(uint32_t dir)
{
struct k3_sec_proxy_thread *spt = &spts[dir];
/* Check for any errors already available */
if (sp_readl(spt->rt + RT_THREAD_STATUS) &
RT_THREAD_STATUS_ERROR_MASK) {
fprintf(stderr, "%s: Thread %d is corrupted, cannot send data.\n",
__func__, spt->id);
return -1;
}
/* Make sure thread is configured for right direction */
if ((sp_readl(spt->scfg + SCFG_THREAD_CTRL)
& SCFG_THREAD_CTRL_DIR_MASK) >> SCFG_THREAD_CTRL_DIR_SHIFT != dir) {
if (dir)
fprintf(stderr, "%s: Trying to receive data on tx Thread %d\n",
__func__, spt->id);
else
fprintf(stderr, "%s: Trying to send data on rx Thread %d\n",
__func__, spt->id);
return -1;
}
/* Check the message queue before sending/receiving data */
if (!(sp_readl(spt->rt + RT_THREAD_STATUS) &
RT_THREAD_STATUS_CUR_CNT_MASK))
return -2;
return 0;
}
int k3_sec_proxy_send(struct k3_sec_proxy_msg *msg)
{
struct k3_sec_proxy_thread *spt = &spts[SEC_PROXY_TX_THREAD];
int num_words, trail_bytes, ret;
uint32_t *word_data;
uintptr_t data_reg;
ret = k3_sec_proxy_verify_thread(SEC_PROXY_TX_THREAD);
if (ret) {
fprintf(stderr, "%s: Thread%d verification failed. ret = %d\n",
__func__, spt->id, ret);
return ret;
}
/* Check the message size. */
if (msg->len > SEC_PROXY_MAX_MSG_SIZE) {
fprintf(stderr, "%s: Thread %u message length %zu > max msg size %d\n",
__func__, spt->id, msg->len, SEC_PROXY_MAX_MSG_SIZE);
return -1;
}
/* Send the message */
data_reg = spt->data + SEC_PROXY_DATA_START_OFFS;
word_data = (uint32_t *)msg->buf;
for (num_words = msg->len / sizeof(uint32_t);
num_words;
num_words--, data_reg += sizeof(uint32_t), word_data++)
sp_writel(data_reg, *word_data);
trail_bytes = msg->len % sizeof(uint32_t);
if (trail_bytes) {
uint32_t data_trail = *word_data;
/* Ensure all unused data is 0 */
data_trail &= 0xFFFFFFFF >> (8 * (sizeof(uint32_t) - trail_bytes));
sp_writel(data_reg, data_trail);
data_reg++;
}
/*
* 'data_reg' indicates next register to write. If we did not already
* write on tx complete reg(last reg), we must do so for transmit
*/
if (data_reg <= (spt->data + SEC_PROXY_DATA_END_OFFS))
sp_writel(spt->data + SEC_PROXY_DATA_END_OFFS, 0);
return 0;
}
int k3_sec_proxy_recv(struct k3_sec_proxy_msg *msg)
{
struct k3_sec_proxy_thread *spt = &spts[SEC_PROXY_RX_THREAD];
int num_words, ret = -1, retry = 10000;
uint32_t *word_data;
uintptr_t data_reg;
while (retry-- && ret) {
ret = k3_sec_proxy_verify_thread(SEC_PROXY_RX_THREAD);
if ((ret && ret != -2) || !retry) {
fprintf(stderr, "%s: Thread%d verification failed. ret = %d\n",
__func__, spt->id, ret);
return ret;
}
}
data_reg = spt->data + SEC_PROXY_DATA_START_OFFS;
word_data = (uint32_t *)(uintptr_t)msg->buf;
for (num_words = SEC_PROXY_MAX_MSG_SIZE / sizeof(uint32_t);
num_words;
num_words--, data_reg += sizeof(uint32_t), word_data++)
*word_data = sp_readl(data_reg);
return 0;
}
static int get_thread_id(char *host_name, char *function)
{
struct ti_sci_info *sci_info = &soc_info.sci_info;
uint32_t i;
for (i = 0; i < sci_info->num_sp_threads[MAIN_SEC_PROXY]; i++)
if (!strcmp(host_name,
sci_info->sp_info[MAIN_SEC_PROXY][i].host) &&
!strcmp(function,
sci_info->sp_info[MAIN_SEC_PROXY][i].host_function))
return sci_info->sp_info[MAIN_SEC_PROXY][i].sp_id;
return -1;
}
static char* get_host_name(uint32_t host_id)
{
struct ti_sci_info *sci_info = &soc_info.sci_info;
uint32_t i;
for (i = 0; i < sci_info->num_hosts; i++)
if (host_id == sci_info->host_info[i].host_id)
return sci_info->host_info[i].host_name;
return NULL;
}
int k3_sec_proxy_init(void)
{
struct k3_sec_proxy_base *spb = soc_info.sec_proxy;
int rx_thread, tx_thread;
char *host_name;
host_name = get_host_name(soc_info.host_id);
if (!host_name) {
fprintf(stderr, "Invalid host id %d, using default host_id %d\n",
soc_info.host_id, DEFAULT_HOST_ID);
soc_info.host_id = DEFAULT_HOST_ID;
host_name = get_host_name(soc_info.host_id);
}
rx_thread = get_thread_id(host_name, "response");
if (rx_thread < 0) {
fprintf(stderr, "Invalid host id %d, using default host_id %d\n",
soc_info.host_id, DEFAULT_HOST_ID);
soc_info.host_id = DEFAULT_HOST_ID;
host_name = get_host_name(soc_info.host_id);
rx_thread = get_thread_id(host_name, "response");
}
tx_thread = get_thread_id(host_name, "low_priority");
dprintf("host_name = %s, tx_thread = %d, rx_thread = %d\n",
host_name, tx_thread, rx_thread);
spts[SEC_PROXY_TX_THREAD].id = tx_thread;
spts[SEC_PROXY_TX_THREAD].data = SEC_PROXY_THREAD(spb->src_target_data, tx_thread);
spts[SEC_PROXY_TX_THREAD].scfg = SEC_PROXY_THREAD(spb->cfg_scfg, tx_thread);
spts[SEC_PROXY_TX_THREAD].rt = SEC_PROXY_THREAD(spb->cfg_rt, tx_thread);
spts[SEC_PROXY_RX_THREAD].id = rx_thread;
spts[SEC_PROXY_RX_THREAD].data = SEC_PROXY_THREAD(spb->src_target_data, rx_thread);
spts[SEC_PROXY_RX_THREAD].scfg = SEC_PROXY_THREAD(spb->cfg_scfg, rx_thread);
spts[SEC_PROXY_RX_THREAD].rt = SEC_PROXY_THREAD(spb->cfg_rt, rx_thread);
return 0;
}
|