162306a36Sopenharmony_ci/*
262306a36Sopenharmony_ci * This file is part of the Chelsio T6 Crypto driver for Linux.
362306a36Sopenharmony_ci *
462306a36Sopenharmony_ci * Copyright (c) 2003-2016 Chelsio Communications, Inc. All rights reserved.
562306a36Sopenharmony_ci *
662306a36Sopenharmony_ci * This software is available to you under a choice of one of two
762306a36Sopenharmony_ci * licenses.  You may choose to be licensed under the terms of the GNU
862306a36Sopenharmony_ci * General Public License (GPL) Version 2, available from the file
962306a36Sopenharmony_ci * COPYING in the main directory of this source tree, or the
1062306a36Sopenharmony_ci * OpenIB.org BSD license below:
1162306a36Sopenharmony_ci *
1262306a36Sopenharmony_ci *     Redistribution and use in source and binary forms, with or
1362306a36Sopenharmony_ci *     without modification, are permitted provided that the following
1462306a36Sopenharmony_ci *     conditions are met:
1562306a36Sopenharmony_ci *
1662306a36Sopenharmony_ci *      - Redistributions of source code must retain the above
1762306a36Sopenharmony_ci *        copyright notice, this list of conditions and the following
1862306a36Sopenharmony_ci *        disclaimer.
1962306a36Sopenharmony_ci *
2062306a36Sopenharmony_ci *      - Redistributions in binary form must reproduce the above
2162306a36Sopenharmony_ci *        copyright notice, this list of conditions and the following
2262306a36Sopenharmony_ci *        disclaimer in the documentation and/or other materials
2362306a36Sopenharmony_ci *        provided with the distribution.
2462306a36Sopenharmony_ci *
2562306a36Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2662306a36Sopenharmony_ci * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2762306a36Sopenharmony_ci * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2862306a36Sopenharmony_ci * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
2962306a36Sopenharmony_ci * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
3062306a36Sopenharmony_ci * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3162306a36Sopenharmony_ci * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3262306a36Sopenharmony_ci * SOFTWARE.
3362306a36Sopenharmony_ci *
3462306a36Sopenharmony_ci */
3562306a36Sopenharmony_ci
3662306a36Sopenharmony_ci#ifndef __CHCR_ALGO_H__
3762306a36Sopenharmony_ci#define __CHCR_ALGO_H__
3862306a36Sopenharmony_ci
3962306a36Sopenharmony_ci/* Crypto key context */
4062306a36Sopenharmony_ci#define KEY_CONTEXT_CTX_LEN_S           24
4162306a36Sopenharmony_ci#define KEY_CONTEXT_CTX_LEN_M           0xff
4262306a36Sopenharmony_ci#define KEY_CONTEXT_CTX_LEN_V(x)        ((x) << KEY_CONTEXT_CTX_LEN_S)
4362306a36Sopenharmony_ci#define KEY_CONTEXT_CTX_LEN_G(x) \
4462306a36Sopenharmony_ci	(((x) >> KEY_CONTEXT_CTX_LEN_S) & KEY_CONTEXT_CTX_LEN_M)
4562306a36Sopenharmony_ci
4662306a36Sopenharmony_ci#define KEY_CONTEXT_DUAL_CK_S      12
4762306a36Sopenharmony_ci#define KEY_CONTEXT_DUAL_CK_M      0x1
4862306a36Sopenharmony_ci#define KEY_CONTEXT_DUAL_CK_V(x)   ((x) << KEY_CONTEXT_DUAL_CK_S)
4962306a36Sopenharmony_ci#define KEY_CONTEXT_DUAL_CK_G(x)   \
5062306a36Sopenharmony_ci(((x) >> KEY_CONTEXT_DUAL_CK_S) & KEY_CONTEXT_DUAL_CK_M)
5162306a36Sopenharmony_ci#define KEY_CONTEXT_DUAL_CK_F      KEY_CONTEXT_DUAL_CK_V(1U)
5262306a36Sopenharmony_ci
5362306a36Sopenharmony_ci#define KEY_CONTEXT_SALT_PRESENT_S      10
5462306a36Sopenharmony_ci#define KEY_CONTEXT_SALT_PRESENT_M      0x1
5562306a36Sopenharmony_ci#define KEY_CONTEXT_SALT_PRESENT_V(x)   ((x) << KEY_CONTEXT_SALT_PRESENT_S)
5662306a36Sopenharmony_ci#define KEY_CONTEXT_SALT_PRESENT_G(x)   \
5762306a36Sopenharmony_ci	(((x) >> KEY_CONTEXT_SALT_PRESENT_S) & \
5862306a36Sopenharmony_ci	 KEY_CONTEXT_SALT_PRESENT_M)
5962306a36Sopenharmony_ci#define KEY_CONTEXT_SALT_PRESENT_F      KEY_CONTEXT_SALT_PRESENT_V(1U)
6062306a36Sopenharmony_ci
6162306a36Sopenharmony_ci#define KEY_CONTEXT_VALID_S     0
6262306a36Sopenharmony_ci#define KEY_CONTEXT_VALID_M     0x1
6362306a36Sopenharmony_ci#define KEY_CONTEXT_VALID_V(x)  ((x) << KEY_CONTEXT_VALID_S)
6462306a36Sopenharmony_ci#define KEY_CONTEXT_VALID_G(x)  \
6562306a36Sopenharmony_ci	(((x) >> KEY_CONTEXT_VALID_S) & \
6662306a36Sopenharmony_ci	 KEY_CONTEXT_VALID_M)
6762306a36Sopenharmony_ci#define KEY_CONTEXT_VALID_F     KEY_CONTEXT_VALID_V(1U)
6862306a36Sopenharmony_ci
6962306a36Sopenharmony_ci#define KEY_CONTEXT_CK_SIZE_S           6
7062306a36Sopenharmony_ci#define KEY_CONTEXT_CK_SIZE_M           0xf
7162306a36Sopenharmony_ci#define KEY_CONTEXT_CK_SIZE_V(x)        ((x) << KEY_CONTEXT_CK_SIZE_S)
7262306a36Sopenharmony_ci#define KEY_CONTEXT_CK_SIZE_G(x)        \
7362306a36Sopenharmony_ci	(((x) >> KEY_CONTEXT_CK_SIZE_S) & KEY_CONTEXT_CK_SIZE_M)
7462306a36Sopenharmony_ci
7562306a36Sopenharmony_ci#define KEY_CONTEXT_MK_SIZE_S           2
7662306a36Sopenharmony_ci#define KEY_CONTEXT_MK_SIZE_M           0xf
7762306a36Sopenharmony_ci#define KEY_CONTEXT_MK_SIZE_V(x)        ((x) << KEY_CONTEXT_MK_SIZE_S)
7862306a36Sopenharmony_ci#define KEY_CONTEXT_MK_SIZE_G(x)        \
7962306a36Sopenharmony_ci	(((x) >> KEY_CONTEXT_MK_SIZE_S) & KEY_CONTEXT_MK_SIZE_M)
8062306a36Sopenharmony_ci
8162306a36Sopenharmony_ci#define KEY_CONTEXT_OPAD_PRESENT_S      11
8262306a36Sopenharmony_ci#define KEY_CONTEXT_OPAD_PRESENT_M      0x1
8362306a36Sopenharmony_ci#define KEY_CONTEXT_OPAD_PRESENT_V(x)   ((x) << KEY_CONTEXT_OPAD_PRESENT_S)
8462306a36Sopenharmony_ci#define KEY_CONTEXT_OPAD_PRESENT_G(x)   \
8562306a36Sopenharmony_ci	(((x) >> KEY_CONTEXT_OPAD_PRESENT_S) & \
8662306a36Sopenharmony_ci	 KEY_CONTEXT_OPAD_PRESENT_M)
8762306a36Sopenharmony_ci#define KEY_CONTEXT_OPAD_PRESENT_F      KEY_CONTEXT_OPAD_PRESENT_V(1U)
8862306a36Sopenharmony_ci
8962306a36Sopenharmony_ci#define CHCR_HASH_MAX_DIGEST_SIZE 64
9062306a36Sopenharmony_ci#define CHCR_MAX_SHA_DIGEST_SIZE 64
9162306a36Sopenharmony_ci
9262306a36Sopenharmony_ci#define IPSEC_TRUNCATED_ICV_SIZE 12
9362306a36Sopenharmony_ci#define TLS_TRUNCATED_HMAC_SIZE 10
9462306a36Sopenharmony_ci#define CBCMAC_DIGEST_SIZE 16
9562306a36Sopenharmony_ci#define MAX_HASH_NAME 20
9662306a36Sopenharmony_ci
9762306a36Sopenharmony_ci#define SHA1_INIT_STATE_5X4B    5
9862306a36Sopenharmony_ci#define SHA256_INIT_STATE_8X4B  8
9962306a36Sopenharmony_ci#define SHA512_INIT_STATE_8X8B  8
10062306a36Sopenharmony_ci#define SHA1_INIT_STATE         SHA1_INIT_STATE_5X4B
10162306a36Sopenharmony_ci#define SHA224_INIT_STATE       SHA256_INIT_STATE_8X4B
10262306a36Sopenharmony_ci#define SHA256_INIT_STATE       SHA256_INIT_STATE_8X4B
10362306a36Sopenharmony_ci#define SHA384_INIT_STATE       SHA512_INIT_STATE_8X8B
10462306a36Sopenharmony_ci#define SHA512_INIT_STATE       SHA512_INIT_STATE_8X8B
10562306a36Sopenharmony_ci
10662306a36Sopenharmony_ci#define DUMMY_BYTES 16
10762306a36Sopenharmony_ci
10862306a36Sopenharmony_ci#define IPAD_DATA 0x36363636
10962306a36Sopenharmony_ci#define OPAD_DATA 0x5c5c5c5c
11062306a36Sopenharmony_ci
11162306a36Sopenharmony_ci#define TRANSHDR_SIZE(kctx_len)\
11262306a36Sopenharmony_ci	(sizeof(struct chcr_wr) +\
11362306a36Sopenharmony_ci	 kctx_len)
11462306a36Sopenharmony_ci#define CIPHER_TRANSHDR_SIZE(kctx_len, sge_pairs) \
11562306a36Sopenharmony_ci	(TRANSHDR_SIZE((kctx_len)) + (sge_pairs) +\
11662306a36Sopenharmony_ci	 sizeof(struct cpl_rx_phys_dsgl) + AES_BLOCK_SIZE)
11762306a36Sopenharmony_ci#define HASH_TRANSHDR_SIZE(kctx_len)\
11862306a36Sopenharmony_ci	(TRANSHDR_SIZE(kctx_len) + DUMMY_BYTES)
11962306a36Sopenharmony_ci
12062306a36Sopenharmony_ci
12162306a36Sopenharmony_ci#define FILL_SEC_CPL_OP_IVINSR(id, len, ofst)      \
12262306a36Sopenharmony_ci	htonl( \
12362306a36Sopenharmony_ci	       CPL_TX_SEC_PDU_OPCODE_V(CPL_TX_SEC_PDU) | \
12462306a36Sopenharmony_ci	       CPL_TX_SEC_PDU_RXCHID_V((id)) | \
12562306a36Sopenharmony_ci	       CPL_TX_SEC_PDU_ACKFOLLOWS_V(0) | \
12662306a36Sopenharmony_ci	       CPL_TX_SEC_PDU_ULPTXLPBK_V(1) | \
12762306a36Sopenharmony_ci	       CPL_TX_SEC_PDU_CPLLEN_V((len)) | \
12862306a36Sopenharmony_ci	       CPL_TX_SEC_PDU_PLACEHOLDER_V(0) | \
12962306a36Sopenharmony_ci	       CPL_TX_SEC_PDU_IVINSRTOFST_V((ofst)))
13062306a36Sopenharmony_ci
13162306a36Sopenharmony_ci#define  FILL_SEC_CPL_CIPHERSTOP_HI(a_start, a_stop, c_start, c_stop_hi) \
13262306a36Sopenharmony_ci	htonl( \
13362306a36Sopenharmony_ci	       CPL_TX_SEC_PDU_AADSTART_V((a_start)) | \
13462306a36Sopenharmony_ci	       CPL_TX_SEC_PDU_AADSTOP_V((a_stop)) | \
13562306a36Sopenharmony_ci	       CPL_TX_SEC_PDU_CIPHERSTART_V((c_start)) | \
13662306a36Sopenharmony_ci	       CPL_TX_SEC_PDU_CIPHERSTOP_HI_V((c_stop_hi)))
13762306a36Sopenharmony_ci
13862306a36Sopenharmony_ci#define  FILL_SEC_CPL_AUTHINSERT(c_stop_lo, a_start, a_stop, a_inst) \
13962306a36Sopenharmony_ci	htonl( \
14062306a36Sopenharmony_ci	       CPL_TX_SEC_PDU_CIPHERSTOP_LO_V((c_stop_lo)) | \
14162306a36Sopenharmony_ci		CPL_TX_SEC_PDU_AUTHSTART_V((a_start)) | \
14262306a36Sopenharmony_ci		CPL_TX_SEC_PDU_AUTHSTOP_V((a_stop)) | \
14362306a36Sopenharmony_ci		CPL_TX_SEC_PDU_AUTHINSERT_V((a_inst)))
14462306a36Sopenharmony_ci
14562306a36Sopenharmony_ci#define  FILL_SEC_CPL_SCMD0_SEQNO(ctrl, seq, cmode, amode, opad, size)  \
14662306a36Sopenharmony_ci		htonl( \
14762306a36Sopenharmony_ci		SCMD_SEQ_NO_CTRL_V(0) | \
14862306a36Sopenharmony_ci		SCMD_STATUS_PRESENT_V(0) | \
14962306a36Sopenharmony_ci		SCMD_PROTO_VERSION_V(CHCR_SCMD_PROTO_VERSION_GENERIC) | \
15062306a36Sopenharmony_ci		SCMD_ENC_DEC_CTRL_V((ctrl)) | \
15162306a36Sopenharmony_ci		SCMD_CIPH_AUTH_SEQ_CTRL_V((seq)) | \
15262306a36Sopenharmony_ci		SCMD_CIPH_MODE_V((cmode)) | \
15362306a36Sopenharmony_ci		SCMD_AUTH_MODE_V((amode)) | \
15462306a36Sopenharmony_ci		SCMD_HMAC_CTRL_V((opad)) | \
15562306a36Sopenharmony_ci		SCMD_IV_SIZE_V((size)) | \
15662306a36Sopenharmony_ci		SCMD_NUM_IVS_V(0))
15762306a36Sopenharmony_ci
15862306a36Sopenharmony_ci#define FILL_SEC_CPL_IVGEN_HDRLEN(last, more, ctx_in, mac, ivdrop, len) htonl( \
15962306a36Sopenharmony_ci		SCMD_ENB_DBGID_V(0) | \
16062306a36Sopenharmony_ci		SCMD_IV_GEN_CTRL_V(0) | \
16162306a36Sopenharmony_ci		SCMD_LAST_FRAG_V((last)) | \
16262306a36Sopenharmony_ci		SCMD_MORE_FRAGS_V((more)) | \
16362306a36Sopenharmony_ci		SCMD_TLS_COMPPDU_V(0) | \
16462306a36Sopenharmony_ci		SCMD_KEY_CTX_INLINE_V((ctx_in)) | \
16562306a36Sopenharmony_ci		SCMD_TLS_FRAG_ENABLE_V(0) | \
16662306a36Sopenharmony_ci		SCMD_MAC_ONLY_V((mac)) |  \
16762306a36Sopenharmony_ci		SCMD_AADIVDROP_V((ivdrop)) | \
16862306a36Sopenharmony_ci		SCMD_HDR_LEN_V((len)))
16962306a36Sopenharmony_ci
17062306a36Sopenharmony_ci#define  FILL_KEY_CTX_HDR(ck_size, mk_size, d_ck, opad, ctx_len) \
17162306a36Sopenharmony_ci		htonl(KEY_CONTEXT_VALID_V(1) | \
17262306a36Sopenharmony_ci		      KEY_CONTEXT_CK_SIZE_V((ck_size)) | \
17362306a36Sopenharmony_ci		      KEY_CONTEXT_MK_SIZE_V(mk_size) | \
17462306a36Sopenharmony_ci		      KEY_CONTEXT_DUAL_CK_V((d_ck)) | \
17562306a36Sopenharmony_ci		      KEY_CONTEXT_OPAD_PRESENT_V((opad)) | \
17662306a36Sopenharmony_ci		      KEY_CONTEXT_SALT_PRESENT_V(1) | \
17762306a36Sopenharmony_ci		      KEY_CONTEXT_CTX_LEN_V((ctx_len)))
17862306a36Sopenharmony_ci
17962306a36Sopenharmony_ci#define  FILL_KEY_CRX_HDR(ck_size, mk_size, d_ck, opad, ctx_len) \
18062306a36Sopenharmony_ci		htonl(TLS_KEYCTX_RXMK_SIZE_V(mk_size) | \
18162306a36Sopenharmony_ci		      TLS_KEYCTX_RXCK_SIZE_V(ck_size) | \
18262306a36Sopenharmony_ci		      TLS_KEYCTX_RX_VALID_V(1) | \
18362306a36Sopenharmony_ci		      TLS_KEYCTX_RX_SEQCTR_V(3) | \
18462306a36Sopenharmony_ci		      TLS_KEYCTX_RXAUTH_MODE_V(4) | \
18562306a36Sopenharmony_ci		      TLS_KEYCTX_RXCIPH_MODE_V(2) | \
18662306a36Sopenharmony_ci		      TLS_KEYCTX_RXFLIT_CNT_V((ctx_len)))
18762306a36Sopenharmony_ci
18862306a36Sopenharmony_ci#define FILL_WR_OP_CCTX_SIZE \
18962306a36Sopenharmony_ci		htonl( \
19062306a36Sopenharmony_ci			FW_CRYPTO_LOOKASIDE_WR_OPCODE_V( \
19162306a36Sopenharmony_ci			FW_CRYPTO_LOOKASIDE_WR) | \
19262306a36Sopenharmony_ci			FW_CRYPTO_LOOKASIDE_WR_COMPL_V(0) | \
19362306a36Sopenharmony_ci			FW_CRYPTO_LOOKASIDE_WR_IMM_LEN_V((0)) | \
19462306a36Sopenharmony_ci			FW_CRYPTO_LOOKASIDE_WR_CCTX_LOC_V(0) | \
19562306a36Sopenharmony_ci			FW_CRYPTO_LOOKASIDE_WR_CCTX_SIZE_V(0))
19662306a36Sopenharmony_ci
19762306a36Sopenharmony_ci#define FILL_WR_RX_Q_ID(cid, qid, lcb, fid) \
19862306a36Sopenharmony_ci		htonl( \
19962306a36Sopenharmony_ci			FW_CRYPTO_LOOKASIDE_WR_RX_CHID_V((cid)) | \
20062306a36Sopenharmony_ci			FW_CRYPTO_LOOKASIDE_WR_RX_Q_ID_V((qid)) | \
20162306a36Sopenharmony_ci			FW_CRYPTO_LOOKASIDE_WR_LCB_V((lcb)) | \
20262306a36Sopenharmony_ci			FW_CRYPTO_LOOKASIDE_WR_IV_V((IV_NOP)) | \
20362306a36Sopenharmony_ci			FW_CRYPTO_LOOKASIDE_WR_FQIDX_V(fid))
20462306a36Sopenharmony_ci
20562306a36Sopenharmony_ci#define FILL_ULPTX_CMD_DEST(cid, qid) \
20662306a36Sopenharmony_ci	htonl(ULPTX_CMD_V(ULP_TX_PKT) | \
20762306a36Sopenharmony_ci	      ULP_TXPKT_DEST_V(0) | \
20862306a36Sopenharmony_ci	      ULP_TXPKT_DATAMODIFY_V(0) | \
20962306a36Sopenharmony_ci	      ULP_TXPKT_CHANNELID_V((cid)) | \
21062306a36Sopenharmony_ci	      ULP_TXPKT_RO_V(1) | \
21162306a36Sopenharmony_ci	      ULP_TXPKT_FID_V(qid))
21262306a36Sopenharmony_ci
21362306a36Sopenharmony_ci#define KEYCTX_ALIGN_PAD(bs) ({unsigned int _bs = (bs);\
21462306a36Sopenharmony_ci			      _bs == SHA1_DIGEST_SIZE ? 12 : 0; })
21562306a36Sopenharmony_ci
21662306a36Sopenharmony_ci#define FILL_PLD_SIZE_HASH_SIZE(payload_sgl_len, sgl_lengths, total_frags) \
21762306a36Sopenharmony_ci	htonl(FW_CRYPTO_LOOKASIDE_WR_PLD_SIZE_V(payload_sgl_len ? \
21862306a36Sopenharmony_ci						sgl_lengths[total_frags] : 0) |\
21962306a36Sopenharmony_ci	      FW_CRYPTO_LOOKASIDE_WR_HASH_SIZE_V(0))
22062306a36Sopenharmony_ci
22162306a36Sopenharmony_ci#define FILL_LEN_PKD(calc_tx_flits_ofld, skb) \
22262306a36Sopenharmony_ci	htonl(FW_CRYPTO_LOOKASIDE_WR_LEN16_V(DIV_ROUND_UP((\
22362306a36Sopenharmony_ci					   calc_tx_flits_ofld(skb) * 8), 16)))
22462306a36Sopenharmony_ci
22562306a36Sopenharmony_ci#define FILL_CMD_MORE(immdatalen) htonl(ULPTX_CMD_V(ULP_TX_SC_IMM) |\
22662306a36Sopenharmony_ci					ULP_TX_SC_MORE_V((immdatalen)))
22762306a36Sopenharmony_ci#define MAX_NK 8
22862306a36Sopenharmony_ci#define MAX_DSGL_ENT			32
22962306a36Sopenharmony_ci#define MIN_AUTH_SG			1 /* IV */
23062306a36Sopenharmony_ci#define MIN_GCM_SG			1 /* IV */
23162306a36Sopenharmony_ci#define MIN_DIGEST_SG			1 /*Partial Buffer*/
23262306a36Sopenharmony_ci#define MIN_CCM_SG			1 /*IV+B0*/
23362306a36Sopenharmony_ci#define CIP_SPACE_LEFT(len) \
23462306a36Sopenharmony_ci	((SGE_MAX_WR_LEN - CIP_WR_MIN_LEN - (len)))
23562306a36Sopenharmony_ci#define HASH_SPACE_LEFT(len) \
23662306a36Sopenharmony_ci	((SGE_MAX_WR_LEN - HASH_WR_MIN_LEN - (len)))
23762306a36Sopenharmony_ci
23862306a36Sopenharmony_cistruct algo_param {
23962306a36Sopenharmony_ci	unsigned int auth_mode;
24062306a36Sopenharmony_ci	unsigned int mk_size;
24162306a36Sopenharmony_ci	unsigned int result_size;
24262306a36Sopenharmony_ci};
24362306a36Sopenharmony_ci
24462306a36Sopenharmony_cistruct hash_wr_param {
24562306a36Sopenharmony_ci	struct algo_param alg_prm;
24662306a36Sopenharmony_ci	unsigned int opad_needed;
24762306a36Sopenharmony_ci	unsigned int more;
24862306a36Sopenharmony_ci	unsigned int last;
24962306a36Sopenharmony_ci	unsigned int kctx_len;
25062306a36Sopenharmony_ci	unsigned int sg_len;
25162306a36Sopenharmony_ci	unsigned int bfr_len;
25262306a36Sopenharmony_ci	unsigned int hash_size;
25362306a36Sopenharmony_ci	u64 scmd1;
25462306a36Sopenharmony_ci};
25562306a36Sopenharmony_ci
25662306a36Sopenharmony_cistruct cipher_wr_param {
25762306a36Sopenharmony_ci	struct skcipher_request *req;
25862306a36Sopenharmony_ci	char *iv;
25962306a36Sopenharmony_ci	int bytes;
26062306a36Sopenharmony_ci	unsigned short qid;
26162306a36Sopenharmony_ci};
26262306a36Sopenharmony_cienum {
26362306a36Sopenharmony_ci	AES_KEYLENGTH_128BIT = 128,
26462306a36Sopenharmony_ci	AES_KEYLENGTH_192BIT = 192,
26562306a36Sopenharmony_ci	AES_KEYLENGTH_256BIT = 256
26662306a36Sopenharmony_ci};
26762306a36Sopenharmony_ci
26862306a36Sopenharmony_cienum {
26962306a36Sopenharmony_ci	KEYLENGTH_3BYTES = 3,
27062306a36Sopenharmony_ci	KEYLENGTH_4BYTES = 4,
27162306a36Sopenharmony_ci	KEYLENGTH_6BYTES = 6,
27262306a36Sopenharmony_ci	KEYLENGTH_8BYTES = 8
27362306a36Sopenharmony_ci};
27462306a36Sopenharmony_ci
27562306a36Sopenharmony_cienum {
27662306a36Sopenharmony_ci	NUMBER_OF_ROUNDS_10 = 10,
27762306a36Sopenharmony_ci	NUMBER_OF_ROUNDS_12 = 12,
27862306a36Sopenharmony_ci	NUMBER_OF_ROUNDS_14 = 14,
27962306a36Sopenharmony_ci};
28062306a36Sopenharmony_ci
28162306a36Sopenharmony_ci/*
28262306a36Sopenharmony_ci * CCM defines values of 4, 6, 8, 10, 12, 14, and 16 octets,
28362306a36Sopenharmony_ci * where they indicate the size of the integrity check value (ICV)
28462306a36Sopenharmony_ci */
28562306a36Sopenharmony_cienum {
28662306a36Sopenharmony_ci	ICV_4  = 4,
28762306a36Sopenharmony_ci	ICV_6  = 6,
28862306a36Sopenharmony_ci	ICV_8  = 8,
28962306a36Sopenharmony_ci	ICV_10 = 10,
29062306a36Sopenharmony_ci	ICV_12 = 12,
29162306a36Sopenharmony_ci	ICV_13 = 13,
29262306a36Sopenharmony_ci	ICV_14 = 14,
29362306a36Sopenharmony_ci	ICV_15 = 15,
29462306a36Sopenharmony_ci	ICV_16 = 16
29562306a36Sopenharmony_ci};
29662306a36Sopenharmony_ci
29762306a36Sopenharmony_cistruct phys_sge_pairs {
29862306a36Sopenharmony_ci	__be16 len[8];
29962306a36Sopenharmony_ci	__be64 addr[8];
30062306a36Sopenharmony_ci};
30162306a36Sopenharmony_ci
30262306a36Sopenharmony_ci
30362306a36Sopenharmony_cistatic const u32 chcr_sha1_init[SHA1_DIGEST_SIZE / 4] = {
30462306a36Sopenharmony_ci		SHA1_H0, SHA1_H1, SHA1_H2, SHA1_H3, SHA1_H4,
30562306a36Sopenharmony_ci};
30662306a36Sopenharmony_ci
30762306a36Sopenharmony_cistatic const u32 chcr_sha224_init[SHA256_DIGEST_SIZE / 4] = {
30862306a36Sopenharmony_ci		SHA224_H0, SHA224_H1, SHA224_H2, SHA224_H3,
30962306a36Sopenharmony_ci		SHA224_H4, SHA224_H5, SHA224_H6, SHA224_H7,
31062306a36Sopenharmony_ci};
31162306a36Sopenharmony_ci
31262306a36Sopenharmony_cistatic const u32 chcr_sha256_init[SHA256_DIGEST_SIZE / 4] = {
31362306a36Sopenharmony_ci		SHA256_H0, SHA256_H1, SHA256_H2, SHA256_H3,
31462306a36Sopenharmony_ci		SHA256_H4, SHA256_H5, SHA256_H6, SHA256_H7,
31562306a36Sopenharmony_ci};
31662306a36Sopenharmony_ci
31762306a36Sopenharmony_cistatic const u64 chcr_sha384_init[SHA512_DIGEST_SIZE / 8] = {
31862306a36Sopenharmony_ci		SHA384_H0, SHA384_H1, SHA384_H2, SHA384_H3,
31962306a36Sopenharmony_ci		SHA384_H4, SHA384_H5, SHA384_H6, SHA384_H7,
32062306a36Sopenharmony_ci};
32162306a36Sopenharmony_ci
32262306a36Sopenharmony_cistatic const u64 chcr_sha512_init[SHA512_DIGEST_SIZE / 8] = {
32362306a36Sopenharmony_ci		SHA512_H0, SHA512_H1, SHA512_H2, SHA512_H3,
32462306a36Sopenharmony_ci		SHA512_H4, SHA512_H5, SHA512_H6, SHA512_H7,
32562306a36Sopenharmony_ci};
32662306a36Sopenharmony_ci
32762306a36Sopenharmony_cistatic inline void copy_hash_init_values(char *key, int digestsize)
32862306a36Sopenharmony_ci{
32962306a36Sopenharmony_ci	u8 i;
33062306a36Sopenharmony_ci	__be32 *dkey = (__be32 *)key;
33162306a36Sopenharmony_ci	u64 *ldkey = (u64 *)key;
33262306a36Sopenharmony_ci	__be64 *sha384 = (__be64 *)chcr_sha384_init;
33362306a36Sopenharmony_ci	__be64 *sha512 = (__be64 *)chcr_sha512_init;
33462306a36Sopenharmony_ci
33562306a36Sopenharmony_ci	switch (digestsize) {
33662306a36Sopenharmony_ci	case SHA1_DIGEST_SIZE:
33762306a36Sopenharmony_ci		for (i = 0; i < SHA1_INIT_STATE; i++)
33862306a36Sopenharmony_ci			dkey[i] = cpu_to_be32(chcr_sha1_init[i]);
33962306a36Sopenharmony_ci		break;
34062306a36Sopenharmony_ci	case SHA224_DIGEST_SIZE:
34162306a36Sopenharmony_ci		for (i = 0; i < SHA224_INIT_STATE; i++)
34262306a36Sopenharmony_ci			dkey[i] = cpu_to_be32(chcr_sha224_init[i]);
34362306a36Sopenharmony_ci		break;
34462306a36Sopenharmony_ci	case SHA256_DIGEST_SIZE:
34562306a36Sopenharmony_ci		for (i = 0; i < SHA256_INIT_STATE; i++)
34662306a36Sopenharmony_ci			dkey[i] = cpu_to_be32(chcr_sha256_init[i]);
34762306a36Sopenharmony_ci		break;
34862306a36Sopenharmony_ci	case SHA384_DIGEST_SIZE:
34962306a36Sopenharmony_ci		for (i = 0; i < SHA384_INIT_STATE; i++)
35062306a36Sopenharmony_ci			ldkey[i] = be64_to_cpu(sha384[i]);
35162306a36Sopenharmony_ci		break;
35262306a36Sopenharmony_ci	case SHA512_DIGEST_SIZE:
35362306a36Sopenharmony_ci		for (i = 0; i < SHA512_INIT_STATE; i++)
35462306a36Sopenharmony_ci			ldkey[i] = be64_to_cpu(sha512[i]);
35562306a36Sopenharmony_ci		break;
35662306a36Sopenharmony_ci	}
35762306a36Sopenharmony_ci}
35862306a36Sopenharmony_ci
35962306a36Sopenharmony_ci/* Number of len fields(8) * size of one addr field */
36062306a36Sopenharmony_ci#define PHYSDSGL_MAX_LEN_SIZE 16
36162306a36Sopenharmony_ci
36262306a36Sopenharmony_cistatic inline u16 get_space_for_phys_dsgl(unsigned int sgl_entr)
36362306a36Sopenharmony_ci{
36462306a36Sopenharmony_ci	/* len field size + addr field size */
36562306a36Sopenharmony_ci	return ((sgl_entr >> 3) + ((sgl_entr % 8) ?
36662306a36Sopenharmony_ci				   1 : 0)) * PHYSDSGL_MAX_LEN_SIZE +
36762306a36Sopenharmony_ci		(sgl_entr << 3) + ((sgl_entr % 2 ? 1 : 0) << 3);
36862306a36Sopenharmony_ci}
36962306a36Sopenharmony_ci
37062306a36Sopenharmony_ci/* The AES s-transform matrix (s-box). */
37162306a36Sopenharmony_cistatic const u8 aes_sbox[256] = {
37262306a36Sopenharmony_ci	99,  124, 119, 123, 242, 107, 111, 197, 48,  1,   103, 43,  254, 215,
37362306a36Sopenharmony_ci	171, 118, 202, 130, 201, 125, 250, 89,  71,  240, 173, 212, 162, 175,
37462306a36Sopenharmony_ci	156, 164, 114, 192, 183, 253, 147, 38,  54,  63,  247, 204, 52,  165,
37562306a36Sopenharmony_ci	229, 241, 113, 216, 49,  21, 4,   199, 35,  195, 24,  150, 5, 154, 7,
37662306a36Sopenharmony_ci	18,  128, 226, 235, 39,  178, 117, 9,   131, 44,  26,  27,  110, 90,
37762306a36Sopenharmony_ci	160, 82,  59,  214, 179, 41,  227, 47,  132, 83,  209, 0,   237, 32,
37862306a36Sopenharmony_ci	252, 177, 91,  106, 203, 190, 57,  74,  76,  88,  207, 208, 239, 170,
37962306a36Sopenharmony_ci	251, 67,  77,  51,  133, 69,  249, 2,   127, 80,  60,  159, 168, 81,
38062306a36Sopenharmony_ci	163, 64,  143, 146, 157, 56,  245, 188, 182, 218, 33,  16,  255, 243,
38162306a36Sopenharmony_ci	210, 205, 12,  19,  236, 95,  151, 68,  23,  196, 167, 126, 61,  100,
38262306a36Sopenharmony_ci	93,  25,  115, 96,  129, 79,  220, 34,  42,  144, 136, 70,  238, 184,
38362306a36Sopenharmony_ci	20,  222, 94,  11,  219, 224, 50,  58,  10,  73,  6,   36,  92,  194,
38462306a36Sopenharmony_ci	211, 172, 98,  145, 149, 228, 121, 231, 200, 55,  109, 141, 213, 78,
38562306a36Sopenharmony_ci	169, 108, 86,  244, 234, 101, 122, 174, 8, 186, 120, 37,  46,  28, 166,
38662306a36Sopenharmony_ci	180, 198, 232, 221, 116, 31,  75,  189, 139, 138, 112, 62,  181, 102,
38762306a36Sopenharmony_ci	72,  3,   246, 14,  97,  53,  87,  185, 134, 193, 29,  158, 225, 248,
38862306a36Sopenharmony_ci	152, 17,  105, 217, 142, 148, 155, 30,  135, 233, 206, 85,  40,  223,
38962306a36Sopenharmony_ci	140, 161, 137, 13,  191, 230, 66,  104, 65,  153, 45,  15,  176, 84,
39062306a36Sopenharmony_ci	187, 22
39162306a36Sopenharmony_ci};
39262306a36Sopenharmony_ci
39362306a36Sopenharmony_cistatic inline u32 aes_ks_subword(const u32 w)
39462306a36Sopenharmony_ci{
39562306a36Sopenharmony_ci	u8 bytes[4];
39662306a36Sopenharmony_ci
39762306a36Sopenharmony_ci	*(u32 *)(&bytes[0]) = w;
39862306a36Sopenharmony_ci	bytes[0] = aes_sbox[bytes[0]];
39962306a36Sopenharmony_ci	bytes[1] = aes_sbox[bytes[1]];
40062306a36Sopenharmony_ci	bytes[2] = aes_sbox[bytes[2]];
40162306a36Sopenharmony_ci	bytes[3] = aes_sbox[bytes[3]];
40262306a36Sopenharmony_ci	return *(u32 *)(&bytes[0]);
40362306a36Sopenharmony_ci}
40462306a36Sopenharmony_ci
40562306a36Sopenharmony_ci#endif /* __CHCR_ALGO_H__ */
406