blob: e67e3f17eb014e1875d5f23bcccbcb97a6b7b0c4 [file] [log] [blame]
Boris BREZILLONf63601f2015-06-18 15:46:20 +02001#ifndef __MARVELL_CESA_H__
2#define __MARVELL_CESA_H__
3
4#include <crypto/algapi.h>
5#include <crypto/hash.h>
6#include <crypto/internal/hash.h>
7
8#include <linux/crypto.h>
Boris BREZILLONdb509a42015-06-18 15:46:21 +02009#include <linux/dmapool.h>
Boris BREZILLONf63601f2015-06-18 15:46:20 +020010
11#define CESA_ENGINE_OFF(i) (((i) * 0x2000))
12
13#define CESA_TDMA_BYTE_CNT 0x800
14#define CESA_TDMA_SRC_ADDR 0x810
15#define CESA_TDMA_DST_ADDR 0x820
16#define CESA_TDMA_NEXT_ADDR 0x830
17
18#define CESA_TDMA_CONTROL 0x840
19#define CESA_TDMA_DST_BURST GENMASK(2, 0)
20#define CESA_TDMA_DST_BURST_32B 3
21#define CESA_TDMA_DST_BURST_128B 4
22#define CESA_TDMA_OUT_RD_EN BIT(4)
23#define CESA_TDMA_SRC_BURST GENMASK(8, 6)
24#define CESA_TDMA_SRC_BURST_32B (3 << 6)
25#define CESA_TDMA_SRC_BURST_128B (4 << 6)
26#define CESA_TDMA_CHAIN BIT(9)
27#define CESA_TDMA_BYTE_SWAP BIT(11)
28#define CESA_TDMA_NO_BYTE_SWAP BIT(11)
29#define CESA_TDMA_EN BIT(12)
30#define CESA_TDMA_FETCH_ND BIT(13)
31#define CESA_TDMA_ACT BIT(14)
32
33#define CESA_TDMA_CUR 0x870
34#define CESA_TDMA_ERROR_CAUSE 0x8c8
35#define CESA_TDMA_ERROR_MSK 0x8cc
36
37#define CESA_TDMA_WINDOW_BASE(x) (((x) * 0x8) + 0xa00)
38#define CESA_TDMA_WINDOW_CTRL(x) (((x) * 0x8) + 0xa04)
39
40#define CESA_IVDIG(x) (0xdd00 + ((x) * 4) + \
41 (((x) < 5) ? 0 : 0x14))
42
43#define CESA_SA_CMD 0xde00
44#define CESA_SA_CMD_EN_CESA_SA_ACCL0 BIT(0)
45#define CESA_SA_CMD_EN_CESA_SA_ACCL1 BIT(1)
46#define CESA_SA_CMD_DISABLE_SEC BIT(2)
47
48#define CESA_SA_DESC_P0 0xde04
49
50#define CESA_SA_DESC_P1 0xde14
51
52#define CESA_SA_CFG 0xde08
53#define CESA_SA_CFG_STOP_DIG_ERR GENMASK(1, 0)
54#define CESA_SA_CFG_DIG_ERR_CONT 0
55#define CESA_SA_CFG_DIG_ERR_SKIP 1
56#define CESA_SA_CFG_DIG_ERR_STOP 3
57#define CESA_SA_CFG_CH0_W_IDMA BIT(7)
58#define CESA_SA_CFG_CH1_W_IDMA BIT(8)
59#define CESA_SA_CFG_ACT_CH0_IDMA BIT(9)
60#define CESA_SA_CFG_ACT_CH1_IDMA BIT(10)
61#define CESA_SA_CFG_MULTI_PKT BIT(11)
62#define CESA_SA_CFG_PARA_DIS BIT(13)
63
64#define CESA_SA_ACCEL_STATUS 0xde0c
65#define CESA_SA_ST_ACT_0 BIT(0)
66#define CESA_SA_ST_ACT_1 BIT(1)
67
68/*
69 * CESA_SA_FPGA_INT_STATUS looks like a FPGA leftover and is documented only
70 * in Errata 4.12. It looks like that it was part of an IRQ-controller in FPGA
71 * and someone forgot to remove it while switching to the core and moving to
72 * CESA_SA_INT_STATUS.
73 */
74#define CESA_SA_FPGA_INT_STATUS 0xdd68
75#define CESA_SA_INT_STATUS 0xde20
76#define CESA_SA_INT_AUTH_DONE BIT(0)
77#define CESA_SA_INT_DES_E_DONE BIT(1)
78#define CESA_SA_INT_AES_E_DONE BIT(2)
79#define CESA_SA_INT_AES_D_DONE BIT(3)
80#define CESA_SA_INT_ENC_DONE BIT(4)
81#define CESA_SA_INT_ACCEL0_DONE BIT(5)
82#define CESA_SA_INT_ACCEL1_DONE BIT(6)
83#define CESA_SA_INT_ACC0_IDMA_DONE BIT(7)
84#define CESA_SA_INT_ACC1_IDMA_DONE BIT(8)
85#define CESA_SA_INT_IDMA_DONE BIT(9)
86#define CESA_SA_INT_IDMA_OWN_ERR BIT(10)
87
88#define CESA_SA_INT_MSK 0xde24
89
90#define CESA_SA_DESC_CFG_OP_MAC_ONLY 0
91#define CESA_SA_DESC_CFG_OP_CRYPT_ONLY 1
92#define CESA_SA_DESC_CFG_OP_MAC_CRYPT 2
93#define CESA_SA_DESC_CFG_OP_CRYPT_MAC 3
94#define CESA_SA_DESC_CFG_OP_MSK GENMASK(1, 0)
95#define CESA_SA_DESC_CFG_MACM_SHA256 (1 << 4)
96#define CESA_SA_DESC_CFG_MACM_HMAC_SHA256 (3 << 4)
97#define CESA_SA_DESC_CFG_MACM_MD5 (4 << 4)
98#define CESA_SA_DESC_CFG_MACM_SHA1 (5 << 4)
99#define CESA_SA_DESC_CFG_MACM_HMAC_MD5 (6 << 4)
100#define CESA_SA_DESC_CFG_MACM_HMAC_SHA1 (7 << 4)
101#define CESA_SA_DESC_CFG_MACM_MSK GENMASK(6, 4)
102#define CESA_SA_DESC_CFG_CRYPTM_DES (1 << 8)
103#define CESA_SA_DESC_CFG_CRYPTM_3DES (2 << 8)
104#define CESA_SA_DESC_CFG_CRYPTM_AES (3 << 8)
105#define CESA_SA_DESC_CFG_CRYPTM_MSK GENMASK(9, 8)
106#define CESA_SA_DESC_CFG_DIR_ENC (0 << 12)
107#define CESA_SA_DESC_CFG_DIR_DEC (1 << 12)
108#define CESA_SA_DESC_CFG_CRYPTCM_ECB (0 << 16)
109#define CESA_SA_DESC_CFG_CRYPTCM_CBC (1 << 16)
110#define CESA_SA_DESC_CFG_CRYPTCM_MSK BIT(16)
111#define CESA_SA_DESC_CFG_3DES_EEE (0 << 20)
112#define CESA_SA_DESC_CFG_3DES_EDE (1 << 20)
113#define CESA_SA_DESC_CFG_AES_LEN_128 (0 << 24)
114#define CESA_SA_DESC_CFG_AES_LEN_192 (1 << 24)
115#define CESA_SA_DESC_CFG_AES_LEN_256 (2 << 24)
116#define CESA_SA_DESC_CFG_AES_LEN_MSK GENMASK(25, 24)
117#define CESA_SA_DESC_CFG_NOT_FRAG (0 << 30)
118#define CESA_SA_DESC_CFG_FIRST_FRAG (1 << 30)
119#define CESA_SA_DESC_CFG_LAST_FRAG (2 << 30)
120#define CESA_SA_DESC_CFG_MID_FRAG (3 << 30)
121#define CESA_SA_DESC_CFG_FRAG_MSK GENMASK(31, 30)
122
123/*
124 * /-----------\ 0
125 * | ACCEL CFG | 4 * 8
126 * |-----------| 0x20
127 * | CRYPT KEY | 8 * 4
128 * |-----------| 0x40
129 * | IV IN | 4 * 4
130 * |-----------| 0x40 (inplace)
131 * | IV BUF | 4 * 4
132 * |-----------| 0x80
133 * | DATA IN | 16 * x (max ->max_req_size)
134 * |-----------| 0x80 (inplace operation)
135 * | DATA OUT | 16 * x (max ->max_req_size)
136 * \-----------/ SRAM size
137 */
138
139/*
140 * Hashing memory map:
141 * /-----------\ 0
142 * | ACCEL CFG | 4 * 8
143 * |-----------| 0x20
144 * | Inner IV | 8 * 4
145 * |-----------| 0x40
146 * | Outer IV | 8 * 4
147 * |-----------| 0x60
148 * | Output BUF| 8 * 4
149 * |-----------| 0x80
150 * | DATA IN | 64 * x (max ->max_req_size)
151 * \-----------/ SRAM size
152 */
153
154#define CESA_SA_CFG_SRAM_OFFSET 0x00
155#define CESA_SA_DATA_SRAM_OFFSET 0x80
156
157#define CESA_SA_CRYPT_KEY_SRAM_OFFSET 0x20
158#define CESA_SA_CRYPT_IV_SRAM_OFFSET 0x40
159
160#define CESA_SA_MAC_IIV_SRAM_OFFSET 0x20
161#define CESA_SA_MAC_OIV_SRAM_OFFSET 0x40
162#define CESA_SA_MAC_DIG_SRAM_OFFSET 0x60
163
164#define CESA_SA_DESC_CRYPT_DATA(offset) \
165 cpu_to_le32((CESA_SA_DATA_SRAM_OFFSET + (offset)) | \
166 ((CESA_SA_DATA_SRAM_OFFSET + (offset)) << 16))
167
168#define CESA_SA_DESC_CRYPT_IV(offset) \
169 cpu_to_le32((CESA_SA_CRYPT_IV_SRAM_OFFSET + (offset)) | \
170 ((CESA_SA_CRYPT_IV_SRAM_OFFSET + (offset)) << 16))
171
172#define CESA_SA_DESC_CRYPT_KEY(offset) \
173 cpu_to_le32(CESA_SA_CRYPT_KEY_SRAM_OFFSET + (offset))
174
175#define CESA_SA_DESC_MAC_DATA(offset) \
176 cpu_to_le32(CESA_SA_DATA_SRAM_OFFSET + (offset))
Russell King6de59d42015-10-18 18:31:26 +0100177#define CESA_SA_DESC_MAC_DATA_MSK cpu_to_le32(GENMASK(15, 0))
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200178
179#define CESA_SA_DESC_MAC_TOTAL_LEN(total_len) cpu_to_le32((total_len) << 16)
Russell King6de59d42015-10-18 18:31:26 +0100180#define CESA_SA_DESC_MAC_TOTAL_LEN_MSK cpu_to_le32(GENMASK(31, 16))
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200181
182#define CESA_SA_DESC_MAC_SRC_TOTAL_LEN_MAX 0xffff
183
184#define CESA_SA_DESC_MAC_DIGEST(offset) \
185 cpu_to_le32(CESA_SA_MAC_DIG_SRAM_OFFSET + (offset))
Russell King6de59d42015-10-18 18:31:26 +0100186#define CESA_SA_DESC_MAC_DIGEST_MSK cpu_to_le32(GENMASK(15, 0))
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200187
188#define CESA_SA_DESC_MAC_FRAG_LEN(frag_len) cpu_to_le32((frag_len) << 16)
Russell King6de59d42015-10-18 18:31:26 +0100189#define CESA_SA_DESC_MAC_FRAG_LEN_MSK cpu_to_le32(GENMASK(31, 16))
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200190
191#define CESA_SA_DESC_MAC_IV(offset) \
192 cpu_to_le32((CESA_SA_MAC_IIV_SRAM_OFFSET + (offset)) | \
193 ((CESA_SA_MAC_OIV_SRAM_OFFSET + (offset)) << 16))
194
195#define CESA_SA_SRAM_SIZE 2048
196#define CESA_SA_SRAM_PAYLOAD_SIZE (cesa_dev->sram_size - \
197 CESA_SA_DATA_SRAM_OFFSET)
198
199#define CESA_SA_DEFAULT_SRAM_SIZE 2048
200#define CESA_SA_MIN_SRAM_SIZE 1024
201
202#define CESA_SA_SRAM_MSK (2048 - 1)
203
204#define CESA_MAX_HASH_BLOCK_SIZE 64
205#define CESA_HASH_BLOCK_SIZE_MSK (CESA_MAX_HASH_BLOCK_SIZE - 1)
206
207/**
208 * struct mv_cesa_sec_accel_desc - security accelerator descriptor
209 * @config: engine config
210 * @enc_p: input and output data pointers for a cipher operation
211 * @enc_len: cipher operation length
212 * @enc_key_p: cipher key pointer
213 * @enc_iv: cipher IV pointers
214 * @mac_src_p: input pointer and total hash length
215 * @mac_digest: digest pointer and hash operation length
216 * @mac_iv: hmac IV pointers
217 *
218 * Structure passed to the CESA engine to describe the crypto operation
219 * to be executed.
220 */
221struct mv_cesa_sec_accel_desc {
Russell King6de59d42015-10-18 18:31:26 +0100222 __le32 config;
223 __le32 enc_p;
224 __le32 enc_len;
225 __le32 enc_key_p;
226 __le32 enc_iv;
227 __le32 mac_src_p;
228 __le32 mac_digest;
229 __le32 mac_iv;
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200230};
231
232/**
233 * struct mv_cesa_blkcipher_op_ctx - cipher operation context
234 * @key: cipher key
235 * @iv: cipher IV
236 *
237 * Context associated to a cipher operation.
238 */
239struct mv_cesa_blkcipher_op_ctx {
240 u32 key[8];
241 u32 iv[4];
242};
243
244/**
245 * struct mv_cesa_hash_op_ctx - hash or hmac operation context
246 * @key: cipher key
247 * @iv: cipher IV
248 *
249 * Context associated to an hash or hmac operation.
250 */
251struct mv_cesa_hash_op_ctx {
252 u32 iv[16];
253 u32 hash[8];
254};
255
256/**
257 * struct mv_cesa_op_ctx - crypto operation context
258 * @desc: CESA descriptor
259 * @ctx: context associated to the crypto operation
260 *
261 * Context associated to a crypto operation.
262 */
263struct mv_cesa_op_ctx {
264 struct mv_cesa_sec_accel_desc desc;
265 union {
266 struct mv_cesa_blkcipher_op_ctx blkcipher;
267 struct mv_cesa_hash_op_ctx hash;
268 } ctx;
269};
270
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200271/* TDMA descriptor flags */
272#define CESA_TDMA_DST_IN_SRAM BIT(31)
273#define CESA_TDMA_SRC_IN_SRAM BIT(30)
274#define CESA_TDMA_TYPE_MSK GENMASK(29, 0)
275#define CESA_TDMA_DUMMY 0
276#define CESA_TDMA_DATA 1
277#define CESA_TDMA_OP 2
Romain Perierbac8e802016-06-21 10:08:34 +0200278#define CESA_TDMA_IV 3
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200279
280/**
281 * struct mv_cesa_tdma_desc - TDMA descriptor
282 * @byte_cnt: number of bytes to transfer
283 * @src: DMA address of the source
284 * @dst: DMA address of the destination
285 * @next_dma: DMA address of the next TDMA descriptor
286 * @cur_dma: DMA address of this TDMA descriptor
287 * @next: pointer to the next TDMA descriptor
288 * @op: CESA operation attached to this TDMA descriptor
289 * @data: raw data attached to this TDMA descriptor
290 * @flags: flags describing the TDMA transfer. See the
291 * "TDMA descriptor flags" section above
292 *
293 * TDMA descriptor used to create a transfer chain describing a crypto
294 * operation.
295 */
296struct mv_cesa_tdma_desc {
Russell King6de59d42015-10-18 18:31:26 +0100297 __le32 byte_cnt;
298 __le32 src;
299 __le32 dst;
300 __le32 next_dma;
Russell King5d754132015-10-18 18:31:05 +0100301
302 /* Software state */
303 dma_addr_t cur_dma;
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200304 struct mv_cesa_tdma_desc *next;
305 union {
306 struct mv_cesa_op_ctx *op;
307 void *data;
308 };
309 u32 flags;
310};
311
312/**
313 * struct mv_cesa_sg_dma_iter - scatter-gather iterator
314 * @dir: transfer direction
315 * @sg: scatter list
316 * @offset: current position in the scatter list
317 * @op_offset: current position in the crypto operation
318 *
319 * Iterator used to iterate over a scatterlist while creating a TDMA chain for
320 * a crypto operation.
321 */
322struct mv_cesa_sg_dma_iter {
323 enum dma_data_direction dir;
324 struct scatterlist *sg;
325 unsigned int offset;
326 unsigned int op_offset;
327};
328
329/**
330 * struct mv_cesa_dma_iter - crypto operation iterator
331 * @len: the crypto operation length
332 * @offset: current position in the crypto operation
333 * @op_len: sub-operation length (the crypto engine can only act on 2kb
334 * chunks)
335 *
336 * Iterator used to create a TDMA chain for a given crypto operation.
337 */
338struct mv_cesa_dma_iter {
339 unsigned int len;
340 unsigned int offset;
341 unsigned int op_len;
342};
343
344/**
345 * struct mv_cesa_tdma_chain - TDMA chain
346 * @first: first entry in the TDMA chain
347 * @last: last entry in the TDMA chain
348 *
349 * Stores a TDMA chain for a specific crypto operation.
350 */
351struct mv_cesa_tdma_chain {
352 struct mv_cesa_tdma_desc *first;
353 struct mv_cesa_tdma_desc *last;
354};
355
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200356struct mv_cesa_engine;
357
358/**
359 * struct mv_cesa_caps - CESA device capabilities
360 * @engines: number of engines
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200361 * @has_tdma: whether this device has a TDMA block
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200362 * @cipher_algs: supported cipher algorithms
363 * @ncipher_algs: number of supported cipher algorithms
364 * @ahash_algs: supported hash algorithms
365 * @nahash_algs: number of supported hash algorithms
366 *
367 * Structure used to describe CESA device capabilities.
368 */
369struct mv_cesa_caps {
370 int nengines;
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200371 bool has_tdma;
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200372 struct crypto_alg **cipher_algs;
373 int ncipher_algs;
374 struct ahash_alg **ahash_algs;
375 int nahash_algs;
376};
377
378/**
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200379 * struct mv_cesa_dev_dma - DMA pools
380 * @tdma_desc_pool: TDMA desc pool
381 * @op_pool: crypto operation pool
382 * @cache_pool: data cache pool (used by hash implementation when the
383 * hash request is smaller than the hash block size)
384 * @padding_pool: padding pool (used by hash implementation when hardware
385 * padding cannot be used)
386 *
387 * Structure containing the different DMA pools used by this driver.
388 */
389struct mv_cesa_dev_dma {
390 struct dma_pool *tdma_desc_pool;
391 struct dma_pool *op_pool;
392 struct dma_pool *cache_pool;
393 struct dma_pool *padding_pool;
Romain Perierbac8e802016-06-21 10:08:34 +0200394 struct dma_pool *iv_pool;
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200395};
396
397/**
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200398 * struct mv_cesa_dev - CESA device
399 * @caps: device capabilities
400 * @regs: device registers
401 * @sram_size: usable SRAM size
402 * @lock: device lock
403 * @queue: crypto request queue
404 * @engines: array of engines
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200405 * @dma: dma pools
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200406 *
407 * Structure storing CESA device information.
408 */
409struct mv_cesa_dev {
410 const struct mv_cesa_caps *caps;
411 void __iomem *regs;
412 struct device *dev;
413 unsigned int sram_size;
414 spinlock_t lock;
415 struct crypto_queue queue;
416 struct mv_cesa_engine *engines;
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200417 struct mv_cesa_dev_dma *dma;
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200418};
419
420/**
421 * struct mv_cesa_engine - CESA engine
422 * @id: engine id
423 * @regs: engine registers
424 * @sram: SRAM memory region
425 * @sram_dma: DMA address of the SRAM memory region
426 * @lock: engine lock
427 * @req: current crypto request
428 * @clk: engine clk
429 * @zclk: engine zclk
430 * @max_req_len: maximum chunk length (useful to create the TDMA chain)
431 * @int_mask: interrupt mask cache
432 * @pool: memory pool pointing to the memory region reserved in
433 * SRAM
434 *
435 * Structure storing CESA engine information.
436 */
437struct mv_cesa_engine {
438 int id;
439 void __iomem *regs;
440 void __iomem *sram;
441 dma_addr_t sram_dma;
442 spinlock_t lock;
443 struct crypto_async_request *req;
444 struct clk *clk;
445 struct clk *zclk;
446 size_t max_req_len;
447 u32 int_mask;
448 struct gen_pool *pool;
449};
450
451/**
452 * struct mv_cesa_req_ops - CESA request operations
453 * @prepare: prepare a request to be executed on the specified engine
454 * @process: process a request chunk result (should return 0 if the
455 * operation, -EINPROGRESS if it needs more steps or an error
456 * code)
457 * @step: launch the crypto operation on the next chunk
458 * @cleanup: cleanup the crypto request (release associated data)
459 */
460struct mv_cesa_req_ops {
461 void (*prepare)(struct crypto_async_request *req,
462 struct mv_cesa_engine *engine);
463 int (*process)(struct crypto_async_request *req, u32 status);
464 void (*step)(struct crypto_async_request *req);
465 void (*cleanup)(struct crypto_async_request *req);
466};
467
468/**
469 * struct mv_cesa_ctx - CESA operation context
470 * @ops: crypto operations
471 *
472 * Base context structure inherited by operation specific ones.
473 */
474struct mv_cesa_ctx {
475 const struct mv_cesa_req_ops *ops;
476};
477
478/**
479 * struct mv_cesa_hash_ctx - CESA hash operation context
480 * @base: base context structure
481 *
482 * Hash context structure.
483 */
484struct mv_cesa_hash_ctx {
485 struct mv_cesa_ctx base;
486};
487
488/**
489 * struct mv_cesa_hash_ctx - CESA hmac operation context
490 * @base: base context structure
491 * @iv: initialization vectors
492 *
493 * HMAC context structure.
494 */
495struct mv_cesa_hmac_ctx {
496 struct mv_cesa_ctx base;
497 u32 iv[16];
498};
499
500/**
501 * enum mv_cesa_req_type - request type definitions
502 * @CESA_STD_REQ: standard request
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200503 * @CESA_DMA_REQ: DMA request
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200504 */
505enum mv_cesa_req_type {
506 CESA_STD_REQ,
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200507 CESA_DMA_REQ,
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200508};
509
510/**
511 * struct mv_cesa_req - CESA request
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200512 * @engine: engine associated with this request
Romain Perier53da7402016-06-21 10:08:35 +0200513 * @chain: list of tdma descriptors associated with this request
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200514 */
515struct mv_cesa_req {
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200516 struct mv_cesa_engine *engine;
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200517 struct mv_cesa_tdma_chain chain;
518};
519
520/**
521 * struct mv_cesa_sg_std_iter - CESA scatter-gather iterator for standard
522 * requests
523 * @iter: sg mapping iterator
524 * @offset: current offset in the SG entry mapped in memory
525 */
526struct mv_cesa_sg_std_iter {
527 struct sg_mapping_iter iter;
528 unsigned int offset;
529};
530
531/**
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200532 * struct mv_cesa_ablkcipher_std_req - cipher standard request
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200533 * @op: operation context
534 * @offset: current operation offset
535 * @size: size of the crypto operation
536 */
537struct mv_cesa_ablkcipher_std_req {
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200538 struct mv_cesa_op_ctx op;
539 unsigned int offset;
540 unsigned int size;
541 bool skip_ctx;
542};
543
544/**
545 * struct mv_cesa_ablkcipher_req - cipher request
546 * @req: type specific request information
547 * @src_nents: number of entries in the src sg list
548 * @dst_nents: number of entries in the dest sg list
549 */
550struct mv_cesa_ablkcipher_req {
Romain Perier53da7402016-06-21 10:08:35 +0200551 struct mv_cesa_req base;
552 struct mv_cesa_ablkcipher_std_req std;
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200553 int src_nents;
554 int dst_nents;
555};
556
557/**
558 * struct mv_cesa_ahash_std_req - standard hash request
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200559 * @offset: current operation offset
560 */
561struct mv_cesa_ahash_std_req {
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200562 unsigned int offset;
563};
564
565/**
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200566 * struct mv_cesa_ahash_dma_req - DMA hash request
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200567 * @padding: padding buffer
568 * @padding_dma: DMA address of the padding buffer
569 * @cache_dma: DMA address of the cache buffer
570 */
571struct mv_cesa_ahash_dma_req {
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200572 u8 *padding;
573 dma_addr_t padding_dma;
Boris BREZILLON7850c912016-03-17 10:21:34 +0100574 u8 *cache;
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200575 dma_addr_t cache_dma;
576};
577
578/**
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200579 * struct mv_cesa_ahash_req - hash request
580 * @req: type specific request information
581 * @cache: cache buffer
582 * @cache_ptr: write pointer in the cache buffer
583 * @len: hash total length
584 * @src_nents: number of entries in the scatterlist
585 * @last_req: define whether the current operation is the last one
586 * or not
587 * @state: hash state
588 */
589struct mv_cesa_ahash_req {
Romain Perier53da7402016-06-21 10:08:35 +0200590 struct mv_cesa_req base;
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200591 union {
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200592 struct mv_cesa_ahash_dma_req dma;
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200593 struct mv_cesa_ahash_std_req std;
594 } req;
595 struct mv_cesa_op_ctx op_tmpl;
Boris BREZILLON7850c912016-03-17 10:21:34 +0100596 u8 cache[CESA_MAX_HASH_BLOCK_SIZE];
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200597 unsigned int cache_ptr;
598 u64 len;
599 int src_nents;
600 bool last_req;
Russell Kinga9eb6782015-10-18 17:23:40 +0100601 bool algo_le;
Russell King4c2b1302015-10-18 17:23:35 +0100602 u32 state[8];
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200603};
604
605/* CESA functions */
606
607extern struct mv_cesa_dev *cesa_dev;
608
Romain Perier53da7402016-06-21 10:08:35 +0200609static inline enum mv_cesa_req_type
610mv_cesa_req_get_type(struct mv_cesa_req *req)
611{
612 return req->chain.first ? CESA_DMA_REQ : CESA_STD_REQ;
613}
614
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200615static inline void mv_cesa_update_op_cfg(struct mv_cesa_op_ctx *op,
616 u32 cfg, u32 mask)
617{
618 op->desc.config &= cpu_to_le32(~mask);
619 op->desc.config |= cpu_to_le32(cfg);
620}
621
Russell Kingc439e4e2015-10-18 17:23:56 +0100622static inline u32 mv_cesa_get_op_cfg(const struct mv_cesa_op_ctx *op)
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200623{
624 return le32_to_cpu(op->desc.config);
625}
626
627static inline void mv_cesa_set_op_cfg(struct mv_cesa_op_ctx *op, u32 cfg)
628{
629 op->desc.config = cpu_to_le32(cfg);
630}
631
632static inline void mv_cesa_adjust_op(struct mv_cesa_engine *engine,
633 struct mv_cesa_op_ctx *op)
634{
635 u32 offset = engine->sram_dma & CESA_SA_SRAM_MSK;
636
637 op->desc.enc_p = CESA_SA_DESC_CRYPT_DATA(offset);
638 op->desc.enc_key_p = CESA_SA_DESC_CRYPT_KEY(offset);
639 op->desc.enc_iv = CESA_SA_DESC_CRYPT_IV(offset);
640 op->desc.mac_src_p &= ~CESA_SA_DESC_MAC_DATA_MSK;
641 op->desc.mac_src_p |= CESA_SA_DESC_MAC_DATA(offset);
642 op->desc.mac_digest &= ~CESA_SA_DESC_MAC_DIGEST_MSK;
643 op->desc.mac_digest |= CESA_SA_DESC_MAC_DIGEST(offset);
644 op->desc.mac_iv = CESA_SA_DESC_MAC_IV(offset);
645}
646
647static inline void mv_cesa_set_crypt_op_len(struct mv_cesa_op_ctx *op, int len)
648{
649 op->desc.enc_len = cpu_to_le32(len);
650}
651
652static inline void mv_cesa_set_mac_op_total_len(struct mv_cesa_op_ctx *op,
653 int len)
654{
655 op->desc.mac_src_p &= ~CESA_SA_DESC_MAC_TOTAL_LEN_MSK;
656 op->desc.mac_src_p |= CESA_SA_DESC_MAC_TOTAL_LEN(len);
657}
658
659static inline void mv_cesa_set_mac_op_frag_len(struct mv_cesa_op_ctx *op,
660 int len)
661{
662 op->desc.mac_digest &= ~CESA_SA_DESC_MAC_FRAG_LEN_MSK;
663 op->desc.mac_digest |= CESA_SA_DESC_MAC_FRAG_LEN(len);
664}
665
666static inline void mv_cesa_set_int_mask(struct mv_cesa_engine *engine,
667 u32 int_mask)
668{
669 if (int_mask == engine->int_mask)
670 return;
671
Russell Kingb1508562015-10-18 18:31:00 +0100672 writel_relaxed(int_mask, engine->regs + CESA_SA_INT_MSK);
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200673 engine->int_mask = int_mask;
674}
675
676static inline u32 mv_cesa_get_int_mask(struct mv_cesa_engine *engine)
677{
678 return engine->int_mask;
679}
680
Russell King86517912015-10-18 17:24:01 +0100681static inline bool mv_cesa_mac_op_is_first_frag(const struct mv_cesa_op_ctx *op)
682{
683 return (mv_cesa_get_op_cfg(op) & CESA_SA_DESC_CFG_FRAG_MSK) ==
684 CESA_SA_DESC_CFG_FIRST_FRAG;
685}
686
Romain Perier53da7402016-06-21 10:08:35 +0200687int mv_cesa_queue_req(struct crypto_async_request *req,
688 struct mv_cesa_req *creq);
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200689
Thomas Petazzonicfcd2272015-09-18 17:25:36 +0200690/*
691 * Helper function that indicates whether a crypto request needs to be
692 * cleaned up or not after being enqueued using mv_cesa_queue_req().
693 */
694static inline int mv_cesa_req_needs_cleanup(struct crypto_async_request *req,
695 int ret)
696{
697 /*
698 * The queue still had some space, the request was queued
699 * normally, so there's no need to clean it up.
700 */
701 if (ret == -EINPROGRESS)
702 return false;
703
704 /*
705 * The queue had not space left, but since the request is
706 * flagged with CRYPTO_TFM_REQ_MAY_BACKLOG, it was added to
707 * the backlog and will be processed later. There's no need to
708 * clean it up.
709 */
710 if (ret == -EBUSY && req->flags & CRYPTO_TFM_REQ_MAY_BACKLOG)
711 return false;
712
713 /* Request wasn't queued, we need to clean it up */
714 return true;
715}
716
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200717/* TDMA functions */
718
719static inline void mv_cesa_req_dma_iter_init(struct mv_cesa_dma_iter *iter,
720 unsigned int len)
721{
722 iter->len = len;
723 iter->op_len = min(len, CESA_SA_SRAM_PAYLOAD_SIZE);
724 iter->offset = 0;
725}
726
727static inline void mv_cesa_sg_dma_iter_init(struct mv_cesa_sg_dma_iter *iter,
728 struct scatterlist *sg,
729 enum dma_data_direction dir)
730{
731 iter->op_offset = 0;
732 iter->offset = 0;
733 iter->sg = sg;
734 iter->dir = dir;
735}
736
737static inline unsigned int
738mv_cesa_req_dma_iter_transfer_len(struct mv_cesa_dma_iter *iter,
739 struct mv_cesa_sg_dma_iter *sgiter)
740{
741 return min(iter->op_len - sgiter->op_offset,
742 sg_dma_len(sgiter->sg) - sgiter->offset);
743}
744
745bool mv_cesa_req_dma_iter_next_transfer(struct mv_cesa_dma_iter *chain,
746 struct mv_cesa_sg_dma_iter *sgiter,
747 unsigned int len);
748
749static inline bool mv_cesa_req_dma_iter_next_op(struct mv_cesa_dma_iter *iter)
750{
751 iter->offset += iter->op_len;
752 iter->op_len = min(iter->len - iter->offset,
753 CESA_SA_SRAM_PAYLOAD_SIZE);
754
755 return iter->op_len;
756}
757
Romain Perier53da7402016-06-21 10:08:35 +0200758void mv_cesa_dma_step(struct mv_cesa_req *dreq);
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200759
Romain Perier53da7402016-06-21 10:08:35 +0200760static inline int mv_cesa_dma_process(struct mv_cesa_req *dreq,
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200761 u32 status)
762{
763 if (!(status & CESA_SA_INT_ACC0_IDMA_DONE))
764 return -EINPROGRESS;
765
766 if (status & CESA_SA_INT_IDMA_OWN_ERR)
767 return -EINVAL;
768
769 return 0;
770}
771
Romain Perier53da7402016-06-21 10:08:35 +0200772void mv_cesa_dma_prepare(struct mv_cesa_req *dreq,
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200773 struct mv_cesa_engine *engine);
Romain Perier53da7402016-06-21 10:08:35 +0200774void mv_cesa_dma_cleanup(struct mv_cesa_req *dreq);
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200775
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200776
777static inline void
778mv_cesa_tdma_desc_iter_init(struct mv_cesa_tdma_chain *chain)
779{
780 memset(chain, 0, sizeof(*chain));
781}
782
Romain Perierbac8e802016-06-21 10:08:34 +0200783int mv_cesa_dma_add_iv_op(struct mv_cesa_tdma_chain *chain, dma_addr_t src,
784 u32 size, u32 flags, gfp_t gfp_flags);
785
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200786struct mv_cesa_op_ctx *mv_cesa_dma_add_op(struct mv_cesa_tdma_chain *chain,
787 const struct mv_cesa_op_ctx *op_templ,
788 bool skip_ctx,
789 gfp_t flags);
790
791int mv_cesa_dma_add_data_transfer(struct mv_cesa_tdma_chain *chain,
792 dma_addr_t dst, dma_addr_t src, u32 size,
793 u32 flags, gfp_t gfp_flags);
794
Russell King35622ea2015-10-18 18:31:10 +0100795int mv_cesa_dma_add_dummy_launch(struct mv_cesa_tdma_chain *chain, gfp_t flags);
796int mv_cesa_dma_add_dummy_end(struct mv_cesa_tdma_chain *chain, gfp_t flags);
Boris BREZILLONdb509a42015-06-18 15:46:21 +0200797
798int mv_cesa_dma_add_op_transfers(struct mv_cesa_tdma_chain *chain,
799 struct mv_cesa_dma_iter *dma_iter,
800 struct mv_cesa_sg_dma_iter *sgiter,
801 gfp_t gfp_flags);
802
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200803/* Algorithm definitions */
804
Arnaud Ebalard7aeef692015-06-18 15:46:24 +0200805extern struct ahash_alg mv_md5_alg;
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200806extern struct ahash_alg mv_sha1_alg;
Arnaud Ebalardf85a7622015-06-18 15:46:25 +0200807extern struct ahash_alg mv_sha256_alg;
Arnaud Ebalard7aeef692015-06-18 15:46:24 +0200808extern struct ahash_alg mv_ahmac_md5_alg;
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200809extern struct ahash_alg mv_ahmac_sha1_alg;
Arnaud Ebalardf85a7622015-06-18 15:46:25 +0200810extern struct ahash_alg mv_ahmac_sha256_alg;
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200811
Boris BREZILLON7b3aaaa2015-06-18 15:46:22 +0200812extern struct crypto_alg mv_cesa_ecb_des_alg;
813extern struct crypto_alg mv_cesa_cbc_des_alg;
Arnaud Ebalard4ada4832015-06-18 15:46:23 +0200814extern struct crypto_alg mv_cesa_ecb_des3_ede_alg;
815extern struct crypto_alg mv_cesa_cbc_des3_ede_alg;
Boris BREZILLONf63601f2015-06-18 15:46:20 +0200816extern struct crypto_alg mv_cesa_ecb_aes_alg;
817extern struct crypto_alg mv_cesa_cbc_aes_alg;
818
819#endif /* __MARVELL_CESA_H__ */