Lines Matching refs:cet
89 struct ce_task *cet; in sun8i_ce_cipher_prepare() local
114 cet = chan->tl; in sun8i_ce_cipher_prepare()
115 memset(cet, 0, sizeof(struct ce_task)); in sun8i_ce_cipher_prepare()
117 cet->t_id = cpu_to_le32(flow); in sun8i_ce_cipher_prepare()
120 cet->t_common_ctl = cpu_to_le32(common); in sun8i_ce_cipher_prepare()
123 cet->t_dlen = cpu_to_le32(areq->cryptlen); in sun8i_ce_cipher_prepare()
125 cet->t_dlen = cpu_to_le32(areq->cryptlen / 4); in sun8i_ce_cipher_prepare()
141 cet->t_sym_ctl = cpu_to_le32(sym); in sun8i_ce_cipher_prepare()
142 cet->t_asym_ctl = 0; in sun8i_ce_cipher_prepare()
150 cet->t_key = cpu_to_le32(rctx->addr_key); in sun8i_ce_cipher_prepare()
178 cet->t_iv = cpu_to_le32(rctx->addr_iv); in sun8i_ce_cipher_prepare()
209 cet->t_src[i].addr = cpu_to_le32(sg_dma_address(sg)); in sun8i_ce_cipher_prepare()
211 cet->t_src[i].len = cpu_to_le32(todo / 4); in sun8i_ce_cipher_prepare()
213 areq->cryptlen, i, cet->t_src[i].len, sg->offset, todo); in sun8i_ce_cipher_prepare()
224 cet->t_dst[i].addr = cpu_to_le32(sg_dma_address(sg)); in sun8i_ce_cipher_prepare()
226 cet->t_dst[i].len = cpu_to_le32(todo / 4); in sun8i_ce_cipher_prepare()
228 areq->cryptlen, i, cet->t_dst[i].len, sg->offset, todo); in sun8i_ce_cipher_prepare()
301 struct ce_task *cet; in sun8i_ce_cipher_unprepare() local
309 cet = chan->tl; in sun8i_ce_cipher_unprepare()
321 if (cet->t_iv) in sun8i_ce_cipher_unprepare()