18c2ecf20Sopenharmony_ci/* 28c2ecf20Sopenharmony_ci * This file is part of the Chelsio T6 Crypto driver for Linux. 38c2ecf20Sopenharmony_ci * 48c2ecf20Sopenharmony_ci * Copyright (c) 2003-2016 Chelsio Communications, Inc. All rights reserved. 58c2ecf20Sopenharmony_ci * 68c2ecf20Sopenharmony_ci * This software is available to you under a choice of one of two 78c2ecf20Sopenharmony_ci * licenses. You may choose to be licensed under the terms of the GNU 88c2ecf20Sopenharmony_ci * General Public License (GPL) Version 2, available from the file 98c2ecf20Sopenharmony_ci * COPYING in the main directory of this source tree, or the 108c2ecf20Sopenharmony_ci * OpenIB.org BSD license below: 118c2ecf20Sopenharmony_ci * 128c2ecf20Sopenharmony_ci * Redistribution and use in source and binary forms, with or 138c2ecf20Sopenharmony_ci * without modification, are permitted provided that the following 148c2ecf20Sopenharmony_ci * conditions are met: 158c2ecf20Sopenharmony_ci * 168c2ecf20Sopenharmony_ci * - Redistributions of source code must retain the above 178c2ecf20Sopenharmony_ci * copyright notice, this list of conditions and the following 188c2ecf20Sopenharmony_ci * disclaimer. 198c2ecf20Sopenharmony_ci * 208c2ecf20Sopenharmony_ci * - Redistributions in binary form must reproduce the above 218c2ecf20Sopenharmony_ci * copyright notice, this list of conditions and the following 228c2ecf20Sopenharmony_ci * disclaimer in the documentation and/or other materials 238c2ecf20Sopenharmony_ci * provided with the distribution. 248c2ecf20Sopenharmony_ci * 258c2ecf20Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 268c2ecf20Sopenharmony_ci * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 278c2ecf20Sopenharmony_ci * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 288c2ecf20Sopenharmony_ci * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 298c2ecf20Sopenharmony_ci * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 308c2ecf20Sopenharmony_ci * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 318c2ecf20Sopenharmony_ci * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 328c2ecf20Sopenharmony_ci * SOFTWARE. 338c2ecf20Sopenharmony_ci * 348c2ecf20Sopenharmony_ci */ 358c2ecf20Sopenharmony_ci 368c2ecf20Sopenharmony_ci#ifndef __CHCR_ALGO_H__ 378c2ecf20Sopenharmony_ci#define __CHCR_ALGO_H__ 388c2ecf20Sopenharmony_ci 398c2ecf20Sopenharmony_ci/* Crypto key context */ 408c2ecf20Sopenharmony_ci#define KEY_CONTEXT_CTX_LEN_S 24 418c2ecf20Sopenharmony_ci#define KEY_CONTEXT_CTX_LEN_M 0xff 428c2ecf20Sopenharmony_ci#define KEY_CONTEXT_CTX_LEN_V(x) ((x) << KEY_CONTEXT_CTX_LEN_S) 438c2ecf20Sopenharmony_ci#define KEY_CONTEXT_CTX_LEN_G(x) \ 448c2ecf20Sopenharmony_ci (((x) >> KEY_CONTEXT_CTX_LEN_S) & KEY_CONTEXT_CTX_LEN_M) 458c2ecf20Sopenharmony_ci 468c2ecf20Sopenharmony_ci#define KEY_CONTEXT_DUAL_CK_S 12 478c2ecf20Sopenharmony_ci#define KEY_CONTEXT_DUAL_CK_M 0x1 488c2ecf20Sopenharmony_ci#define KEY_CONTEXT_DUAL_CK_V(x) ((x) << KEY_CONTEXT_DUAL_CK_S) 498c2ecf20Sopenharmony_ci#define KEY_CONTEXT_DUAL_CK_G(x) \ 508c2ecf20Sopenharmony_ci(((x) >> KEY_CONTEXT_DUAL_CK_S) & KEY_CONTEXT_DUAL_CK_M) 518c2ecf20Sopenharmony_ci#define KEY_CONTEXT_DUAL_CK_F KEY_CONTEXT_DUAL_CK_V(1U) 528c2ecf20Sopenharmony_ci 538c2ecf20Sopenharmony_ci#define KEY_CONTEXT_SALT_PRESENT_S 10 548c2ecf20Sopenharmony_ci#define KEY_CONTEXT_SALT_PRESENT_M 0x1 558c2ecf20Sopenharmony_ci#define KEY_CONTEXT_SALT_PRESENT_V(x) ((x) << KEY_CONTEXT_SALT_PRESENT_S) 568c2ecf20Sopenharmony_ci#define KEY_CONTEXT_SALT_PRESENT_G(x) \ 578c2ecf20Sopenharmony_ci (((x) >> KEY_CONTEXT_SALT_PRESENT_S) & \ 588c2ecf20Sopenharmony_ci KEY_CONTEXT_SALT_PRESENT_M) 598c2ecf20Sopenharmony_ci#define KEY_CONTEXT_SALT_PRESENT_F KEY_CONTEXT_SALT_PRESENT_V(1U) 608c2ecf20Sopenharmony_ci 618c2ecf20Sopenharmony_ci#define KEY_CONTEXT_VALID_S 0 628c2ecf20Sopenharmony_ci#define KEY_CONTEXT_VALID_M 0x1 638c2ecf20Sopenharmony_ci#define KEY_CONTEXT_VALID_V(x) ((x) << KEY_CONTEXT_VALID_S) 648c2ecf20Sopenharmony_ci#define KEY_CONTEXT_VALID_G(x) \ 658c2ecf20Sopenharmony_ci (((x) >> KEY_CONTEXT_VALID_S) & \ 668c2ecf20Sopenharmony_ci KEY_CONTEXT_VALID_M) 678c2ecf20Sopenharmony_ci#define KEY_CONTEXT_VALID_F KEY_CONTEXT_VALID_V(1U) 688c2ecf20Sopenharmony_ci 698c2ecf20Sopenharmony_ci#define KEY_CONTEXT_CK_SIZE_S 6 708c2ecf20Sopenharmony_ci#define KEY_CONTEXT_CK_SIZE_M 0xf 718c2ecf20Sopenharmony_ci#define KEY_CONTEXT_CK_SIZE_V(x) ((x) << KEY_CONTEXT_CK_SIZE_S) 728c2ecf20Sopenharmony_ci#define KEY_CONTEXT_CK_SIZE_G(x) \ 738c2ecf20Sopenharmony_ci (((x) >> KEY_CONTEXT_CK_SIZE_S) & KEY_CONTEXT_CK_SIZE_M) 748c2ecf20Sopenharmony_ci 758c2ecf20Sopenharmony_ci#define KEY_CONTEXT_MK_SIZE_S 2 768c2ecf20Sopenharmony_ci#define KEY_CONTEXT_MK_SIZE_M 0xf 778c2ecf20Sopenharmony_ci#define KEY_CONTEXT_MK_SIZE_V(x) ((x) << KEY_CONTEXT_MK_SIZE_S) 788c2ecf20Sopenharmony_ci#define KEY_CONTEXT_MK_SIZE_G(x) \ 798c2ecf20Sopenharmony_ci (((x) >> KEY_CONTEXT_MK_SIZE_S) & KEY_CONTEXT_MK_SIZE_M) 808c2ecf20Sopenharmony_ci 818c2ecf20Sopenharmony_ci#define KEY_CONTEXT_OPAD_PRESENT_S 11 828c2ecf20Sopenharmony_ci#define KEY_CONTEXT_OPAD_PRESENT_M 0x1 838c2ecf20Sopenharmony_ci#define KEY_CONTEXT_OPAD_PRESENT_V(x) ((x) << KEY_CONTEXT_OPAD_PRESENT_S) 848c2ecf20Sopenharmony_ci#define KEY_CONTEXT_OPAD_PRESENT_G(x) \ 858c2ecf20Sopenharmony_ci (((x) >> KEY_CONTEXT_OPAD_PRESENT_S) & \ 868c2ecf20Sopenharmony_ci KEY_CONTEXT_OPAD_PRESENT_M) 878c2ecf20Sopenharmony_ci#define KEY_CONTEXT_OPAD_PRESENT_F KEY_CONTEXT_OPAD_PRESENT_V(1U) 888c2ecf20Sopenharmony_ci 898c2ecf20Sopenharmony_ci#define CHCR_HASH_MAX_DIGEST_SIZE 64 908c2ecf20Sopenharmony_ci#define CHCR_MAX_SHA_DIGEST_SIZE 64 918c2ecf20Sopenharmony_ci 928c2ecf20Sopenharmony_ci#define IPSEC_TRUNCATED_ICV_SIZE 12 938c2ecf20Sopenharmony_ci#define TLS_TRUNCATED_HMAC_SIZE 10 948c2ecf20Sopenharmony_ci#define CBCMAC_DIGEST_SIZE 16 958c2ecf20Sopenharmony_ci#define MAX_HASH_NAME 20 968c2ecf20Sopenharmony_ci 978c2ecf20Sopenharmony_ci#define SHA1_INIT_STATE_5X4B 5 988c2ecf20Sopenharmony_ci#define SHA256_INIT_STATE_8X4B 8 998c2ecf20Sopenharmony_ci#define SHA512_INIT_STATE_8X8B 8 1008c2ecf20Sopenharmony_ci#define SHA1_INIT_STATE SHA1_INIT_STATE_5X4B 1018c2ecf20Sopenharmony_ci#define SHA224_INIT_STATE SHA256_INIT_STATE_8X4B 1028c2ecf20Sopenharmony_ci#define SHA256_INIT_STATE SHA256_INIT_STATE_8X4B 1038c2ecf20Sopenharmony_ci#define SHA384_INIT_STATE SHA512_INIT_STATE_8X8B 1048c2ecf20Sopenharmony_ci#define SHA512_INIT_STATE SHA512_INIT_STATE_8X8B 1058c2ecf20Sopenharmony_ci 1068c2ecf20Sopenharmony_ci#define DUMMY_BYTES 16 1078c2ecf20Sopenharmony_ci 1088c2ecf20Sopenharmony_ci#define IPAD_DATA 0x36363636 1098c2ecf20Sopenharmony_ci#define OPAD_DATA 0x5c5c5c5c 1108c2ecf20Sopenharmony_ci 1118c2ecf20Sopenharmony_ci#define TRANSHDR_SIZE(kctx_len)\ 1128c2ecf20Sopenharmony_ci (sizeof(struct chcr_wr) +\ 1138c2ecf20Sopenharmony_ci kctx_len) 1148c2ecf20Sopenharmony_ci#define CIPHER_TRANSHDR_SIZE(kctx_len, sge_pairs) \ 1158c2ecf20Sopenharmony_ci (TRANSHDR_SIZE((kctx_len)) + (sge_pairs) +\ 1168c2ecf20Sopenharmony_ci sizeof(struct cpl_rx_phys_dsgl) + AES_BLOCK_SIZE) 1178c2ecf20Sopenharmony_ci#define HASH_TRANSHDR_SIZE(kctx_len)\ 1188c2ecf20Sopenharmony_ci (TRANSHDR_SIZE(kctx_len) + DUMMY_BYTES) 1198c2ecf20Sopenharmony_ci 1208c2ecf20Sopenharmony_ci 1218c2ecf20Sopenharmony_ci#define FILL_SEC_CPL_OP_IVINSR(id, len, ofst) \ 1228c2ecf20Sopenharmony_ci htonl( \ 1238c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_OPCODE_V(CPL_TX_SEC_PDU) | \ 1248c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_RXCHID_V((id)) | \ 1258c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_ACKFOLLOWS_V(0) | \ 1268c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_ULPTXLPBK_V(1) | \ 1278c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_CPLLEN_V((len)) | \ 1288c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_PLACEHOLDER_V(0) | \ 1298c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_IVINSRTOFST_V((ofst))) 1308c2ecf20Sopenharmony_ci 1318c2ecf20Sopenharmony_ci#define FILL_SEC_CPL_CIPHERSTOP_HI(a_start, a_stop, c_start, c_stop_hi) \ 1328c2ecf20Sopenharmony_ci htonl( \ 1338c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_AADSTART_V((a_start)) | \ 1348c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_AADSTOP_V((a_stop)) | \ 1358c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_CIPHERSTART_V((c_start)) | \ 1368c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_CIPHERSTOP_HI_V((c_stop_hi))) 1378c2ecf20Sopenharmony_ci 1388c2ecf20Sopenharmony_ci#define FILL_SEC_CPL_AUTHINSERT(c_stop_lo, a_start, a_stop, a_inst) \ 1398c2ecf20Sopenharmony_ci htonl( \ 1408c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_CIPHERSTOP_LO_V((c_stop_lo)) | \ 1418c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_AUTHSTART_V((a_start)) | \ 1428c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_AUTHSTOP_V((a_stop)) | \ 1438c2ecf20Sopenharmony_ci CPL_TX_SEC_PDU_AUTHINSERT_V((a_inst))) 1448c2ecf20Sopenharmony_ci 1458c2ecf20Sopenharmony_ci#define FILL_SEC_CPL_SCMD0_SEQNO(ctrl, seq, cmode, amode, opad, size) \ 1468c2ecf20Sopenharmony_ci htonl( \ 1478c2ecf20Sopenharmony_ci SCMD_SEQ_NO_CTRL_V(0) | \ 1488c2ecf20Sopenharmony_ci SCMD_STATUS_PRESENT_V(0) | \ 1498c2ecf20Sopenharmony_ci SCMD_PROTO_VERSION_V(CHCR_SCMD_PROTO_VERSION_GENERIC) | \ 1508c2ecf20Sopenharmony_ci SCMD_ENC_DEC_CTRL_V((ctrl)) | \ 1518c2ecf20Sopenharmony_ci SCMD_CIPH_AUTH_SEQ_CTRL_V((seq)) | \ 1528c2ecf20Sopenharmony_ci SCMD_CIPH_MODE_V((cmode)) | \ 1538c2ecf20Sopenharmony_ci SCMD_AUTH_MODE_V((amode)) | \ 1548c2ecf20Sopenharmony_ci SCMD_HMAC_CTRL_V((opad)) | \ 1558c2ecf20Sopenharmony_ci SCMD_IV_SIZE_V((size)) | \ 1568c2ecf20Sopenharmony_ci SCMD_NUM_IVS_V(0)) 1578c2ecf20Sopenharmony_ci 1588c2ecf20Sopenharmony_ci#define FILL_SEC_CPL_IVGEN_HDRLEN(last, more, ctx_in, mac, ivdrop, len) htonl( \ 1598c2ecf20Sopenharmony_ci SCMD_ENB_DBGID_V(0) | \ 1608c2ecf20Sopenharmony_ci SCMD_IV_GEN_CTRL_V(0) | \ 1618c2ecf20Sopenharmony_ci SCMD_LAST_FRAG_V((last)) | \ 1628c2ecf20Sopenharmony_ci SCMD_MORE_FRAGS_V((more)) | \ 1638c2ecf20Sopenharmony_ci SCMD_TLS_COMPPDU_V(0) | \ 1648c2ecf20Sopenharmony_ci SCMD_KEY_CTX_INLINE_V((ctx_in)) | \ 1658c2ecf20Sopenharmony_ci SCMD_TLS_FRAG_ENABLE_V(0) | \ 1668c2ecf20Sopenharmony_ci SCMD_MAC_ONLY_V((mac)) | \ 1678c2ecf20Sopenharmony_ci SCMD_AADIVDROP_V((ivdrop)) | \ 1688c2ecf20Sopenharmony_ci SCMD_HDR_LEN_V((len))) 1698c2ecf20Sopenharmony_ci 1708c2ecf20Sopenharmony_ci#define FILL_KEY_CTX_HDR(ck_size, mk_size, d_ck, opad, ctx_len) \ 1718c2ecf20Sopenharmony_ci htonl(KEY_CONTEXT_VALID_V(1) | \ 1728c2ecf20Sopenharmony_ci KEY_CONTEXT_CK_SIZE_V((ck_size)) | \ 1738c2ecf20Sopenharmony_ci KEY_CONTEXT_MK_SIZE_V(mk_size) | \ 1748c2ecf20Sopenharmony_ci KEY_CONTEXT_DUAL_CK_V((d_ck)) | \ 1758c2ecf20Sopenharmony_ci KEY_CONTEXT_OPAD_PRESENT_V((opad)) | \ 1768c2ecf20Sopenharmony_ci KEY_CONTEXT_SALT_PRESENT_V(1) | \ 1778c2ecf20Sopenharmony_ci KEY_CONTEXT_CTX_LEN_V((ctx_len))) 1788c2ecf20Sopenharmony_ci 1798c2ecf20Sopenharmony_ci#define FILL_KEY_CRX_HDR(ck_size, mk_size, d_ck, opad, ctx_len) \ 1808c2ecf20Sopenharmony_ci htonl(TLS_KEYCTX_RXMK_SIZE_V(mk_size) | \ 1818c2ecf20Sopenharmony_ci TLS_KEYCTX_RXCK_SIZE_V(ck_size) | \ 1828c2ecf20Sopenharmony_ci TLS_KEYCTX_RX_VALID_V(1) | \ 1838c2ecf20Sopenharmony_ci TLS_KEYCTX_RX_SEQCTR_V(3) | \ 1848c2ecf20Sopenharmony_ci TLS_KEYCTX_RXAUTH_MODE_V(4) | \ 1858c2ecf20Sopenharmony_ci TLS_KEYCTX_RXCIPH_MODE_V(2) | \ 1868c2ecf20Sopenharmony_ci TLS_KEYCTX_RXFLIT_CNT_V((ctx_len))) 1878c2ecf20Sopenharmony_ci 1888c2ecf20Sopenharmony_ci#define FILL_WR_OP_CCTX_SIZE \ 1898c2ecf20Sopenharmony_ci htonl( \ 1908c2ecf20Sopenharmony_ci FW_CRYPTO_LOOKASIDE_WR_OPCODE_V( \ 1918c2ecf20Sopenharmony_ci FW_CRYPTO_LOOKASIDE_WR) | \ 1928c2ecf20Sopenharmony_ci FW_CRYPTO_LOOKASIDE_WR_COMPL_V(0) | \ 1938c2ecf20Sopenharmony_ci FW_CRYPTO_LOOKASIDE_WR_IMM_LEN_V((0)) | \ 1948c2ecf20Sopenharmony_ci FW_CRYPTO_LOOKASIDE_WR_CCTX_LOC_V(0) | \ 1958c2ecf20Sopenharmony_ci FW_CRYPTO_LOOKASIDE_WR_CCTX_SIZE_V(0)) 1968c2ecf20Sopenharmony_ci 1978c2ecf20Sopenharmony_ci#define FILL_WR_RX_Q_ID(cid, qid, lcb, fid) \ 1988c2ecf20Sopenharmony_ci htonl( \ 1998c2ecf20Sopenharmony_ci FW_CRYPTO_LOOKASIDE_WR_RX_CHID_V((cid)) | \ 2008c2ecf20Sopenharmony_ci FW_CRYPTO_LOOKASIDE_WR_RX_Q_ID_V((qid)) | \ 2018c2ecf20Sopenharmony_ci FW_CRYPTO_LOOKASIDE_WR_LCB_V((lcb)) | \ 2028c2ecf20Sopenharmony_ci FW_CRYPTO_LOOKASIDE_WR_IV_V((IV_NOP)) | \ 2038c2ecf20Sopenharmony_ci FW_CRYPTO_LOOKASIDE_WR_FQIDX_V(fid)) 2048c2ecf20Sopenharmony_ci 2058c2ecf20Sopenharmony_ci#define FILL_ULPTX_CMD_DEST(cid, qid) \ 2068c2ecf20Sopenharmony_ci htonl(ULPTX_CMD_V(ULP_TX_PKT) | \ 2078c2ecf20Sopenharmony_ci ULP_TXPKT_DEST_V(0) | \ 2088c2ecf20Sopenharmony_ci ULP_TXPKT_DATAMODIFY_V(0) | \ 2098c2ecf20Sopenharmony_ci ULP_TXPKT_CHANNELID_V((cid)) | \ 2108c2ecf20Sopenharmony_ci ULP_TXPKT_RO_V(1) | \ 2118c2ecf20Sopenharmony_ci ULP_TXPKT_FID_V(qid)) 2128c2ecf20Sopenharmony_ci 2138c2ecf20Sopenharmony_ci#define KEYCTX_ALIGN_PAD(bs) ({unsigned int _bs = (bs);\ 2148c2ecf20Sopenharmony_ci _bs == SHA1_DIGEST_SIZE ? 12 : 0; }) 2158c2ecf20Sopenharmony_ci 2168c2ecf20Sopenharmony_ci#define FILL_PLD_SIZE_HASH_SIZE(payload_sgl_len, sgl_lengths, total_frags) \ 2178c2ecf20Sopenharmony_ci htonl(FW_CRYPTO_LOOKASIDE_WR_PLD_SIZE_V(payload_sgl_len ? \ 2188c2ecf20Sopenharmony_ci sgl_lengths[total_frags] : 0) |\ 2198c2ecf20Sopenharmony_ci FW_CRYPTO_LOOKASIDE_WR_HASH_SIZE_V(0)) 2208c2ecf20Sopenharmony_ci 2218c2ecf20Sopenharmony_ci#define FILL_LEN_PKD(calc_tx_flits_ofld, skb) \ 2228c2ecf20Sopenharmony_ci htonl(FW_CRYPTO_LOOKASIDE_WR_LEN16_V(DIV_ROUND_UP((\ 2238c2ecf20Sopenharmony_ci calc_tx_flits_ofld(skb) * 8), 16))) 2248c2ecf20Sopenharmony_ci 2258c2ecf20Sopenharmony_ci#define FILL_CMD_MORE(immdatalen) htonl(ULPTX_CMD_V(ULP_TX_SC_IMM) |\ 2268c2ecf20Sopenharmony_ci ULP_TX_SC_MORE_V((immdatalen))) 2278c2ecf20Sopenharmony_ci#define MAX_NK 8 2288c2ecf20Sopenharmony_ci#define MAX_DSGL_ENT 32 2298c2ecf20Sopenharmony_ci#define MIN_AUTH_SG 1 /* IV */ 2308c2ecf20Sopenharmony_ci#define MIN_GCM_SG 1 /* IV */ 2318c2ecf20Sopenharmony_ci#define MIN_DIGEST_SG 1 /*Partial Buffer*/ 2328c2ecf20Sopenharmony_ci#define MIN_CCM_SG 1 /*IV+B0*/ 2338c2ecf20Sopenharmony_ci#define CIP_SPACE_LEFT(len) \ 2348c2ecf20Sopenharmony_ci ((SGE_MAX_WR_LEN - CIP_WR_MIN_LEN - (len))) 2358c2ecf20Sopenharmony_ci#define HASH_SPACE_LEFT(len) \ 2368c2ecf20Sopenharmony_ci ((SGE_MAX_WR_LEN - HASH_WR_MIN_LEN - (len))) 2378c2ecf20Sopenharmony_ci 2388c2ecf20Sopenharmony_cistruct algo_param { 2398c2ecf20Sopenharmony_ci unsigned int auth_mode; 2408c2ecf20Sopenharmony_ci unsigned int mk_size; 2418c2ecf20Sopenharmony_ci unsigned int result_size; 2428c2ecf20Sopenharmony_ci}; 2438c2ecf20Sopenharmony_ci 2448c2ecf20Sopenharmony_cistruct hash_wr_param { 2458c2ecf20Sopenharmony_ci struct algo_param alg_prm; 2468c2ecf20Sopenharmony_ci unsigned int opad_needed; 2478c2ecf20Sopenharmony_ci unsigned int more; 2488c2ecf20Sopenharmony_ci unsigned int last; 2498c2ecf20Sopenharmony_ci unsigned int kctx_len; 2508c2ecf20Sopenharmony_ci unsigned int sg_len; 2518c2ecf20Sopenharmony_ci unsigned int bfr_len; 2528c2ecf20Sopenharmony_ci unsigned int hash_size; 2538c2ecf20Sopenharmony_ci u64 scmd1; 2548c2ecf20Sopenharmony_ci}; 2558c2ecf20Sopenharmony_ci 2568c2ecf20Sopenharmony_cistruct cipher_wr_param { 2578c2ecf20Sopenharmony_ci struct skcipher_request *req; 2588c2ecf20Sopenharmony_ci char *iv; 2598c2ecf20Sopenharmony_ci int bytes; 2608c2ecf20Sopenharmony_ci unsigned short qid; 2618c2ecf20Sopenharmony_ci}; 2628c2ecf20Sopenharmony_cienum { 2638c2ecf20Sopenharmony_ci AES_KEYLENGTH_128BIT = 128, 2648c2ecf20Sopenharmony_ci AES_KEYLENGTH_192BIT = 192, 2658c2ecf20Sopenharmony_ci AES_KEYLENGTH_256BIT = 256 2668c2ecf20Sopenharmony_ci}; 2678c2ecf20Sopenharmony_ci 2688c2ecf20Sopenharmony_cienum { 2698c2ecf20Sopenharmony_ci KEYLENGTH_3BYTES = 3, 2708c2ecf20Sopenharmony_ci KEYLENGTH_4BYTES = 4, 2718c2ecf20Sopenharmony_ci KEYLENGTH_6BYTES = 6, 2728c2ecf20Sopenharmony_ci KEYLENGTH_8BYTES = 8 2738c2ecf20Sopenharmony_ci}; 2748c2ecf20Sopenharmony_ci 2758c2ecf20Sopenharmony_cienum { 2768c2ecf20Sopenharmony_ci NUMBER_OF_ROUNDS_10 = 10, 2778c2ecf20Sopenharmony_ci NUMBER_OF_ROUNDS_12 = 12, 2788c2ecf20Sopenharmony_ci NUMBER_OF_ROUNDS_14 = 14, 2798c2ecf20Sopenharmony_ci}; 2808c2ecf20Sopenharmony_ci 2818c2ecf20Sopenharmony_ci/* 2828c2ecf20Sopenharmony_ci * CCM defines values of 4, 6, 8, 10, 12, 14, and 16 octets, 2838c2ecf20Sopenharmony_ci * where they indicate the size of the integrity check value (ICV) 2848c2ecf20Sopenharmony_ci */ 2858c2ecf20Sopenharmony_cienum { 2868c2ecf20Sopenharmony_ci ICV_4 = 4, 2878c2ecf20Sopenharmony_ci ICV_6 = 6, 2888c2ecf20Sopenharmony_ci ICV_8 = 8, 2898c2ecf20Sopenharmony_ci ICV_10 = 10, 2908c2ecf20Sopenharmony_ci ICV_12 = 12, 2918c2ecf20Sopenharmony_ci ICV_13 = 13, 2928c2ecf20Sopenharmony_ci ICV_14 = 14, 2938c2ecf20Sopenharmony_ci ICV_15 = 15, 2948c2ecf20Sopenharmony_ci ICV_16 = 16 2958c2ecf20Sopenharmony_ci}; 2968c2ecf20Sopenharmony_ci 2978c2ecf20Sopenharmony_cistruct phys_sge_pairs { 2988c2ecf20Sopenharmony_ci __be16 len[8]; 2998c2ecf20Sopenharmony_ci __be64 addr[8]; 3008c2ecf20Sopenharmony_ci}; 3018c2ecf20Sopenharmony_ci 3028c2ecf20Sopenharmony_ci 3038c2ecf20Sopenharmony_cistatic const u32 chcr_sha1_init[SHA1_DIGEST_SIZE / 4] = { 3048c2ecf20Sopenharmony_ci SHA1_H0, SHA1_H1, SHA1_H2, SHA1_H3, SHA1_H4, 3058c2ecf20Sopenharmony_ci}; 3068c2ecf20Sopenharmony_ci 3078c2ecf20Sopenharmony_cistatic const u32 chcr_sha224_init[SHA256_DIGEST_SIZE / 4] = { 3088c2ecf20Sopenharmony_ci SHA224_H0, SHA224_H1, SHA224_H2, SHA224_H3, 3098c2ecf20Sopenharmony_ci SHA224_H4, SHA224_H5, SHA224_H6, SHA224_H7, 3108c2ecf20Sopenharmony_ci}; 3118c2ecf20Sopenharmony_ci 3128c2ecf20Sopenharmony_cistatic const u32 chcr_sha256_init[SHA256_DIGEST_SIZE / 4] = { 3138c2ecf20Sopenharmony_ci SHA256_H0, SHA256_H1, SHA256_H2, SHA256_H3, 3148c2ecf20Sopenharmony_ci SHA256_H4, SHA256_H5, SHA256_H6, SHA256_H7, 3158c2ecf20Sopenharmony_ci}; 3168c2ecf20Sopenharmony_ci 3178c2ecf20Sopenharmony_cistatic const u64 chcr_sha384_init[SHA512_DIGEST_SIZE / 8] = { 3188c2ecf20Sopenharmony_ci SHA384_H0, SHA384_H1, SHA384_H2, SHA384_H3, 3198c2ecf20Sopenharmony_ci SHA384_H4, SHA384_H5, SHA384_H6, SHA384_H7, 3208c2ecf20Sopenharmony_ci}; 3218c2ecf20Sopenharmony_ci 3228c2ecf20Sopenharmony_cistatic const u64 chcr_sha512_init[SHA512_DIGEST_SIZE / 8] = { 3238c2ecf20Sopenharmony_ci SHA512_H0, SHA512_H1, SHA512_H2, SHA512_H3, 3248c2ecf20Sopenharmony_ci SHA512_H4, SHA512_H5, SHA512_H6, SHA512_H7, 3258c2ecf20Sopenharmony_ci}; 3268c2ecf20Sopenharmony_ci 3278c2ecf20Sopenharmony_cistatic inline void copy_hash_init_values(char *key, int digestsize) 3288c2ecf20Sopenharmony_ci{ 3298c2ecf20Sopenharmony_ci u8 i; 3308c2ecf20Sopenharmony_ci __be32 *dkey = (__be32 *)key; 3318c2ecf20Sopenharmony_ci u64 *ldkey = (u64 *)key; 3328c2ecf20Sopenharmony_ci __be64 *sha384 = (__be64 *)chcr_sha384_init; 3338c2ecf20Sopenharmony_ci __be64 *sha512 = (__be64 *)chcr_sha512_init; 3348c2ecf20Sopenharmony_ci 3358c2ecf20Sopenharmony_ci switch (digestsize) { 3368c2ecf20Sopenharmony_ci case SHA1_DIGEST_SIZE: 3378c2ecf20Sopenharmony_ci for (i = 0; i < SHA1_INIT_STATE; i++) 3388c2ecf20Sopenharmony_ci dkey[i] = cpu_to_be32(chcr_sha1_init[i]); 3398c2ecf20Sopenharmony_ci break; 3408c2ecf20Sopenharmony_ci case SHA224_DIGEST_SIZE: 3418c2ecf20Sopenharmony_ci for (i = 0; i < SHA224_INIT_STATE; i++) 3428c2ecf20Sopenharmony_ci dkey[i] = cpu_to_be32(chcr_sha224_init[i]); 3438c2ecf20Sopenharmony_ci break; 3448c2ecf20Sopenharmony_ci case SHA256_DIGEST_SIZE: 3458c2ecf20Sopenharmony_ci for (i = 0; i < SHA256_INIT_STATE; i++) 3468c2ecf20Sopenharmony_ci dkey[i] = cpu_to_be32(chcr_sha256_init[i]); 3478c2ecf20Sopenharmony_ci break; 3488c2ecf20Sopenharmony_ci case SHA384_DIGEST_SIZE: 3498c2ecf20Sopenharmony_ci for (i = 0; i < SHA384_INIT_STATE; i++) 3508c2ecf20Sopenharmony_ci ldkey[i] = be64_to_cpu(sha384[i]); 3518c2ecf20Sopenharmony_ci break; 3528c2ecf20Sopenharmony_ci case SHA512_DIGEST_SIZE: 3538c2ecf20Sopenharmony_ci for (i = 0; i < SHA512_INIT_STATE; i++) 3548c2ecf20Sopenharmony_ci ldkey[i] = be64_to_cpu(sha512[i]); 3558c2ecf20Sopenharmony_ci break; 3568c2ecf20Sopenharmony_ci } 3578c2ecf20Sopenharmony_ci} 3588c2ecf20Sopenharmony_ci 3598c2ecf20Sopenharmony_ci/* Number of len fields(8) * size of one addr field */ 3608c2ecf20Sopenharmony_ci#define PHYSDSGL_MAX_LEN_SIZE 16 3618c2ecf20Sopenharmony_ci 3628c2ecf20Sopenharmony_cistatic inline u16 get_space_for_phys_dsgl(unsigned int sgl_entr) 3638c2ecf20Sopenharmony_ci{ 3648c2ecf20Sopenharmony_ci /* len field size + addr field size */ 3658c2ecf20Sopenharmony_ci return ((sgl_entr >> 3) + ((sgl_entr % 8) ? 3668c2ecf20Sopenharmony_ci 1 : 0)) * PHYSDSGL_MAX_LEN_SIZE + 3678c2ecf20Sopenharmony_ci (sgl_entr << 3) + ((sgl_entr % 2 ? 1 : 0) << 3); 3688c2ecf20Sopenharmony_ci} 3698c2ecf20Sopenharmony_ci 3708c2ecf20Sopenharmony_ci/* The AES s-transform matrix (s-box). */ 3718c2ecf20Sopenharmony_cistatic const u8 aes_sbox[256] = { 3728c2ecf20Sopenharmony_ci 99, 124, 119, 123, 242, 107, 111, 197, 48, 1, 103, 43, 254, 215, 3738c2ecf20Sopenharmony_ci 171, 118, 202, 130, 201, 125, 250, 89, 71, 240, 173, 212, 162, 175, 3748c2ecf20Sopenharmony_ci 156, 164, 114, 192, 183, 253, 147, 38, 54, 63, 247, 204, 52, 165, 3758c2ecf20Sopenharmony_ci 229, 241, 113, 216, 49, 21, 4, 199, 35, 195, 24, 150, 5, 154, 7, 3768c2ecf20Sopenharmony_ci 18, 128, 226, 235, 39, 178, 117, 9, 131, 44, 26, 27, 110, 90, 3778c2ecf20Sopenharmony_ci 160, 82, 59, 214, 179, 41, 227, 47, 132, 83, 209, 0, 237, 32, 3788c2ecf20Sopenharmony_ci 252, 177, 91, 106, 203, 190, 57, 74, 76, 88, 207, 208, 239, 170, 3798c2ecf20Sopenharmony_ci 251, 67, 77, 51, 133, 69, 249, 2, 127, 80, 60, 159, 168, 81, 3808c2ecf20Sopenharmony_ci 163, 64, 143, 146, 157, 56, 245, 188, 182, 218, 33, 16, 255, 243, 3818c2ecf20Sopenharmony_ci 210, 205, 12, 19, 236, 95, 151, 68, 23, 196, 167, 126, 61, 100, 3828c2ecf20Sopenharmony_ci 93, 25, 115, 96, 129, 79, 220, 34, 42, 144, 136, 70, 238, 184, 3838c2ecf20Sopenharmony_ci 20, 222, 94, 11, 219, 224, 50, 58, 10, 73, 6, 36, 92, 194, 3848c2ecf20Sopenharmony_ci 211, 172, 98, 145, 149, 228, 121, 231, 200, 55, 109, 141, 213, 78, 3858c2ecf20Sopenharmony_ci 169, 108, 86, 244, 234, 101, 122, 174, 8, 186, 120, 37, 46, 28, 166, 3868c2ecf20Sopenharmony_ci 180, 198, 232, 221, 116, 31, 75, 189, 139, 138, 112, 62, 181, 102, 3878c2ecf20Sopenharmony_ci 72, 3, 246, 14, 97, 53, 87, 185, 134, 193, 29, 158, 225, 248, 3888c2ecf20Sopenharmony_ci 152, 17, 105, 217, 142, 148, 155, 30, 135, 233, 206, 85, 40, 223, 3898c2ecf20Sopenharmony_ci 140, 161, 137, 13, 191, 230, 66, 104, 65, 153, 45, 15, 176, 84, 3908c2ecf20Sopenharmony_ci 187, 22 3918c2ecf20Sopenharmony_ci}; 3928c2ecf20Sopenharmony_ci 3938c2ecf20Sopenharmony_cistatic inline u32 aes_ks_subword(const u32 w) 3948c2ecf20Sopenharmony_ci{ 3958c2ecf20Sopenharmony_ci u8 bytes[4]; 3968c2ecf20Sopenharmony_ci 3978c2ecf20Sopenharmony_ci *(u32 *)(&bytes[0]) = w; 3988c2ecf20Sopenharmony_ci bytes[0] = aes_sbox[bytes[0]]; 3998c2ecf20Sopenharmony_ci bytes[1] = aes_sbox[bytes[1]]; 4008c2ecf20Sopenharmony_ci bytes[2] = aes_sbox[bytes[2]]; 4018c2ecf20Sopenharmony_ci bytes[3] = aes_sbox[bytes[3]]; 4028c2ecf20Sopenharmony_ci return *(u32 *)(&bytes[0]); 4038c2ecf20Sopenharmony_ci} 4048c2ecf20Sopenharmony_ci 4058c2ecf20Sopenharmony_ci#endif /* __CHCR_ALGO_H__ */ 406