Hi Shaik, On 01/18/2013 11:01 AM, Shaik Ameer Basha wrote: > fimc_m2m_job_finish() has to be called with the m2m context for the necessary > cleanup while resume. But currently fimc_m2m_job_finish() always passes > fimc->m2m.ctx as NULL. > > This patch changes the order of the calls for proper cleanup while resume. > > Signed-off-by: Shaik Ameer Basha <shaik.ameer@xxxxxxxxxxx> > --- > drivers/media/platform/s5p-fimc/fimc-core.c | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/drivers/media/platform/s5p-fimc/fimc-core.c b/drivers/media/platform/s5p-fimc/fimc-core.c > index 2a1558a..5b11544 100644 > --- a/drivers/media/platform/s5p-fimc/fimc-core.c > +++ b/drivers/media/platform/s5p-fimc/fimc-core.c > @@ -868,14 +868,15 @@ static int fimc_m2m_resume(struct fimc_dev *fimc) > { > unsigned long flags; > > + if (test_and_clear_bit(ST_M2M_SUSPENDED, &fimc->state)) > + fimc_m2m_job_finish(fimc->m2m.ctx, > + VB2_BUF_STATE_ERROR); > + > spin_lock_irqsave(&fimc->slock, flags); > /* Clear for full H/W setup in first run after resume */ > fimc->m2m.ctx = NULL; > spin_unlock_irqrestore(&fimc->slock, flags); > > - if (test_and_clear_bit(ST_M2M_SUSPENDED, &fimc->state)) > - fimc_m2m_job_finish(fimc->m2m.ctx, > - VB2_BUF_STATE_ERROR); Thanks for the patch. Not sure how I managed to miss that... I'm not convince this is the right fix though. fimc->m2m.ctx should be reset so the device is properly configured in fimc_dma_run() callback. Since after suspend/resume cycle all previous registers' state is lost. So I think something more like below is needed. Can you check if it helps ? And what problem exactly are you observing ? Streaming is not resumed after system resume ? diff --git a/drivers/media/platform/s5p-fimc/fimc-core.c b/drivers/media/platform/s5p-fimc/fimc-core.c index bdb544f..feb8620 100644 --- a/drivers/media/platform/s5p-fimc/fimc-core.c +++ b/drivers/media/platform/s5p-fimc/fimc-core.c @@ -869,16 +869,18 @@ static int fimc_m2m_suspend(struct fimc_dev *fimc) static int fimc_m2m_resume(struct fimc_dev *fimc) { + struct fimc_ctx *ctx; unsigned long flags; spin_lock_irqsave(&fimc->slock, flags); /* Clear for full H/W setup in first run after resume */ + ctx = fimc->m2m.ctx; fimc->m2m.ctx = NULL; spin_unlock_irqrestore(&fimc->slock, flags); if (test_and_clear_bit(ST_M2M_SUSPENDED, &fimc->state)) - fimc_m2m_job_finish(fimc->m2m.ctx, - VB2_BUF_STATE_ERROR); + fimc_m2m_job_finish(ctx, VB2_BUF_STATE_ERROR); + return 0; } Regards, Sylwester -- Sylwester Nawrocki Samsung Poland R&D Center -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html