blob: e2d9216cfc7878451ec17f5513d54584df5b45ac [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ruchika Guptab9eebfa2014-10-15 11:35:30 +05302/*
3 * Copyright 2008-2014 Freescale Semiconductor, Inc.
4 *
Ruchika Guptab9eebfa2014-10-15 11:35:30 +05305 * Based on CAAM driver in drivers/crypto/caam in Linux
6 */
7
8#include <common.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -07009#include <cpu_func.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Ruchika Guptab9eebfa2014-10-15 11:35:30 +053011#include <malloc.h>
12#include "fsl_sec.h"
13#include "jr.h"
Ruchika Guptac5de15c2014-10-07 15:46:20 +053014#include "jobdesc.h"
Aneesh Bansalf59e69c2015-10-29 22:58:03 +053015#include "desc_constr.h"
Simon Glass6887c5b2019-11-14 12:57:26 -070016#include <time.h>
Simon Glass90526e92020-05-10 11:39:56 -060017#include <asm/cache.h>
Aneesh Bansalf698e9f2016-01-22 17:05:59 +053018#ifdef CONFIG_FSL_CORENET
Simon Glass90526e92020-05-10 11:39:56 -060019#include <asm/cache.h>
Aneesh Bansalf698e9f2016-01-22 17:05:59 +053020#include <asm/fsl_pamu.h>
21#endif
Ruchika Guptab9eebfa2014-10-15 11:35:30 +053022
23#define CIRC_CNT(head, tail, size) (((head) - (tail)) & (size - 1))
24#define CIRC_SPACE(head, tail, size) CIRC_CNT((tail), (head) + 1, (size))
25
Alex Porosanu76394c92016-04-29 15:18:00 +030026uint32_t sec_offset[CONFIG_SYS_FSL_MAX_NUM_OF_SEC] = {
27 0,
York Sun4fd64742016-11-15 18:44:22 -080028#if defined(CONFIG_ARCH_C29X)
Alex Porosanu76394c92016-04-29 15:18:00 +030029 CONFIG_SYS_FSL_SEC_IDX_OFFSET,
30 2 * CONFIG_SYS_FSL_SEC_IDX_OFFSET
31#endif
32};
Ruchika Guptab9eebfa2014-10-15 11:35:30 +053033
Alex Porosanu76394c92016-04-29 15:18:00 +030034#define SEC_ADDR(idx) \
35 ((CONFIG_SYS_FSL_SEC_ADDR + sec_offset[idx]))
36
37#define SEC_JR0_ADDR(idx) \
38 (SEC_ADDR(idx) + \
39 (CONFIG_SYS_FSL_JR0_OFFSET - CONFIG_SYS_FSL_SEC_OFFSET))
40
41struct jobring jr0[CONFIG_SYS_FSL_MAX_NUM_OF_SEC];
42
43static inline void start_jr0(uint8_t sec_idx)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +053044{
Alex Porosanu76394c92016-04-29 15:18:00 +030045 ccsr_sec_t *sec = (void *)SEC_ADDR(sec_idx);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +053046 u32 ctpr_ms = sec_in32(&sec->ctpr_ms);
47 u32 scfgr = sec_in32(&sec->scfgr);
48
49 if (ctpr_ms & SEC_CTPR_MS_VIRT_EN_INCL) {
50 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or
51 * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SEC_SCFGR_VIRT_EN = 1
52 */
53 if ((ctpr_ms & SEC_CTPR_MS_VIRT_EN_POR) ||
xypron.glpk@gmx.ded1710562017-04-15 16:37:54 +020054 (scfgr & SEC_SCFGR_VIRT_EN))
Ruchika Guptab9eebfa2014-10-15 11:35:30 +053055 sec_out32(&sec->jrstartr, CONFIG_JRSTARTR_JR0);
56 } else {
57 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */
58 if (ctpr_ms & SEC_CTPR_MS_VIRT_EN_POR)
59 sec_out32(&sec->jrstartr, CONFIG_JRSTARTR_JR0);
60 }
61}
62
Alex Porosanu76394c92016-04-29 15:18:00 +030063static inline void jr_reset_liodn(uint8_t sec_idx)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +053064{
Alex Porosanu76394c92016-04-29 15:18:00 +030065 ccsr_sec_t *sec = (void *)SEC_ADDR(sec_idx);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +053066 sec_out32(&sec->jrliodnr[0].ls, 0);
67}
68
Alex Porosanu76394c92016-04-29 15:18:00 +030069static inline void jr_disable_irq(uint8_t sec_idx)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +053070{
Alex Porosanu76394c92016-04-29 15:18:00 +030071 struct jr_regs *regs = (struct jr_regs *)SEC_JR0_ADDR(sec_idx);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +053072 uint32_t jrcfg = sec_in32(&regs->jrcfg1);
73
74 jrcfg = jrcfg | JR_INTMASK;
75
76 sec_out32(&regs->jrcfg1, jrcfg);
77}
78
Alex Porosanu76394c92016-04-29 15:18:00 +030079static void jr_initregs(uint8_t sec_idx)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +053080{
Alex Porosanu76394c92016-04-29 15:18:00 +030081 struct jr_regs *regs = (struct jr_regs *)SEC_JR0_ADDR(sec_idx);
82 struct jobring *jr = &jr0[sec_idx];
83 phys_addr_t ip_base = virt_to_phys((void *)jr->input_ring);
84 phys_addr_t op_base = virt_to_phys((void *)jr->output_ring);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +053085
86#ifdef CONFIG_PHYS_64BIT
87 sec_out32(&regs->irba_h, ip_base >> 32);
88#else
89 sec_out32(&regs->irba_h, 0x0);
90#endif
91 sec_out32(&regs->irba_l, (uint32_t)ip_base);
92#ifdef CONFIG_PHYS_64BIT
93 sec_out32(&regs->orba_h, op_base >> 32);
94#else
95 sec_out32(&regs->orba_h, 0x0);
96#endif
97 sec_out32(&regs->orba_l, (uint32_t)op_base);
98 sec_out32(&regs->ors, JR_SIZE);
99 sec_out32(&regs->irs, JR_SIZE);
100
Alex Porosanu76394c92016-04-29 15:18:00 +0300101 if (!jr->irq)
102 jr_disable_irq(sec_idx);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530103}
104
Alex Porosanu76394c92016-04-29 15:18:00 +0300105static int jr_init(uint8_t sec_idx)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530106{
Alex Porosanu76394c92016-04-29 15:18:00 +0300107 struct jobring *jr = &jr0[sec_idx];
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530108
Alex Porosanu76394c92016-04-29 15:18:00 +0300109 memset(jr, 0, sizeof(struct jobring));
110
111 jr->jq_id = DEFAULT_JR_ID;
112 jr->irq = DEFAULT_IRQ;
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530113
114#ifdef CONFIG_FSL_CORENET
Alex Porosanu76394c92016-04-29 15:18:00 +0300115 jr->liodn = DEFAULT_JR_LIODN;
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530116#endif
Alex Porosanu76394c92016-04-29 15:18:00 +0300117 jr->size = JR_SIZE;
118 jr->input_ring = (dma_addr_t *)memalign(ARCH_DMA_MINALIGN,
Raul Cardenas02000202015-02-27 11:22:06 -0600119 JR_SIZE * sizeof(dma_addr_t));
Alex Porosanu76394c92016-04-29 15:18:00 +0300120 if (!jr->input_ring)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530121 return -1;
Ruchika Gupta7f4736b2016-01-22 16:12:55 +0530122
Alex Porosanu76394c92016-04-29 15:18:00 +0300123 jr->op_size = roundup(JR_SIZE * sizeof(struct op_ring),
124 ARCH_DMA_MINALIGN);
125 jr->output_ring =
126 (struct op_ring *)memalign(ARCH_DMA_MINALIGN, jr->op_size);
127 if (!jr->output_ring)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530128 return -1;
129
Alex Porosanu76394c92016-04-29 15:18:00 +0300130 memset(jr->input_ring, 0, JR_SIZE * sizeof(dma_addr_t));
131 memset(jr->output_ring, 0, jr->op_size);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530132
Alex Porosanu76394c92016-04-29 15:18:00 +0300133 start_jr0(sec_idx);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530134
Alex Porosanu76394c92016-04-29 15:18:00 +0300135 jr_initregs(sec_idx);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530136
137 return 0;
138}
139
Alex Porosanu76394c92016-04-29 15:18:00 +0300140static int jr_sw_cleanup(uint8_t sec_idx)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530141{
Alex Porosanu76394c92016-04-29 15:18:00 +0300142 struct jobring *jr = &jr0[sec_idx];
143
144 jr->head = 0;
145 jr->tail = 0;
146 jr->read_idx = 0;
147 jr->write_idx = 0;
148 memset(jr->info, 0, sizeof(jr->info));
149 memset(jr->input_ring, 0, jr->size * sizeof(dma_addr_t));
150 memset(jr->output_ring, 0, jr->size * sizeof(struct op_ring));
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530151
152 return 0;
153}
154
Alex Porosanu76394c92016-04-29 15:18:00 +0300155static int jr_hw_reset(uint8_t sec_idx)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530156{
Alex Porosanu76394c92016-04-29 15:18:00 +0300157 struct jr_regs *regs = (struct jr_regs *)SEC_JR0_ADDR(sec_idx);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530158 uint32_t timeout = 100000;
159 uint32_t jrint, jrcr;
160
161 sec_out32(&regs->jrcr, JRCR_RESET);
162 do {
163 jrint = sec_in32(&regs->jrint);
164 } while (((jrint & JRINT_ERR_HALT_MASK) ==
165 JRINT_ERR_HALT_INPROGRESS) && --timeout);
166
167 jrint = sec_in32(&regs->jrint);
168 if (((jrint & JRINT_ERR_HALT_MASK) !=
169 JRINT_ERR_HALT_INPROGRESS) && timeout == 0)
170 return -1;
171
172 timeout = 100000;
173 sec_out32(&regs->jrcr, JRCR_RESET);
174 do {
175 jrcr = sec_in32(&regs->jrcr);
176 } while ((jrcr & JRCR_RESET) && --timeout);
177
178 if (timeout == 0)
179 return -1;
180
181 return 0;
182}
183
184/* -1 --- error, can't enqueue -- no space available */
185static int jr_enqueue(uint32_t *desc_addr,
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530186 void (*callback)(uint32_t status, void *arg),
Alex Porosanu76394c92016-04-29 15:18:00 +0300187 void *arg, uint8_t sec_idx)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530188{
Alex Porosanu76394c92016-04-29 15:18:00 +0300189 struct jr_regs *regs = (struct jr_regs *)SEC_JR0_ADDR(sec_idx);
190 struct jobring *jr = &jr0[sec_idx];
191 int head = jr->head;
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530192 uint32_t desc_word;
193 int length = desc_len(desc_addr);
194 int i;
195#ifdef CONFIG_PHYS_64BIT
196 uint32_t *addr_hi, *addr_lo;
197#endif
198
199 /* The descriptor must be submitted to SEC block as per endianness
200 * of the SEC Block.
201 * So, if the endianness of Core and SEC block is different, each word
202 * of the descriptor will be byte-swapped.
203 */
204 for (i = 0; i < length; i++) {
205 desc_word = desc_addr[i];
206 sec_out32((uint32_t *)&desc_addr[i], desc_word);
207 }
208
209 phys_addr_t desc_phys_addr = virt_to_phys(desc_addr);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530210
Alex Porosanu76394c92016-04-29 15:18:00 +0300211 jr->info[head].desc_phys_addr = desc_phys_addr;
212 jr->info[head].callback = (void *)callback;
213 jr->info[head].arg = arg;
214 jr->info[head].op_done = 0;
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530215
Alex Porosanu76394c92016-04-29 15:18:00 +0300216 unsigned long start = (unsigned long)&jr->info[head] &
Raul Cardenas02000202015-02-27 11:22:06 -0600217 ~(ARCH_DMA_MINALIGN - 1);
Alex Porosanu76394c92016-04-29 15:18:00 +0300218 unsigned long end = ALIGN((unsigned long)&jr->info[head] +
Ruchika Gupta7f4736b2016-01-22 16:12:55 +0530219 sizeof(struct jr_info), ARCH_DMA_MINALIGN);
Raul Cardenas02000202015-02-27 11:22:06 -0600220 flush_dcache_range(start, end);
221
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530222#ifdef CONFIG_PHYS_64BIT
223 /* Write the 64 bit Descriptor address on Input Ring.
224 * The 32 bit hign and low part of the address will
225 * depend on endianness of SEC block.
226 */
227#ifdef CONFIG_SYS_FSL_SEC_LE
Alex Porosanu76394c92016-04-29 15:18:00 +0300228 addr_lo = (uint32_t *)(&jr->input_ring[head]);
229 addr_hi = (uint32_t *)(&jr->input_ring[head]) + 1;
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530230#elif defined(CONFIG_SYS_FSL_SEC_BE)
Alex Porosanu76394c92016-04-29 15:18:00 +0300231 addr_hi = (uint32_t *)(&jr->input_ring[head]);
232 addr_lo = (uint32_t *)(&jr->input_ring[head]) + 1;
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530233#endif /* ifdef CONFIG_SYS_FSL_SEC_LE */
234
235 sec_out32(addr_hi, (uint32_t)(desc_phys_addr >> 32));
236 sec_out32(addr_lo, (uint32_t)(desc_phys_addr));
237
238#else
239 /* Write the 32 bit Descriptor address on Input Ring. */
Alex Porosanu76394c92016-04-29 15:18:00 +0300240 sec_out32(&jr->input_ring[head], desc_phys_addr);
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530241#endif /* ifdef CONFIG_PHYS_64BIT */
242
Alex Porosanu76394c92016-04-29 15:18:00 +0300243 start = (unsigned long)&jr->input_ring[head] & ~(ARCH_DMA_MINALIGN - 1);
244 end = ALIGN((unsigned long)&jr->input_ring[head] +
Ruchika Gupta7f4736b2016-01-22 16:12:55 +0530245 sizeof(dma_addr_t), ARCH_DMA_MINALIGN);
Raul Cardenas02000202015-02-27 11:22:06 -0600246 flush_dcache_range(start, end);
247
Alex Porosanu76394c92016-04-29 15:18:00 +0300248 jr->head = (head + 1) & (jr->size - 1);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530249
Ruchika Gupta7f4736b2016-01-22 16:12:55 +0530250 /* Invalidate output ring */
Alex Porosanu76394c92016-04-29 15:18:00 +0300251 start = (unsigned long)jr->output_ring &
Ruchika Gupta7f4736b2016-01-22 16:12:55 +0530252 ~(ARCH_DMA_MINALIGN - 1);
Alex Porosanu76394c92016-04-29 15:18:00 +0300253 end = ALIGN((unsigned long)jr->output_ring + jr->op_size,
254 ARCH_DMA_MINALIGN);
Ruchika Gupta7f4736b2016-01-22 16:12:55 +0530255 invalidate_dcache_range(start, end);
256
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530257 sec_out32(&regs->irja, 1);
258
259 return 0;
260}
261
Alex Porosanu76394c92016-04-29 15:18:00 +0300262static int jr_dequeue(int sec_idx)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530263{
Alex Porosanu76394c92016-04-29 15:18:00 +0300264 struct jr_regs *regs = (struct jr_regs *)SEC_JR0_ADDR(sec_idx);
265 struct jobring *jr = &jr0[sec_idx];
266 int head = jr->head;
267 int tail = jr->tail;
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530268 int idx, i, found;
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530269 void (*callback)(uint32_t status, void *arg);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530270 void *arg = NULL;
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530271#ifdef CONFIG_PHYS_64BIT
272 uint32_t *addr_hi, *addr_lo;
273#else
274 uint32_t *addr;
275#endif
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530276
Alex Porosanu76394c92016-04-29 15:18:00 +0300277 while (sec_in32(&regs->orsf) && CIRC_CNT(jr->head, jr->tail,
278 jr->size)) {
Raul Cardenas02000202015-02-27 11:22:06 -0600279
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530280 found = 0;
281
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530282 phys_addr_t op_desc;
283 #ifdef CONFIG_PHYS_64BIT
284 /* Read the 64 bit Descriptor address from Output Ring.
285 * The 32 bit hign and low part of the address will
286 * depend on endianness of SEC block.
287 */
288 #ifdef CONFIG_SYS_FSL_SEC_LE
Alex Porosanu76394c92016-04-29 15:18:00 +0300289 addr_lo = (uint32_t *)(&jr->output_ring[jr->tail].desc);
290 addr_hi = (uint32_t *)(&jr->output_ring[jr->tail].desc) + 1;
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530291 #elif defined(CONFIG_SYS_FSL_SEC_BE)
Alex Porosanu76394c92016-04-29 15:18:00 +0300292 addr_hi = (uint32_t *)(&jr->output_ring[jr->tail].desc);
293 addr_lo = (uint32_t *)(&jr->output_ring[jr->tail].desc) + 1;
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530294 #endif /* ifdef CONFIG_SYS_FSL_SEC_LE */
295
296 op_desc = ((u64)sec_in32(addr_hi) << 32) |
297 ((u64)sec_in32(addr_lo));
298
299 #else
300 /* Read the 32 bit Descriptor address from Output Ring. */
Alex Porosanu76394c92016-04-29 15:18:00 +0300301 addr = (uint32_t *)&jr->output_ring[jr->tail].desc;
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530302 op_desc = sec_in32(addr);
303 #endif /* ifdef CONFIG_PHYS_64BIT */
304
Alex Porosanu76394c92016-04-29 15:18:00 +0300305 uint32_t status = sec_in32(&jr->output_ring[jr->tail].status);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530306
Alex Porosanu76394c92016-04-29 15:18:00 +0300307 for (i = 0; CIRC_CNT(head, tail + i, jr->size) >= 1; i++) {
308 idx = (tail + i) & (jr->size - 1);
309 if (op_desc == jr->info[idx].desc_phys_addr) {
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530310 found = 1;
311 break;
312 }
313 }
314
315 /* Error condition if match not found */
316 if (!found)
317 return -1;
318
Alex Porosanu76394c92016-04-29 15:18:00 +0300319 jr->info[idx].op_done = 1;
320 callback = (void *)jr->info[idx].callback;
321 arg = jr->info[idx].arg;
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530322
323 /* When the job on tail idx gets done, increment
324 * tail till the point where job completed out of oredr has
325 * been taken into account
326 */
327 if (idx == tail)
328 do {
Alex Porosanu76394c92016-04-29 15:18:00 +0300329 tail = (tail + 1) & (jr->size - 1);
330 } while (jr->info[tail].op_done);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530331
Alex Porosanu76394c92016-04-29 15:18:00 +0300332 jr->tail = tail;
333 jr->read_idx = (jr->read_idx + 1) & (jr->size - 1);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530334
335 sec_out32(&regs->orjr, 1);
Alex Porosanu76394c92016-04-29 15:18:00 +0300336 jr->info[idx].op_done = 0;
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530337
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530338 callback(status, arg);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530339 }
340
341 return 0;
342}
343
Aneesh Bansalf59e69c2015-10-29 22:58:03 +0530344static void desc_done(uint32_t status, void *arg)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530345{
346 struct result *x = arg;
347 x->status = status;
Ruchika Gupta511fc862017-04-17 18:07:19 +0530348#ifndef CONFIG_SPL_BUILD
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530349 caam_jr_strstatus(status);
Ruchika Gupta511fc862017-04-17 18:07:19 +0530350#endif
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530351 x->done = 1;
352}
353
Alex Porosanu76394c92016-04-29 15:18:00 +0300354static inline int run_descriptor_jr_idx(uint32_t *desc, uint8_t sec_idx)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530355{
356 unsigned long long timeval = get_ticks();
357 unsigned long long timeout = usec2ticks(CONFIG_SEC_DEQ_TIMEOUT);
358 struct result op;
359 int ret = 0;
360
gaurav rana851c9db2014-12-04 13:00:41 +0530361 memset(&op, 0, sizeof(op));
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530362
Alex Porosanu76394c92016-04-29 15:18:00 +0300363 ret = jr_enqueue(desc, desc_done, &op, sec_idx);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530364 if (ret) {
365 debug("Error in SEC enq\n");
366 ret = JQ_ENQ_ERR;
367 goto out;
368 }
369
370 timeval = get_ticks();
371 timeout = usec2ticks(CONFIG_SEC_DEQ_TIMEOUT);
372 while (op.done != 1) {
Alex Porosanu76394c92016-04-29 15:18:00 +0300373 ret = jr_dequeue(sec_idx);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530374 if (ret) {
375 debug("Error in SEC deq\n");
376 ret = JQ_DEQ_ERR;
377 goto out;
378 }
379
380 if ((get_ticks() - timeval) > timeout) {
381 debug("SEC Dequeue timed out\n");
382 ret = JQ_DEQ_TO_ERR;
383 goto out;
384 }
385 }
386
Aneesh Bansal6178e952016-02-11 14:36:51 +0530387 if (op.status) {
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530388 debug("Error %x\n", op.status);
389 ret = op.status;
390 }
391out:
392 return ret;
393}
394
Alex Porosanu76394c92016-04-29 15:18:00 +0300395int run_descriptor_jr(uint32_t *desc)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530396{
Alex Porosanu76394c92016-04-29 15:18:00 +0300397 return run_descriptor_jr_idx(desc, 0);
398}
399
400static inline int jr_reset_sec(uint8_t sec_idx)
401{
402 if (jr_hw_reset(sec_idx) < 0)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530403 return -1;
404
405 /* Clean up the jobring structure maintained by software */
Alex Porosanu76394c92016-04-29 15:18:00 +0300406 jr_sw_cleanup(sec_idx);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530407
408 return 0;
409}
410
Alex Porosanu76394c92016-04-29 15:18:00 +0300411int jr_reset(void)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530412{
Alex Porosanu76394c92016-04-29 15:18:00 +0300413 return jr_reset_sec(0);
414}
415
416static inline int sec_reset_idx(uint8_t sec_idx)
417{
418 ccsr_sec_t *sec = (void *)SEC_ADDR(sec_idx);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530419 uint32_t mcfgr = sec_in32(&sec->mcfgr);
420 uint32_t timeout = 100000;
421
422 mcfgr |= MCFGR_SWRST;
423 sec_out32(&sec->mcfgr, mcfgr);
424
425 mcfgr |= MCFGR_DMA_RST;
426 sec_out32(&sec->mcfgr, mcfgr);
427 do {
428 mcfgr = sec_in32(&sec->mcfgr);
429 } while ((mcfgr & MCFGR_DMA_RST) == MCFGR_DMA_RST && --timeout);
430
431 if (timeout == 0)
432 return -1;
433
434 timeout = 100000;
435 do {
436 mcfgr = sec_in32(&sec->mcfgr);
437 } while ((mcfgr & MCFGR_SWRST) == MCFGR_SWRST && --timeout);
438
439 if (timeout == 0)
440 return -1;
441
442 return 0;
443}
Ruchika Gupta511fc862017-04-17 18:07:19 +0530444int sec_reset(void)
445{
446 return sec_reset_idx(0);
447}
448#ifndef CONFIG_SPL_BUILD
Alex Porosanu76394c92016-04-29 15:18:00 +0300449static int instantiate_rng(uint8_t sec_idx)
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530450{
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530451 u32 *desc;
452 u32 rdsta_val;
Lukas Auerdfaec762018-01-25 14:11:17 +0100453 int ret = 0, sh_idx, size;
Alex Porosanu76394c92016-04-29 15:18:00 +0300454 ccsr_sec_t __iomem *sec = (ccsr_sec_t __iomem *)SEC_ADDR(sec_idx);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530455 struct rng4tst __iomem *rng =
456 (struct rng4tst __iomem *)&sec->rng;
457
Raul Cardenas02000202015-02-27 11:22:06 -0600458 desc = memalign(ARCH_DMA_MINALIGN, sizeof(uint32_t) * 6);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530459 if (!desc) {
460 printf("cannot allocate RNG init descriptor memory\n");
461 return -1;
462 }
463
Lukas Auerdfaec762018-01-25 14:11:17 +0100464 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
465 /*
466 * If the corresponding bit is set, this state handle
467 * was initialized by somebody else, so it's left alone.
468 */
469 rdsta_val = sec_in32(&rng->rdsta) & RNG_STATE_HANDLE_MASK;
470 if (rdsta_val & (1 << sh_idx))
471 continue;
Raul Cardenas02000202015-02-27 11:22:06 -0600472
Lukas Auerdfaec762018-01-25 14:11:17 +0100473 inline_cnstr_jobdesc_rng_instantiation(desc, sh_idx);
474 size = roundup(sizeof(uint32_t) * 6, ARCH_DMA_MINALIGN);
475 flush_dcache_range((unsigned long)desc,
476 (unsigned long)desc + size);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530477
Lukas Auerdfaec762018-01-25 14:11:17 +0100478 ret = run_descriptor_jr_idx(desc, sec_idx);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530479
Lukas Auerdfaec762018-01-25 14:11:17 +0100480 if (ret)
481 printf("RNG: Instantiation failed with error 0x%x\n",
482 ret);
483
484 rdsta_val = sec_in32(&rng->rdsta) & RNG_STATE_HANDLE_MASK;
485 if (!(rdsta_val & (1 << sh_idx))) {
486 free(desc);
487 return -1;
488 }
489
490 memset(desc, 0, sizeof(uint32_t) * 6);
491 }
492
493 free(desc);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530494
495 return ret;
496}
497
Alex Porosanu76394c92016-04-29 15:18:00 +0300498static u8 get_rng_vid(uint8_t sec_idx)
499{
500 ccsr_sec_t *sec = (void *)SEC_ADDR(sec_idx);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530501 u32 cha_vid = sec_in32(&sec->chavid_ls);
502
503 return (cha_vid & SEC_CHAVID_RNG_LS_MASK) >> SEC_CHAVID_LS_RNG_SHIFT;
504}
505
506/*
507 * By default, the TRNG runs for 200 clocks per sample;
508 * 1200 clocks per sample generates better entropy.
509 */
Alex Porosanu76394c92016-04-29 15:18:00 +0300510static void kick_trng(int ent_delay, uint8_t sec_idx)
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530511{
Alex Porosanu76394c92016-04-29 15:18:00 +0300512 ccsr_sec_t __iomem *sec = (ccsr_sec_t __iomem *)SEC_ADDR(sec_idx);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530513 struct rng4tst __iomem *rng =
514 (struct rng4tst __iomem *)&sec->rng;
515 u32 val;
516
517 /* put RNG4 into program mode */
518 sec_setbits32(&rng->rtmctl, RTMCTL_PRGM);
519 /* rtsdctl bits 0-15 contain "Entropy Delay, which defines the
520 * length (in system clocks) of each Entropy sample taken
521 * */
522 val = sec_in32(&rng->rtsdctl);
523 val = (val & ~RTSDCTL_ENT_DLY_MASK) |
524 (ent_delay << RTSDCTL_ENT_DLY_SHIFT);
525 sec_out32(&rng->rtsdctl, val);
526 /* min. freq. count, equal to 1/4 of the entropy sample length */
527 sec_out32(&rng->rtfreqmin, ent_delay >> 2);
Alex Porosanu026a3f12015-05-05 16:48:33 +0300528 /* disable maximum frequency count */
529 sec_out32(&rng->rtfreqmax, RTFRQMAX_DISABLE);
Alex Porosanuc4065512015-05-05 16:48:35 +0300530 /*
531 * select raw sampling in both entropy shifter
532 * and statistical checker
533 */
Aneesh Bansal3a4800a2015-12-08 13:54:30 +0530534 sec_setbits32(&rng->rtmctl, RTMCTL_SAMP_MODE_RAW_ES_SC);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530535 /* put RNG4 into run mode */
Aneesh Bansal3a4800a2015-12-08 13:54:30 +0530536 sec_clrbits32(&rng->rtmctl, RTMCTL_PRGM);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530537}
538
Alex Porosanu76394c92016-04-29 15:18:00 +0300539static int rng_init(uint8_t sec_idx)
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530540{
541 int ret, ent_delay = RTSDCTL_ENT_DLY_MIN;
Alex Porosanu76394c92016-04-29 15:18:00 +0300542 ccsr_sec_t __iomem *sec = (ccsr_sec_t __iomem *)SEC_ADDR(sec_idx);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530543 struct rng4tst __iomem *rng =
544 (struct rng4tst __iomem *)&sec->rng;
Lukas Auerdfaec762018-01-25 14:11:17 +0100545 u32 inst_handles;
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530546
547 do {
Lukas Auerdfaec762018-01-25 14:11:17 +0100548 inst_handles = sec_in32(&rng->rdsta) & RNG_STATE_HANDLE_MASK;
549
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530550 /*
551 * If either of the SH's were instantiated by somebody else
552 * then it is assumed that the entropy
553 * parameters are properly set and thus the function
554 * setting these (kick_trng(...)) is skipped.
555 * Also, if a handle was instantiated, do not change
556 * the TRNG parameters.
557 */
Lukas Auerdfaec762018-01-25 14:11:17 +0100558 if (!inst_handles) {
559 kick_trng(ent_delay, sec_idx);
560 ent_delay += 400;
561 }
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530562 /*
563 * if instantiate_rng(...) fails, the loop will rerun
564 * and the kick_trng(...) function will modfiy the
565 * upper and lower limits of the entropy sampling
566 * interval, leading to a sucessful initialization of
567 * the RNG.
568 */
Alex Porosanu76394c92016-04-29 15:18:00 +0300569 ret = instantiate_rng(sec_idx);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530570 } while ((ret == -1) && (ent_delay < RTSDCTL_ENT_DLY_MAX));
571 if (ret) {
572 printf("RNG: Failed to instantiate RNG\n");
573 return ret;
574 }
575
576 /* Enable RDB bit so that RNG works faster */
577 sec_setbits32(&sec->scfgr, SEC_SCFGR_RDBENABLE);
578
579 return ret;
580}
Ruchika Gupta511fc862017-04-17 18:07:19 +0530581#endif
Alex Porosanu76394c92016-04-29 15:18:00 +0300582int sec_init_idx(uint8_t sec_idx)
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530583{
Alex Porosanu76394c92016-04-29 15:18:00 +0300584 ccsr_sec_t *sec = (void *)SEC_ADDR(sec_idx);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530585 uint32_t mcr = sec_in32(&sec->mcfgr);
horia.geanta@freescale.com3ef24122015-07-08 17:24:57 +0300586 int ret = 0;
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530587
Aneesh Bansalf698e9f2016-01-22 17:05:59 +0530588#ifdef CONFIG_FSL_CORENET
589 uint32_t liodnr;
590 uint32_t liodn_ns;
591 uint32_t liodn_s;
592#endif
593
Alex Porosanu76394c92016-04-29 15:18:00 +0300594 if (!(sec_idx < CONFIG_SYS_FSL_MAX_NUM_OF_SEC)) {
595 printf("SEC initialization failed\n");
596 return -1;
597 }
598
Saksham Jain8a6f83d2016-03-23 16:24:42 +0530599 /*
600 * Modifying CAAM Read/Write Attributes
York Sun3c1d2182016-04-04 11:41:26 -0700601 * For LS2080A
Saksham Jain8a6f83d2016-03-23 16:24:42 +0530602 * For AXI Write - Cacheable, Write Back, Write allocate
603 * For AXI Read - Cacheable, Read allocate
York Sun3c1d2182016-04-04 11:41:26 -0700604 * Only For LS2080a, to solve CAAM coherency issues
Saksham Jain8a6f83d2016-03-23 16:24:42 +0530605 */
York Sun4a3ab192017-03-27 11:41:01 -0700606#ifdef CONFIG_ARCH_LS2080A
Saksham Jain8a6f83d2016-03-23 16:24:42 +0530607 mcr = (mcr & ~MCFGR_AWCACHE_MASK) | (0xb << MCFGR_AWCACHE_SHIFT);
608 mcr = (mcr & ~MCFGR_ARCACHE_MASK) | (0x6 << MCFGR_ARCACHE_SHIFT);
609#else
horia.geanta@freescale.com3ef24122015-07-08 17:24:57 +0300610 mcr = (mcr & ~MCFGR_AWCACHE_MASK) | (0x2 << MCFGR_AWCACHE_SHIFT);
Saksham Jain8a6f83d2016-03-23 16:24:42 +0530611#endif
612
horia.geanta@freescale.com3ef24122015-07-08 17:24:57 +0300613#ifdef CONFIG_PHYS_64BIT
614 mcr |= (1 << MCFGR_PS_SHIFT);
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530615#endif
horia.geanta@freescale.com3ef24122015-07-08 17:24:57 +0300616 sec_out32(&sec->mcfgr, mcr);
617
Aneesh Bansalf698e9f2016-01-22 17:05:59 +0530618#ifdef CONFIG_FSL_CORENET
Sumit Garg8f013972016-07-14 12:27:51 -0400619#ifdef CONFIG_SPL_BUILD
620 /*
621 * For SPL Build, Set the Liodns in SEC JR0 for
622 * creating PAMU entries corresponding to these.
623 * For normal build, these are set in set_liodns().
624 */
625 liodn_ns = CONFIG_SPL_JR0_LIODN_NS & JRNSLIODN_MASK;
626 liodn_s = CONFIG_SPL_JR0_LIODN_S & JRSLIODN_MASK;
627
628 liodnr = sec_in32(&sec->jrliodnr[0].ls) &
629 ~(JRNSLIODN_MASK | JRSLIODN_MASK);
630 liodnr = liodnr |
631 (liodn_ns << JRNSLIODN_SHIFT) |
632 (liodn_s << JRSLIODN_SHIFT);
633 sec_out32(&sec->jrliodnr[0].ls, liodnr);
634#else
Aneesh Bansalf698e9f2016-01-22 17:05:59 +0530635 liodnr = sec_in32(&sec->jrliodnr[0].ls);
636 liodn_ns = (liodnr & JRNSLIODN_MASK) >> JRNSLIODN_SHIFT;
637 liodn_s = (liodnr & JRSLIODN_MASK) >> JRSLIODN_SHIFT;
638#endif
Sumit Garg8f013972016-07-14 12:27:51 -0400639#endif
Aneesh Bansalf698e9f2016-01-22 17:05:59 +0530640
Alex Porosanu76394c92016-04-29 15:18:00 +0300641 ret = jr_init(sec_idx);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530642 if (ret < 0) {
643 printf("SEC initialization failed\n");
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530644 return -1;
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530645 }
646
Aneesh Bansalf698e9f2016-01-22 17:05:59 +0530647#ifdef CONFIG_FSL_CORENET
648 ret = sec_config_pamu_table(liodn_ns, liodn_s);
649 if (ret < 0)
650 return -1;
651
652 pamu_enable();
653#endif
Ruchika Gupta511fc862017-04-17 18:07:19 +0530654#ifndef CONFIG_SPL_BUILD
Alex Porosanu76394c92016-04-29 15:18:00 +0300655 if (get_rng_vid(sec_idx) >= 4) {
656 if (rng_init(sec_idx) < 0) {
657 printf("SEC%u: RNG instantiation failed\n", sec_idx);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530658 return -1;
659 }
Alex Porosanu76394c92016-04-29 15:18:00 +0300660 printf("SEC%u: RNG instantiated\n", sec_idx);
Ruchika Guptac5de15c2014-10-07 15:46:20 +0530661 }
Ruchika Gupta511fc862017-04-17 18:07:19 +0530662#endif
Ruchika Guptab9eebfa2014-10-15 11:35:30 +0530663 return ret;
664}
Alex Porosanu76394c92016-04-29 15:18:00 +0300665
666int sec_init(void)
667{
668 return sec_init_idx(0);
669}