1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (C) 2012-2019 ARM Limited (or its affiliates). */
5 * ARM CryptoCell Hash Crypto API
11 #include "cc_buffer_mgr.h"
13 #define HMAC_IPAD_CONST 0x36363636
14 #define HMAC_OPAD_CONST 0x5C5C5C5C
15 #define HASH_LEN_SIZE_712 16
16 #define HASH_LEN_SIZE_630 8
17 #define HASH_MAX_LEN_SIZE HASH_LEN_SIZE_712
18 #define CC_MAX_HASH_DIGEST_SIZE SHA512_DIGEST_SIZE
19 #define CC_MAX_HASH_BLCK_SIZE SHA512_BLOCK_SIZE
21 #define XCBC_MAC_K1_OFFSET 0
22 #define XCBC_MAC_K2_OFFSET 16
23 #define XCBC_MAC_K3_OFFSET 32
25 #define CC_EXPORT_MAGIC 0xC2EE1070U
27 /* this struct was taken from drivers/crypto/nx/nx-aes-xcbc.c and it is used
28 * for xcbc/cmac statesize
30 struct aeshash_state
{
31 u8 state
[AES_BLOCK_SIZE
];
33 u8 buffer
[AES_BLOCK_SIZE
];
37 struct ahash_req_ctx
{
38 u8 buffers
[2][CC_MAX_HASH_BLCK_SIZE
] ____cacheline_aligned
;
39 u8 digest_result_buff
[CC_MAX_HASH_DIGEST_SIZE
] ____cacheline_aligned
;
40 u8 digest_buff
[CC_MAX_HASH_DIGEST_SIZE
] ____cacheline_aligned
;
41 u8 opad_digest_buff
[CC_MAX_HASH_DIGEST_SIZE
] ____cacheline_aligned
;
42 u8 digest_bytes_len
[HASH_MAX_LEN_SIZE
] ____cacheline_aligned
;
43 struct async_gen_req_ctx gen_ctx ____cacheline_aligned
;
44 enum cc_req_dma_buf_type data_dma_buf_type
;
45 dma_addr_t opad_digest_dma_addr
;
46 dma_addr_t digest_buff_dma_addr
;
47 dma_addr_t digest_bytes_len_dma_addr
;
48 dma_addr_t digest_result_dma_addr
;
51 u32 xcbc_count
; /* count xcbc update operatations */
52 struct scatterlist buff_sg
[2];
53 struct scatterlist
*curr_sg
;
56 struct mlli_params mlli_params
;
59 static inline u32
*cc_hash_buf_cnt(struct ahash_req_ctx
*state
)
61 return &state
->buf_cnt
[state
->buff_index
];
64 static inline u8
*cc_hash_buf(struct ahash_req_ctx
*state
)
66 return state
->buffers
[state
->buff_index
];
69 static inline u32
*cc_next_buf_cnt(struct ahash_req_ctx
*state
)
71 return &state
->buf_cnt
[state
->buff_index
^ 1];
74 static inline u8
*cc_next_buf(struct ahash_req_ctx
*state
)
76 return state
->buffers
[state
->buff_index
^ 1];
79 int cc_hash_alloc(struct cc_drvdata
*drvdata
);
80 int cc_init_hash_sram(struct cc_drvdata
*drvdata
);
81 int cc_hash_free(struct cc_drvdata
*drvdata
);
84 * cc_digest_len_addr() - Gets the initial digest length
86 * @drvdata: Associated device driver context
87 * @mode: The Hash mode. Supported modes: MD5/SHA1/SHA224/SHA256/SHA384/SHA512
90 * Returns the address of the initial digest length in SRAM
92 u32
cc_digest_len_addr(void *drvdata
, u32 mode
);
95 * cc_larval_digest_addr() - Gets the address of the initial digest in SRAM
96 * according to the given hash mode
98 * @drvdata: Associated device driver context
99 * @mode: The Hash mode. Supported modes: MD5/SHA1/SHA224/SHA256/SHA384/SHA512
102 * The address of the initial digest in SRAM
104 u32
cc_larval_digest_addr(void *drvdata
, u32 mode
);
106 #endif /*__CC_HASH_H__*/