Lines Matching refs:fw
24 void mtk_vcodec_fw_release(struct mtk_vcodec_fw *fw) in mtk_vcodec_fw_release() argument
26 fw->ops->release(fw); in mtk_vcodec_fw_release()
30 int mtk_vcodec_fw_load_firmware(struct mtk_vcodec_fw *fw) in mtk_vcodec_fw_load_firmware() argument
32 return fw->ops->load_firmware(fw); in mtk_vcodec_fw_load_firmware()
36 unsigned int mtk_vcodec_fw_get_vdec_capa(struct mtk_vcodec_fw *fw) in mtk_vcodec_fw_get_vdec_capa() argument
38 return fw->ops->get_vdec_capa(fw); in mtk_vcodec_fw_get_vdec_capa()
42 unsigned int mtk_vcodec_fw_get_venc_capa(struct mtk_vcodec_fw *fw) in mtk_vcodec_fw_get_venc_capa() argument
44 return fw->ops->get_venc_capa(fw); in mtk_vcodec_fw_get_venc_capa()
48 void *mtk_vcodec_fw_map_dm_addr(struct mtk_vcodec_fw *fw, u32 mem_addr) in mtk_vcodec_fw_map_dm_addr() argument
50 return fw->ops->map_dm_addr(fw, mem_addr); in mtk_vcodec_fw_map_dm_addr()
54 int mtk_vcodec_fw_ipi_register(struct mtk_vcodec_fw *fw, int id, in mtk_vcodec_fw_ipi_register() argument
58 return fw->ops->ipi_register(fw, id, handler, name, priv); in mtk_vcodec_fw_ipi_register()
62 int mtk_vcodec_fw_ipi_send(struct mtk_vcodec_fw *fw, int id, void *buf, in mtk_vcodec_fw_ipi_send() argument
65 return fw->ops->ipi_send(fw, id, buf, len, wait); in mtk_vcodec_fw_ipi_send()