From: plagnioj@jcrosoft.com (Jean-Christophe PLAGNIOL-VILLARD)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] AT91: SAM9G45 - add a separate clock entry for every single TC block
Date: Wed, 8 Sep 2010 11:50:58 +0200 [thread overview]
Message-ID: <20100908095058.GA3939@game.jcrosoft.org> (raw)
In-Reply-To: <4C8750B8.6000107@atmel.com>
On 11:00 Wed 08 Sep , Nicolas Ferre wrote:
> Le 07/09/2010 21:42, avictor.za at gmail.com :
> > hi,
> >
> >> +/* One additional fake clock for second TC block */
> >> +static struct clk tcb1_clk = {
> >> + .name = "tcb1_clk",
> >> + .pmc_mask = 0,
> >> + .type = CLK_TYPE_PERIPHERAL,
> >> + .parent = &tcb0_clk,
> >> +};
> >> +
> >
> > Looking at this again... since type is CLK_TYPE_PERIPHERAL, when you
> > call clk_register() the "parent" is changed to the master clock.
> >
> > Which means, then later you call clk_enable() the "pmc_mask" is still
> > 0, so 0 gets written (in pmc_periph_mode) to AT91_PMC_PCER. So the
> > TCB clock won't be enabled.
> >
> > Or am I missing something?
>
> You are absolutely right!
>
> What do you think about this modification of clk_register() function?
>
> --- a/arch/arm/mach-at91/clock.c
> +++ b/arch/arm/mach-at91/clock.c
> @@ -501,7 +501,8 @@ postcore_initcall(at91_clk_debugfs_init);
> int __init clk_register(struct clk *clk)
> {
> if (clk_is_peripheral(clk)) {
> - clk->parent = &mck;
> + if (!clk->parent)
> + clk->parent = &mck;
> clk->mode = pmc_periph_mode;
> list_add_tail(&clk->node, &clocks);
> }
>
> It is a very little modification which implements what I had in mind
> while creating a kind of "child peripheral" clock.
so so
but until we switch to clkdev it will solve the issue
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Best Regards,
J.
prev parent reply other threads:[~2010-09-08 9:50 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-03 12:31 [PATCH] AT91: SAM9G45 - add a separate clock entry for every single TC block Fabian Godehardt
2010-09-03 13:05 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-03 13:05 ` Nicolas Ferre
2010-09-03 16:38 ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-06 4:48 ` Fabian Godehardt
2010-09-06 11:23 ` Nicolas Ferre
2010-09-06 21:07 ` avictor.za at gmail.com
2010-09-07 19:42 ` avictor.za at gmail.com
2010-09-08 9:00 ` Nicolas Ferre
2010-09-08 9:50 ` Jean-Christophe PLAGNIOL-VILLARD [this message]
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=20100908095058.GA3939@game.jcrosoft.org \
--to=plagnioj@jcrosoft.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).