ezequielg: ping
mchehab: pong
hi ezequielg
I'm about to re-send the fixes part of my RPM series...
just wanted to double-check with you about the clk_bulk_disable() part of the hantro_job_finish()/hantro_job_finish_no_pm()
haven't checked that yet.
mchehab: i'll take a look in a few hours.
ok
may be less, if i manage to finish some tests here :)
:-D
mchehab: yes, indeed, you shouldn't call clk_bulk_disable from any paths that haven't called clk_bulk_enable.
iow, clk_bulk_disable should be in hantro_job_finish, and also in an error path in device_run.
right?
ezequielg: shouldn't clk enable/disable be done from runtime PM resume/suspend handlers in general ?
we decided not to in this case.
these gates are very cheap.
ezequielg: yes
pinchartl: and the runtime suspend pm has some 2 frame delay.
I'll prepare a new version then and reply to this specific patch (to avoid the need of resubmitting 25 patches because of a single one)
if you're ok, I'll resubmit the entire thread for a final review
if you want, you can move this one out and send it standalone.
works for me
i mean, whatever works better for you, i have no problems reviewing patches in any form.
ezequielg: up to you. not sure if a 2 frame delay will save much power though :-)
ezequielg: no need to call clk_bulk_disable() at device_run()
as the sequence there is:
ret = pm_runtime_get_sync(ctx->dev->dev);
	if (ret < 0) {
		pm_runtime_put_noidle(ctx->dev->dev);
		goto err_cancel_job;
	}
	ret = clk_bulk_enable(ctx->dev->variant->num_clocks, ctx->dev->clocks);
	if (ret)
		goto err_cancel_job;
	v4l2_m2m_buf_copy_metadata(src, dst, true);
	ctx->codec_ops->run(ctx);
	return;
so, at err_cancel_job, the clocks should not be enabled
(asssuming that clk_bulk_enable would do the expected thing... double-checking it)
yes, it internally calls clk_bulk_disable for the clocks that were enabled
ezequielg: patch sent
ah, right.
mchehab: looks good.
merge it! :D
great!