All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vikas Sajjan <vikas.sajjan@linaro.org>
To: Inki Dae <inki.dae@samsung.com>
Cc: linux-samsung-soc@vger.kernel.org,
	Sachin Kamat <sachin.kamat@linaro.org>,
	Viresh Kumar <viresh.kumar@linaro.org>,
	sunil joshi <joshi@samsung.com>,
	DRI mailing list <dri-devel@lists.freedesktop.org>,
	"kgene.kim" <kgene.kim@samsung.com>
Subject: Re: [PATCH v4] drm/exynos: prepare FIMD clocks
Date: Sun, 21 Apr 2013 12:54:29 +0530	[thread overview]
Message-ID: <CAD025yQyN8g++GDkpdvf1y-P3FT2DYfK8uhkYA+0a7VaU+vi5g@mail.gmail.com> (raw)
In-Reply-To: <CAAQKjZMoXj-YFYQhkQOwL-VJgKP0hgMxQ-vqiBCfuinBSCgmHg@mail.gmail.com>


[-- Attachment #1.1: Type: text/plain, Size: 5062 bytes --]

On Apr 20, 2013 8:56 PM, "Inki Dae" <inki.dae@samsung.com> wrote:
>
>
>
>
> 2013/4/19 Vikas Sajjan <vikas.sajjan@linaro.org>
>>
>> Hi Inki Dae and Viresh,
>>
>> On 8 April 2013 16:41, Viresh Kumar <viresh.kumar@linaro.org> wrote:
>>>
>>> On 8 April 2013 16:37, Vikas Sajjan <vikas.sajjan@linaro.org> wrote:
>>> > While migrating to common clock framework (CCF), I found that the
FIMD clocks
>>> > were pulled down by the CCF.
>>> > If CCF finds any clock(s) which has NOT been claimed by any of the
>>> > drivers, then such clock(s) are PULLed low by CCF.
>>> >
>>> > Calling clk_prepare() for FIMD clocks fixes the issue.
>>> >
>>> > This patch also replaces clk_disable() with clk_unprepare() during
exit, since
>>> > clk_prepare() is called in fimd_probe().
>>>
>>> I asked you about fixing your commit log too.. It still looks incorrect
to me.
>>>
>>> This patch doesn't have anything to do with CCF pulling clocks down, but
>>> calling clk_prepare() before clk_enable() is must now.. that's it..
>>> nothing more.
>>>
>>   what I noticed is the fimd_clock() which in turn calls clk_enable(),
will only be called if the RUNTIME PM is enabled. So the current patch
breaks and display won't appear, if we don't enable the RUNTIME PM. So it
becomes mandatory to enable  RUNTIME PM, to FIMD to work.
>
>
> Right, this is our intention.
>
>> I am NOT sure whether it is a good idea make FIMD work if and only if
RUMTIME PM is enabled.
>
>
> Actually, fimd driver had used not only runtime pm interface but also
clk_enable() at fimd_probe(). But this had induced the reference count pair
issue to clock. The issue was that the clock takes two references with
runtime pm. One is by clk_enable and another is by pm_runtime_get_sync().
So we are forcing only using runtime pm interface.
>
>>
>> I guess Mr. Inki Dae can throw more light on this.
>> Or else make it like the earlier V1 version where clk_prepare_enable()
was called in fimd_probe() itself.
>>
>>> > Signed-off-by: Vikas Sajjan <vikas.sajjan@linaro.org>
>>> > ---
>>> > Changes since v3:
>>> >         - added clk_prepare() in fimd_probe() and clk_unprepare() in
fimd_remove()
>>> >          as suggested by Viresh Kumar <viresh.kumar@linaro.org>
>>> > Changes since v2:
>>> >         - moved clk_prepare_enable() and clk_disable_unprepare() from
>>> >         fimd_probe() to fimd_clock() as suggested by Inki Dae <
inki.dae@samsung.com>
>>> > Changes since v1:
>>> >         - added error checking for clk_prepare_enable() and also
replaced
>>> >         clk_disable() with clk_disable_unprepare() during exit.
>>> > ---
>>> >  drivers/gpu/drm/exynos/exynos_drm_fimd.c |   14 ++++++++++++--
>>> >  1 file changed, 12 insertions(+), 2 deletions(-)
>>> >
>>> > diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c
b/drivers/gpu/drm/exynos/exynos_drm_fimd.c
>>> > index 9537761..aa22370 100644
>>> > --- a/drivers/gpu/drm/exynos/exynos_drm_fimd.c
>>> > +++ b/drivers/gpu/drm/exynos/exynos_drm_fimd.c
>>> > @@ -934,6 +934,16 @@ static int fimd_probe(struct platform_device
*pdev)
>>> >                 return ret;
>>> >         }
>>> >
>>> > +       ret = clk_prepare(ctx->bus_clk);
>>> > +       if (ret < 0)
>>> > +               return ret;
>>> > +
>>> > +       ret = clk_prepare(ctx->lcd_clk);
>>> > +       if  (ret < 0) {
>>> > +               clk_unprepare(ctx->bus_clk);
>>> > +               return ret;
>>> > +       }
>>> > +
>>> >         ctx->vidcon0 = pdata->vidcon0;
>>> >         ctx->vidcon1 = pdata->vidcon1;
>>> >         ctx->default_win = pdata->default_win;
>>> > @@ -981,8 +991,8 @@ static int fimd_remove(struct platform_device
*pdev)
>>> >         if (ctx->suspended)
>>> >                 goto out;
>>> >
>>> > -       clk_disable(ctx->lcd_clk);
>>> > -       clk_disable(ctx->bus_clk);
>>> > +       clk_unprepare(ctx->lcd_clk);
>>> > +       clk_unprepare(ctx->bus_clk);
>>>
>>> This looks wrong again.. You still need to call clk_disable() to make
>>> clk enabled
>>> count zero...
>>
>>
>>     Viresh had an suggestion, that the original code had a call
clk_disable() in fimd_remove(), which is really NOT required as there is NO
clk_enable() in fimd_probe() and we can right away delete clk_disable()
from fimd_remove().
>>
>> And also i think i should be breaking this patch into 2, 1st patch for
adding clk_prepare_enable() ( if we want remove dependency on RUNTIME PM )
in fimd_probe() for CCF migration another one for idea of replacing
clk_disable() with adding clk_disable_unprepare() (since we will be adding
clk_prepare_enable() in probe ) in fimd_remove() .
>>
>> Mr. Inki Dae any thoughts on this.
>>
>
> Sorry for being late. I think clk_prepare/unprepare are nothing to do yet
in case of Exynos but those might be used for in the future so your patch
looks good to me as is.
>
> Applied. :)

thanks Mr. Dae

> Thanks,
> Inki Dae
>
>
>>
>> --
>> Thanks and Regards
>>  Vikas Sajjan
>>
>> _______________________________________________
>> dri-devel mailing list
>> dri-devel@lists.freedesktop.org
>> http://lists.freedesktop.org/mailman/listinfo/dri-devel
>>
>

[-- Attachment #1.2: Type: text/html, Size: 7218 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2013-04-21  7:24 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-08 11:07 [PATCH v4] drm/exynos: prepare FIMD clocks Vikas Sajjan
2013-04-08 11:11 ` Viresh Kumar
2013-04-19  8:55   ` Vikas Sajjan
2013-04-20 15:26     ` Inki Dae
2013-04-21  7:24       ` Vikas Sajjan [this message]
2013-04-21  7:53       ` Viresh Kumar
2013-04-21 10:35         ` Tomasz Figa
2013-04-21 14:05           ` Inki Dae
2013-04-21 14:15             ` Tomasz Figa
2013-04-21 10:26   ` Tomasz Figa
2013-04-21 13:36     ` Inki Dae
2013-04-21 14:43       ` Tomasz Figa
2013-04-22  5:11         ` Inki Dae
2013-04-22  9:52           ` Tomasz Figa
2013-04-22 10:03             ` Inki Dae
2013-04-22 10:17               ` Sylwester Nawrocki
2013-04-22 10:20                 ` Inki Dae
2013-04-22 10:37                 ` Tomasz Figa
2013-04-22 11:42                   ` Rafael J. Wysocki
2013-04-22 12:04                     ` Inki Dae
2013-04-23 11:51                       ` myungjoo.ham
2013-04-23 12:09                         ` Inki Dae
2013-04-22 11:52                   ` Inki Dae
2013-04-22  5:14         ` Viresh Kumar
2013-04-22  9:56           ` Tomasz Figa
2013-04-22 10:05             ` Sylwester Nawrocki
2013-04-22 12:30               ` Tomasz Figa
2013-04-22 10:26             ` Viresh Kumar

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=CAD025yQyN8g++GDkpdvf1y-P3FT2DYfK8uhkYA+0a7VaU+vi5g@mail.gmail.com \
    --to=vikas.sajjan@linaro.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=inki.dae@samsung.com \
    --cc=joshi@samsung.com \
    --cc=kgene.kim@samsung.com \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=sachin.kamat@linaro.org \
    --cc=viresh.kumar@linaro.org \
    /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.