Lines Matching refs:cet
130 struct ce_task *cet; in sun8i_ce_cipher_prepare() local
157 cet = chan->tl; in sun8i_ce_cipher_prepare()
158 memset(cet, 0, sizeof(struct ce_task)); in sun8i_ce_cipher_prepare()
160 cet->t_id = cpu_to_le32(flow); in sun8i_ce_cipher_prepare()
163 cet->t_common_ctl = cpu_to_le32(common); in sun8i_ce_cipher_prepare()
166 cet->t_dlen = cpu_to_le32(areq->cryptlen); in sun8i_ce_cipher_prepare()
168 cet->t_dlen = cpu_to_le32(areq->cryptlen / 4); in sun8i_ce_cipher_prepare()
184 cet->t_sym_ctl = cpu_to_le32(sym); in sun8i_ce_cipher_prepare()
185 cet->t_asym_ctl = 0; in sun8i_ce_cipher_prepare()
193 cet->t_key = desc_addr_val_le32(ce, rctx->addr_key); in sun8i_ce_cipher_prepare()
211 cet->t_iv = desc_addr_val_le32(ce, rctx->addr_iv); in sun8i_ce_cipher_prepare()
239 cet->t_src[i].addr = desc_addr_val_le32(ce, sg_dma_address(sg)); in sun8i_ce_cipher_prepare()
241 cet->t_src[i].len = cpu_to_le32(todo / 4); in sun8i_ce_cipher_prepare()
243 areq->cryptlen, i, cet->t_src[i].len, sg->offset, todo); in sun8i_ce_cipher_prepare()
254 cet->t_dst[i].addr = desc_addr_val_le32(ce, sg_dma_address(sg)); in sun8i_ce_cipher_prepare()
256 cet->t_dst[i].len = cpu_to_le32(todo / 4); in sun8i_ce_cipher_prepare()
258 areq->cryptlen, i, cet->t_dst[i].len, sg->offset, todo); in sun8i_ce_cipher_prepare()
311 struct ce_task *cet; in sun8i_ce_cipher_unprepare() local
319 cet = chan->tl; in sun8i_ce_cipher_unprepare()
331 if (cet->t_iv) in sun8i_ce_cipher_unprepare()