Lines Matching refs:hisi_zip_sqe

101 	void (*fill_addr)(struct hisi_zip_sqe *sqe, struct hisi_zip_req *req);
102 void (*fill_buf_size)(struct hisi_zip_sqe *sqe, struct hisi_zip_req *req);
103 void (*fill_buf_type)(struct hisi_zip_sqe *sqe, u8 buf_type);
104 void (*fill_req_type)(struct hisi_zip_sqe *sqe, u8 req_type);
105 void (*fill_tag)(struct hisi_zip_sqe *sqe, struct hisi_zip_req *req);
106 void (*fill_sqe_type)(struct hisi_zip_sqe *sqe, u8 sqe_type);
107 u32 (*get_tag)(struct hisi_zip_sqe *sqe);
108 u32 (*get_status)(struct hisi_zip_sqe *sqe);
109 u32 (*get_dstlen)(struct hisi_zip_sqe *sqe);
263 static void hisi_zip_fill_addr(struct hisi_zip_sqe *sqe, struct hisi_zip_req *req) in hisi_zip_fill_addr()
271 static void hisi_zip_fill_buf_size(struct hisi_zip_sqe *sqe, struct hisi_zip_req *req) in hisi_zip_fill_buf_size()
281 static void hisi_zip_fill_buf_type(struct hisi_zip_sqe *sqe, u8 buf_type) in hisi_zip_fill_buf_type()
290 static void hisi_zip_fill_req_type(struct hisi_zip_sqe *sqe, u8 req_type) in hisi_zip_fill_req_type()
299 static void hisi_zip_fill_tag_v1(struct hisi_zip_sqe *sqe, struct hisi_zip_req *req) in hisi_zip_fill_tag_v1()
304 static void hisi_zip_fill_tag_v2(struct hisi_zip_sqe *sqe, struct hisi_zip_req *req) in hisi_zip_fill_tag_v2()
309 static void hisi_zip_fill_sqe_type(struct hisi_zip_sqe *sqe, u8 sqe_type) in hisi_zip_fill_sqe_type()
318 static void hisi_zip_fill_sqe(struct hisi_zip_ctx *ctx, struct hisi_zip_sqe *sqe, in hisi_zip_fill_sqe()
323 memset(sqe, 0, sizeof(struct hisi_zip_sqe)); in hisi_zip_fill_sqe()
341 struct hisi_zip_sqe zip_sqe; in hisi_zip_do_work()
386 static u32 hisi_zip_get_tag_v1(struct hisi_zip_sqe *sqe) in hisi_zip_get_tag_v1()
391 static u32 hisi_zip_get_tag_v2(struct hisi_zip_sqe *sqe) in hisi_zip_get_tag_v2()
396 static u32 hisi_zip_get_status(struct hisi_zip_sqe *sqe) in hisi_zip_get_status()
401 static u32 hisi_zip_get_dstlen(struct hisi_zip_sqe *sqe) in hisi_zip_get_dstlen()
413 struct hisi_zip_sqe *sqe = data; in hisi_zip_acomp_cb()