1 /* SPDX-License-Identifier: GPL-2.0 */
3 * CAAM hardware register-level view
5 * Copyright 2008-2011 Freescale Semiconductor, Inc.
12 #include <linux/types.h>
13 #include <linux/bitops.h>
15 #include <linux/io-64-nonatomic-hi-lo.h>
18 * Architecture-specific register access methods
20 * CAAM's bus-addressable registers are 64 bits internally.
21 * They have been wired to be safely accessible on 32-bit
22 * architectures, however. Registers were organized such
23 * that (a) they can be contained in 32 bits, (b) if not, then they
24 * can be treated as two 32-bit entities, or finally (c) if they
25 * must be treated as a single 64-bit value, then this can safely
26 * be done with two 32-bit cycles.
28 * For 32-bit operations on 64-bit values, CAAM follows the same
29 * 64-bit register access conventions as it's predecessors, in that
30 * writes are "triggered" by a write to the register at the numerically
31 * higher address, thus, a full 64-bit write cycle requires a write
32 * to the lower address, followed by a write to the higher address,
33 * which will latch/execute the write cycle.
35 * For example, let's assume a SW reset of CAAM through the master
36 * configuration register.
37 * - SWRST is in bit 31 of MCFG.
38 * - MCFG begins at base+0x0000.
39 * - Bits 63-32 are a 32-bit word at base+0x0000 (numerically-lower)
40 * - Bits 31-0 are a 32-bit word at base+0x0004 (numerically-higher)
42 * (and on Power, the convention is 0-31, 32-63, I know...)
44 * Assuming a 64-bit write to this MCFG to perform a software reset
45 * would then require a write of 0 to base+0x0000, followed by a
46 * write of 0x80000000 to base+0x0004, which would "execute" the
49 * Of course, since MCFG 63-32 is all zero, we could cheat and simply
50 * write 0x8000000 to base+0x0004, and the reset would work fine.
51 * However, since CAAM does contain some write-and-read-intended
52 * 64-bit registers, this code defines 64-bit access methods for
53 * the sake of internal consistency and simplicity, and so that a
54 * clean transition to 64-bit is possible when it becomes necessary.
56 * There are limitations to this that the developer must recognize.
57 * 32-bit architectures cannot enforce an atomic-64 operation,
60 * - On writes, since the HW is assumed to latch the cycle on the
61 * write of the higher-numeric-address word, then ordered
64 * - For reads, where a register contains a relevant value of more
65 * that 32 bits, the hardware employs logic to latch the other
66 * "half" of the data until read, ensuring an accurate value.
67 * This is of particular relevance when dealing with CAAM's
68 * performance counters.
72 extern bool caam_little_end
;
74 extern size_t caam_ptr_sz
;
76 #define caam_to_cpu(len) \
77 static inline u##len caam##len ## _to_cpu(u##len val) \
79 if (caam_little_end) \
80 return le##len ## _to_cpu((__force __le##len)val); \
82 return be##len ## _to_cpu((__force __be##len)val); \
85 #define cpu_to_caam(len) \
86 static inline u##len cpu_to_caam##len(u##len val) \
88 if (caam_little_end) \
89 return (__force u##len)cpu_to_le##len(val); \
91 return (__force u##len)cpu_to_be##len(val); \
101 static inline void wr_reg32(void __iomem
*reg
, u32 data
)
104 iowrite32(data
, reg
);
106 iowrite32be(data
, reg
);
109 static inline u32
rd_reg32(void __iomem
*reg
)
112 return ioread32(reg
);
114 return ioread32be(reg
);
117 static inline void clrsetbits_32(void __iomem
*reg
, u32 clear
, u32 set
)
120 iowrite32((ioread32(reg
) & ~clear
) | set
, reg
);
122 iowrite32be((ioread32be(reg
) & ~clear
) | set
, reg
);
126 * The only users of these wr/rd_reg64 functions is the Job Ring (JR).
127 * The DMA address registers in the JR are handled differently depending on
130 * 1. All BE CAAM platforms and i.MX platforms (LE CAAM):
132 * base + 0x0000 : most-significant 32 bits
133 * base + 0x0004 : least-significant 32 bits
135 * The 32-bit version of this core therefore has to write to base + 0x0004
136 * to set the 32-bit wide DMA address.
138 * 2. All other LE CAAM platforms (LS1021A etc.)
139 * base + 0x0000 : least-significant 32 bits
140 * base + 0x0004 : most-significant 32 bits
142 static inline void wr_reg64(void __iomem
*reg
, u64 data
)
144 if (caam_little_end
) {
146 iowrite32(data
>> 32, (u32 __iomem
*)(reg
));
147 iowrite32(data
, (u32 __iomem
*)(reg
) + 1);
149 iowrite64(data
, reg
);
152 iowrite64be(data
, reg
);
156 static inline u64
rd_reg64(void __iomem
*reg
)
158 if (caam_little_end
) {
162 high
= ioread32(reg
);
163 low
= ioread32(reg
+ sizeof(u32
));
165 return low
+ ((u64
)high
<< 32);
167 return ioread64(reg
);
170 return ioread64be(reg
);
174 static inline u64
cpu_to_caam_dma64(dma_addr_t value
)
177 return (((u64
)cpu_to_caam32(lower_32_bits(value
)) << 32) |
178 (u64
)cpu_to_caam32(upper_32_bits(value
)));
180 return cpu_to_caam64(value
);
183 static inline u64
caam_dma64_to_cpu(u64 value
)
186 return (((u64
)caam32_to_cpu(lower_32_bits(value
)) << 32) |
187 (u64
)caam32_to_cpu(upper_32_bits(value
)));
189 return caam64_to_cpu(value
);
192 static inline u64
cpu_to_caam_dma(u64 value
)
194 if (IS_ENABLED(CONFIG_ARCH_DMA_ADDR_T_64BIT
) &&
195 caam_ptr_sz
== sizeof(u64
))
196 return cpu_to_caam_dma64(value
);
198 return cpu_to_caam32(value
);
201 static inline u64
caam_dma_to_cpu(u64 value
)
203 if (IS_ENABLED(CONFIG_ARCH_DMA_ADDR_T_64BIT
) &&
204 caam_ptr_sz
== sizeof(u64
))
205 return caam_dma64_to_cpu(value
);
207 return caam32_to_cpu(value
);
212 * Represents each entry in a JobR output ring
215 static inline void jr_outentry_get(void *outring
, int hw_idx
, dma_addr_t
*desc
,
219 if (caam_ptr_sz
== sizeof(u32
)) {
223 } __packed
*outentry
= outring
;
225 *desc
= outentry
[hw_idx
].desc
;
226 *jrstatus
= outentry
[hw_idx
].jrstatus
;
229 dma_addr_t desc
;/* Pointer to completed descriptor */
230 u32 jrstatus
; /* Status for completed descriptor */
231 } __packed
*outentry
= outring
;
233 *desc
= outentry
[hw_idx
].desc
;
234 *jrstatus
= outentry
[hw_idx
].jrstatus
;
238 #define SIZEOF_JR_OUTENTRY (caam_ptr_sz + sizeof(u32))
240 static inline dma_addr_t
jr_outentry_desc(void *outring
, int hw_idx
)
245 jr_outentry_get(outring
, hw_idx
, &desc
, &unused
);
250 static inline u32
jr_outentry_jrstatus(void *outring
, int hw_idx
)
255 jr_outentry_get(outring
, hw_idx
, &unused
, &jrstatus
);
260 static inline void jr_inpentry_set(void *inpring
, int hw_idx
, dma_addr_t val
)
262 if (caam_ptr_sz
== sizeof(u32
)) {
263 u32
*inpentry
= inpring
;
265 inpentry
[hw_idx
] = val
;
267 dma_addr_t
*inpentry
= inpring
;
269 inpentry
[hw_idx
] = val
;
273 #define SIZEOF_JR_INPENTRY caam_ptr_sz
276 /* Version registers (Era 10+) e80-eff */
277 struct version_regs
{
278 u32 crca
; /* CRCA_VERSION */
279 u32 afha
; /* AFHA_VERSION */
280 u32 kfha
; /* KFHA_VERSION */
281 u32 pkha
; /* PKHA_VERSION */
282 u32 aesa
; /* AESA_VERSION */
283 u32 mdha
; /* MDHA_VERSION */
284 u32 desa
; /* DESA_VERSION */
285 u32 snw8a
; /* SNW8A_VERSION */
286 u32 snw9a
; /* SNW9A_VERSION */
287 u32 zuce
; /* ZUCE_VERSION */
288 u32 zuca
; /* ZUCA_VERSION */
289 u32 ccha
; /* CCHA_VERSION */
290 u32 ptha
; /* PTHA_VERSION */
291 u32 rng
; /* RNG_VERSION */
292 u32 trng
; /* TRNG_VERSION */
293 u32 aaha
; /* AAHA_VERSION */
295 u32 sr
; /* SR_VERSION */
296 u32 dma
; /* DMA_VERSION */
297 u32 ai
; /* AI_VERSION */
298 u32 qi
; /* QI_VERSION */
299 u32 jr
; /* JR_VERSION */
300 u32 deco
; /* DECO_VERSION */
303 /* Version registers bitfields */
305 /* Number of CHAs instantiated */
306 #define CHA_VER_NUM_MASK 0xffull
307 /* CHA Miscellaneous Information */
308 #define CHA_VER_MISC_SHIFT 8
309 #define CHA_VER_MISC_MASK (0xffull << CHA_VER_MISC_SHIFT)
310 /* CHA Revision Number */
311 #define CHA_VER_REV_SHIFT 16
312 #define CHA_VER_REV_MASK (0xffull << CHA_VER_REV_SHIFT)
314 #define CHA_VER_VID_SHIFT 24
315 #define CHA_VER_VID_MASK (0xffull << CHA_VER_VID_SHIFT)
317 /* CHA Miscellaneous Information - AESA_MISC specific */
318 #define CHA_VER_MISC_AES_GCM BIT(1 + CHA_VER_MISC_SHIFT)
321 * caam_perfmon - Performance Monitor/Secure Memory Status/
322 * CAAM Global Status/Component Version IDs
324 * Spans f00-fff wherever instantiated
327 /* Number of DECOs */
328 #define CHA_NUM_MS_DECONUM_SHIFT 24
329 #define CHA_NUM_MS_DECONUM_MASK (0xfull << CHA_NUM_MS_DECONUM_SHIFT)
332 * CHA version IDs / instantiation bitfields (< Era 10)
333 * Defined for use with the cha_id fields in perfmon, but the same shift/mask
334 * selectors can be used to pull out the number of instantiated blocks within
335 * cha_num fields in perfmon because the locations are the same.
337 #define CHA_ID_LS_AES_SHIFT 0
338 #define CHA_ID_LS_AES_MASK (0xfull << CHA_ID_LS_AES_SHIFT)
340 #define CHA_ID_LS_DES_SHIFT 4
341 #define CHA_ID_LS_DES_MASK (0xfull << CHA_ID_LS_DES_SHIFT)
343 #define CHA_ID_LS_ARC4_SHIFT 8
344 #define CHA_ID_LS_ARC4_MASK (0xfull << CHA_ID_LS_ARC4_SHIFT)
346 #define CHA_ID_LS_MD_SHIFT 12
347 #define CHA_ID_LS_MD_MASK (0xfull << CHA_ID_LS_MD_SHIFT)
349 #define CHA_ID_LS_RNG_SHIFT 16
350 #define CHA_ID_LS_RNG_MASK (0xfull << CHA_ID_LS_RNG_SHIFT)
352 #define CHA_ID_LS_SNW8_SHIFT 20
353 #define CHA_ID_LS_SNW8_MASK (0xfull << CHA_ID_LS_SNW8_SHIFT)
355 #define CHA_ID_LS_KAS_SHIFT 24
356 #define CHA_ID_LS_KAS_MASK (0xfull << CHA_ID_LS_KAS_SHIFT)
358 #define CHA_ID_LS_PK_SHIFT 28
359 #define CHA_ID_LS_PK_MASK (0xfull << CHA_ID_LS_PK_SHIFT)
361 #define CHA_ID_MS_CRC_SHIFT 0
362 #define CHA_ID_MS_CRC_MASK (0xfull << CHA_ID_MS_CRC_SHIFT)
364 #define CHA_ID_MS_SNW9_SHIFT 4
365 #define CHA_ID_MS_SNW9_MASK (0xfull << CHA_ID_MS_SNW9_SHIFT)
367 #define CHA_ID_MS_DECO_SHIFT 24
368 #define CHA_ID_MS_DECO_MASK (0xfull << CHA_ID_MS_DECO_SHIFT)
370 #define CHA_ID_MS_JR_SHIFT 28
371 #define CHA_ID_MS_JR_MASK (0xfull << CHA_ID_MS_JR_SHIFT)
373 /* Specific CHA version IDs */
374 #define CHA_VER_VID_AES_LP 0x3ull
375 #define CHA_VER_VID_AES_HP 0x4ull
376 #define CHA_VER_VID_MD_LP256 0x0ull
377 #define CHA_VER_VID_MD_LP512 0x1ull
378 #define CHA_VER_VID_MD_HP 0x2ull
386 struct caam_perfmon
{
387 /* Performance Monitor Registers f00-f9f */
388 u64 req_dequeued
; /* PC_REQ_DEQ - Dequeued Requests */
389 u64 ob_enc_req
; /* PC_OB_ENC_REQ - Outbound Encrypt Requests */
390 u64 ib_dec_req
; /* PC_IB_DEC_REQ - Inbound Decrypt Requests */
391 u64 ob_enc_bytes
; /* PC_OB_ENCRYPT - Outbound Bytes Encrypted */
392 u64 ob_prot_bytes
; /* PC_OB_PROTECT - Outbound Bytes Protected */
393 u64 ib_dec_bytes
; /* PC_IB_DECRYPT - Inbound Bytes Decrypted */
394 u64 ib_valid_bytes
; /* PC_IB_VALIDATED Inbound Bytes Validated */
397 /* CAAM Hardware Instantiation Parameters fa0-fbf */
398 u32 cha_rev_ms
; /* CRNR - CHA Rev No. Most significant half*/
399 u32 cha_rev_ls
; /* CRNR - CHA Rev No. Least significant half*/
400 #define CTPR_MS_QI_SHIFT 25
401 #define CTPR_MS_QI_MASK (0x1ull << CTPR_MS_QI_SHIFT)
402 #define CTPR_MS_PS BIT(17)
403 #define CTPR_MS_DPAA2 BIT(13)
404 #define CTPR_MS_VIRT_EN_INCL 0x00000001
405 #define CTPR_MS_VIRT_EN_POR 0x00000002
406 #define CTPR_MS_PG_SZ_MASK 0x10
407 #define CTPR_MS_PG_SZ_SHIFT 4
408 u32 comp_parms_ms
; /* CTPR - Compile Parameters Register */
409 u32 comp_parms_ls
; /* CTPR - Compile Parameters Register */
412 /* CAAM Global Status fc0-fdf */
413 u64 faultaddr
; /* FAR - Fault Address */
414 u32 faultliodn
; /* FALR - Fault Address LIODN */
415 u32 faultdetail
; /* FADR - Fault Addr Detail */
417 #define CSTA_PLEND BIT(10)
418 #define CSTA_ALT_PLEND BIT(18)
419 u32 status
; /* CSTA - CAAM Status */
422 /* Component Instantiation Parameters fe0-fff */
423 u32 rtic_id
; /* RVID - RTIC Version ID */
424 #define CCBVID_ERA_MASK 0xff000000
425 #define CCBVID_ERA_SHIFT 24
426 u32 ccb_id
; /* CCBVID - CCB Version ID */
427 u32 cha_id_ms
; /* CHAVID - CHA Version ID Most Significant*/
428 u32 cha_id_ls
; /* CHAVID - CHA Version ID Least Significant*/
429 u32 cha_num_ms
; /* CHANUM - CHA Number Most Significant */
430 u32 cha_num_ls
; /* CHANUM - CHA Number Least Significant*/
431 #define SECVID_MS_IPID_MASK 0xffff0000
432 #define SECVID_MS_IPID_SHIFT 16
433 #define SECVID_MS_MAJ_REV_MASK 0x0000ff00
434 #define SECVID_MS_MAJ_REV_SHIFT 8
435 u32 caam_id_ms
; /* CAAMVID - CAAM Version ID MS */
436 u32 caam_id_ls
; /* CAAMVID - CAAM Version ID LS */
439 /* LIODN programming for DMA configuration */
440 #define MSTRID_LOCK_LIODN 0x80000000
441 #define MSTRID_LOCK_MAKETRUSTED 0x00010000 /* only for JR masterid */
443 #define MSTRID_LIODN_MASK 0x0fff
445 u32 liodn_ms
; /* lock and make-trusted control bits */
446 u32 liodn_ls
; /* LIODN for non-sequence and seq access */
449 /* Partition ID for DMA configuration */
452 u32 pidr
; /* partition ID, DECO */
455 /* RNGB test mode (replicated twice in some configurations) */
456 /* Padded out to 0x100 */
458 u32 mode
; /* RTSTMODEx - Test mode */
460 u32 reset
; /* RTSTRESETx - Test reset control */
462 u32 status
; /* RTSTSSTATUSx - Test status */
464 u32 errstat
; /* RTSTERRSTATx - Test error status */
466 u32 errctl
; /* RTSTERRCTLx - Test error control */
468 u32 entropy
; /* RTSTENTROPYx - Test entropy */
470 u32 verifctl
; /* RTSTVERIFCTLx - Test verification control */
472 u32 verifstat
; /* RTSTVERIFSTATx - Test verification status */
474 u32 verifdata
; /* RTSTVERIFDx - Test verification data */
476 u32 xkey
; /* RTSTXKEYx - Test XKEY */
478 u32 oscctctl
; /* RTSTOSCCTCTLx - Test osc. counter control */
480 u32 oscct
; /* RTSTOSCCTx - Test oscillator counter */
482 u32 oscctstat
; /* RTSTODCCTSTATx - Test osc counter status */
484 u32 ofifo
[4]; /* RTSTOFIFOx - Test output FIFO */
488 /* RNG4 TRNG test registers */
490 #define RTMCTL_ACC BIT(5) /* TRNG access mode */
491 #define RTMCTL_PRGM BIT(16) /* 1 -> program mode, 0 -> run mode */
492 #define RTMCTL_SAMP_MODE_VON_NEUMANN_ES_SC 0 /* use von Neumann data in
493 both entropy shifter and
494 statistical checker */
495 #define RTMCTL_SAMP_MODE_RAW_ES_SC 1 /* use raw data in both
497 statistical checker */
498 #define RTMCTL_SAMP_MODE_VON_NEUMANN_ES_RAW_SC 2 /* use von Neumann data in
499 entropy shifter, raw data
500 in statistical checker */
501 #define RTMCTL_SAMP_MODE_INVALID 3 /* invalid combination */
502 u32 rtmctl
; /* misc. control register */
503 u32 rtscmisc
; /* statistical check misc. register */
504 u32 rtpkrrng
; /* poker range register */
506 u32 rtpkrmax
; /* PRGM=1: poker max. limit register */
507 u32 rtpkrsq
; /* PRGM=0: poker square calc. result register */
509 #define RTSDCTL_ENT_DLY_SHIFT 16
510 #define RTSDCTL_ENT_DLY_MASK (0xffff << RTSDCTL_ENT_DLY_SHIFT)
511 #define RTSDCTL_ENT_DLY_MIN 3200
512 #define RTSDCTL_ENT_DLY_MAX 12800
513 u32 rtsdctl
; /* seed control register */
515 u32 rtsblim
; /* PRGM=1: sparse bit limit register */
516 u32 rttotsam
; /* PRGM=0: total samples register */
518 u32 rtfrqmin
; /* frequency count min. limit register */
519 #define RTFRQMAX_DISABLE (1 << 20)
521 u32 rtfrqmax
; /* PRGM=1: freq. count max. limit register */
522 u32 rtfrqcnt
; /* PRGM=0: freq. count register */
525 #define RDSTA_SKVT 0x80000000
526 #define RDSTA_SKVN 0x40000000
527 #define RDSTA_PR0 BIT(4)
528 #define RDSTA_PR1 BIT(5)
529 #define RDSTA_IF0 0x00000001
530 #define RDSTA_IF1 0x00000002
531 #define RDSTA_MASK (RDSTA_PR1 | RDSTA_PR0 | RDSTA_IF1 | RDSTA_IF0)
537 * caam_ctrl - basic core configuration
538 * starts base + 0x0000 padded out to 0x1000
541 #define KEK_KEY_SIZE 8
542 #define TKEK_KEY_SIZE 8
543 #define TDSK_KEY_SIZE 8
545 #define DECO_RESET 1 /* Use with DECO reset/availability regs */
546 #define DECO_RESET_0 (DECO_RESET << 0)
547 #define DECO_RESET_1 (DECO_RESET << 1)
548 #define DECO_RESET_2 (DECO_RESET << 2)
549 #define DECO_RESET_3 (DECO_RESET << 3)
550 #define DECO_RESET_4 (DECO_RESET << 4)
553 /* Basic Configuration Section 000-01f */
556 u32 mcr
; /* MCFG Master Config Register */
558 u32 scfgr
; /* SCFGR, Security Config Register */
560 /* Bus Access Configuration Section 010-11f */
562 struct masterid jr_mid
[4]; /* JRxLIODNR - JobR LIODN setup */
564 u32 jrstart
; /* JRSTART - Job Ring Start Register */
565 struct masterid rtic_mid
[4]; /* RTICxLIODNR - RTIC LIODN setup */
567 u32 deco_rsr
; /* DECORSR - Deco Request Source */
569 u32 deco_rq
; /* DECORR - DECO Request */
570 struct partid deco_mid
[5]; /* DECOxLIODNR - 1 per DECO */
573 /* DECO Availability/Reset Section 120-3ff */
574 u32 deco_avail
; /* DAR - DECO availability */
575 u32 deco_reset
; /* DRR - DECO reset */
578 /* Key Encryption/Decryption Configuration 400-5ff */
579 /* Read/Writable only while in Non-secure mode */
580 u32 kek
[KEK_KEY_SIZE
]; /* JDKEKR - Key Encryption Key */
581 u32 tkek
[TKEK_KEY_SIZE
]; /* TDKEKR - Trusted Desc KEK */
582 u32 tdsk
[TDSK_KEY_SIZE
]; /* TDSKR - Trusted Desc Signing Key */
584 u64 sknonce
; /* SKNR - Secure Key Nonce */
587 /* RNG Test/Verification/Debug Access 600-7ff */
588 /* (Useful in Test/Debug modes only...) */
590 struct rngtst rtst
[2];
591 struct rng4tst r4tst
[2];
596 /* Version registers - introduced with era 10 e80-eff */
597 struct version_regs vreg
;
598 /* Performance Monitor f00-fff */
599 struct caam_perfmon perfmon
;
603 * Controller master config register defs
605 #define MCFGR_SWRESET 0x80000000 /* software reset */
606 #define MCFGR_WDENABLE 0x40000000 /* DECO watchdog enable */
607 #define MCFGR_WDFAIL 0x20000000 /* DECO watchdog force-fail */
608 #define MCFGR_DMA_RESET 0x10000000
609 #define MCFGR_LONG_PTR 0x00010000 /* Use >32-bit desc addressing */
610 #define SCFGR_RDBENABLE 0x00000400
611 #define SCFGR_VIRT_EN 0x00008000
612 #define DECORR_RQD0ENABLE 0x00000001 /* Enable DECO0 for direct access */
613 #define DECORSR_JR0 0x00000001 /* JR to supply TZ, SDID, ICID */
614 #define DECORSR_VALID 0x80000000
615 #define DECORR_DEN0 0x00010000 /* DECO0 available for access*/
617 /* AXI read cache control */
618 #define MCFGR_ARCACHE_SHIFT 12
619 #define MCFGR_ARCACHE_MASK (0xf << MCFGR_ARCACHE_SHIFT)
620 #define MCFGR_ARCACHE_BUFF (0x1 << MCFGR_ARCACHE_SHIFT)
621 #define MCFGR_ARCACHE_CACH (0x2 << MCFGR_ARCACHE_SHIFT)
622 #define MCFGR_ARCACHE_RALL (0x4 << MCFGR_ARCACHE_SHIFT)
624 /* AXI write cache control */
625 #define MCFGR_AWCACHE_SHIFT 8
626 #define MCFGR_AWCACHE_MASK (0xf << MCFGR_AWCACHE_SHIFT)
627 #define MCFGR_AWCACHE_BUFF (0x1 << MCFGR_AWCACHE_SHIFT)
628 #define MCFGR_AWCACHE_CACH (0x2 << MCFGR_AWCACHE_SHIFT)
629 #define MCFGR_AWCACHE_WALL (0x8 << MCFGR_AWCACHE_SHIFT)
631 /* AXI pipeline depth */
632 #define MCFGR_AXIPIPE_SHIFT 4
633 #define MCFGR_AXIPIPE_MASK (0xf << MCFGR_AXIPIPE_SHIFT)
635 #define MCFGR_AXIPRI 0x00000008 /* Assert AXI priority sideband */
636 #define MCFGR_LARGE_BURST 0x00000004 /* 128/256-byte burst size */
637 #define MCFGR_BURST_64 0x00000001 /* 64-byte burst size */
639 /* JRSTART register offsets */
640 #define JRSTART_JR0_START 0x00000001 /* Start Job ring 0 */
641 #define JRSTART_JR1_START 0x00000002 /* Start Job ring 1 */
642 #define JRSTART_JR2_START 0x00000004 /* Start Job ring 2 */
643 #define JRSTART_JR3_START 0x00000008 /* Start Job ring 3 */
646 * caam_job_ring - direct job ring setup
647 * 1-4 possible per instantiation, base + 1000/2000/3000/4000
648 * Padded out to 0x1000
650 struct caam_job_ring
{
652 u64 inpring_base
; /* IRBAx - Input desc ring baseaddr */
654 u32 inpring_size
; /* IRSx - Input ring size */
656 u32 inpring_avail
; /* IRSAx - Input ring room remaining */
658 u32 inpring_jobadd
; /* IRJAx - Input ring jobs added */
661 u64 outring_base
; /* ORBAx - Output status ring base addr */
663 u32 outring_size
; /* ORSx - Output ring size */
665 u32 outring_rmvd
; /* ORJRx - Output ring jobs removed */
667 u32 outring_used
; /* ORSFx - Output ring slots full */
669 /* Status/Configuration */
671 u32 jroutstatus
; /* JRSTAx - JobR output status */
673 u32 jrintstatus
; /* JRINTx - JobR interrupt status */
674 u32 rconfig_hi
; /* JRxCFG - Ring configuration */
677 /* Indices. CAAM maintains as "heads" of each queue */
679 u32 inp_rdidx
; /* IRRIx - Input ring read index */
681 u32 out_wtidx
; /* ORWIx - Output ring write index */
683 /* Command/control */
685 u32 jrcommand
; /* JRCRx - JobR command */
689 /* Version registers - introduced with era 10 e80-eff */
690 struct version_regs vreg
;
691 /* Performance Monitor f00-fff */
692 struct caam_perfmon perfmon
;
695 #define JR_RINGSIZE_MASK 0x03ff
697 * jrstatus - Job Ring Output Status
698 * All values in lo word
699 * Also note, same values written out as status through QI
700 * in the command/status field of a frame descriptor
702 #define JRSTA_SSRC_SHIFT 28
703 #define JRSTA_SSRC_MASK 0xf0000000
705 #define JRSTA_SSRC_NONE 0x00000000
706 #define JRSTA_SSRC_CCB_ERROR 0x20000000
707 #define JRSTA_SSRC_JUMP_HALT_USER 0x30000000
708 #define JRSTA_SSRC_DECO 0x40000000
709 #define JRSTA_SSRC_QI 0x50000000
710 #define JRSTA_SSRC_JRERROR 0x60000000
711 #define JRSTA_SSRC_JUMP_HALT_CC 0x70000000
713 #define JRSTA_DECOERR_JUMP 0x08000000
714 #define JRSTA_DECOERR_INDEX_SHIFT 8
715 #define JRSTA_DECOERR_INDEX_MASK 0xff00
716 #define JRSTA_DECOERR_ERROR_MASK 0x00ff
718 #define JRSTA_DECOERR_NONE 0x00
719 #define JRSTA_DECOERR_LINKLEN 0x01
720 #define JRSTA_DECOERR_LINKPTR 0x02
721 #define JRSTA_DECOERR_JRCTRL 0x03
722 #define JRSTA_DECOERR_DESCCMD 0x04
723 #define JRSTA_DECOERR_ORDER 0x05
724 #define JRSTA_DECOERR_KEYCMD 0x06
725 #define JRSTA_DECOERR_LOADCMD 0x07
726 #define JRSTA_DECOERR_STORECMD 0x08
727 #define JRSTA_DECOERR_OPCMD 0x09
728 #define JRSTA_DECOERR_FIFOLDCMD 0x0a
729 #define JRSTA_DECOERR_FIFOSTCMD 0x0b
730 #define JRSTA_DECOERR_MOVECMD 0x0c
731 #define JRSTA_DECOERR_JUMPCMD 0x0d
732 #define JRSTA_DECOERR_MATHCMD 0x0e
733 #define JRSTA_DECOERR_SHASHCMD 0x0f
734 #define JRSTA_DECOERR_SEQCMD 0x10
735 #define JRSTA_DECOERR_DECOINTERNAL 0x11
736 #define JRSTA_DECOERR_SHDESCHDR 0x12
737 #define JRSTA_DECOERR_HDRLEN 0x13
738 #define JRSTA_DECOERR_BURSTER 0x14
739 #define JRSTA_DECOERR_DESCSIGNATURE 0x15
740 #define JRSTA_DECOERR_DMA 0x16
741 #define JRSTA_DECOERR_BURSTFIFO 0x17
742 #define JRSTA_DECOERR_JRRESET 0x1a
743 #define JRSTA_DECOERR_JOBFAIL 0x1b
744 #define JRSTA_DECOERR_DNRERR 0x80
745 #define JRSTA_DECOERR_UNDEFPCL 0x81
746 #define JRSTA_DECOERR_PDBERR 0x82
747 #define JRSTA_DECOERR_ANRPLY_LATE 0x83
748 #define JRSTA_DECOERR_ANRPLY_REPLAY 0x84
749 #define JRSTA_DECOERR_SEQOVF 0x85
750 #define JRSTA_DECOERR_INVSIGN 0x86
751 #define JRSTA_DECOERR_DSASIGN 0x87
753 #define JRSTA_QIERR_ERROR_MASK 0x00ff
755 #define JRSTA_CCBERR_JUMP 0x08000000
756 #define JRSTA_CCBERR_INDEX_MASK 0xff00
757 #define JRSTA_CCBERR_INDEX_SHIFT 8
758 #define JRSTA_CCBERR_CHAID_MASK 0x00f0
759 #define JRSTA_CCBERR_CHAID_SHIFT 4
760 #define JRSTA_CCBERR_ERRID_MASK 0x000f
762 #define JRSTA_CCBERR_CHAID_AES (0x01 << JRSTA_CCBERR_CHAID_SHIFT)
763 #define JRSTA_CCBERR_CHAID_DES (0x02 << JRSTA_CCBERR_CHAID_SHIFT)
764 #define JRSTA_CCBERR_CHAID_ARC4 (0x03 << JRSTA_CCBERR_CHAID_SHIFT)
765 #define JRSTA_CCBERR_CHAID_MD (0x04 << JRSTA_CCBERR_CHAID_SHIFT)
766 #define JRSTA_CCBERR_CHAID_RNG (0x05 << JRSTA_CCBERR_CHAID_SHIFT)
767 #define JRSTA_CCBERR_CHAID_SNOW (0x06 << JRSTA_CCBERR_CHAID_SHIFT)
768 #define JRSTA_CCBERR_CHAID_KASUMI (0x07 << JRSTA_CCBERR_CHAID_SHIFT)
769 #define JRSTA_CCBERR_CHAID_PK (0x08 << JRSTA_CCBERR_CHAID_SHIFT)
770 #define JRSTA_CCBERR_CHAID_CRC (0x09 << JRSTA_CCBERR_CHAID_SHIFT)
772 #define JRSTA_CCBERR_ERRID_NONE 0x00
773 #define JRSTA_CCBERR_ERRID_MODE 0x01
774 #define JRSTA_CCBERR_ERRID_DATASIZ 0x02
775 #define JRSTA_CCBERR_ERRID_KEYSIZ 0x03
776 #define JRSTA_CCBERR_ERRID_PKAMEMSZ 0x04
777 #define JRSTA_CCBERR_ERRID_PKBMEMSZ 0x05
778 #define JRSTA_CCBERR_ERRID_SEQUENCE 0x06
779 #define JRSTA_CCBERR_ERRID_PKDIVZRO 0x07
780 #define JRSTA_CCBERR_ERRID_PKMODEVN 0x08
781 #define JRSTA_CCBERR_ERRID_KEYPARIT 0x09
782 #define JRSTA_CCBERR_ERRID_ICVCHK 0x0a
783 #define JRSTA_CCBERR_ERRID_HARDWARE 0x0b
784 #define JRSTA_CCBERR_ERRID_CCMAAD 0x0c
785 #define JRSTA_CCBERR_ERRID_INVCHA 0x0f
787 #define JRINT_ERR_INDEX_MASK 0x3fff0000
788 #define JRINT_ERR_INDEX_SHIFT 16
789 #define JRINT_ERR_TYPE_MASK 0xf00
790 #define JRINT_ERR_TYPE_SHIFT 8
791 #define JRINT_ERR_HALT_MASK 0xc
792 #define JRINT_ERR_HALT_SHIFT 2
793 #define JRINT_ERR_HALT_INPROGRESS 0x4
794 #define JRINT_ERR_HALT_COMPLETE 0x8
795 #define JRINT_JR_ERROR 0x02
796 #define JRINT_JR_INT 0x01
798 #define JRINT_ERR_TYPE_WRITE 1
799 #define JRINT_ERR_TYPE_BAD_INPADDR 3
800 #define JRINT_ERR_TYPE_BAD_OUTADDR 4
801 #define JRINT_ERR_TYPE_INV_INPWRT 5
802 #define JRINT_ERR_TYPE_INV_OUTWRT 6
803 #define JRINT_ERR_TYPE_RESET 7
804 #define JRINT_ERR_TYPE_REMOVE_OFL 8
805 #define JRINT_ERR_TYPE_ADD_OFL 9
807 #define JRCFG_SOE 0x04
808 #define JRCFG_ICEN 0x02
809 #define JRCFG_IMSK 0x01
810 #define JRCFG_ICDCT_SHIFT 8
811 #define JRCFG_ICTT_SHIFT 16
813 #define JRCR_RESET 0x01
816 * caam_assurance - Assurance Controller View
817 * base + 0x6000 padded out to 0x1000
820 struct rtic_element
{
827 struct rtic_element element
[2];
830 struct rtic_memhash
{
835 struct caam_assurance
{
836 /* Status/Command/Watchdog */
838 u32 status
; /* RSTA - Status */
840 u32 cmd
; /* RCMD - Command */
842 u32 ctrl
; /* RCTL - Control */
844 u32 throttle
; /* RTHR - Throttle */
846 u64 watchdog
; /* RWDOG - Watchdog Timer */
848 u32 rend
; /* REND - Endian corrections */
851 /* Block access/configuration @ 100/110/120/130 */
852 struct rtic_block memblk
[4]; /* Memory Blocks A-D */
855 /* Block hashes @ 200/300/400/500 */
856 struct rtic_memhash hash
[4]; /* Block hash values A-D */
861 * caam_queue_if - QI configuration and control
862 * starts base + 0x7000, padded out to 0x1000 long
865 struct caam_queue_if
{
866 u32 qi_control_hi
; /* QICTL - QI Control */
869 u32 qi_status
; /* QISTA - QI Status */
870 u32 qi_deq_cfg_hi
; /* QIDQC - QI Dequeue Configuration */
872 u32 qi_enq_cfg_hi
; /* QISEQC - QI Enqueue Command */
877 /* QI control bits - low word */
878 #define QICTL_DQEN 0x01 /* Enable frame pop */
879 #define QICTL_STOP 0x02 /* Stop dequeue/enqueue */
880 #define QICTL_SOE 0x04 /* Stop on error */
882 /* QI control bits - high word */
883 #define QICTL_MBSI 0x01
884 #define QICTL_MHWSI 0x02
885 #define QICTL_MWSI 0x04
886 #define QICTL_MDWSI 0x08
887 #define QICTL_CBSI 0x10 /* CtrlDataByteSwapInput */
888 #define QICTL_CHWSI 0x20 /* CtrlDataHalfSwapInput */
889 #define QICTL_CWSI 0x40 /* CtrlDataWordSwapInput */
890 #define QICTL_CDWSI 0x80 /* CtrlDataDWordSwapInput */
891 #define QICTL_MBSO 0x0100
892 #define QICTL_MHWSO 0x0200
893 #define QICTL_MWSO 0x0400
894 #define QICTL_MDWSO 0x0800
895 #define QICTL_CBSO 0x1000 /* CtrlDataByteSwapOutput */
896 #define QICTL_CHWSO 0x2000 /* CtrlDataHalfSwapOutput */
897 #define QICTL_CWSO 0x4000 /* CtrlDataWordSwapOutput */
898 #define QICTL_CDWSO 0x8000 /* CtrlDataDWordSwapOutput */
899 #define QICTL_DMBS 0x010000
900 #define QICTL_EPO 0x020000
903 #define QISTA_PHRDERR 0x01 /* PreHeader Read Error */
904 #define QISTA_CFRDERR 0x02 /* Compound Frame Read Error */
905 #define QISTA_OFWRERR 0x04 /* Output Frame Read Error */
906 #define QISTA_BPDERR 0x08 /* Buffer Pool Depleted */
907 #define QISTA_BTSERR 0x10 /* Buffer Undersize */
908 #define QISTA_CFWRERR 0x20 /* Compound Frame Write Err */
909 #define QISTA_STOPD 0x80000000 /* QI Stopped (see QICTL) */
911 /* deco_sg_table - DECO view of scatter/gather table */
912 struct deco_sg_table
{
913 u64 addr
; /* Segment Address */
914 u32 elen
; /* E, F bits + 30-bit length */
915 u32 bpid_offset
; /* Buffer Pool ID + 16-bit length */
919 * caam_deco - descriptor controller - CHA cluster block
921 * Only accessible when direct DECO access is turned on
922 * (done in DECORR, via MID programmed in DECOxMID
924 * 5 typical, base + 0x8000/9000/a000/b000
925 * Padded out to 0x1000 long
929 u32 cls1_mode
; /* CxC1MR - Class 1 Mode */
931 u32 cls1_keysize
; /* CxC1KSR - Class 1 Key Size */
932 u32 cls1_datasize_hi
; /* CxC1DSR - Class 1 Data Size */
933 u32 cls1_datasize_lo
;
935 u32 cls1_icvsize
; /* CxC1ICVSR - Class 1 ICV size */
937 u32 cha_ctrl
; /* CCTLR - CHA control */
939 u32 irq_crtl
; /* CxCIRQ - CCB interrupt done/error/clear */
941 u32 clr_written
; /* CxCWR - Clear-Written */
942 u32 ccb_status_hi
; /* CxCSTA - CCB Status/Error */
945 u32 aad_size
; /* CxAADSZR - Current AAD Size */
947 u32 cls1_iv_size
; /* CxC1IVSZR - Current Class 1 IV Size */
949 u32 pkha_a_size
; /* PKASZRx - Size of PKHA A */
951 u32 pkha_b_size
; /* PKBSZRx - Size of PKHA B */
953 u32 pkha_n_size
; /* PKNSZRx - Size of PKHA N */
955 u32 pkha_e_size
; /* PKESZRx - Size of PKHA E */
957 u32 cls1_ctx
[16]; /* CxC1CTXR - Class 1 Context @100 */
959 u32 cls1_key
[8]; /* CxC1KEYR - Class 1 Key @200 */
961 u32 cls2_mode
; /* CxC2MR - Class 2 Mode */
963 u32 cls2_keysize
; /* CxX2KSR - Class 2 Key Size */
964 u32 cls2_datasize_hi
; /* CxC2DSR - Class 2 Data Size */
965 u32 cls2_datasize_lo
;
967 u32 cls2_icvsize
; /* CxC2ICVSZR - Class 2 ICV Size */
969 u32 cls2_ctx
[18]; /* CxC2CTXR - Class 2 Context @500 */
971 u32 cls2_key
[32]; /* CxC2KEYR - Class2 Key @600 */
973 u32 inp_infofifo_hi
; /* CxIFIFO - Input Info FIFO @7d0 */
976 u64 inp_datafifo
; /* CxDFIFO - Input Data FIFO */
978 u64 out_datafifo
; /* CxOFIFO - Output Data FIFO */
980 u32 jr_ctl_hi
; /* CxJRR - JobR Control Register @800 */
982 u64 jr_descaddr
; /* CxDADR - JobR Descriptor Address */
983 #define DECO_OP_STATUS_HI_ERR_MASK 0xF00000FF
984 u32 op_status_hi
; /* DxOPSTA - DECO Operation Status */
987 u32 liodn
; /* DxLSR - DECO LIODN Status - non-seq */
988 u32 td_liodn
; /* DxLSR - DECO LIODN Status - trustdesc */
990 u64 math
[4]; /* DxMTH - Math register */
992 struct deco_sg_table gthr_tbl
[4]; /* DxGTR - Gather Tables */
994 struct deco_sg_table sctr_tbl
[4]; /* DxSTR - Scatter Tables */
996 u32 descbuf
[64]; /* DxDESB - Descriptor buffer */
998 #define DESC_DBG_DECO_STAT_VALID 0x80000000
999 #define DESC_DBG_DECO_STAT_MASK 0x00F00000
1000 #define DESC_DBG_DECO_STAT_SHIFT 20
1001 u32 desc_dbg
; /* DxDDR - DECO Debug Register */
1003 #define DESC_DER_DECO_STAT_MASK 0x000F0000
1004 #define DESC_DER_DECO_STAT_SHIFT 16
1005 u32 dbg_exec
; /* DxDER - DECO Debug Exec Register */
1009 #define DECO_STAT_HOST_ERR 0xD
1011 #define DECO_JQCR_WHL 0x20000000
1012 #define DECO_JQCR_FOUR 0x10000000
1014 #define JR_BLOCK_NUMBER 1
1015 #define ASSURE_BLOCK_NUMBER 6
1016 #define QI_BLOCK_NUMBER 7
1017 #define DECO_BLOCK_NUMBER 8
1018 #define PG_SIZE_4K 0x1000
1019 #define PG_SIZE_64K 0x10000