Searched refs:tsg (Results 1 – 5 of 5) sorted by relevance
/linux/drivers/gpu/drm/nouveau/nvkm/engine/fifo/ |
H A D | gk104.c | 198 bool tsg; member 210 status->next.tsg = !!(stat & 0x10000000); in gk104_engn_status() 215 status->prev.tsg = !!(stat & 0x00001000); in gk104_engn_status() 238 status->prev.tsg ? "tsg" : "ch", status->prev.id, in gk104_engn_status() 240 status->next.tsg ? "tsg" : "ch", status->next.id, in gk104_engn_status() 251 *cgid = status.chan->tsg; in gk104_engn_cxid()
|
/linux/drivers/crypto/starfive/ |
H A D | jh7110-aes.c | 752 struct scatterlist *tsg; in starfive_aes_check_unaligned() local 755 for_each_sg(src, tsg, sg_nents(src), i) in starfive_aes_check_unaligned() 756 if (!IS_ALIGNED(tsg->offset, sizeof(u32)) || in starfive_aes_check_unaligned() 757 (!IS_ALIGNED(tsg->length, AES_BLOCK_SIZE) && in starfive_aes_check_unaligned() 758 !sg_is_last(tsg))) in starfive_aes_check_unaligned() 762 for_each_sg(dst, tsg, sg_nents(dst), i) in starfive_aes_check_unaligned() 763 if (!IS_ALIGNED(tsg->offset, sizeof(u32)) || in starfive_aes_check_unaligned() 764 (!IS_ALIGNED(tsg->length, AES_BLOCK_SIZE) && in starfive_aes_check_unaligned() 765 !sg_is_last(tsg))) in starfive_aes_check_unaligned()
|
H A D | jh7110-hash.c | 202 struct scatterlist *tsg; in starfive_hash_one_request() local 229 for_each_sg(rctx->in_sg, tsg, rctx->in_sg_len, i) { in starfive_hash_one_request() 230 src_nents = dma_map_sg(cryp->dev, tsg, 1, DMA_TO_DEVICE); in starfive_hash_one_request() 235 ret = starfive_hash_dma_xfer(cryp, tsg); in starfive_hash_one_request() 236 dma_unmap_sg(cryp->dev, tsg, 1, DMA_TO_DEVICE); in starfive_hash_one_request()
|
/linux/drivers/crypto/ |
H A D | img-hash.c | 364 struct scatterlist tsg; in img_hash_dma_task() local 390 sg_init_one(&tsg, addr + ctx->offset, wsend * 4); in img_hash_dma_task() 391 if (img_hash_xmit_dma(hdev, &tsg)) { in img_hash_dma_task()
|
/linux/drivers/crypto/stm32/ |
H A D | stm32-hash.c | 660 struct scatterlist sg[1], *tsg; in stm32_hash_dma_send() local 682 for_each_sg(rctx->sg, tsg, rctx->nents, i) { in stm32_hash_dma_send() 683 sg[0] = *tsg; in stm32_hash_dma_send()
|