From: u.kleine-koenig@pengutronix.de (Uwe Kleine-König)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] Add a common struct clk
Date: Wed, 8 Dec 2010 09:45:54 +0100 [thread overview]
Message-ID: <20101208084554.GC18244@pengutronix.de> (raw)
In-Reply-To: <201012080902.37859.jeremy.kerr@canonical.com>
Hello Jeremy,
On Wed, Dec 08, 2010 at 09:02:37AM +0800, Jeremy Kerr wrote:
> > I assume the initial feedback should be provided from someone internal
> > to Canonical or Linaro? Can you give an estimate when you can post it,
> > I really thing that's the way to go for simplifying the clock code on
> > imx which is on my todo list.
>
> No, I was waiting on feedback from the ST-E platform folks, who will need the
> atomic clocks. However, I've been out of action for a couple of weeks, hence
> the delay.
>
> I'll get the next revision posted this week.
Great.
> > While reading quickly over the patch I wondered if there isn't a better
> > way to get that spinlock/mutex thingy implemented.
> >
> > You currently have:
> >
> > struct clk {
> > const struct clk_ops *ops;
> > unsigned int enable_count;
> > int flags;
> > union {
> > struct mutex mutex;
> > spinlock_t spinlock;
> > } lock;
> > };
> >
> > What about using this one instead?:
> >
> > struct clk_base {
> > /* merge that with ops? Probably not */
> > const struct clk_lock_ops *lock_ops;
> > const struct clk_ops *ops;
> > unsigned int enable_count;
> > };
> >
> > struct clk {
> > struct clk_base base;
> > struct mutex lock;
> > };
> >
> > struct clk_atomic {
> > struct clk_base base;
> > spinlock_t lock;
> > };
>
> This means we'll need a separate API (clk_get_rate, etc) for the atomic
> clocks, or change the API to take a clk_base (and then fix up all the users of
> the API).
Ah, that's true. As I said, I didnt' thought it to an end, just seemed
to be clearer to me.
> Regardless, I'd prefer to keep the separation to just the lock itself, rather
> than percolating down to other interfaces.
>
>
> > This way and when I prefer to use the sleeping variant only I don't need
> > to bother with spinlocks at all.
>
> How do you mean? You shouldn't need to deal with spinlocks with the current
> code if you're just using non-atomic clocks.
Of course I can ignore them, this is more that I don't like having
members in structs or unions that are unused. (As a mutex contains a
spinlock anyhow this is admittedly a bit strange when thinking again.
:-)
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-K?nig |
Industrial Linux Solutions | http://www.pengutronix.de/ |
next prev parent reply other threads:[~2010-12-08 8:45 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-15 3:40 [PATCH 0/3] Common struct clk implementation, v7 Jeremy Kerr
2010-09-15 3:40 ` [PATCH 1/3] Add a common struct clk Jeremy Kerr
2010-09-16 13:09 ` Jassi Brar
2010-09-17 0:24 ` Jeremy Kerr
2010-09-17 0:55 ` Jassi Brar
2010-09-17 2:16 ` Jassi Brar
2010-11-27 15:56 ` Jassi Brar
2010-11-29 7:59 ` Jeremy Kerr
2010-12-07 14:31 ` Uwe Kleine-König
2010-12-08 1:02 ` Jeremy Kerr
2010-12-08 8:45 ` Uwe Kleine-König [this message]
2010-12-08 16:48 ` Ben Dooks
2010-12-09 2:16 ` Jeremy Kerr
2010-12-10 15:09 ` Richard Zhao
2010-12-11 2:21 ` Jassi Brar
2010-09-15 3:40 ` [PATCH 3/3] arm/clkdev: Allow common struct clk usage Jeremy Kerr
2010-09-15 3:40 ` [PATCH 2/3] clk: Generic support for fixed-rate clocks Jeremy Kerr
2010-09-15 5:53 ` [PATCH 0/3] Common struct clk implementation, v7 Jean-Christophe PLAGNIOL-VILLARD
2010-09-15 6:08 ` Jeremy Kerr
2010-09-16 1:51 ` Paul Mundt
2010-09-15 8:15 ` Paulius Zaleckas
2010-09-15 23:15 ` Colin Cross
2010-09-16 8:19 ` Jeremy Kerr
2010-09-26 23:57 ` Ben Dooks
-- strict thread matches above, loose matches on Subject: below --
2010-07-30 7:03 [PATCH 0/3] Common struct clk implementation, v6 Jeremy Kerr
2010-07-30 7:03 ` [PATCH 1/3] Add a common struct clk Jeremy Kerr
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=20101208084554.GC18244@pengutronix.de \
--to=u.kleine-koenig@pengutronix.de \
--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).