public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Prabhakar Lad <prabhakar.csengg@gmail.com>
Cc: DLOS <davinci-linux-open-source@linux.davincidsp.com>,
	LMML <linux-media@vger.kernel.org>,
	LKML <linux-kernel@vger.kernel.org>,
	Mauro Carvalho Chehab <mchehab@redhat.com>,
	Hans Verkuil <hans.verkuil@cisco.com>,
	Sakari Ailus <sakari.ailus@iki.fi>
Subject: Re: [PATCH] davinci: vpif: add pm_runtime support
Date: Thu, 28 Mar 2013 11:10:45 +0100	[thread overview]
Message-ID: <3365178.uRYh2rr3nD@avalon> (raw)
In-Reply-To: <CA+V-a8uMaNKBXF-tJRtOMaYpjA1PsMA9qhG6MgwORTU8YRvDbQ@mail.gmail.com>

Hi Prabhakar,

On Thursday 28 March 2013 15:36:11 Prabhakar Lad wrote:
> On Thu, Mar 28, 2013 at 2:39 PM, Laurent Pinchart wrote:
> > On Thursday 28 March 2013 14:20:32 Prabhakar lad wrote:
> >> From: Lad, Prabhakar <prabhakar.csengg@gmail.com>
> >> 
> >> Add pm_runtime support to the TI Davinci VPIF driver.
> >> Along side this patch replaces clk_get() with devm_clk_get()
> >> to simplify the error handling.
> >> 
> >> Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com>
> >> ---
> >> 
> >>  drivers/media/platform/davinci/vpif.c |   21 +++++++++++----------
> >>  1 files changed, 11 insertions(+), 10 deletions(-)
> >> 
> >> diff --git a/drivers/media/platform/davinci/vpif.c
> >> b/drivers/media/platform/davinci/vpif.c index 28638a8..7d14625 100644
> >> --- a/drivers/media/platform/davinci/vpif.c
> >> +++ b/drivers/media/platform/davinci/vpif.c

[snip]

> >> @@ -439,12 +440,17 @@ static int vpif_probe(struct platform_device *pdev)
> >>               goto fail;
> >>       }
> >> 
> >> -     vpif_clk = clk_get(&pdev->dev, "vpif");
> >> +     vpif_clk = devm_clk_get(&pdev->dev, "vpif");
> >>       if (IS_ERR(vpif_clk)) {
> >>               status = PTR_ERR(vpif_clk);
> >>               goto clk_fail;
> >>       }
> >> 
> >> -     clk_prepare_enable(vpif_clk);
> >> +     clk_put(vpif_clk);
> > 
> > Why do you need to call clk_put() here ?
> 
> The above check is to see if the clock is provided, once done
> we free it using clk_put().

In that case you shouldn't use devm_clk_get(), otherwise clk_put() will be 
called again automatically at remove() time.

> >> +     pm_runtime_enable(&pdev->dev);
> >> +     pm_runtime_resume(&pdev->dev);
> >> +
> >> +     pm_runtime_get(&pdev->dev);
> > 
> > Does runtime PM automatically handle your clock ? If so can't you remove
> > clock handling from the driver completely ?
> 
> Yes  pm runtime take care of enabling/disabling the clocks
> so that we don't have to do it in drivers. I believe clock
> handling is removed with this patch, with just  devm_clk_get() remaining ;)

When is the clk_get() call expected to fail ? If the clock is provided by the 
SoC and always available, can't the check be removed completely ?

-- 
Regards,

Laurent Pinchart


  reply	other threads:[~2013-03-28 10:09 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-28  8:50 [PATCH] davinci: vpif: add pm_runtime support Prabhakar lad
2013-03-28  9:09 ` Laurent Pinchart
2013-03-28 10:06   ` Prabhakar Lad
2013-03-28 10:10     ` Laurent Pinchart [this message]
2013-03-28 10:20       ` Prabhakar Lad
2013-04-01  6:03         ` Sekhar Nori
2013-04-01  6:10           ` Prabhakar Lad

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=3365178.uRYh2rr3nD@avalon \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=davinci-linux-open-source@linux.davincidsp.com \
    --cc=hans.verkuil@cisco.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@redhat.com \
    --cc=prabhakar.csengg@gmail.com \
    --cc=sakari.ailus@iki.fi \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox