Commit 6dad4e8a authored by Atul Gupta's avatar Atul Gupta Committed by Herbert Xu

chcr: Add support for Inline IPSec

register xfrmdev_ops callbacks, Send IPsec tunneled data
to HW for inline processing.
The driver use hardware crypto accelerator to encrypt and
generate ICV for the transmitted packet in Inline mode.
Signed-off-by: default avatarAtul Gupta <atul.gupta@chelsio.com>
Signed-off-by: default avatarHarsh Jain <harsh@chelsio.com>
Signed-off-by: default avatarGanesh Goudar <ganeshgr@chelsio.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent a6ec572b
...@@ -18,3 +18,13 @@ config CRYPTO_DEV_CHELSIO ...@@ -18,3 +18,13 @@ config CRYPTO_DEV_CHELSIO
To compile this driver as a module, choose M here: the module To compile this driver as a module, choose M here: the module
will be called chcr. will be called chcr.
config CHELSIO_IPSEC_INLINE
bool "Chelsio IPSec XFRM Tx crypto offload"
depends on CHELSIO_T4
depends on CRYPTO_DEV_CHELSIO
depends on XFRM_OFFLOAD
depends on INET_ESP_OFFLOAD || INET6_ESP_OFFLOAD
default n
---help---
Enable support for IPSec Tx Inline.
...@@ -2,3 +2,4 @@ ccflags-y := -Idrivers/net/ethernet/chelsio/cxgb4 ...@@ -2,3 +2,4 @@ ccflags-y := -Idrivers/net/ethernet/chelsio/cxgb4
obj-$(CONFIG_CRYPTO_DEV_CHELSIO) += chcr.o obj-$(CONFIG_CRYPTO_DEV_CHELSIO) += chcr.o
chcr-objs := chcr_core.o chcr_algo.o chcr-objs := chcr_core.o chcr_algo.o
chcr-$(CONFIG_CHELSIO_IPSEC_INLINE) += chcr_ipsec.o
...@@ -73,6 +73,25 @@ ...@@ -73,6 +73,25 @@
#define IV AES_BLOCK_SIZE #define IV AES_BLOCK_SIZE
unsigned int sgl_ent_len[] = {0, 0, 16, 24, 40, 48, 64, 72, 88,
96, 112, 120, 136, 144, 160, 168, 184,
192, 208, 216, 232, 240, 256, 264, 280,
288, 304, 312, 328, 336, 352, 360, 376};
unsigned int dsgl_ent_len[] = {0, 32, 32, 48, 48, 64, 64, 80, 80,
112, 112, 128, 128, 144, 144, 160, 160,
192, 192, 208, 208, 224, 224, 240, 240,
272, 272, 288, 288, 304, 304, 320, 320};
static u32 round_constant[11] = {
0x01000000, 0x02000000, 0x04000000, 0x08000000,
0x10000000, 0x20000000, 0x40000000, 0x80000000,
0x1B000000, 0x36000000, 0x6C000000
};
static int chcr_handle_cipher_resp(struct ablkcipher_request *req,
unsigned char *input, int err);
static inline struct chcr_aead_ctx *AEAD_CTX(struct chcr_context *ctx) static inline struct chcr_aead_ctx *AEAD_CTX(struct chcr_context *ctx)
{ {
return ctx->crypto_ctx->aeadctx; return ctx->crypto_ctx->aeadctx;
...@@ -108,18 +127,6 @@ static inline int is_ofld_imm(const struct sk_buff *skb) ...@@ -108,18 +127,6 @@ static inline int is_ofld_imm(const struct sk_buff *skb)
return (skb->len <= SGE_MAX_WR_LEN); return (skb->len <= SGE_MAX_WR_LEN);
} }
/*
* sgl_len - calculates the size of an SGL of the given capacity
* @n: the number of SGL entries
* Calculates the number of flits needed for a scatter/gather list that
* can hold the given number of entries.
*/
static inline unsigned int sgl_len(unsigned int n)
{
n--;
return (3 * n) / 2 + (n & 1) + 2;
}
static int sg_nents_xlen(struct scatterlist *sg, unsigned int reqlen, static int sg_nents_xlen(struct scatterlist *sg, unsigned int reqlen,
unsigned int entlen, unsigned int entlen,
unsigned int skip) unsigned int skip)
...@@ -182,30 +189,17 @@ static inline void chcr_handle_ahash_resp(struct ahash_request *req, ...@@ -182,30 +189,17 @@ static inline void chcr_handle_ahash_resp(struct ahash_request *req,
} }
out: out:
req->base.complete(&req->base, err); req->base.complete(&req->base, err);
}
} static inline int get_aead_subtype(struct crypto_aead *aead)
static inline void chcr_handle_aead_resp(struct aead_request *req,
unsigned char *input,
int err)
{ {
struct chcr_aead_reqctx *reqctx = aead_request_ctx(req); struct aead_alg *alg = crypto_aead_alg(aead);
struct crypto_aead *tfm = crypto_aead_reqtfm(req); struct chcr_alg_template *chcr_crypto_alg =
struct uld_ctx *u_ctx = ULD_CTX(a_ctx(tfm)); container_of(alg, struct chcr_alg_template, alg.aead);
return chcr_crypto_alg->type & CRYPTO_ALG_SUB_TYPE_MASK;
chcr_aead_dma_unmap(&u_ctx->lldi.pdev->dev, req, reqctx->op);
if (reqctx->b0_dma)
dma_unmap_single(&u_ctx->lldi.pdev->dev, reqctx->b0_dma,
reqctx->b0_len, DMA_BIDIRECTIONAL);
if (reqctx->verify == VERIFY_SW) {
chcr_verify_tag(req, input, &err);
reqctx->verify = VERIFY_HW;
} }
req->base.complete(&req->base, err);
} void chcr_verify_tag(struct aead_request *req, u8 *input, int *err)
static void chcr_verify_tag(struct aead_request *req, u8 *input, int *err)
{ {
u8 temp[SHA512_DIGEST_SIZE]; u8 temp[SHA512_DIGEST_SIZE];
struct crypto_aead *tfm = crypto_aead_reqtfm(req); struct crypto_aead *tfm = crypto_aead_reqtfm(req);
...@@ -230,6 +224,25 @@ static void chcr_verify_tag(struct aead_request *req, u8 *input, int *err) ...@@ -230,6 +224,25 @@ static void chcr_verify_tag(struct aead_request *req, u8 *input, int *err)
*err = 0; *err = 0;
} }
static inline void chcr_handle_aead_resp(struct aead_request *req,
unsigned char *input,
int err)
{
struct chcr_aead_reqctx *reqctx = aead_request_ctx(req);
struct crypto_aead *tfm = crypto_aead_reqtfm(req);
struct uld_ctx *u_ctx = ULD_CTX(a_ctx(tfm));
chcr_aead_dma_unmap(&u_ctx->lldi.pdev->dev, req, reqctx->op);
if (reqctx->b0_dma)
dma_unmap_single(&u_ctx->lldi.pdev->dev, reqctx->b0_dma,
reqctx->b0_len, DMA_BIDIRECTIONAL);
if (reqctx->verify == VERIFY_SW) {
chcr_verify_tag(req, input, &err);
reqctx->verify = VERIFY_HW;
}
req->base.complete(&req->base, err);
}
/* /*
* chcr_handle_resp - Unmap the DMA buffers associated with the request * chcr_handle_resp - Unmap the DMA buffers associated with the request
* @req: crypto request * @req: crypto request
...@@ -594,14 +607,6 @@ static void ulptx_walk_add_sg(struct ulptx_walk *walk, ...@@ -594,14 +607,6 @@ static void ulptx_walk_add_sg(struct ulptx_walk *walk,
} }
} }
static inline int get_aead_subtype(struct crypto_aead *aead)
{
struct aead_alg *alg = crypto_aead_alg(aead);
struct chcr_alg_template *chcr_crypto_alg =
container_of(alg, struct chcr_alg_template, alg.aead);
return chcr_crypto_alg->type & CRYPTO_ALG_SUB_TYPE_MASK;
}
static inline int get_cryptoalg_subtype(struct crypto_tfm *tfm) static inline int get_cryptoalg_subtype(struct crypto_tfm *tfm)
{ {
struct crypto_alg *alg = tfm->__crt_alg; struct crypto_alg *alg = tfm->__crt_alg;
...@@ -1100,7 +1105,6 @@ static int chcr_final_cipher_iv(struct ablkcipher_request *req, ...@@ -1100,7 +1105,6 @@ static int chcr_final_cipher_iv(struct ablkcipher_request *req,
} }
static int chcr_handle_cipher_resp(struct ablkcipher_request *req, static int chcr_handle_cipher_resp(struct ablkcipher_request *req,
unsigned char *input, int err) unsigned char *input, int err)
{ {
...@@ -2198,7 +2202,7 @@ static struct sk_buff *create_authenc_wr(struct aead_request *req, ...@@ -2198,7 +2202,7 @@ static struct sk_buff *create_authenc_wr(struct aead_request *req,
return ERR_PTR(error); return ERR_PTR(error);
} }
static int chcr_aead_dma_map(struct device *dev, int chcr_aead_dma_map(struct device *dev,
struct aead_request *req, struct aead_request *req,
unsigned short op_type) unsigned short op_type)
{ {
...@@ -2242,7 +2246,7 @@ static int chcr_aead_dma_map(struct device *dev, ...@@ -2242,7 +2246,7 @@ static int chcr_aead_dma_map(struct device *dev,
return -ENOMEM; return -ENOMEM;
} }
static void chcr_aead_dma_unmap(struct device *dev, void chcr_aead_dma_unmap(struct device *dev,
struct aead_request *req, struct aead_request *req,
unsigned short op_type) unsigned short op_type)
{ {
...@@ -2269,7 +2273,7 @@ static void chcr_aead_dma_unmap(struct device *dev, ...@@ -2269,7 +2273,7 @@ static void chcr_aead_dma_unmap(struct device *dev,
} }
} }
static inline void chcr_add_aead_src_ent(struct aead_request *req, void chcr_add_aead_src_ent(struct aead_request *req,
struct ulptx_sgl *ulptx, struct ulptx_sgl *ulptx,
unsigned int assoclen, unsigned int assoclen,
unsigned short op_type) unsigned short op_type)
...@@ -2304,7 +2308,7 @@ static inline void chcr_add_aead_src_ent(struct aead_request *req, ...@@ -2304,7 +2308,7 @@ static inline void chcr_add_aead_src_ent(struct aead_request *req,
} }
} }
static inline void chcr_add_aead_dst_ent(struct aead_request *req, void chcr_add_aead_dst_ent(struct aead_request *req,
struct cpl_rx_phys_dsgl *phys_cpl, struct cpl_rx_phys_dsgl *phys_cpl,
unsigned int assoclen, unsigned int assoclen,
unsigned short op_type, unsigned short op_type,
...@@ -2326,7 +2330,7 @@ static inline void chcr_add_aead_dst_ent(struct aead_request *req, ...@@ -2326,7 +2330,7 @@ static inline void chcr_add_aead_dst_ent(struct aead_request *req,
dsgl_walk_end(&dsgl_walk, qid); dsgl_walk_end(&dsgl_walk, qid);
} }
static inline void chcr_add_cipher_src_ent(struct ablkcipher_request *req, void chcr_add_cipher_src_ent(struct ablkcipher_request *req,
struct ulptx_sgl *ulptx, struct ulptx_sgl *ulptx,
struct cipher_wr_param *wrparam) struct cipher_wr_param *wrparam)
{ {
...@@ -2351,7 +2355,7 @@ static inline void chcr_add_cipher_src_ent(struct ablkcipher_request *req, ...@@ -2351,7 +2355,7 @@ static inline void chcr_add_cipher_src_ent(struct ablkcipher_request *req,
} }
} }
static inline void chcr_add_cipher_dst_ent(struct ablkcipher_request *req, void chcr_add_cipher_dst_ent(struct ablkcipher_request *req,
struct cpl_rx_phys_dsgl *phys_cpl, struct cpl_rx_phys_dsgl *phys_cpl,
struct cipher_wr_param *wrparam, struct cipher_wr_param *wrparam,
unsigned short qid) unsigned short qid)
...@@ -2369,7 +2373,7 @@ static inline void chcr_add_cipher_dst_ent(struct ablkcipher_request *req, ...@@ -2369,7 +2373,7 @@ static inline void chcr_add_cipher_dst_ent(struct ablkcipher_request *req,
dsgl_walk_end(&dsgl_walk, qid); dsgl_walk_end(&dsgl_walk, qid);
} }
static inline void chcr_add_hash_src_ent(struct ahash_request *req, void chcr_add_hash_src_ent(struct ahash_request *req,
struct ulptx_sgl *ulptx, struct ulptx_sgl *ulptx,
struct hash_wr_param *param) struct hash_wr_param *param)
{ {
...@@ -2398,8 +2402,7 @@ static inline void chcr_add_hash_src_ent(struct ahash_request *req, ...@@ -2398,8 +2402,7 @@ static inline void chcr_add_hash_src_ent(struct ahash_request *req,
} }
} }
int chcr_hash_dma_map(struct device *dev,
static inline int chcr_hash_dma_map(struct device *dev,
struct ahash_request *req) struct ahash_request *req)
{ {
struct chcr_ahash_req_ctx *req_ctx = ahash_request_ctx(req); struct chcr_ahash_req_ctx *req_ctx = ahash_request_ctx(req);
...@@ -2415,7 +2418,7 @@ static inline int chcr_hash_dma_map(struct device *dev, ...@@ -2415,7 +2418,7 @@ static inline int chcr_hash_dma_map(struct device *dev,
return 0; return 0;
} }
static inline void chcr_hash_dma_unmap(struct device *dev, void chcr_hash_dma_unmap(struct device *dev,
struct ahash_request *req) struct ahash_request *req)
{ {
struct chcr_ahash_req_ctx *req_ctx = ahash_request_ctx(req); struct chcr_ahash_req_ctx *req_ctx = ahash_request_ctx(req);
...@@ -2429,8 +2432,7 @@ static inline void chcr_hash_dma_unmap(struct device *dev, ...@@ -2429,8 +2432,7 @@ static inline void chcr_hash_dma_unmap(struct device *dev,
} }
int chcr_cipher_dma_map(struct device *dev,
static int chcr_cipher_dma_map(struct device *dev,
struct ablkcipher_request *req) struct ablkcipher_request *req)
{ {
int error; int error;
...@@ -2465,7 +2467,8 @@ static int chcr_cipher_dma_map(struct device *dev, ...@@ -2465,7 +2467,8 @@ static int chcr_cipher_dma_map(struct device *dev,
dma_unmap_single(dev, reqctx->iv_dma, IV, DMA_BIDIRECTIONAL); dma_unmap_single(dev, reqctx->iv_dma, IV, DMA_BIDIRECTIONAL);
return -ENOMEM; return -ENOMEM;
} }
static void chcr_cipher_dma_unmap(struct device *dev,
void chcr_cipher_dma_unmap(struct device *dev,
struct ablkcipher_request *req) struct ablkcipher_request *req)
{ {
struct chcr_blkcipher_req_ctx *reqctx = ablkcipher_request_ctx(req); struct chcr_blkcipher_req_ctx *reqctx = ablkcipher_request_ctx(req);
...@@ -3371,6 +3374,40 @@ static int chcr_aead_digest_null_setkey(struct crypto_aead *authenc, ...@@ -3371,6 +3374,40 @@ static int chcr_aead_digest_null_setkey(struct crypto_aead *authenc,
aeadctx->enckey_len = 0; aeadctx->enckey_len = 0;
return -EINVAL; return -EINVAL;
} }
static int chcr_aead_op(struct aead_request *req,
unsigned short op_type,
int size,
create_wr_t create_wr_fn)
{
struct crypto_aead *tfm = crypto_aead_reqtfm(req);
struct uld_ctx *u_ctx;
struct sk_buff *skb;
if (!a_ctx(tfm)->dev) {
pr_err("chcr : %s : No crypto device.\n", __func__);
return -ENXIO;
}
u_ctx = ULD_CTX(a_ctx(tfm));
if (cxgb4_is_crypto_q_full(u_ctx->lldi.ports[0],
a_ctx(tfm)->tx_qidx)) {
if (!(req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG))
return -EBUSY;
}
/* Form a WR from req */
skb = create_wr_fn(req, u_ctx->lldi.rxq_ids[a_ctx(tfm)->rx_qidx], size,
op_type);
if (IS_ERR(skb) || !skb)
return PTR_ERR(skb);
skb->dev = u_ctx->lldi.ports[0];
set_wr_txq(skb, CPL_PRIORITY_DATA, a_ctx(tfm)->tx_qidx);
chcr_send_wr(skb);
return -EINPROGRESS;
}
static int chcr_aead_encrypt(struct aead_request *req) static int chcr_aead_encrypt(struct aead_request *req)
{ {
struct crypto_aead *tfm = crypto_aead_reqtfm(req); struct crypto_aead *tfm = crypto_aead_reqtfm(req);
...@@ -3423,38 +3460,6 @@ static int chcr_aead_decrypt(struct aead_request *req) ...@@ -3423,38 +3460,6 @@ static int chcr_aead_decrypt(struct aead_request *req)
} }
} }
static int chcr_aead_op(struct aead_request *req,
unsigned short op_type,
int size,
create_wr_t create_wr_fn)
{
struct crypto_aead *tfm = crypto_aead_reqtfm(req);
struct uld_ctx *u_ctx;
struct sk_buff *skb;
if (!a_ctx(tfm)->dev) {
pr_err("chcr : %s : No crypto device.\n", __func__);
return -ENXIO;
}
u_ctx = ULD_CTX(a_ctx(tfm));
if (cxgb4_is_crypto_q_full(u_ctx->lldi.ports[0],
a_ctx(tfm)->tx_qidx)) {
if (!(req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG))
return -EBUSY;
}
/* Form a WR from req */
skb = create_wr_fn(req, u_ctx->lldi.rxq_ids[a_ctx(tfm)->rx_qidx], size,
op_type);
if (IS_ERR(skb) || !skb)
return PTR_ERR(skb);
skb->dev = u_ctx->lldi.ports[0];
set_wr_txq(skb, CPL_PRIORITY_DATA, a_ctx(tfm)->tx_qidx);
chcr_send_wr(skb);
return -EINPROGRESS;
}
static struct chcr_alg_template driver_algs[] = { static struct chcr_alg_template driver_algs[] = {
/* AES-CBC */ /* AES-CBC */
{ {
......
...@@ -226,15 +226,6 @@ ...@@ -226,15 +226,6 @@
#define SPACE_LEFT(len) \ #define SPACE_LEFT(len) \
((SGE_MAX_WR_LEN - WR_MIN_LEN - (len))) ((SGE_MAX_WR_LEN - WR_MIN_LEN - (len)))
unsigned int sgl_ent_len[] = {0, 0, 16, 24, 40, 48, 64, 72, 88,
96, 112, 120, 136, 144, 160, 168, 184,
192, 208, 216, 232, 240, 256, 264, 280,
288, 304, 312, 328, 336, 352, 360, 376};
unsigned int dsgl_ent_len[] = {0, 32, 32, 48, 48, 64, 64, 80, 80,
112, 112, 128, 128, 144, 144, 160, 160,
192, 192, 208, 208, 224, 224, 240, 240,
272, 272, 288, 288, 304, 304, 320, 320};
struct algo_param { struct algo_param {
unsigned int auth_mode; unsigned int auth_mode;
unsigned int mk_size; unsigned int mk_size;
...@@ -404,10 +395,4 @@ static inline u32 aes_ks_subword(const u32 w) ...@@ -404,10 +395,4 @@ static inline u32 aes_ks_subword(const u32 w)
return *(u32 *)(&bytes[0]); return *(u32 *)(&bytes[0]);
} }
static u32 round_constant[11] = {
0x01000000, 0x02000000, 0x04000000, 0x08000000,
0x10000000, 0x20000000, 0x40000000, 0x80000000,
0x1B000000, 0x36000000, 0x6C000000
};
#endif /* __CHCR_ALGO_H__ */ #endif /* __CHCR_ALGO_H__ */
...@@ -48,6 +48,9 @@ static struct cxgb4_uld_info chcr_uld_info = { ...@@ -48,6 +48,9 @@ static struct cxgb4_uld_info chcr_uld_info = {
.add = chcr_uld_add, .add = chcr_uld_add,
.state_change = chcr_uld_state_change, .state_change = chcr_uld_state_change,
.rx_handler = chcr_uld_rx_handler, .rx_handler = chcr_uld_rx_handler,
#ifdef CONFIG_CHELSIO_IPSEC_INLINE
.tx_handler = chcr_uld_tx_handler,
#endif /* CONFIG_CHELSIO_IPSEC_INLINE */
}; };
struct uld_ctx *assign_chcr_device(void) struct uld_ctx *assign_chcr_device(void)
...@@ -164,6 +167,10 @@ static void *chcr_uld_add(const struct cxgb4_lld_info *lld) ...@@ -164,6 +167,10 @@ static void *chcr_uld_add(const struct cxgb4_lld_info *lld)
goto out; goto out;
} }
u_ctx->lldi = *lld; u_ctx->lldi = *lld;
#ifdef CONFIG_CHELSIO_IPSEC_INLINE
if (lld->crypto & ULP_CRYPTO_IPSEC_INLINE)
chcr_add_xfrmops(lld);
#endif /* CONFIG_CHELSIO_IPSEC_INLINE */
out: out:
return u_ctx; return u_ctx;
} }
...@@ -187,6 +194,13 @@ int chcr_uld_rx_handler(void *handle, const __be64 *rsp, ...@@ -187,6 +194,13 @@ int chcr_uld_rx_handler(void *handle, const __be64 *rsp,
return 0; return 0;
} }
#ifdef CONFIG_CHELSIO_IPSEC_INLINE
int chcr_uld_tx_handler(struct sk_buff *skb, struct net_device *dev)
{
return chcr_ipsec_xmit(skb, dev);
}
#endif /* CONFIG_CHELSIO_IPSEC_INLINE */
static int chcr_uld_state_change(void *handle, enum cxgb4_state state) static int chcr_uld_state_change(void *handle, enum cxgb4_state state)
{ {
struct uld_ctx *u_ctx = handle; struct uld_ctx *u_ctx = handle;
......
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
#include <crypto/algapi.h> #include <crypto/algapi.h>
#include "t4_hw.h" #include "t4_hw.h"
#include "cxgb4.h" #include "cxgb4.h"
#include "t4_msg.h"
#include "cxgb4_uld.h" #include "cxgb4_uld.h"
#define DRV_MODULE_NAME "chcr" #define DRV_MODULE_NAME "chcr"
...@@ -89,12 +90,49 @@ struct uld_ctx { ...@@ -89,12 +90,49 @@ struct uld_ctx {
struct chcr_dev *dev; struct chcr_dev *dev;
}; };
struct chcr_ipsec_req {
struct ulp_txpkt ulptx;
struct ulptx_idata sc_imm;
struct cpl_tx_sec_pdu sec_cpl;
struct _key_ctx key_ctx;
};
struct chcr_ipsec_wr {
struct fw_ulptx_wr wreq;
struct chcr_ipsec_req req;
};
struct ipsec_sa_entry {
int hmac_ctrl;
unsigned int enckey_len;
unsigned int kctx_len;
unsigned int authsize;
__be32 key_ctx_hdr;
char salt[MAX_SALT];
char key[2 * AES_MAX_KEY_SIZE];
};
/*
* sgl_len - calculates the size of an SGL of the given capacity
* @n: the number of SGL entries
* Calculates the number of flits needed for a scatter/gather list that
* can hold the given number of entries.
*/
static inline unsigned int sgl_len(unsigned int n)
{
n--;
return (3 * n) / 2 + (n & 1) + 2;
}
struct uld_ctx *assign_chcr_device(void); struct uld_ctx *assign_chcr_device(void);
int chcr_send_wr(struct sk_buff *skb); int chcr_send_wr(struct sk_buff *skb);
int start_crypto(void); int start_crypto(void);
int stop_crypto(void); int stop_crypto(void);
int chcr_uld_rx_handler(void *handle, const __be64 *rsp, int chcr_uld_rx_handler(void *handle, const __be64 *rsp,
const struct pkt_gl *pgl); const struct pkt_gl *pgl);
int chcr_uld_tx_handler(struct sk_buff *skb, struct net_device *dev);
int chcr_handle_resp(struct crypto_async_request *req, unsigned char *input, int chcr_handle_resp(struct crypto_async_request *req, unsigned char *input,
int err); int err);
int chcr_ipsec_xmit(struct sk_buff *skb, struct net_device *dev);
void chcr_add_xfrmops(const struct cxgb4_lld_info *lld);
#endif /* __CHCR_CORE_H__ */ #endif /* __CHCR_CORE_H__ */
...@@ -210,8 +210,6 @@ struct dsgl_walk { ...@@ -210,8 +210,6 @@ struct dsgl_walk {
struct phys_sge_pairs *to; struct phys_sge_pairs *to;
}; };
struct chcr_gcm_ctx { struct chcr_gcm_ctx {
u8 ghash_h[AEAD_H_SIZE]; u8 ghash_h[AEAD_H_SIZE];
}; };
...@@ -227,8 +225,6 @@ struct __aead_ctx { ...@@ -227,8 +225,6 @@ struct __aead_ctx {
struct chcr_authenc_ctx authenc[0]; struct chcr_authenc_ctx authenc[0];
}; };
struct chcr_aead_ctx { struct chcr_aead_ctx {
__be32 key_ctx_hdr; __be32 key_ctx_hdr;
unsigned int enckey_len; unsigned int enckey_len;
...@@ -240,8 +236,6 @@ struct chcr_aead_ctx { ...@@ -240,8 +236,6 @@ struct chcr_aead_ctx {
struct __aead_ctx ctx[0]; struct __aead_ctx ctx[0];
}; };
struct hmac_ctx { struct hmac_ctx {
struct crypto_shash *base_hash; struct crypto_shash *base_hash;
u8 ipad[CHCR_HASH_MAX_BLOCK_SIZE_128]; u8 ipad[CHCR_HASH_MAX_BLOCK_SIZE_128];
...@@ -307,44 +301,29 @@ typedef struct sk_buff *(*create_wr_t)(struct aead_request *req, ...@@ -307,44 +301,29 @@ typedef struct sk_buff *(*create_wr_t)(struct aead_request *req,
int size, int size,
unsigned short op_type); unsigned short op_type);
static int chcr_aead_op(struct aead_request *req_base, void chcr_verify_tag(struct aead_request *req, u8 *input, int *err);
unsigned short op_type, int chcr_aead_dma_map(struct device *dev, struct aead_request *req,
int size, unsigned short op_type);
create_wr_t create_wr_fn); void chcr_aead_dma_unmap(struct device *dev, struct aead_request *req,
static inline int get_aead_subtype(struct crypto_aead *aead);
static int chcr_handle_cipher_resp(struct ablkcipher_request *req,
unsigned char *input, int err);
static void chcr_verify_tag(struct aead_request *req, u8 *input, int *err);
static int chcr_aead_dma_map(struct device *dev, struct aead_request *req,
unsigned short op_type); unsigned short op_type);
static void chcr_aead_dma_unmap(struct device *dev, struct aead_request void chcr_add_aead_dst_ent(struct aead_request *req,
*req, unsigned short op_type);
static inline void chcr_add_aead_dst_ent(struct aead_request *req,
struct cpl_rx_phys_dsgl *phys_cpl, struct cpl_rx_phys_dsgl *phys_cpl,
unsigned int assoclen, unsigned int assoclen, unsigned short op_type,
unsigned short op_type,
unsigned short qid); unsigned short qid);
static inline void chcr_add_aead_src_ent(struct aead_request *req, void chcr_add_aead_src_ent(struct aead_request *req, struct ulptx_sgl *ulptx,
struct ulptx_sgl *ulptx, unsigned int assoclen, unsigned short op_type);
unsigned int assoclen, void chcr_add_cipher_src_ent(struct ablkcipher_request *req,
unsigned short op_type);
static inline void chcr_add_cipher_src_ent(struct ablkcipher_request *req,
struct ulptx_sgl *ulptx, struct ulptx_sgl *ulptx,
struct cipher_wr_param *wrparam); struct cipher_wr_param *wrparam);
static int chcr_cipher_dma_map(struct device *dev, int chcr_cipher_dma_map(struct device *dev, struct ablkcipher_request *req);
struct ablkcipher_request *req); void chcr_cipher_dma_unmap(struct device *dev, struct ablkcipher_request *req);
static void chcr_cipher_dma_unmap(struct device *dev, void chcr_add_cipher_dst_ent(struct ablkcipher_request *req,
struct ablkcipher_request *req);
static inline void chcr_add_cipher_dst_ent(struct ablkcipher_request *req,
struct cpl_rx_phys_dsgl *phys_cpl, struct cpl_rx_phys_dsgl *phys_cpl,
struct cipher_wr_param *wrparam, struct cipher_wr_param *wrparam,
unsigned short qid); unsigned short qid);
int sg_nents_len_skip(struct scatterlist *sg, u64 len, u64 skip); int sg_nents_len_skip(struct scatterlist *sg, u64 len, u64 skip);
static inline void chcr_add_hash_src_ent(struct ahash_request *req, void chcr_add_hash_src_ent(struct ahash_request *req, struct ulptx_sgl *ulptx,
struct ulptx_sgl *ulptx,
struct hash_wr_param *param); struct hash_wr_param *param);
static inline int chcr_hash_dma_map(struct device *dev, int chcr_hash_dma_map(struct device *dev, struct ahash_request *req);
struct ahash_request *req); void chcr_hash_dma_unmap(struct device *dev, struct ahash_request *req);
static inline void chcr_hash_dma_unmap(struct device *dev,
struct ahash_request *req);
#endif /* __CHCR_CRYPTO_H__ */ #endif /* __CHCR_CRYPTO_H__ */
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment