From: skannan@codeaurora.org (Saravana Kannan)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] clk: Constify struct clk_init_data
Date: Tue, 15 May 2012 11:15:31 -0700 [thread overview]
Message-ID: <4FB29D43.2040300@codeaurora.org> (raw)
In-Reply-To: <4FB2875C.6030402@codeaurora.org>
On 05/15/2012 09:42 AM, Saravana Kannan wrote:
> On 05/15/2012 12:00 AM, Sascha Hauer wrote:
>> On Mon, May 14, 2012 at 06:19:16PM -0700, Saravana Kannan wrote:
>>> On 05/14/2012 02:53 PM, Turquette, Mike wrote:
>>>> On Mon, May 14, 2012 at 7:12 AM, Mark
>>>> Brown<broonie@opensource.wolfsonmicro.com> wrote:
>>>>> Allow drivers to declare their clk_init_data const, the framework
>>>>> really
>>>>> shouldn't be modifying the data.
>>>>>
>>>>> Signed-off-by: Mark Brown<broonie@opensource.wolfsonmicro.com>
>>>>
>>>> +interested parties
>>>>
>>>>>
>>>>> diff --git a/include/linux/clk-provider.h
>>>>> b/include/linux/clk-provider.h
>>>>> index c1c23b9..fc43ea6 100644
>>>>> --- a/include/linux/clk-provider.h
>>>>> +++ b/include/linux/clk-provider.h
>>>>> @@ -143,7 +143,7 @@ struct clk_init_data {
>>>>> */
>>>>> struct clk_hw {
>>>>> struct clk *clk;
>>>>> - struct clk_init_data *init;
>>>>> + const struct clk_init_data *init;
>>>
>>> Oh, wait. This won't work for the case where the clock registration
>>> is completely dynamic. Say, created from device tree or thru some
>>> PCI/USB device probe, etc. That's why I didn't add it before.
>>
>> Why not? In this case clk_init_data is also only used in clk_register.
>> Given that Mark has posted the patch I assume it actually works.
>>
>> Sascha
>>
>
> It's used in __clk_register() though. Which I added as a "as close as
> clk_register() but allows static init" function.
>
Sorry about my rushed responses earlier. I don't think the const will
work even when purely using clk_register().
Say I use device tree (you can extend this to HW probing/detection) to
know that there is a fixed factor clock. Now, if I want to dynamically
create and register it, I will have to allocate struct clk_fixed_factor
and struct clk_init_data. Then populate the fields of those structs and
finally point clk_fixed_factor.hw.init to the allocated clk_init_data.
Then call clk_register on clk_fixed_factor.hw. I'm not sure the
assigning of the init field above will be possible if we mark it as const.
Really though, not marking it as const shouldn't really have a huge
impact. What matters is that the common clock framework shouldn't try to
use it after clk_register() and we can do that by following what Russell
suggested (set hw.init to NULL at the end of clk_register).
Does that make sense?
Thanks,
Saravana
--
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.
WARNING: multiple messages have this Message-ID (diff)
From: Saravana Kannan <skannan@codeaurora.org>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: "Turquette, Mike" <mturquette@ti.com>,
Mark Brown <broonie@opensource.wolfsonmicro.com>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, andrew@lunn.ch, rnayak@ti.com
Subject: Re: [PATCH] clk: Constify struct clk_init_data
Date: Tue, 15 May 2012 11:15:31 -0700 [thread overview]
Message-ID: <4FB29D43.2040300@codeaurora.org> (raw)
In-Reply-To: <4FB2875C.6030402@codeaurora.org>
On 05/15/2012 09:42 AM, Saravana Kannan wrote:
> On 05/15/2012 12:00 AM, Sascha Hauer wrote:
>> On Mon, May 14, 2012 at 06:19:16PM -0700, Saravana Kannan wrote:
>>> On 05/14/2012 02:53 PM, Turquette, Mike wrote:
>>>> On Mon, May 14, 2012 at 7:12 AM, Mark
>>>> Brown<broonie@opensource.wolfsonmicro.com> wrote:
>>>>> Allow drivers to declare their clk_init_data const, the framework
>>>>> really
>>>>> shouldn't be modifying the data.
>>>>>
>>>>> Signed-off-by: Mark Brown<broonie@opensource.wolfsonmicro.com>
>>>>
>>>> +interested parties
>>>>
>>>>>
>>>>> diff --git a/include/linux/clk-provider.h
>>>>> b/include/linux/clk-provider.h
>>>>> index c1c23b9..fc43ea6 100644
>>>>> --- a/include/linux/clk-provider.h
>>>>> +++ b/include/linux/clk-provider.h
>>>>> @@ -143,7 +143,7 @@ struct clk_init_data {
>>>>> */
>>>>> struct clk_hw {
>>>>> struct clk *clk;
>>>>> - struct clk_init_data *init;
>>>>> + const struct clk_init_data *init;
>>>
>>> Oh, wait. This won't work for the case where the clock registration
>>> is completely dynamic. Say, created from device tree or thru some
>>> PCI/USB device probe, etc. That's why I didn't add it before.
>>
>> Why not? In this case clk_init_data is also only used in clk_register.
>> Given that Mark has posted the patch I assume it actually works.
>>
>> Sascha
>>
>
> It's used in __clk_register() though. Which I added as a "as close as
> clk_register() but allows static init" function.
>
Sorry about my rushed responses earlier. I don't think the const will
work even when purely using clk_register().
Say I use device tree (you can extend this to HW probing/detection) to
know that there is a fixed factor clock. Now, if I want to dynamically
create and register it, I will have to allocate struct clk_fixed_factor
and struct clk_init_data. Then populate the fields of those structs and
finally point clk_fixed_factor.hw.init to the allocated clk_init_data.
Then call clk_register on clk_fixed_factor.hw. I'm not sure the
assigning of the init field above will be possible if we mark it as const.
Really though, not marking it as const shouldn't really have a huge
impact. What matters is that the common clock framework shouldn't try to
use it after clk_register() and we can do that by following what Russell
suggested (set hw.init to NULL at the end of clk_register).
Does that make sense?
Thanks,
Saravana
--
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.
next prev parent reply other threads:[~2012-05-15 18:15 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-14 14:12 [PATCH] clk: Constify struct clk_init_data Mark Brown
2012-05-14 14:12 ` Mark Brown
2012-05-14 21:53 ` Turquette, Mike
2012-05-14 21:53 ` Turquette, Mike
2012-05-15 1:08 ` Saravana Kannan
2012-05-15 1:08 ` Saravana Kannan
2012-05-15 5:13 ` Rajendra Nayak
2012-05-15 5:13 ` Rajendra Nayak
2012-05-15 5:59 ` Turquette, Mike
2012-05-15 5:59 ` Turquette, Mike
2012-05-15 1:19 ` Saravana Kannan
2012-05-15 1:19 ` Saravana Kannan
2012-05-15 7:00 ` Sascha Hauer
2012-05-15 7:00 ` Sascha Hauer
2012-05-15 16:42 ` Saravana Kannan
2012-05-15 16:42 ` Saravana Kannan
2012-05-15 18:15 ` Saravana Kannan [this message]
2012-05-15 18:15 ` Saravana Kannan
2012-06-12 17:10 ` Mike Turquette
2012-06-12 17:10 ` Mike Turquette
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=4FB29D43.2040300@codeaurora.org \
--to=skannan@codeaurora.org \
--cc=linux-arm-kernel@lists.infradead.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.