All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sylwester Nawrocki <s.nawrocki@samsung.com>
To: Shaik Ameer Basha <shaik.ameer@samsung.com>
Cc: linux-media@vger.kernel.org
Subject: Re: [PATCH] s5p-fimc: set m2m context to null at the end of fimc_m2m_resume
Date: Fri, 18 Jan 2013 11:28:25 +0100	[thread overview]
Message-ID: <50F923C9.8000205@samsung.com> (raw)
In-Reply-To: <1358503278-13414-1-git-send-email-shaik.ameer@samsung.com>

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@samsung.com>
> ---
>  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

  reply	other threads:[~2013-01-18 10:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-18 10:01 [PATCH] s5p-fimc: set m2m context to null at the end of fimc_m2m_resume Shaik Ameer Basha
2013-01-18 10:28 ` Sylwester Nawrocki [this message]
2013-01-18 11:56   ` Shaik Ameer Basha

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=50F923C9.8000205@samsung.com \
    --to=s.nawrocki@samsung.com \
    --cc=linux-media@vger.kernel.org \
    --cc=shaik.ameer@samsung.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.