blob: 9228149863a7bedc1b9f337818268c40acb36b31 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ruchika Guptaac1b2692014-10-15 11:35:30 +05302/*
3 * Copyright 2008-2014 Freescale Semiconductor, Inc.
4 *
Ruchika Guptaac1b2692014-10-15 11:35:30 +05305 * Based on CAAM driver in drivers/crypto/caam in Linux
6 */
7
8#include <common.h>
Simon Glass63334482019-11-14 12:57:39 -07009#include <cpu_func.h>
Ruchika Guptaac1b2692014-10-15 11:35:30 +053010#include <malloc.h>
11#include "fsl_sec.h"
12#include "jr.h"
Ruchika Gupta4345a572014-10-07 15:46:20 +053013#include "jobdesc.h"
Aneesh Bansal43421822015-10-29 22:58:03 +053014#include "desc_constr.h"
Simon Glass45c78902019-11-14 12:57:26 -070015#include <time.h>
Simon Glass274e0b02020-05-10 11:39:56 -060016#include <asm/cache.h>
Aneesh Bansal4b636c32016-01-22 17:05:59 +053017#ifdef CONFIG_FSL_CORENET
Simon Glass274e0b02020-05-10 11:39:56 -060018#include <asm/cache.h>
Aneesh Bansal4b636c32016-01-22 17:05:59 +053019#include <asm/fsl_pamu.h>
20#endif
Ruchika Guptaac1b2692014-10-15 11:35:30 +053021
22#define CIRC_CNT(head, tail, size) (((head) - (tail)) & (size - 1))
23#define CIRC_SPACE(head, tail, size) CIRC_CNT((tail), (head) + 1, (size))
24
Alex Porosanu7703d1e2016-04-29 15:18:00 +030025uint32_t sec_offset[CONFIG_SYS_FSL_MAX_NUM_OF_SEC] = {
26 0,
York Sun4119aee2016-11-15 18:44:22 -080027#if defined(CONFIG_ARCH_C29X)
Alex Porosanu7703d1e2016-04-29 15:18:00 +030028 CONFIG_SYS_FSL_SEC_IDX_OFFSET,
29 2 * CONFIG_SYS_FSL_SEC_IDX_OFFSET
30#endif
31};
32
33#define SEC_ADDR(idx) \
34 ((CONFIG_SYS_FSL_SEC_ADDR + sec_offset[idx]))
35
36#define SEC_JR0_ADDR(idx) \
37 (SEC_ADDR(idx) + \
38 (CONFIG_SYS_FSL_JR0_OFFSET - CONFIG_SYS_FSL_SEC_OFFSET))
39
40struct jobring jr0[CONFIG_SYS_FSL_MAX_NUM_OF_SEC];
Ruchika Guptaac1b2692014-10-15 11:35:30 +053041
Alex Porosanu7703d1e2016-04-29 15:18:00 +030042static inline void start_jr0(uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +053043{
Alex Porosanu7703d1e2016-04-29 15:18:00 +030044 ccsr_sec_t *sec = (void *)SEC_ADDR(sec_idx);
Ruchika Guptaac1b2692014-10-15 11:35:30 +053045 u32 ctpr_ms = sec_in32(&sec->ctpr_ms);
46 u32 scfgr = sec_in32(&sec->scfgr);
47
48 if (ctpr_ms & SEC_CTPR_MS_VIRT_EN_INCL) {
49 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or
50 * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SEC_SCFGR_VIRT_EN = 1
51 */
52 if ((ctpr_ms & SEC_CTPR_MS_VIRT_EN_POR) ||
xypron.glpk@gmx.de3ec01822017-04-15 16:37:54 +020053 (scfgr & SEC_SCFGR_VIRT_EN))
Ruchika Guptaac1b2692014-10-15 11:35:30 +053054 sec_out32(&sec->jrstartr, CONFIG_JRSTARTR_JR0);
55 } else {
56 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */
57 if (ctpr_ms & SEC_CTPR_MS_VIRT_EN_POR)
58 sec_out32(&sec->jrstartr, CONFIG_JRSTARTR_JR0);
59 }
60}
61
Alex Porosanu7703d1e2016-04-29 15:18:00 +030062static inline void jr_reset_liodn(uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +053063{
Alex Porosanu7703d1e2016-04-29 15:18:00 +030064 ccsr_sec_t *sec = (void *)SEC_ADDR(sec_idx);
Ruchika Guptaac1b2692014-10-15 11:35:30 +053065 sec_out32(&sec->jrliodnr[0].ls, 0);
66}
67
Alex Porosanu7703d1e2016-04-29 15:18:00 +030068static inline void jr_disable_irq(uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +053069{
Alex Porosanu7703d1e2016-04-29 15:18:00 +030070 struct jr_regs *regs = (struct jr_regs *)SEC_JR0_ADDR(sec_idx);
Ruchika Guptaac1b2692014-10-15 11:35:30 +053071 uint32_t jrcfg = sec_in32(&regs->jrcfg1);
72
73 jrcfg = jrcfg | JR_INTMASK;
74
75 sec_out32(&regs->jrcfg1, jrcfg);
76}
77
Alex Porosanu7703d1e2016-04-29 15:18:00 +030078static void jr_initregs(uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +053079{
Alex Porosanu7703d1e2016-04-29 15:18:00 +030080 struct jr_regs *regs = (struct jr_regs *)SEC_JR0_ADDR(sec_idx);
81 struct jobring *jr = &jr0[sec_idx];
82 phys_addr_t ip_base = virt_to_phys((void *)jr->input_ring);
83 phys_addr_t op_base = virt_to_phys((void *)jr->output_ring);
Ruchika Guptaac1b2692014-10-15 11:35:30 +053084
85#ifdef CONFIG_PHYS_64BIT
86 sec_out32(&regs->irba_h, ip_base >> 32);
87#else
88 sec_out32(&regs->irba_h, 0x0);
89#endif
90 sec_out32(&regs->irba_l, (uint32_t)ip_base);
91#ifdef CONFIG_PHYS_64BIT
92 sec_out32(&regs->orba_h, op_base >> 32);
93#else
94 sec_out32(&regs->orba_h, 0x0);
95#endif
96 sec_out32(&regs->orba_l, (uint32_t)op_base);
97 sec_out32(&regs->ors, JR_SIZE);
98 sec_out32(&regs->irs, JR_SIZE);
99
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300100 if (!jr->irq)
101 jr_disable_irq(sec_idx);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530102}
103
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300104static int jr_init(uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530105{
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300106 struct jobring *jr = &jr0[sec_idx];
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530107
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300108 memset(jr, 0, sizeof(struct jobring));
109
110 jr->jq_id = DEFAULT_JR_ID;
111 jr->irq = DEFAULT_IRQ;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530112
113#ifdef CONFIG_FSL_CORENET
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300114 jr->liodn = DEFAULT_JR_LIODN;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530115#endif
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300116 jr->size = JR_SIZE;
117 jr->input_ring = (dma_addr_t *)memalign(ARCH_DMA_MINALIGN,
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600118 JR_SIZE * sizeof(dma_addr_t));
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300119 if (!jr->input_ring)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530120 return -1;
Ruchika Guptad2180332016-01-22 16:12:55 +0530121
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300122 jr->op_size = roundup(JR_SIZE * sizeof(struct op_ring),
123 ARCH_DMA_MINALIGN);
124 jr->output_ring =
125 (struct op_ring *)memalign(ARCH_DMA_MINALIGN, jr->op_size);
126 if (!jr->output_ring)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530127 return -1;
128
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300129 memset(jr->input_ring, 0, JR_SIZE * sizeof(dma_addr_t));
130 memset(jr->output_ring, 0, jr->op_size);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530131
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300132 start_jr0(sec_idx);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530133
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300134 jr_initregs(sec_idx);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530135
136 return 0;
137}
138
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300139static int jr_sw_cleanup(uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530140{
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300141 struct jobring *jr = &jr0[sec_idx];
142
143 jr->head = 0;
144 jr->tail = 0;
145 jr->read_idx = 0;
146 jr->write_idx = 0;
147 memset(jr->info, 0, sizeof(jr->info));
148 memset(jr->input_ring, 0, jr->size * sizeof(dma_addr_t));
149 memset(jr->output_ring, 0, jr->size * sizeof(struct op_ring));
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530150
151 return 0;
152}
153
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300154static int jr_hw_reset(uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530155{
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300156 struct jr_regs *regs = (struct jr_regs *)SEC_JR0_ADDR(sec_idx);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530157 uint32_t timeout = 100000;
158 uint32_t jrint, jrcr;
159
160 sec_out32(&regs->jrcr, JRCR_RESET);
161 do {
162 jrint = sec_in32(&regs->jrint);
163 } while (((jrint & JRINT_ERR_HALT_MASK) ==
164 JRINT_ERR_HALT_INPROGRESS) && --timeout);
165
166 jrint = sec_in32(&regs->jrint);
167 if (((jrint & JRINT_ERR_HALT_MASK) !=
168 JRINT_ERR_HALT_INPROGRESS) && timeout == 0)
169 return -1;
170
171 timeout = 100000;
172 sec_out32(&regs->jrcr, JRCR_RESET);
173 do {
174 jrcr = sec_in32(&regs->jrcr);
175 } while ((jrcr & JRCR_RESET) && --timeout);
176
177 if (timeout == 0)
178 return -1;
179
180 return 0;
181}
182
183/* -1 --- error, can't enqueue -- no space available */
184static int jr_enqueue(uint32_t *desc_addr,
Aneesh Bansal43421822015-10-29 22:58:03 +0530185 void (*callback)(uint32_t status, void *arg),
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300186 void *arg, uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530187{
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300188 struct jr_regs *regs = (struct jr_regs *)SEC_JR0_ADDR(sec_idx);
189 struct jobring *jr = &jr0[sec_idx];
190 int head = jr->head;
Aneesh Bansal43421822015-10-29 22:58:03 +0530191 uint32_t desc_word;
192 int length = desc_len(desc_addr);
193 int i;
194#ifdef CONFIG_PHYS_64BIT
195 uint32_t *addr_hi, *addr_lo;
196#endif
197
198 /* The descriptor must be submitted to SEC block as per endianness
199 * of the SEC Block.
200 * So, if the endianness of Core and SEC block is different, each word
201 * of the descriptor will be byte-swapped.
202 */
203 for (i = 0; i < length; i++) {
204 desc_word = desc_addr[i];
205 sec_out32((uint32_t *)&desc_addr[i], desc_word);
206 }
207
208 phys_addr_t desc_phys_addr = virt_to_phys(desc_addr);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530209
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300210 jr->info[head].desc_phys_addr = desc_phys_addr;
211 jr->info[head].callback = (void *)callback;
212 jr->info[head].arg = arg;
213 jr->info[head].op_done = 0;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530214
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300215 unsigned long start = (unsigned long)&jr->info[head] &
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600216 ~(ARCH_DMA_MINALIGN - 1);
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300217 unsigned long end = ALIGN((unsigned long)&jr->info[head] +
Ruchika Guptad2180332016-01-22 16:12:55 +0530218 sizeof(struct jr_info), ARCH_DMA_MINALIGN);
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600219 flush_dcache_range(start, end);
220
Aneesh Bansal43421822015-10-29 22:58:03 +0530221#ifdef CONFIG_PHYS_64BIT
222 /* Write the 64 bit Descriptor address on Input Ring.
223 * The 32 bit hign and low part of the address will
224 * depend on endianness of SEC block.
225 */
226#ifdef CONFIG_SYS_FSL_SEC_LE
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300227 addr_lo = (uint32_t *)(&jr->input_ring[head]);
228 addr_hi = (uint32_t *)(&jr->input_ring[head]) + 1;
Aneesh Bansal43421822015-10-29 22:58:03 +0530229#elif defined(CONFIG_SYS_FSL_SEC_BE)
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300230 addr_hi = (uint32_t *)(&jr->input_ring[head]);
231 addr_lo = (uint32_t *)(&jr->input_ring[head]) + 1;
Aneesh Bansal43421822015-10-29 22:58:03 +0530232#endif /* ifdef CONFIG_SYS_FSL_SEC_LE */
233
234 sec_out32(addr_hi, (uint32_t)(desc_phys_addr >> 32));
235 sec_out32(addr_lo, (uint32_t)(desc_phys_addr));
236
237#else
238 /* Write the 32 bit Descriptor address on Input Ring. */
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300239 sec_out32(&jr->input_ring[head], desc_phys_addr);
Aneesh Bansal43421822015-10-29 22:58:03 +0530240#endif /* ifdef CONFIG_PHYS_64BIT */
241
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300242 start = (unsigned long)&jr->input_ring[head] & ~(ARCH_DMA_MINALIGN - 1);
243 end = ALIGN((unsigned long)&jr->input_ring[head] +
Ruchika Guptad2180332016-01-22 16:12:55 +0530244 sizeof(dma_addr_t), ARCH_DMA_MINALIGN);
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600245 flush_dcache_range(start, end);
246
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300247 jr->head = (head + 1) & (jr->size - 1);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530248
Ruchika Guptad2180332016-01-22 16:12:55 +0530249 /* Invalidate output ring */
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300250 start = (unsigned long)jr->output_ring &
Ruchika Guptad2180332016-01-22 16:12:55 +0530251 ~(ARCH_DMA_MINALIGN - 1);
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300252 end = ALIGN((unsigned long)jr->output_ring + jr->op_size,
253 ARCH_DMA_MINALIGN);
Ruchika Guptad2180332016-01-22 16:12:55 +0530254 invalidate_dcache_range(start, end);
255
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530256 sec_out32(&regs->irja, 1);
257
258 return 0;
259}
260
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300261static int jr_dequeue(int sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530262{
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300263 struct jr_regs *regs = (struct jr_regs *)SEC_JR0_ADDR(sec_idx);
264 struct jobring *jr = &jr0[sec_idx];
265 int head = jr->head;
266 int tail = jr->tail;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530267 int idx, i, found;
Aneesh Bansal43421822015-10-29 22:58:03 +0530268 void (*callback)(uint32_t status, void *arg);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530269 void *arg = NULL;
Aneesh Bansal43421822015-10-29 22:58:03 +0530270#ifdef CONFIG_PHYS_64BIT
271 uint32_t *addr_hi, *addr_lo;
272#else
273 uint32_t *addr;
274#endif
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530275
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300276 while (sec_in32(&regs->orsf) && CIRC_CNT(jr->head, jr->tail,
277 jr->size)) {
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600278
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530279 found = 0;
280
Aneesh Bansal43421822015-10-29 22:58:03 +0530281 phys_addr_t op_desc;
282 #ifdef CONFIG_PHYS_64BIT
283 /* Read the 64 bit Descriptor address from Output Ring.
284 * The 32 bit hign and low part of the address will
285 * depend on endianness of SEC block.
286 */
287 #ifdef CONFIG_SYS_FSL_SEC_LE
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300288 addr_lo = (uint32_t *)(&jr->output_ring[jr->tail].desc);
289 addr_hi = (uint32_t *)(&jr->output_ring[jr->tail].desc) + 1;
Aneesh Bansal43421822015-10-29 22:58:03 +0530290 #elif defined(CONFIG_SYS_FSL_SEC_BE)
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300291 addr_hi = (uint32_t *)(&jr->output_ring[jr->tail].desc);
292 addr_lo = (uint32_t *)(&jr->output_ring[jr->tail].desc) + 1;
Aneesh Bansal43421822015-10-29 22:58:03 +0530293 #endif /* ifdef CONFIG_SYS_FSL_SEC_LE */
294
295 op_desc = ((u64)sec_in32(addr_hi) << 32) |
296 ((u64)sec_in32(addr_lo));
297
298 #else
299 /* Read the 32 bit Descriptor address from Output Ring. */
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300300 addr = (uint32_t *)&jr->output_ring[jr->tail].desc;
Aneesh Bansal43421822015-10-29 22:58:03 +0530301 op_desc = sec_in32(addr);
302 #endif /* ifdef CONFIG_PHYS_64BIT */
303
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300304 uint32_t status = sec_in32(&jr->output_ring[jr->tail].status);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530305
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300306 for (i = 0; CIRC_CNT(head, tail + i, jr->size) >= 1; i++) {
307 idx = (tail + i) & (jr->size - 1);
308 if (op_desc == jr->info[idx].desc_phys_addr) {
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530309 found = 1;
310 break;
311 }
312 }
313
314 /* Error condition if match not found */
315 if (!found)
316 return -1;
317
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300318 jr->info[idx].op_done = 1;
319 callback = (void *)jr->info[idx].callback;
320 arg = jr->info[idx].arg;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530321
322 /* When the job on tail idx gets done, increment
323 * tail till the point where job completed out of oredr has
324 * been taken into account
325 */
326 if (idx == tail)
327 do {
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300328 tail = (tail + 1) & (jr->size - 1);
329 } while (jr->info[tail].op_done);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530330
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300331 jr->tail = tail;
332 jr->read_idx = (jr->read_idx + 1) & (jr->size - 1);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530333
334 sec_out32(&regs->orjr, 1);
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300335 jr->info[idx].op_done = 0;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530336
Aneesh Bansal43421822015-10-29 22:58:03 +0530337 callback(status, arg);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530338 }
339
340 return 0;
341}
342
Aneesh Bansal43421822015-10-29 22:58:03 +0530343static void desc_done(uint32_t status, void *arg)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530344{
345 struct result *x = arg;
346 x->status = status;
Ruchika Gupta0009c8f2017-04-17 18:07:19 +0530347#ifndef CONFIG_SPL_BUILD
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530348 caam_jr_strstatus(status);
Ruchika Gupta0009c8f2017-04-17 18:07:19 +0530349#endif
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530350 x->done = 1;
351}
352
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300353static inline int run_descriptor_jr_idx(uint32_t *desc, uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530354{
355 unsigned long long timeval = get_ticks();
356 unsigned long long timeout = usec2ticks(CONFIG_SEC_DEQ_TIMEOUT);
357 struct result op;
358 int ret = 0;
359
gaurav rana07621502014-12-04 13:00:41 +0530360 memset(&op, 0, sizeof(op));
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530361
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300362 ret = jr_enqueue(desc, desc_done, &op, sec_idx);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530363 if (ret) {
364 debug("Error in SEC enq\n");
365 ret = JQ_ENQ_ERR;
366 goto out;
367 }
368
369 timeval = get_ticks();
370 timeout = usec2ticks(CONFIG_SEC_DEQ_TIMEOUT);
371 while (op.done != 1) {
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300372 ret = jr_dequeue(sec_idx);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530373 if (ret) {
374 debug("Error in SEC deq\n");
375 ret = JQ_DEQ_ERR;
376 goto out;
377 }
378
379 if ((get_ticks() - timeval) > timeout) {
380 debug("SEC Dequeue timed out\n");
381 ret = JQ_DEQ_TO_ERR;
382 goto out;
383 }
384 }
385
Aneesh Bansal3ab29d72016-02-11 14:36:51 +0530386 if (op.status) {
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530387 debug("Error %x\n", op.status);
388 ret = op.status;
389 }
390out:
391 return ret;
392}
393
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300394int run_descriptor_jr(uint32_t *desc)
395{
396 return run_descriptor_jr_idx(desc, 0);
397}
398
399static inline int jr_reset_sec(uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530400{
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300401 if (jr_hw_reset(sec_idx) < 0)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530402 return -1;
403
404 /* Clean up the jobring structure maintained by software */
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300405 jr_sw_cleanup(sec_idx);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530406
407 return 0;
408}
409
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300410int jr_reset(void)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530411{
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300412 return jr_reset_sec(0);
413}
414
415static inline int sec_reset_idx(uint8_t sec_idx)
416{
417 ccsr_sec_t *sec = (void *)SEC_ADDR(sec_idx);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530418 uint32_t mcfgr = sec_in32(&sec->mcfgr);
419 uint32_t timeout = 100000;
420
421 mcfgr |= MCFGR_SWRST;
422 sec_out32(&sec->mcfgr, mcfgr);
423
424 mcfgr |= MCFGR_DMA_RST;
425 sec_out32(&sec->mcfgr, mcfgr);
426 do {
427 mcfgr = sec_in32(&sec->mcfgr);
428 } while ((mcfgr & MCFGR_DMA_RST) == MCFGR_DMA_RST && --timeout);
429
430 if (timeout == 0)
431 return -1;
432
433 timeout = 100000;
434 do {
435 mcfgr = sec_in32(&sec->mcfgr);
436 } while ((mcfgr & MCFGR_SWRST) == MCFGR_SWRST && --timeout);
437
438 if (timeout == 0)
439 return -1;
440
441 return 0;
442}
Ruchika Gupta0009c8f2017-04-17 18:07:19 +0530443int sec_reset(void)
444{
445 return sec_reset_idx(0);
446}
447#ifndef CONFIG_SPL_BUILD
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300448static int instantiate_rng(uint8_t sec_idx)
Ruchika Gupta4345a572014-10-07 15:46:20 +0530449{
Ruchika Gupta4345a572014-10-07 15:46:20 +0530450 u32 *desc;
451 u32 rdsta_val;
Lukas Aueraed8eac2018-01-25 14:11:17 +0100452 int ret = 0, sh_idx, size;
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300453 ccsr_sec_t __iomem *sec = (ccsr_sec_t __iomem *)SEC_ADDR(sec_idx);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530454 struct rng4tst __iomem *rng =
455 (struct rng4tst __iomem *)&sec->rng;
456
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600457 desc = memalign(ARCH_DMA_MINALIGN, sizeof(uint32_t) * 6);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530458 if (!desc) {
459 printf("cannot allocate RNG init descriptor memory\n");
460 return -1;
461 }
462
Lukas Aueraed8eac2018-01-25 14:11:17 +0100463 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
464 /*
465 * If the corresponding bit is set, this state handle
466 * was initialized by somebody else, so it's left alone.
467 */
468 rdsta_val = sec_in32(&rng->rdsta) & RNG_STATE_HANDLE_MASK;
469 if (rdsta_val & (1 << sh_idx))
470 continue;
471
472 inline_cnstr_jobdesc_rng_instantiation(desc, sh_idx);
473 size = roundup(sizeof(uint32_t) * 6, ARCH_DMA_MINALIGN);
474 flush_dcache_range((unsigned long)desc,
475 (unsigned long)desc + size);
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600476
Lukas Aueraed8eac2018-01-25 14:11:17 +0100477 ret = run_descriptor_jr_idx(desc, sec_idx);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530478
Lukas Aueraed8eac2018-01-25 14:11:17 +0100479 if (ret)
480 printf("RNG: Instantiation failed with error 0x%x\n",
481 ret);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530482
Lukas Aueraed8eac2018-01-25 14:11:17 +0100483 rdsta_val = sec_in32(&rng->rdsta) & RNG_STATE_HANDLE_MASK;
484 if (!(rdsta_val & (1 << sh_idx))) {
485 free(desc);
486 return -1;
487 }
488
489 memset(desc, 0, sizeof(uint32_t) * 6);
490 }
491
492 free(desc);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530493
494 return ret;
495}
496
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300497static u8 get_rng_vid(uint8_t sec_idx)
Ruchika Gupta4345a572014-10-07 15:46:20 +0530498{
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300499 ccsr_sec_t *sec = (void *)SEC_ADDR(sec_idx);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530500 u32 cha_vid = sec_in32(&sec->chavid_ls);
501
502 return (cha_vid & SEC_CHAVID_RNG_LS_MASK) >> SEC_CHAVID_LS_RNG_SHIFT;
503}
504
505/*
506 * By default, the TRNG runs for 200 clocks per sample;
507 * 1200 clocks per sample generates better entropy.
508 */
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300509static void kick_trng(int ent_delay, uint8_t sec_idx)
Ruchika Gupta4345a572014-10-07 15:46:20 +0530510{
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300511 ccsr_sec_t __iomem *sec = (ccsr_sec_t __iomem *)SEC_ADDR(sec_idx);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530512 struct rng4tst __iomem *rng =
513 (struct rng4tst __iomem *)&sec->rng;
514 u32 val;
515
516 /* put RNG4 into program mode */
517 sec_setbits32(&rng->rtmctl, RTMCTL_PRGM);
518 /* rtsdctl bits 0-15 contain "Entropy Delay, which defines the
519 * length (in system clocks) of each Entropy sample taken
520 * */
521 val = sec_in32(&rng->rtsdctl);
522 val = (val & ~RTSDCTL_ENT_DLY_MASK) |
523 (ent_delay << RTSDCTL_ENT_DLY_SHIFT);
524 sec_out32(&rng->rtsdctl, val);
525 /* min. freq. count, equal to 1/4 of the entropy sample length */
526 sec_out32(&rng->rtfreqmin, ent_delay >> 2);
Alex Porosanuf8d6a7f2015-05-05 16:48:33 +0300527 /* disable maximum frequency count */
528 sec_out32(&rng->rtfreqmax, RTFRQMAX_DISABLE);
Alex Porosanubefb5cb2015-05-05 16:48:35 +0300529 /*
530 * select raw sampling in both entropy shifter
531 * and statistical checker
532 */
Aneesh Bansal1fa9c902015-12-08 13:54:30 +0530533 sec_setbits32(&rng->rtmctl, RTMCTL_SAMP_MODE_RAW_ES_SC);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530534 /* put RNG4 into run mode */
Aneesh Bansal1fa9c902015-12-08 13:54:30 +0530535 sec_clrbits32(&rng->rtmctl, RTMCTL_PRGM);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530536}
537
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300538static int rng_init(uint8_t sec_idx)
Ruchika Gupta4345a572014-10-07 15:46:20 +0530539{
540 int ret, ent_delay = RTSDCTL_ENT_DLY_MIN;
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300541 ccsr_sec_t __iomem *sec = (ccsr_sec_t __iomem *)SEC_ADDR(sec_idx);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530542 struct rng4tst __iomem *rng =
543 (struct rng4tst __iomem *)&sec->rng;
Lukas Aueraed8eac2018-01-25 14:11:17 +0100544 u32 inst_handles;
Ruchika Gupta4345a572014-10-07 15:46:20 +0530545
546 do {
Lukas Aueraed8eac2018-01-25 14:11:17 +0100547 inst_handles = sec_in32(&rng->rdsta) & RNG_STATE_HANDLE_MASK;
548
Ruchika Gupta4345a572014-10-07 15:46:20 +0530549 /*
550 * If either of the SH's were instantiated by somebody else
551 * then it is assumed that the entropy
552 * parameters are properly set and thus the function
553 * setting these (kick_trng(...)) is skipped.
554 * Also, if a handle was instantiated, do not change
555 * the TRNG parameters.
556 */
Lukas Aueraed8eac2018-01-25 14:11:17 +0100557 if (!inst_handles) {
558 kick_trng(ent_delay, sec_idx);
559 ent_delay += 400;
560 }
Ruchika Gupta4345a572014-10-07 15:46:20 +0530561 /*
562 * if instantiate_rng(...) fails, the loop will rerun
563 * and the kick_trng(...) function will modfiy the
564 * upper and lower limits of the entropy sampling
565 * interval, leading to a sucessful initialization of
566 * the RNG.
567 */
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300568 ret = instantiate_rng(sec_idx);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530569 } while ((ret == -1) && (ent_delay < RTSDCTL_ENT_DLY_MAX));
570 if (ret) {
571 printf("RNG: Failed to instantiate RNG\n");
572 return ret;
573 }
574
575 /* Enable RDB bit so that RNG works faster */
576 sec_setbits32(&sec->scfgr, SEC_SCFGR_RDBENABLE);
577
578 return ret;
579}
Ruchika Gupta0009c8f2017-04-17 18:07:19 +0530580#endif
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300581int sec_init_idx(uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530582{
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300583 ccsr_sec_t *sec = (void *)SEC_ADDR(sec_idx);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530584 uint32_t mcr = sec_in32(&sec->mcfgr);
horia.geanta@freescale.com66e26aa2015-07-08 17:24:57 +0300585 int ret = 0;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530586
Aneesh Bansal4b636c32016-01-22 17:05:59 +0530587#ifdef CONFIG_FSL_CORENET
588 uint32_t liodnr;
589 uint32_t liodn_ns;
590 uint32_t liodn_s;
591#endif
592
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300593 if (!(sec_idx < CONFIG_SYS_FSL_MAX_NUM_OF_SEC)) {
594 printf("SEC initialization failed\n");
595 return -1;
596 }
597
Saksham Jain0c19cea2016-03-23 16:24:42 +0530598 /*
599 * Modifying CAAM Read/Write Attributes
York Suncbe8e1c2016-04-04 11:41:26 -0700600 * For LS2080A
Saksham Jain0c19cea2016-03-23 16:24:42 +0530601 * For AXI Write - Cacheable, Write Back, Write allocate
602 * For AXI Read - Cacheable, Read allocate
York Suncbe8e1c2016-04-04 11:41:26 -0700603 * Only For LS2080a, to solve CAAM coherency issues
Saksham Jain0c19cea2016-03-23 16:24:42 +0530604 */
York Sun4ce6fbf2017-03-27 11:41:01 -0700605#ifdef CONFIG_ARCH_LS2080A
Saksham Jain0c19cea2016-03-23 16:24:42 +0530606 mcr = (mcr & ~MCFGR_AWCACHE_MASK) | (0xb << MCFGR_AWCACHE_SHIFT);
607 mcr = (mcr & ~MCFGR_ARCACHE_MASK) | (0x6 << MCFGR_ARCACHE_SHIFT);
608#else
horia.geanta@freescale.com66e26aa2015-07-08 17:24:57 +0300609 mcr = (mcr & ~MCFGR_AWCACHE_MASK) | (0x2 << MCFGR_AWCACHE_SHIFT);
Saksham Jain0c19cea2016-03-23 16:24:42 +0530610#endif
611
horia.geanta@freescale.com66e26aa2015-07-08 17:24:57 +0300612#ifdef CONFIG_PHYS_64BIT
613 mcr |= (1 << MCFGR_PS_SHIFT);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530614#endif
horia.geanta@freescale.com66e26aa2015-07-08 17:24:57 +0300615 sec_out32(&sec->mcfgr, mcr);
616
Aneesh Bansal4b636c32016-01-22 17:05:59 +0530617#ifdef CONFIG_FSL_CORENET
Sumit Gargf6d96cb2016-07-14 12:27:51 -0400618#ifdef CONFIG_SPL_BUILD
619 /*
620 * For SPL Build, Set the Liodns in SEC JR0 for
621 * creating PAMU entries corresponding to these.
622 * For normal build, these are set in set_liodns().
623 */
624 liodn_ns = CONFIG_SPL_JR0_LIODN_NS & JRNSLIODN_MASK;
625 liodn_s = CONFIG_SPL_JR0_LIODN_S & JRSLIODN_MASK;
626
627 liodnr = sec_in32(&sec->jrliodnr[0].ls) &
628 ~(JRNSLIODN_MASK | JRSLIODN_MASK);
629 liodnr = liodnr |
630 (liodn_ns << JRNSLIODN_SHIFT) |
631 (liodn_s << JRSLIODN_SHIFT);
632 sec_out32(&sec->jrliodnr[0].ls, liodnr);
633#else
Aneesh Bansal4b636c32016-01-22 17:05:59 +0530634 liodnr = sec_in32(&sec->jrliodnr[0].ls);
635 liodn_ns = (liodnr & JRNSLIODN_MASK) >> JRNSLIODN_SHIFT;
636 liodn_s = (liodnr & JRSLIODN_MASK) >> JRSLIODN_SHIFT;
637#endif
Sumit Gargf6d96cb2016-07-14 12:27:51 -0400638#endif
Aneesh Bansal4b636c32016-01-22 17:05:59 +0530639
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300640 ret = jr_init(sec_idx);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530641 if (ret < 0) {
642 printf("SEC initialization failed\n");
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530643 return -1;
Ruchika Gupta4345a572014-10-07 15:46:20 +0530644 }
645
Aneesh Bansal4b636c32016-01-22 17:05:59 +0530646#ifdef CONFIG_FSL_CORENET
647 ret = sec_config_pamu_table(liodn_ns, liodn_s);
648 if (ret < 0)
649 return -1;
650
651 pamu_enable();
652#endif
Ruchika Gupta0009c8f2017-04-17 18:07:19 +0530653#ifndef CONFIG_SPL_BUILD
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300654 if (get_rng_vid(sec_idx) >= 4) {
655 if (rng_init(sec_idx) < 0) {
656 printf("SEC%u: RNG instantiation failed\n", sec_idx);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530657 return -1;
658 }
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300659 printf("SEC%u: RNG instantiated\n", sec_idx);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530660 }
Ruchika Gupta0009c8f2017-04-17 18:07:19 +0530661#endif
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530662 return ret;
663}
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300664
665int sec_init(void)
666{
667 return sec_init_idx(0);
668}