blob: 1d95d2bff2782354563618df3b2d0703754ebb4d [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.
Gaurav Jaine31dab82022-03-24 11:50:25 +05304 * Copyright 2018, 2021 NXP
Ruchika Guptaac1b2692014-10-15 11:35:30 +05305 *
Ruchika Guptaac1b2692014-10-15 11:35:30 +05306 * Based on CAAM driver in drivers/crypto/caam in Linux
7 */
8
Tom Rinidec7ea02024-05-20 13:35:03 -06009#include <config.h>
Simon Glass63334482019-11-14 12:57:39 -070010#include <cpu_func.h>
Michael Wallee692a002020-06-27 22:58:52 +020011#include <linux/kernel.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Ruchika Guptaac1b2692014-10-15 11:35:30 +053013#include <malloc.h>
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +053014#include <power-domain.h>
Ruchika Guptaac1b2692014-10-15 11:35:30 +053015#include "jr.h"
Ruchika Gupta4345a572014-10-07 15:46:20 +053016#include "jobdesc.h"
Aneesh Bansal43421822015-10-29 22:58:03 +053017#include "desc_constr.h"
Simon Glass45c78902019-11-14 12:57:26 -070018#include <time.h>
Simon Glass274e0b02020-05-10 11:39:56 -060019#include <asm/cache.h>
Aneesh Bansal4b636c32016-01-22 17:05:59 +053020#ifdef CONFIG_FSL_CORENET
Simon Glass274e0b02020-05-10 11:39:56 -060021#include <asm/cache.h>
Aneesh Bansal4b636c32016-01-22 17:05:59 +053022#include <asm/fsl_pamu.h>
23#endif
Gaurav Jaine31dab82022-03-24 11:50:25 +053024#include <dm.h>
Michael Walleb258eb22020-06-27 22:58:53 +020025#include <dm/lists.h>
Gaurav Jaine31dab82022-03-24 11:50:25 +053026#include <dm/root.h>
27#include <dm/device-internal.h>
Franck LENORMAND71812782021-03-25 17:30:22 +080028#include <linux/delay.h>
Ruchika Guptaac1b2692014-10-15 11:35:30 +053029
30#define CIRC_CNT(head, tail, size) (((head) - (tail)) & (size - 1))
31#define CIRC_SPACE(head, tail, size) CIRC_CNT((tail), (head) + 1, (size))
32
Alex Porosanu7703d1e2016-04-29 15:18:00 +030033uint32_t sec_offset[CONFIG_SYS_FSL_MAX_NUM_OF_SEC] = {
34 0,
York Sun4119aee2016-11-15 18:44:22 -080035#if defined(CONFIG_ARCH_C29X)
Tom Rini376b88a2022-10-28 20:27:13 -040036 CFG_SYS_FSL_SEC_IDX_OFFSET,
37 2 * CFG_SYS_FSL_SEC_IDX_OFFSET
Alex Porosanu7703d1e2016-04-29 15:18:00 +030038#endif
39};
40
Gaurav Jaine31dab82022-03-24 11:50:25 +053041#if CONFIG_IS_ENABLED(DM)
42struct udevice *caam_dev;
43#else
Alex Porosanu7703d1e2016-04-29 15:18:00 +030044#define SEC_ADDR(idx) \
Tom Rini376b88a2022-10-28 20:27:13 -040045 (ulong)((CFG_SYS_FSL_SEC_ADDR + sec_offset[idx]))
Alex Porosanu7703d1e2016-04-29 15:18:00 +030046
47#define SEC_JR0_ADDR(idx) \
Aymen Sghaier1536fd82021-03-25 17:30:26 +080048 (ulong)(SEC_ADDR(idx) + \
Tom Rini376b88a2022-10-28 20:27:13 -040049 (CFG_SYS_FSL_JR0_OFFSET - CFG_SYS_FSL_SEC_OFFSET))
Gaurav Jaine31dab82022-03-24 11:50:25 +053050struct caam_regs caam_st;
51#endif
Alex Porosanu7703d1e2016-04-29 15:18:00 +030052
Gaurav Jaine31dab82022-03-24 11:50:25 +053053static inline u32 jr_start_reg(u8 jrid)
54{
55 return (1 << jrid);
56}
Ruchika Guptaac1b2692014-10-15 11:35:30 +053057
Gaurav Jaine31dab82022-03-24 11:50:25 +053058static inline void start_jr(struct caam_regs *caam)
Ruchika Guptaac1b2692014-10-15 11:35:30 +053059{
Gaurav Jaine31dab82022-03-24 11:50:25 +053060 ccsr_sec_t *sec = caam->sec;
Ruchika Guptaac1b2692014-10-15 11:35:30 +053061 u32 ctpr_ms = sec_in32(&sec->ctpr_ms);
62 u32 scfgr = sec_in32(&sec->scfgr);
Gaurav Jaine31dab82022-03-24 11:50:25 +053063 u32 jrstart = jr_start_reg(caam->jrid);
Ruchika Guptaac1b2692014-10-15 11:35:30 +053064
65 if (ctpr_ms & SEC_CTPR_MS_VIRT_EN_INCL) {
66 /* VIRT_EN_INCL = 1 & VIRT_EN_POR = 1 or
67 * VIRT_EN_INCL = 1 & VIRT_EN_POR = 0 & SEC_SCFGR_VIRT_EN = 1
68 */
69 if ((ctpr_ms & SEC_CTPR_MS_VIRT_EN_POR) ||
xypron.glpk@gmx.de3ec01822017-04-15 16:37:54 +020070 (scfgr & SEC_SCFGR_VIRT_EN))
Gaurav Jaine31dab82022-03-24 11:50:25 +053071 sec_out32(&sec->jrstartr, jrstart);
Ruchika Guptaac1b2692014-10-15 11:35:30 +053072 } else {
73 /* VIRT_EN_INCL = 0 && VIRT_EN_POR_VALUE = 1 */
74 if (ctpr_ms & SEC_CTPR_MS_VIRT_EN_POR)
Gaurav Jaine31dab82022-03-24 11:50:25 +053075 sec_out32(&sec->jrstartr, jrstart);
Ruchika Guptaac1b2692014-10-15 11:35:30 +053076 }
77}
78
Gaurav Jaine31dab82022-03-24 11:50:25 +053079static inline void jr_disable_irq(struct jr_regs *regs)
Ruchika Guptaac1b2692014-10-15 11:35:30 +053080{
Ruchika Guptaac1b2692014-10-15 11:35:30 +053081 uint32_t jrcfg = sec_in32(&regs->jrcfg1);
82
83 jrcfg = jrcfg | JR_INTMASK;
84
85 sec_out32(&regs->jrcfg1, jrcfg);
86}
87
Gaurav Jaine31dab82022-03-24 11:50:25 +053088static void jr_initregs(uint8_t sec_idx, struct caam_regs *caam)
Ruchika Guptaac1b2692014-10-15 11:35:30 +053089{
Gaurav Jaine31dab82022-03-24 11:50:25 +053090 struct jr_regs *regs = caam->regs;
91 struct jobring *jr = &caam->jr[sec_idx];
Ye Li3c3e9a12021-03-25 17:30:36 +080092 caam_dma_addr_t ip_base = virt_to_phys((void *)jr->input_ring);
93 caam_dma_addr_t op_base = virt_to_phys((void *)jr->output_ring);
Ruchika Guptaac1b2692014-10-15 11:35:30 +053094
Ye Li3c3e9a12021-03-25 17:30:36 +080095#ifdef CONFIG_CAAM_64BIT
Ruchika Guptaac1b2692014-10-15 11:35:30 +053096 sec_out32(&regs->irba_h, ip_base >> 32);
97#else
98 sec_out32(&regs->irba_h, 0x0);
99#endif
100 sec_out32(&regs->irba_l, (uint32_t)ip_base);
Ye Li3c3e9a12021-03-25 17:30:36 +0800101#ifdef CONFIG_CAAM_64BIT
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530102 sec_out32(&regs->orba_h, op_base >> 32);
103#else
104 sec_out32(&regs->orba_h, 0x0);
105#endif
106 sec_out32(&regs->orba_l, (uint32_t)op_base);
107 sec_out32(&regs->ors, JR_SIZE);
108 sec_out32(&regs->irs, JR_SIZE);
109
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300110 if (!jr->irq)
Gaurav Jaine31dab82022-03-24 11:50:25 +0530111 jr_disable_irq(regs);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530112}
113
Gaurav Jaine31dab82022-03-24 11:50:25 +0530114static int jr_init(uint8_t sec_idx, struct caam_regs *caam)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530115{
Gaurav Jaine31dab82022-03-24 11:50:25 +0530116 struct jobring *jr = &caam->jr[sec_idx];
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530117#if CONFIG_IS_ENABLED(OF_CONTROL)
118 ofnode scu_node = ofnode_by_compatible(ofnode_null(), "fsl,imx8-mu");
119#endif
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300120 memset(jr, 0, sizeof(struct jobring));
121
Gaurav Jaine31dab82022-03-24 11:50:25 +0530122 jr->jq_id = caam->jrid;
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300123 jr->irq = DEFAULT_IRQ;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530124
125#ifdef CONFIG_FSL_CORENET
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300126 jr->liodn = DEFAULT_JR_LIODN;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530127#endif
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300128 jr->size = JR_SIZE;
Ye Li3c3e9a12021-03-25 17:30:36 +0800129 jr->input_ring = (caam_dma_addr_t *)memalign(ARCH_DMA_MINALIGN,
130 JR_SIZE * sizeof(caam_dma_addr_t));
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300131 if (!jr->input_ring)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530132 return -1;
Ruchika Guptad2180332016-01-22 16:12:55 +0530133
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300134 jr->op_size = roundup(JR_SIZE * sizeof(struct op_ring),
135 ARCH_DMA_MINALIGN);
136 jr->output_ring =
137 (struct op_ring *)memalign(ARCH_DMA_MINALIGN, jr->op_size);
138 if (!jr->output_ring)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530139 return -1;
140
Ye Li3c3e9a12021-03-25 17:30:36 +0800141 memset(jr->input_ring, 0, JR_SIZE * sizeof(caam_dma_addr_t));
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300142 memset(jr->output_ring, 0, jr->op_size);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530143
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530144#if CONFIG_IS_ENABLED(OF_CONTROL)
145 if (!ofnode_valid(scu_node))
146#endif
Gaurav Jaine31dab82022-03-24 11:50:25 +0530147 start_jr(caam);
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530148
Gaurav Jaine31dab82022-03-24 11:50:25 +0530149 jr_initregs(sec_idx, caam);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530150
151 return 0;
152}
153
154/* -1 --- error, can't enqueue -- no space available */
155static int jr_enqueue(uint32_t *desc_addr,
Aneesh Bansal43421822015-10-29 22:58:03 +0530156 void (*callback)(uint32_t status, void *arg),
Gaurav Jaine31dab82022-03-24 11:50:25 +0530157 void *arg, uint8_t sec_idx, struct caam_regs *caam)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530158{
Gaurav Jaine31dab82022-03-24 11:50:25 +0530159 struct jr_regs *regs = caam->regs;
160 struct jobring *jr = &caam->jr[sec_idx];
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300161 int head = jr->head;
Aneesh Bansal43421822015-10-29 22:58:03 +0530162 uint32_t desc_word;
163 int length = desc_len(desc_addr);
164 int i;
Ye Li3c3e9a12021-03-25 17:30:36 +0800165#ifdef CONFIG_CAAM_64BIT
Aneesh Bansal43421822015-10-29 22:58:03 +0530166 uint32_t *addr_hi, *addr_lo;
167#endif
168
169 /* The descriptor must be submitted to SEC block as per endianness
170 * of the SEC Block.
171 * So, if the endianness of Core and SEC block is different, each word
172 * of the descriptor will be byte-swapped.
173 */
174 for (i = 0; i < length; i++) {
175 desc_word = desc_addr[i];
176 sec_out32((uint32_t *)&desc_addr[i], desc_word);
177 }
178
Ye Li3c3e9a12021-03-25 17:30:36 +0800179 caam_dma_addr_t desc_phys_addr = virt_to_phys(desc_addr);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530180
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300181 jr->info[head].desc_phys_addr = desc_phys_addr;
182 jr->info[head].callback = (void *)callback;
183 jr->info[head].arg = arg;
184 jr->info[head].op_done = 0;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530185
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300186 unsigned long start = (unsigned long)&jr->info[head] &
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600187 ~(ARCH_DMA_MINALIGN - 1);
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300188 unsigned long end = ALIGN((unsigned long)&jr->info[head] +
Ruchika Guptad2180332016-01-22 16:12:55 +0530189 sizeof(struct jr_info), ARCH_DMA_MINALIGN);
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600190 flush_dcache_range(start, end);
191
Ye Li3c3e9a12021-03-25 17:30:36 +0800192#ifdef CONFIG_CAAM_64BIT
Aneesh Bansal43421822015-10-29 22:58:03 +0530193 /* Write the 64 bit Descriptor address on Input Ring.
194 * The 32 bit hign and low part of the address will
195 * depend on endianness of SEC block.
196 */
197#ifdef CONFIG_SYS_FSL_SEC_LE
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300198 addr_lo = (uint32_t *)(&jr->input_ring[head]);
199 addr_hi = (uint32_t *)(&jr->input_ring[head]) + 1;
Aneesh Bansal43421822015-10-29 22:58:03 +0530200#elif defined(CONFIG_SYS_FSL_SEC_BE)
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300201 addr_hi = (uint32_t *)(&jr->input_ring[head]);
202 addr_lo = (uint32_t *)(&jr->input_ring[head]) + 1;
Aneesh Bansal43421822015-10-29 22:58:03 +0530203#endif /* ifdef CONFIG_SYS_FSL_SEC_LE */
204
205 sec_out32(addr_hi, (uint32_t)(desc_phys_addr >> 32));
206 sec_out32(addr_lo, (uint32_t)(desc_phys_addr));
207
208#else
209 /* Write the 32 bit Descriptor address on Input Ring. */
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300210 sec_out32(&jr->input_ring[head], desc_phys_addr);
Ye Li3c3e9a12021-03-25 17:30:36 +0800211#endif /* ifdef CONFIG_CAAM_64BIT */
Aneesh Bansal43421822015-10-29 22:58:03 +0530212
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300213 start = (unsigned long)&jr->input_ring[head] & ~(ARCH_DMA_MINALIGN - 1);
214 end = ALIGN((unsigned long)&jr->input_ring[head] +
Ye Li3c3e9a12021-03-25 17:30:36 +0800215 sizeof(caam_dma_addr_t), ARCH_DMA_MINALIGN);
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600216 flush_dcache_range(start, end);
217
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300218 jr->head = (head + 1) & (jr->size - 1);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530219
220 sec_out32(&regs->irja, 1);
221
222 return 0;
223}
224
Gaurav Jaine31dab82022-03-24 11:50:25 +0530225static int jr_dequeue(int sec_idx, struct caam_regs *caam)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530226{
Gaurav Jaine31dab82022-03-24 11:50:25 +0530227 struct jr_regs *regs = caam->regs;
228 struct jobring *jr = &caam->jr[sec_idx];
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300229 int head = jr->head;
230 int tail = jr->tail;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530231 int idx, i, found;
Aneesh Bansal43421822015-10-29 22:58:03 +0530232 void (*callback)(uint32_t status, void *arg);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530233 void *arg = NULL;
Ye Li3c3e9a12021-03-25 17:30:36 +0800234#ifdef CONFIG_CAAM_64BIT
Aneesh Bansal43421822015-10-29 22:58:03 +0530235 uint32_t *addr_hi, *addr_lo;
236#else
237 uint32_t *addr;
238#endif
Olaf Baehring6092e8b2025-05-21 08:03:40 -0300239 unsigned long start, end;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530240
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300241 while (sec_in32(&regs->orsf) && CIRC_CNT(jr->head, jr->tail,
242 jr->size)) {
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600243
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530244 found = 0;
245
Ye Li3c3e9a12021-03-25 17:30:36 +0800246 caam_dma_addr_t op_desc;
Olaf Baehring6092e8b2025-05-21 08:03:40 -0300247
248 /* Invalidate output ring */
249 start = (unsigned long)jr->output_ring & ~(ARCH_DMA_MINALIGN - 1);
250 end = ALIGN((unsigned long)jr->output_ring + jr->op_size, ARCH_DMA_MINALIGN);
251 invalidate_dcache_range(start, end);
Ye Li3c3e9a12021-03-25 17:30:36 +0800252 #ifdef CONFIG_CAAM_64BIT
Aneesh Bansal43421822015-10-29 22:58:03 +0530253 /* Read the 64 bit Descriptor address from Output Ring.
254 * The 32 bit hign and low part of the address will
255 * depend on endianness of SEC block.
256 */
257 #ifdef CONFIG_SYS_FSL_SEC_LE
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300258 addr_lo = (uint32_t *)(&jr->output_ring[jr->tail].desc);
259 addr_hi = (uint32_t *)(&jr->output_ring[jr->tail].desc) + 1;
Aneesh Bansal43421822015-10-29 22:58:03 +0530260 #elif defined(CONFIG_SYS_FSL_SEC_BE)
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300261 addr_hi = (uint32_t *)(&jr->output_ring[jr->tail].desc);
262 addr_lo = (uint32_t *)(&jr->output_ring[jr->tail].desc) + 1;
Aneesh Bansal43421822015-10-29 22:58:03 +0530263 #endif /* ifdef CONFIG_SYS_FSL_SEC_LE */
264
265 op_desc = ((u64)sec_in32(addr_hi) << 32) |
266 ((u64)sec_in32(addr_lo));
267
268 #else
269 /* Read the 32 bit Descriptor address from Output Ring. */
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300270 addr = (uint32_t *)&jr->output_ring[jr->tail].desc;
Aneesh Bansal43421822015-10-29 22:58:03 +0530271 op_desc = sec_in32(addr);
Ye Li3c3e9a12021-03-25 17:30:36 +0800272 #endif /* ifdef CONFIG_CAAM_64BIT */
Aneesh Bansal43421822015-10-29 22:58:03 +0530273
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300274 uint32_t status = sec_in32(&jr->output_ring[jr->tail].status);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530275
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300276 for (i = 0; CIRC_CNT(head, tail + i, jr->size) >= 1; i++) {
277 idx = (tail + i) & (jr->size - 1);
278 if (op_desc == jr->info[idx].desc_phys_addr) {
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530279 found = 1;
280 break;
281 }
282 }
283
284 /* Error condition if match not found */
Olaf Baehring6092e8b2025-05-21 08:03:40 -0300285 if (!found) {
286 int slots_full = sec_in32(&regs->orsf);
287
288 jr->tail = (jr->tail + slots_full) & (jr->size - 1);
289 sec_out32(&regs->orjr, slots_full);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530290 return -1;
Olaf Baehring6092e8b2025-05-21 08:03:40 -0300291 }
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530292
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300293 jr->info[idx].op_done = 1;
294 callback = (void *)jr->info[idx].callback;
295 arg = jr->info[idx].arg;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530296
297 /* When the job on tail idx gets done, increment
298 * tail till the point where job completed out of oredr has
299 * been taken into account
300 */
301 if (idx == tail)
302 do {
Olaf Baehring6092e8b2025-05-21 08:03:40 -0300303 jr->info[tail].op_done = 0;
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300304 tail = (tail + 1) & (jr->size - 1);
305 } while (jr->info[tail].op_done);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530306
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300307 jr->tail = tail;
Olaf Baehring6092e8b2025-05-21 08:03:40 -0300308
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530309
310 sec_out32(&regs->orjr, 1);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530311
Aneesh Bansal43421822015-10-29 22:58:03 +0530312 callback(status, arg);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530313 }
314
315 return 0;
316}
317
Aneesh Bansal43421822015-10-29 22:58:03 +0530318static void desc_done(uint32_t status, void *arg)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530319{
320 struct result *x = arg;
321 x->status = status;
322 caam_jr_strstatus(status);
323 x->done = 1;
324}
325
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300326static inline int run_descriptor_jr_idx(uint32_t *desc, uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530327{
Gaurav Jaine31dab82022-03-24 11:50:25 +0530328 struct caam_regs *caam;
329#if CONFIG_IS_ENABLED(DM)
330 caam = dev_get_priv(caam_dev);
331#else
332 caam = &caam_st;
333#endif
Franck LENORMAND71812782021-03-25 17:30:22 +0800334 unsigned long long timeval = 0;
Tom Rini364d0022023-01-10 11:19:45 -0500335 unsigned long long timeout = CFG_USEC_DEQ_TIMEOUT;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530336 struct result op;
337 int ret = 0;
338
gaurav rana07621502014-12-04 13:00:41 +0530339 memset(&op, 0, sizeof(op));
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530340
Gaurav Jaine31dab82022-03-24 11:50:25 +0530341 ret = jr_enqueue(desc, desc_done, &op, sec_idx, caam);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530342 if (ret) {
343 debug("Error in SEC enq\n");
344 ret = JQ_ENQ_ERR;
345 goto out;
346 }
347
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530348 while (op.done != 1) {
Franck LENORMAND71812782021-03-25 17:30:22 +0800349 udelay(1);
350 timeval += 1;
351
Gaurav Jaine31dab82022-03-24 11:50:25 +0530352 ret = jr_dequeue(sec_idx, caam);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530353 if (ret) {
354 debug("Error in SEC deq\n");
355 ret = JQ_DEQ_ERR;
356 goto out;
357 }
358
Franck LENORMAND71812782021-03-25 17:30:22 +0800359 if (timeval > timeout) {
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530360 debug("SEC Dequeue timed out\n");
361 ret = JQ_DEQ_TO_ERR;
362 goto out;
363 }
364 }
365
Aneesh Bansal3ab29d72016-02-11 14:36:51 +0530366 if (op.status) {
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530367 debug("Error %x\n", op.status);
368 ret = op.status;
369 }
370out:
371 return ret;
372}
373
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300374int run_descriptor_jr(uint32_t *desc)
375{
376 return run_descriptor_jr_idx(desc, 0);
377}
378
Gaurav Jaine31dab82022-03-24 11:50:25 +0530379static int jr_sw_cleanup(uint8_t sec_idx, struct caam_regs *caam)
380{
381 struct jobring *jr = &caam->jr[sec_idx];
382
383 jr->head = 0;
384 jr->tail = 0;
Gaurav Jaine31dab82022-03-24 11:50:25 +0530385 jr->write_idx = 0;
386 memset(jr->info, 0, sizeof(jr->info));
387 memset(jr->input_ring, 0, jr->size * sizeof(caam_dma_addr_t));
388 memset(jr->output_ring, 0, jr->size * sizeof(struct op_ring));
389
390 return 0;
391}
392
393static int jr_hw_reset(struct jr_regs *regs)
394{
395 uint32_t timeout = 100000;
396 uint32_t jrint, jrcr;
397
398 sec_out32(&regs->jrcr, JRCR_RESET);
399 do {
400 jrint = sec_in32(&regs->jrint);
401 } while (((jrint & JRINT_ERR_HALT_MASK) ==
402 JRINT_ERR_HALT_INPROGRESS) && --timeout);
403
404 jrint = sec_in32(&regs->jrint);
405 if (((jrint & JRINT_ERR_HALT_MASK) !=
406 JRINT_ERR_HALT_INPROGRESS) && timeout == 0)
407 return -1;
408
409 timeout = 100000;
410 sec_out32(&regs->jrcr, JRCR_RESET);
411 do {
412 jrcr = sec_in32(&regs->jrcr);
413 } while ((jrcr & JRCR_RESET) && --timeout);
414
415 if (timeout == 0)
416 return -1;
417
418 return 0;
419}
420
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300421static inline int jr_reset_sec(uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530422{
Gaurav Jaine31dab82022-03-24 11:50:25 +0530423 struct caam_regs *caam;
424#if CONFIG_IS_ENABLED(DM)
425 caam = dev_get_priv(caam_dev);
426#else
427 caam = &caam_st;
428#endif
429 if (jr_hw_reset(caam->regs) < 0)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530430 return -1;
431
432 /* Clean up the jobring structure maintained by software */
Gaurav Jaine31dab82022-03-24 11:50:25 +0530433 jr_sw_cleanup(sec_idx, caam);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530434
435 return 0;
436}
437
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300438int jr_reset(void)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530439{
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300440 return jr_reset_sec(0);
441}
442
Gaurav Jaine31dab82022-03-24 11:50:25 +0530443int sec_reset(void)
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300444{
Gaurav Jaine31dab82022-03-24 11:50:25 +0530445 struct caam_regs *caam;
446#if CONFIG_IS_ENABLED(DM)
447 caam = dev_get_priv(caam_dev);
448#else
449 caam = &caam_st;
450#endif
451 ccsr_sec_t *sec = caam->sec;
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530452 uint32_t mcfgr = sec_in32(&sec->mcfgr);
453 uint32_t timeout = 100000;
454
455 mcfgr |= MCFGR_SWRST;
456 sec_out32(&sec->mcfgr, mcfgr);
457
458 mcfgr |= MCFGR_DMA_RST;
459 sec_out32(&sec->mcfgr, mcfgr);
460 do {
461 mcfgr = sec_in32(&sec->mcfgr);
462 } while ((mcfgr & MCFGR_DMA_RST) == MCFGR_DMA_RST && --timeout);
463
464 if (timeout == 0)
465 return -1;
466
467 timeout = 100000;
468 do {
469 mcfgr = sec_in32(&sec->mcfgr);
470 } while ((mcfgr & MCFGR_SWRST) == MCFGR_SWRST && --timeout);
471
472 if (timeout == 0)
473 return -1;
474
475 return 0;
476}
Gaurav Jaine31dab82022-03-24 11:50:25 +0530477
Michael Wallee692a002020-06-27 22:58:52 +0200478static int deinstantiate_rng(u8 sec_idx, int state_handle_mask)
479{
480 u32 *desc;
481 int sh_idx, ret = 0;
482 int desc_size = ALIGN(sizeof(u32) * 2, ARCH_DMA_MINALIGN);
483
484 desc = memalign(ARCH_DMA_MINALIGN, desc_size);
485 if (!desc) {
486 debug("cannot allocate RNG init descriptor memory\n");
487 return -ENOMEM;
488 }
489
490 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
491 /*
492 * If the corresponding bit is set, then it means the state
493 * handle was initialized by us, and thus it needs to be
494 * deinitialized as well
495 */
496
497 if (state_handle_mask & RDSTA_IF(sh_idx)) {
498 /*
499 * Create the descriptor for deinstantating this state
500 * handle.
501 */
502 inline_cnstr_jobdesc_rng_deinstantiation(desc, sh_idx);
503 flush_dcache_range((unsigned long)desc,
504 (unsigned long)desc + desc_size);
505
506 ret = run_descriptor_jr_idx(desc, sec_idx);
507 if (ret) {
508 printf("SEC%u: RNG4 SH%d deinstantiation failed with error 0x%x\n",
509 sec_idx, sh_idx, ret);
510 ret = -EIO;
511 break;
512 }
513
514 printf("SEC%u: Deinstantiated RNG4 SH%d\n",
515 sec_idx, sh_idx);
516 }
517 }
518
519 free(desc);
520 return ret;
521}
522
Gaurav Jaine31dab82022-03-24 11:50:25 +0530523static int instantiate_rng(uint8_t sec_idx, ccsr_sec_t *sec, int gen_sk)
Ruchika Gupta4345a572014-10-07 15:46:20 +0530524{
Ruchika Gupta4345a572014-10-07 15:46:20 +0530525 u32 *desc;
526 u32 rdsta_val;
Lukas Aueraed8eac2018-01-25 14:11:17 +0100527 int ret = 0, sh_idx, size;
Ruchika Gupta4345a572014-10-07 15:46:20 +0530528 struct rng4tst __iomem *rng =
529 (struct rng4tst __iomem *)&sec->rng;
530
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600531 desc = memalign(ARCH_DMA_MINALIGN, sizeof(uint32_t) * 6);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530532 if (!desc) {
533 printf("cannot allocate RNG init descriptor memory\n");
534 return -1;
535 }
536
Lukas Aueraed8eac2018-01-25 14:11:17 +0100537 for (sh_idx = 0; sh_idx < RNG4_MAX_HANDLES; sh_idx++) {
538 /*
539 * If the corresponding bit is set, this state handle
540 * was initialized by somebody else, so it's left alone.
541 */
Michael Wallee692a002020-06-27 22:58:52 +0200542 rdsta_val = sec_in32(&rng->rdsta);
543 if (rdsta_val & (RDSTA_IF(sh_idx))) {
544 if (rdsta_val & RDSTA_PR(sh_idx))
545 continue;
546
547 printf("SEC%u: RNG4 SH%d was instantiated w/o prediction resistance. Tearing it down\n",
548 sec_idx, sh_idx);
549
550 ret = deinstantiate_rng(sec_idx, RDSTA_IF(sh_idx));
551 if (ret)
552 break;
553 }
Lukas Aueraed8eac2018-01-25 14:11:17 +0100554
Michael Walle602cc8d2020-06-27 22:58:51 +0200555 inline_cnstr_jobdesc_rng_instantiation(desc, sh_idx, gen_sk);
Lukas Aueraed8eac2018-01-25 14:11:17 +0100556 size = roundup(sizeof(uint32_t) * 6, ARCH_DMA_MINALIGN);
557 flush_dcache_range((unsigned long)desc,
558 (unsigned long)desc + size);
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600559
Lukas Aueraed8eac2018-01-25 14:11:17 +0100560 ret = run_descriptor_jr_idx(desc, sec_idx);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530561
Lukas Aueraed8eac2018-01-25 14:11:17 +0100562 if (ret)
Michael Walle73e3f572020-06-27 22:58:48 +0200563 printf("SEC%u: RNG4 SH%d instantiation failed with error 0x%x\n",
564 sec_idx, sh_idx, ret);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530565
Michael Wallee692a002020-06-27 22:58:52 +0200566 rdsta_val = sec_in32(&rng->rdsta);
567 if (!(rdsta_val & RDSTA_IF(sh_idx))) {
Lukas Aueraed8eac2018-01-25 14:11:17 +0100568 free(desc);
569 return -1;
570 }
571
572 memset(desc, 0, sizeof(uint32_t) * 6);
573 }
574
575 free(desc);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530576
577 return ret;
578}
579
Gaurav Jaine31dab82022-03-24 11:50:25 +0530580static u8 get_rng_vid(ccsr_sec_t *sec)
Ruchika Gupta4345a572014-10-07 15:46:20 +0530581{
Michael Wallea83fa182020-06-27 22:58:50 +0200582 u8 vid;
583
584 if (caam_get_era() < 10) {
585 vid = (sec_in32(&sec->chavid_ls) & SEC_CHAVID_RNG_LS_MASK)
586 >> SEC_CHAVID_LS_RNG_SHIFT;
587 } else {
588 vid = (sec_in32(&sec->vreg.rng) & CHA_VER_VID_MASK)
589 >> CHA_VER_VID_SHIFT;
590 }
Ruchika Gupta4345a572014-10-07 15:46:20 +0530591
Michael Wallea83fa182020-06-27 22:58:50 +0200592 return vid;
Ruchika Gupta4345a572014-10-07 15:46:20 +0530593}
594
595/*
596 * By default, the TRNG runs for 200 clocks per sample;
597 * 1200 clocks per sample generates better entropy.
598 */
Gaurav Jaine31dab82022-03-24 11:50:25 +0530599static void kick_trng(int ent_delay, ccsr_sec_t *sec)
Ruchika Gupta4345a572014-10-07 15:46:20 +0530600{
Ruchika Gupta4345a572014-10-07 15:46:20 +0530601 struct rng4tst __iomem *rng =
602 (struct rng4tst __iomem *)&sec->rng;
603 u32 val;
604
605 /* put RNG4 into program mode */
606 sec_setbits32(&rng->rtmctl, RTMCTL_PRGM);
607 /* rtsdctl bits 0-15 contain "Entropy Delay, which defines the
608 * length (in system clocks) of each Entropy sample taken
609 * */
610 val = sec_in32(&rng->rtsdctl);
611 val = (val & ~RTSDCTL_ENT_DLY_MASK) |
612 (ent_delay << RTSDCTL_ENT_DLY_SHIFT);
613 sec_out32(&rng->rtsdctl, val);
614 /* min. freq. count, equal to 1/4 of the entropy sample length */
615 sec_out32(&rng->rtfreqmin, ent_delay >> 2);
Alex Porosanuf8d6a7f2015-05-05 16:48:33 +0300616 /* disable maximum frequency count */
617 sec_out32(&rng->rtfreqmax, RTFRQMAX_DISABLE);
Alex Porosanubefb5cb2015-05-05 16:48:35 +0300618 /*
619 * select raw sampling in both entropy shifter
620 * and statistical checker
621 */
Aneesh Bansal1fa9c902015-12-08 13:54:30 +0530622 sec_setbits32(&rng->rtmctl, RTMCTL_SAMP_MODE_RAW_ES_SC);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530623 /* put RNG4 into run mode */
Aneesh Bansal1fa9c902015-12-08 13:54:30 +0530624 sec_clrbits32(&rng->rtmctl, RTMCTL_PRGM);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530625}
626
Gaurav Jaine31dab82022-03-24 11:50:25 +0530627static int rng_init(uint8_t sec_idx, ccsr_sec_t *sec)
Ruchika Gupta4345a572014-10-07 15:46:20 +0530628{
Gaurav Jainb8192ad2022-04-15 16:40:49 +0530629 int ret, gen_sk, ent_delay = RTSDCTL_ENT_DLY;
Ruchika Gupta4345a572014-10-07 15:46:20 +0530630 struct rng4tst __iomem *rng =
631 (struct rng4tst __iomem *)&sec->rng;
Lukas Aueraed8eac2018-01-25 14:11:17 +0100632 u32 inst_handles;
Ruchika Gupta4345a572014-10-07 15:46:20 +0530633
Michael Walle602cc8d2020-06-27 22:58:51 +0200634 gen_sk = !(sec_in32(&rng->rdsta) & RDSTA_SKVN);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530635 do {
Michael Wallee692a002020-06-27 22:58:52 +0200636 inst_handles = sec_in32(&rng->rdsta) & RDSTA_MASK;
Lukas Aueraed8eac2018-01-25 14:11:17 +0100637
Ruchika Gupta4345a572014-10-07 15:46:20 +0530638 /*
639 * If either of the SH's were instantiated by somebody else
640 * then it is assumed that the entropy
641 * parameters are properly set and thus the function
642 * setting these (kick_trng(...)) is skipped.
643 * Also, if a handle was instantiated, do not change
644 * the TRNG parameters.
645 */
Lukas Aueraed8eac2018-01-25 14:11:17 +0100646 if (!inst_handles) {
Gaurav Jaine31dab82022-03-24 11:50:25 +0530647 kick_trng(ent_delay, sec);
Lukas Aueraed8eac2018-01-25 14:11:17 +0100648 ent_delay += 400;
649 }
Ruchika Gupta4345a572014-10-07 15:46:20 +0530650 /*
651 * if instantiate_rng(...) fails, the loop will rerun
652 * and the kick_trng(...) function will modfiy the
653 * upper and lower limits of the entropy sampling
654 * interval, leading to a sucessful initialization of
655 * the RNG.
656 */
Gaurav Jaine31dab82022-03-24 11:50:25 +0530657 ret = instantiate_rng(sec_idx, sec, gen_sk);
Gaurav Jainb8192ad2022-04-15 16:40:49 +0530658 /*
659 * entropy delay is calculated via self-test method.
Heinrich Schuchardtb72dfb22024-12-11 17:31:54 +0100660 * self-test are run across different voltage, temp.
Gaurav Jainb8192ad2022-04-15 16:40:49 +0530661 * if worst case value for ent_dly is identified,
662 * loop can be skipped for that platform.
663 */
664 if (IS_ENABLED(CONFIG_MX6SX))
665 break;
666
Ruchika Gupta4345a572014-10-07 15:46:20 +0530667 } while ((ret == -1) && (ent_delay < RTSDCTL_ENT_DLY_MAX));
668 if (ret) {
Michael Walle73e3f572020-06-27 22:58:48 +0200669 printf("SEC%u: Failed to instantiate RNG\n", sec_idx);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530670 return ret;
671 }
672
673 /* Enable RDB bit so that RNG works faster */
674 sec_setbits32(&sec->scfgr, SEC_SCFGR_RDBENABLE);
675
676 return ret;
677}
Gaurav Jaine31dab82022-03-24 11:50:25 +0530678
Emanuele Ghidoli04a04022024-03-28 11:30:12 +0100679#if CONFIG_IS_ENABLED(FSL_CAAM_JR_NTZ_ACCESS)
680static void jr_setown_non_trusted(ccsr_sec_t *sec)
681{
682 u32 jrown_ns;
683 int i;
684
685 /* Set ownership of job rings to non-TrustZone mode */
686 for (i = 0; i < ARRAY_SIZE(sec->jrliodnr); i++) {
687 jrown_ns = sec_in32(&sec->jrliodnr[i].ms);
688 jrown_ns |= JROWN_NS | JRMID_NS;
689 sec_out32(&sec->jrliodnr[i].ms, jrown_ns);
690 }
691}
692#endif
693
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300694int sec_init_idx(uint8_t sec_idx)
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530695{
horia.geanta@freescale.com66e26aa2015-07-08 17:24:57 +0300696 int ret = 0;
Gaurav Jaine31dab82022-03-24 11:50:25 +0530697 struct caam_regs *caam;
698#if CONFIG_IS_ENABLED(DM)
699 if (!caam_dev) {
700 printf("caam_jr: caam not found\n");
701 return -1;
702 }
703 caam = dev_get_priv(caam_dev);
704#else
705 caam_st.sec = (void *)SEC_ADDR(sec_idx);
706 caam_st.regs = (struct jr_regs *)SEC_JR0_ADDR(sec_idx);
707 caam_st.jrid = 0;
708 caam = &caam_st;
709#endif
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530710#if CONFIG_IS_ENABLED(OF_CONTROL)
711 ofnode scu_node = ofnode_by_compatible(ofnode_null(), "fsl,imx8-mu");
712
713 if (ofnode_valid(scu_node))
714 goto init;
715#endif
716
Gaurav Jaine31dab82022-03-24 11:50:25 +0530717 ccsr_sec_t *sec = caam->sec;
718 uint32_t mcr = sec_in32(&sec->mcfgr);
Simon Glass7ec24132024-09-29 19:49:48 -0600719#if defined(CONFIG_XPL_BUILD) && defined(CONFIG_IMX8M)
Gaurav Jaine31dab82022-03-24 11:50:25 +0530720 uint32_t jrdid_ms = 0;
721#endif
Aneesh Bansal4b636c32016-01-22 17:05:59 +0530722#ifdef CONFIG_FSL_CORENET
723 uint32_t liodnr;
724 uint32_t liodn_ns;
725 uint32_t liodn_s;
726#endif
727
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300728 if (!(sec_idx < CONFIG_SYS_FSL_MAX_NUM_OF_SEC)) {
Michael Walle73e3f572020-06-27 22:58:48 +0200729 printf("SEC%u: initialization failed\n", sec_idx);
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300730 return -1;
731 }
732
Saksham Jain0c19cea2016-03-23 16:24:42 +0530733 /*
734 * Modifying CAAM Read/Write Attributes
York Suncbe8e1c2016-04-04 11:41:26 -0700735 * For LS2080A
Saksham Jain0c19cea2016-03-23 16:24:42 +0530736 * For AXI Write - Cacheable, Write Back, Write allocate
737 * For AXI Read - Cacheable, Read allocate
York Suncbe8e1c2016-04-04 11:41:26 -0700738 * Only For LS2080a, to solve CAAM coherency issues
Saksham Jain0c19cea2016-03-23 16:24:42 +0530739 */
York Sun4ce6fbf2017-03-27 11:41:01 -0700740#ifdef CONFIG_ARCH_LS2080A
Saksham Jain0c19cea2016-03-23 16:24:42 +0530741 mcr = (mcr & ~MCFGR_AWCACHE_MASK) | (0xb << MCFGR_AWCACHE_SHIFT);
742 mcr = (mcr & ~MCFGR_ARCACHE_MASK) | (0x6 << MCFGR_ARCACHE_SHIFT);
743#else
horia.geanta@freescale.com66e26aa2015-07-08 17:24:57 +0300744 mcr = (mcr & ~MCFGR_AWCACHE_MASK) | (0x2 << MCFGR_AWCACHE_SHIFT);
Saksham Jain0c19cea2016-03-23 16:24:42 +0530745#endif
746
Ye Li3c3e9a12021-03-25 17:30:36 +0800747#ifdef CONFIG_CAAM_64BIT
horia.geanta@freescale.com66e26aa2015-07-08 17:24:57 +0300748 mcr |= (1 << MCFGR_PS_SHIFT);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530749#endif
horia.geanta@freescale.com66e26aa2015-07-08 17:24:57 +0300750 sec_out32(&sec->mcfgr, mcr);
Simon Glass7ec24132024-09-29 19:49:48 -0600751#if defined(CONFIG_XPL_BUILD) && defined(CONFIG_IMX8M)
Gaurav Jaine31dab82022-03-24 11:50:25 +0530752 jrdid_ms = JRDID_MS_TZ_OWN | JRDID_MS_PRIM_TZ | JRDID_MS_PRIM_DID;
753 sec_out32(&sec->jrliodnr[caam->jrid].ms, jrdid_ms);
754#endif
755 jr_reset();
horia.geanta@freescale.com66e26aa2015-07-08 17:24:57 +0300756
Aneesh Bansal4b636c32016-01-22 17:05:59 +0530757#ifdef CONFIG_FSL_CORENET
Simon Glass7ec24132024-09-29 19:49:48 -0600758#ifdef CONFIG_XPL_BUILD
Sumit Gargf6d96cb2016-07-14 12:27:51 -0400759 /*
760 * For SPL Build, Set the Liodns in SEC JR0 for
761 * creating PAMU entries corresponding to these.
762 * For normal build, these are set in set_liodns().
763 */
Tom Rini364d0022023-01-10 11:19:45 -0500764 liodn_ns = CFG_SPL_JR0_LIODN_NS & JRNSLIODN_MASK;
765 liodn_s = CFG_SPL_JR0_LIODN_S & JRSLIODN_MASK;
Sumit Gargf6d96cb2016-07-14 12:27:51 -0400766
Gaurav Jaine31dab82022-03-24 11:50:25 +0530767 liodnr = sec_in32(&sec->jrliodnr[caam->jrid].ls) &
Sumit Gargf6d96cb2016-07-14 12:27:51 -0400768 ~(JRNSLIODN_MASK | JRSLIODN_MASK);
769 liodnr = liodnr |
770 (liodn_ns << JRNSLIODN_SHIFT) |
771 (liodn_s << JRSLIODN_SHIFT);
Gaurav Jaine31dab82022-03-24 11:50:25 +0530772 sec_out32(&sec->jrliodnr[caam->jrid].ls, liodnr);
Sumit Gargf6d96cb2016-07-14 12:27:51 -0400773#else
Gaurav Jaine31dab82022-03-24 11:50:25 +0530774 liodnr = sec_in32(&sec->jrliodnr[caam->jrid].ls);
Aneesh Bansal4b636c32016-01-22 17:05:59 +0530775 liodn_ns = (liodnr & JRNSLIODN_MASK) >> JRNSLIODN_SHIFT;
776 liodn_s = (liodnr & JRSLIODN_MASK) >> JRSLIODN_SHIFT;
777#endif
Sumit Gargf6d96cb2016-07-14 12:27:51 -0400778#endif
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530779#if CONFIG_IS_ENABLED(OF_CONTROL)
780init:
781#endif
Emanuele Ghidoli04a04022024-03-28 11:30:12 +0100782#if CONFIG_IS_ENABLED(FSL_CAAM_JR_NTZ_ACCESS)
783 jr_setown_non_trusted(sec);
784#endif
785
Gaurav Jaine31dab82022-03-24 11:50:25 +0530786 ret = jr_init(sec_idx, caam);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530787 if (ret < 0) {
Michael Walle73e3f572020-06-27 22:58:48 +0200788 printf("SEC%u: initialization failed\n", sec_idx);
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530789 return -1;
Ruchika Gupta4345a572014-10-07 15:46:20 +0530790 }
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530791#if CONFIG_IS_ENABLED(OF_CONTROL)
Gaurav Jain332d4f92022-04-22 16:38:34 +0530792 if (ofnode_valid(scu_node)) {
Marek Vasut0d871e72024-04-26 01:02:07 +0200793 if (CONFIG_IS_ENABLED(DM_RNG)) {
Gaurav Jain332d4f92022-04-22 16:38:34 +0530794 ret = device_bind_driver(NULL, "caam-rng", "caam-rng", NULL);
795 if (ret)
796 printf("Couldn't bind rng driver (%d)\n", ret);
797 }
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530798 return ret;
Gaurav Jain332d4f92022-04-22 16:38:34 +0530799 }
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530800#endif
Ruchika Gupta4345a572014-10-07 15:46:20 +0530801
Aneesh Bansal4b636c32016-01-22 17:05:59 +0530802#ifdef CONFIG_FSL_CORENET
803 ret = sec_config_pamu_table(liodn_ns, liodn_s);
804 if (ret < 0)
805 return -1;
806
807 pamu_enable();
808#endif
Gaurav Jaine31dab82022-03-24 11:50:25 +0530809
810 if (get_rng_vid(caam->sec) >= 4) {
811 if (rng_init(sec_idx, caam->sec) < 0) {
Michael Walle73e3f572020-06-27 22:58:48 +0200812 printf("SEC%u: RNG instantiation failed\n", sec_idx);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530813 return -1;
814 }
Michael Walleb258eb22020-06-27 22:58:53 +0200815
Marek Vasut0d871e72024-04-26 01:02:07 +0200816 if (CONFIG_IS_ENABLED(DM_RNG)) {
Michael Walleb258eb22020-06-27 22:58:53 +0200817 ret = device_bind_driver(NULL, "caam-rng", "caam-rng",
818 NULL);
819 if (ret)
820 printf("Couldn't bind rng driver (%d)\n", ret);
821 }
822
Michael Walle73e3f572020-06-27 22:58:48 +0200823 printf("SEC%u: RNG instantiated\n", sec_idx);
Ruchika Gupta4345a572014-10-07 15:46:20 +0530824 }
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530825 return ret;
826}
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300827
828int sec_init(void)
829{
830 return sec_init_idx(0);
831}
Gaurav Jaine31dab82022-03-24 11:50:25 +0530832
833#if CONFIG_IS_ENABLED(DM)
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530834static int jr_power_on(ofnode node)
835{
836#if CONFIG_IS_ENABLED(POWER_DOMAIN)
837 struct udevice __maybe_unused jr_dev;
838 struct power_domain pd;
839
840 dev_set_ofnode(&jr_dev, node);
841
842 /* Power on Job Ring before access it */
843 if (!power_domain_get(&jr_dev, &pd)) {
844 if (power_domain_on(&pd))
845 return -EINVAL;
846 }
847#endif
848 return 0;
849}
850
Gaurav Jaine31dab82022-03-24 11:50:25 +0530851static int caam_jr_ioctl(struct udevice *dev, unsigned long request, void *buf)
852{
853 if (request != CAAM_JR_RUN_DESC)
854 return -ENOSYS;
855
856 return run_descriptor_jr(buf);
857}
858
859static int caam_jr_probe(struct udevice *dev)
860{
861 struct caam_regs *caam = dev_get_priv(dev);
862 fdt_addr_t addr;
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530863 ofnode node, scu_node;
Gaurav Jaine31dab82022-03-24 11:50:25 +0530864 unsigned int jr_node = 0;
865
866 caam_dev = dev;
867
868 addr = dev_read_addr(dev);
869 if (addr == FDT_ADDR_T_NONE) {
870 printf("caam_jr: crypto not found\n");
871 return -EINVAL;
872 }
873 caam->sec = (ccsr_sec_t *)(uintptr_t)addr;
874 caam->regs = (struct jr_regs *)caam->sec;
875
876 /* Check for enabled job ring node */
877 ofnode_for_each_subnode(node, dev_ofnode(dev)) {
Simon Glass2e4938b2022-09-06 20:27:17 -0600878 if (!ofnode_is_enabled(node))
Gaurav Jaine31dab82022-03-24 11:50:25 +0530879 continue;
880
881 jr_node = ofnode_read_u32_default(node, "reg", -1);
882 if (jr_node > 0) {
883 caam->regs = (struct jr_regs *)((ulong)caam->sec + jr_node);
884 while (!(jr_node & 0x0F))
885 jr_node = jr_node >> 4;
886
887 caam->jrid = jr_node - 1;
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530888 scu_node = ofnode_by_compatible(ofnode_null(), "fsl,imx8-mu");
889 if (ofnode_valid(scu_node)) {
890 if (jr_power_on(node))
891 return -EINVAL;
892 }
Gaurav Jaine31dab82022-03-24 11:50:25 +0530893 break;
894 }
895 }
896
897 if (sec_init())
898 printf("\nsec_init failed!\n");
899
900 return 0;
901}
902
903static int caam_jr_bind(struct udevice *dev)
904{
905 return 0;
906}
907
908static const struct misc_ops caam_jr_ops = {
909 .ioctl = caam_jr_ioctl,
910};
911
912static const struct udevice_id caam_jr_match[] = {
913 { .compatible = "fsl,sec-v4.0" },
914 { }
915};
916
917U_BOOT_DRIVER(caam_jr) = {
918 .name = "caam_jr",
919 .id = UCLASS_MISC,
920 .of_match = caam_jr_match,
921 .ops = &caam_jr_ops,
922 .bind = caam_jr_bind,
923 .probe = caam_jr_probe,
924 .priv_auto = sizeof(struct caam_regs),
925};
926#endif