From: Tomasz Figa <tomasz.figa@gmail.com>
To: Doug Anderson <dianders@chromium.org>
Cc: linux-samsung-soc <linux-samsung-soc@vger.kernel.org>,
Mike Turquette <mturquette@linaro.org>,
Tomasz Figa <t.figa@samsung.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Kukjin Kim <kgene.kim@samsung.com>,
Olof Johansson <olof@lixom.net>,
Javier Martinez Canillas <javier.martinez@collabora.co.uk>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v2] clk: exynos5420: Keep aclk66_peric enabled during boot
Date: Thu, 05 Jun 2014 21:31:53 +0200 [thread overview]
Message-ID: <5390C5A9.5070900@gmail.com> (raw)
In-Reply-To: <CAD=FV=UZsEh+bOQxc8CP+yG5a5Sbp2eTyq8B_iq9u5io5G0B6A@mail.gmail.com>
On 05.06.2014 21:22, Doug Anderson wrote:
> Tomasz,
>
> On Thu, Jun 5, 2014 at 12:14 PM, Tomasz Figa <tomasz.figa@gmail.com> wrote:
>> On 05.06.2014 20:48, Doug Anderson wrote:
>>> Tomasz / Mike,
>>>
>>> On Fri, May 30, 2014 at 9:32 AM, Doug Anderson <dianders@chromium.org> wrote:
>>>> Right now if you've got earlyprintk enabled on exynos5420-peach-pit
>>>> then you'll get a hang on boot. Here's why:
>>>>
>>>> 1. The i2c-s3c2410 driver will probe at subsys_initcall. It will
>>>> enable its clock and disable it. This is the clock "i2c2".
>>>> 2. The act of disabling "i2c2" will disable its parents. In this case
>>>> the parent is "aclk66_peric". There are no other children of
>>>> "aclk66_peric" officially enabled, so "aclk66_peric" will be turned
>>>> off (despite being CLK_IGNORE_UNUSED, but that's by design).
>>>> 3. The next time you try to earlyprintk you'll do so without the UART
>>>> clock enabled. That's because the UART clocks are also children of
>>>> "aclk66_peric". You'll hang.
>>>>
>>>> There's no good place to put a clock enable for earlyprintk, which is
>>>> handled by a bunch of assembly code. The best we can do is to handle
>>>> this in the clock driver.
>>>>
>>>> Signed-off-by: Doug Anderson <dianders@chromium.org>
>>>> Tested-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
>>>> ---
>>>> Changes in v2:
>>>> - Use GATE_A and clk_get(). Save the clock for putting later.
>>>> - Return 0 from exynos5420_clk_late_init().
>>>>
>>>> drivers/clk/samsung/clk-exynos5420.c | 33 +++++++++++++++++++++++++++++++--
>>>> 1 file changed, 31 insertions(+), 2 deletions(-)
>>>
>>> Are there other changes you'd like me to make to this? It would be
>>> really nice to get this in for 3.16 so the system doesn't just
>>> mysteriously hang when you use earlyprintk.
>>
>> We can probably take this as an -rc fix, so it should be fine.
>>
>> However I still don't see the point of exporting this clock and
>> polluting the global clkdev namespace. Even the diffstat looks better in v1.
>
> OK, I'm happy to go back to v1 with the addition of the "return 0".
>
> Mike: are you OK with that?
>
One more question that just came to my mind: Why it is just the
aclk66_peri and not its children related to UARTs?
Exynos5420 clock driver still needs a little clean-up, so I'm okay with
any fix for now and changing this later if needed, but is this gate
clock for ACLK66_PERIC even needed? It seems to be marked with
CLK_IGNORE_UNUSED which suggests that it is not needed in this driver at
all, along with other similar clocks. AFAIK for power management
purposes our fine-grained approach is fine and we shouldn't need to use
the big gates.
Best regards,
Tomasz
WARNING: multiple messages have this Message-ID (diff)
From: tomasz.figa@gmail.com (Tomasz Figa)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] clk: exynos5420: Keep aclk66_peric enabled during boot
Date: Thu, 05 Jun 2014 21:31:53 +0200 [thread overview]
Message-ID: <5390C5A9.5070900@gmail.com> (raw)
In-Reply-To: <CAD=FV=UZsEh+bOQxc8CP+yG5a5Sbp2eTyq8B_iq9u5io5G0B6A@mail.gmail.com>
On 05.06.2014 21:22, Doug Anderson wrote:
> Tomasz,
>
> On Thu, Jun 5, 2014 at 12:14 PM, Tomasz Figa <tomasz.figa@gmail.com> wrote:
>> On 05.06.2014 20:48, Doug Anderson wrote:
>>> Tomasz / Mike,
>>>
>>> On Fri, May 30, 2014 at 9:32 AM, Doug Anderson <dianders@chromium.org> wrote:
>>>> Right now if you've got earlyprintk enabled on exynos5420-peach-pit
>>>> then you'll get a hang on boot. Here's why:
>>>>
>>>> 1. The i2c-s3c2410 driver will probe at subsys_initcall. It will
>>>> enable its clock and disable it. This is the clock "i2c2".
>>>> 2. The act of disabling "i2c2" will disable its parents. In this case
>>>> the parent is "aclk66_peric". There are no other children of
>>>> "aclk66_peric" officially enabled, so "aclk66_peric" will be turned
>>>> off (despite being CLK_IGNORE_UNUSED, but that's by design).
>>>> 3. The next time you try to earlyprintk you'll do so without the UART
>>>> clock enabled. That's because the UART clocks are also children of
>>>> "aclk66_peric". You'll hang.
>>>>
>>>> There's no good place to put a clock enable for earlyprintk, which is
>>>> handled by a bunch of assembly code. The best we can do is to handle
>>>> this in the clock driver.
>>>>
>>>> Signed-off-by: Doug Anderson <dianders@chromium.org>
>>>> Tested-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
>>>> ---
>>>> Changes in v2:
>>>> - Use GATE_A and clk_get(). Save the clock for putting later.
>>>> - Return 0 from exynos5420_clk_late_init().
>>>>
>>>> drivers/clk/samsung/clk-exynos5420.c | 33 +++++++++++++++++++++++++++++++--
>>>> 1 file changed, 31 insertions(+), 2 deletions(-)
>>>
>>> Are there other changes you'd like me to make to this? It would be
>>> really nice to get this in for 3.16 so the system doesn't just
>>> mysteriously hang when you use earlyprintk.
>>
>> We can probably take this as an -rc fix, so it should be fine.
>>
>> However I still don't see the point of exporting this clock and
>> polluting the global clkdev namespace. Even the diffstat looks better in v1.
>
> OK, I'm happy to go back to v1 with the addition of the "return 0".
>
> Mike: are you OK with that?
>
One more question that just came to my mind: Why it is just the
aclk66_peri and not its children related to UARTs?
Exynos5420 clock driver still needs a little clean-up, so I'm okay with
any fix for now and changing this later if needed, but is this gate
clock for ACLK66_PERIC even needed? It seems to be marked with
CLK_IGNORE_UNUSED which suggests that it is not needed in this driver at
all, along with other similar clocks. AFAIK for power management
purposes our fine-grained approach is fine and we shouldn't need to use
the big gates.
Best regards,
Tomasz
WARNING: multiple messages have this Message-ID (diff)
From: Tomasz Figa <tomasz.figa@gmail.com>
To: Doug Anderson <dianders@chromium.org>
Cc: Tomasz Figa <t.figa@samsung.com>,
Mike Turquette <mturquette@linaro.org>,
Kukjin Kim <kgene.kim@samsung.com>,
linux-samsung-soc <linux-samsung-soc@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Olof Johansson <olof@lixom.net>,
Javier Martinez Canillas <javier.martinez@collabora.co.uk>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v2] clk: exynos5420: Keep aclk66_peric enabled during boot
Date: Thu, 05 Jun 2014 21:31:53 +0200 [thread overview]
Message-ID: <5390C5A9.5070900@gmail.com> (raw)
In-Reply-To: <CAD=FV=UZsEh+bOQxc8CP+yG5a5Sbp2eTyq8B_iq9u5io5G0B6A@mail.gmail.com>
On 05.06.2014 21:22, Doug Anderson wrote:
> Tomasz,
>
> On Thu, Jun 5, 2014 at 12:14 PM, Tomasz Figa <tomasz.figa@gmail.com> wrote:
>> On 05.06.2014 20:48, Doug Anderson wrote:
>>> Tomasz / Mike,
>>>
>>> On Fri, May 30, 2014 at 9:32 AM, Doug Anderson <dianders@chromium.org> wrote:
>>>> Right now if you've got earlyprintk enabled on exynos5420-peach-pit
>>>> then you'll get a hang on boot. Here's why:
>>>>
>>>> 1. The i2c-s3c2410 driver will probe at subsys_initcall. It will
>>>> enable its clock and disable it. This is the clock "i2c2".
>>>> 2. The act of disabling "i2c2" will disable its parents. In this case
>>>> the parent is "aclk66_peric". There are no other children of
>>>> "aclk66_peric" officially enabled, so "aclk66_peric" will be turned
>>>> off (despite being CLK_IGNORE_UNUSED, but that's by design).
>>>> 3. The next time you try to earlyprintk you'll do so without the UART
>>>> clock enabled. That's because the UART clocks are also children of
>>>> "aclk66_peric". You'll hang.
>>>>
>>>> There's no good place to put a clock enable for earlyprintk, which is
>>>> handled by a bunch of assembly code. The best we can do is to handle
>>>> this in the clock driver.
>>>>
>>>> Signed-off-by: Doug Anderson <dianders@chromium.org>
>>>> Tested-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
>>>> ---
>>>> Changes in v2:
>>>> - Use GATE_A and clk_get(). Save the clock for putting later.
>>>> - Return 0 from exynos5420_clk_late_init().
>>>>
>>>> drivers/clk/samsung/clk-exynos5420.c | 33 +++++++++++++++++++++++++++++++--
>>>> 1 file changed, 31 insertions(+), 2 deletions(-)
>>>
>>> Are there other changes you'd like me to make to this? It would be
>>> really nice to get this in for 3.16 so the system doesn't just
>>> mysteriously hang when you use earlyprintk.
>>
>> We can probably take this as an -rc fix, so it should be fine.
>>
>> However I still don't see the point of exporting this clock and
>> polluting the global clkdev namespace. Even the diffstat looks better in v1.
>
> OK, I'm happy to go back to v1 with the addition of the "return 0".
>
> Mike: are you OK with that?
>
One more question that just came to my mind: Why it is just the
aclk66_peri and not its children related to UARTs?
Exynos5420 clock driver still needs a little clean-up, so I'm okay with
any fix for now and changing this later if needed, but is this gate
clock for ACLK66_PERIC even needed? It seems to be marked with
CLK_IGNORE_UNUSED which suggests that it is not needed in this driver at
all, along with other similar clocks. AFAIK for power management
purposes our fine-grained approach is fine and we shouldn't need to use
the big gates.
Best regards,
Tomasz
next prev parent reply other threads:[~2014-06-05 19:31 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-29 21:21 [PATCH] clk: exynos5420: Keep aclk66_peric enabled during boot Doug Anderson
2014-05-29 21:21 ` Doug Anderson
2014-05-29 22:29 ` Mike Turquette
2014-05-29 22:29 ` Mike Turquette
2014-05-29 22:29 ` Mike Turquette
2014-05-30 5:02 ` Tomasz Figa
2014-05-30 5:02 ` Tomasz Figa
2014-05-30 16:28 ` Doug Anderson
2014-05-30 16:28 ` Doug Anderson
2014-05-30 14:00 ` Javier Martinez Canillas
2014-05-30 14:00 ` Javier Martinez Canillas
2014-05-30 16:29 ` Doug Anderson
2014-05-30 16:29 ` Doug Anderson
2014-05-30 16:32 ` [PATCH v2] " Doug Anderson
2014-05-30 16:32 ` Doug Anderson
2014-06-05 18:48 ` Doug Anderson
2014-06-05 18:48 ` Doug Anderson
2014-06-05 19:14 ` Tomasz Figa
2014-06-05 19:14 ` Tomasz Figa
2014-06-05 19:14 ` Tomasz Figa
2014-06-05 19:22 ` Doug Anderson
2014-06-05 19:22 ` Doug Anderson
2014-06-05 19:31 ` Tomasz Figa [this message]
2014-06-05 19:31 ` Tomasz Figa
2014-06-05 19:31 ` Tomasz Figa
2014-06-05 20:10 ` Doug Anderson
2014-06-05 20:10 ` Doug Anderson
2014-06-05 20:42 ` Doug Anderson
2014-06-05 20:42 ` Doug Anderson
2014-06-05 20:35 ` [PATCH v3] clk: exynos5420: Remove aclk66_peric from the clock tree description Doug Anderson
2014-06-05 20:35 ` Doug Anderson
2014-06-05 22:26 ` Tomasz Figa
2014-06-05 22:26 ` Tomasz Figa
2014-06-06 23:41 ` Mike Turquette
2014-06-06 23:41 ` Mike Turquette
2014-06-09 18:56 ` Doug Anderson
2014-06-09 18:56 ` Doug Anderson
2014-06-06 0:03 ` Mike Turquette
2014-06-06 0:03 ` Mike Turquette
2014-06-06 0:03 ` Mike Turquette
2014-06-06 0:46 ` Doug Anderson
2014-06-06 0:46 ` Doug Anderson
2014-06-06 22:31 ` Mike Turquette
2014-06-06 22:31 ` Mike Turquette
2014-06-06 23:19 ` Doug Anderson
2014-06-06 23:19 ` Doug Anderson
2014-06-06 23:19 ` Doug Anderson
2014-06-30 13:48 ` Tomasz Figa
2014-06-30 13:48 ` Tomasz Figa
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=5390C5A9.5070900@gmail.com \
--to=tomasz.figa@gmail.com \
--cc=dianders@chromium.org \
--cc=javier.martinez@collabora.co.uk \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=mturquette@linaro.org \
--cc=olof@lixom.net \
--cc=t.figa@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.