Lines Matching refs:comps

18 	struct mdp_comp_ctx	comps[MDP_PATH_MAX_COMPS];  member
51 switch (path->comps[0].comp->id) { in mdp_path_subfrm_require()
71 ctx = &path->comps[index]; in mdp_path_subfrm_require()
104 ctx = &path->comps[index]; in mdp_path_subfrm_run()
117 ctx = &path->comps[index]; in mdp_path_subfrm_run()
137 ret = mdp_comp_ctx_config(mdp, &path->comps[index], in mdp_path_ctx_init()
169 ctx = &path->comps[index]; in mdp_path_config_subfrm()
182 ctx = &path->comps[index]; in mdp_path_config_subfrm()
191 ctx = &path->comps[index]; in mdp_path_config_subfrm()
216 ctx = &path->comps[index]; in mdp_path_config()
226 ctx = &path->comps[index]; in mdp_path_config()
240 ctx = &path->comps[index]; in mdp_path_config()
294 mdp_comp_clocks_off(&mdp->pdev->dev, cmd->comps, in mdp_auto_release_work()
301 kfree(cmd->comps); in mdp_auto_release_work()
302 cmd->comps = NULL; in mdp_auto_release_work()
339 mdp_comp_clocks_off(&mdp->pdev->dev, cmd->comps, in mdp_handle_cmdq_callback()
346 kfree(cmd->comps); in mdp_handle_cmdq_callback()
347 cmd->comps = NULL; in mdp_handle_cmdq_callback()
357 struct mdp_comp *comps = NULL; in mdp_cmdq_send() local
377 comps = kcalloc(param->config->num_components, sizeof(*comps), in mdp_cmdq_send()
379 if (!comps) { in mdp_cmdq_send()
424 memcpy(&comps[i], path->comps[i].comp, in mdp_cmdq_send()
431 cmd->comps = comps; in mdp_cmdq_send()
435 ret = mdp_comp_clocks_on(&mdp->pdev->dev, cmd->comps, cmd->num_comps); in mdp_cmdq_send()
453 mdp_comp_clocks_off(&mdp->pdev->dev, cmd->comps, in mdp_cmdq_send()
459 kfree(comps); in mdp_cmdq_send()