From: arnd@arndb.de (Arnd Bergmann)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6 3/8] ARM: sunxi: Move the clock protection to machine hooks
Date: Wed, 23 Apr 2014 15:31:06 +0200 [thread overview]
Message-ID: <4987444.Zp0Prbn0Y8@wuerfel> (raw)
In-Reply-To: <20140423131720.GS24905@lukather>
On Wednesday 23 April 2014 15:17:20 Maxime Ripard wrote:
> > > +#include <linux/clk.h>
> > > #include <linux/init.h>
> > > #include <linux/of_platform.h>
> > >
> > > @@ -19,9 +20,17 @@
> > >
> > > static void __init sun4i_dt_init(void)
> > > {
> > > + struct clk *clk;
> > > +
> > > sunxi_setup_restart();
> > >
> > > of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
> > > +
> > > + /* Make sure the clocks we absolutely need are enabled */
> > > + /* DDR clock */
> > > + clk = clk_get(NULL, "pll5_ddr");
> > > + if (!IS_ERR(clk))
> > > + clk_prepare_enable(clk);
> > > }
> >
> > Isn't there already DT syntax to do the same? If not, should there be?
>
> I don't think there is, and I gave some thought about it too. But
> something a la regulator-always-on wouldn't work with clocks with
> multiple outputs (like pll5), because you might need to leave only one
> of the output enabled, but not the others, and I couldn't think of a
> nice way to do so.
>
> If you have one, I'd be happy to implement it.
We had a discussion a while ago about encoding default settings for clock
providers in the clock provider nodes. I don't remember the details
unfortunately.
Mike, can you explain how this should be done?
Arnd
next prev parent reply other threads:[~2014-04-23 13:31 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-17 8:46 [PATCH v6 0/8] Add support for the Allwinner A31 DMA Controller Maxime Ripard
2014-04-17 8:46 ` [PATCH v6 1/8] clk: sunxi: Remove calls to clk_put Maxime Ripard
2014-04-17 8:46 ` [PATCH v6 2/8] ARM: sunxi: Split out the various machines into separate files Maxime Ripard
2014-04-23 12:33 ` Arnd Bergmann
2014-04-23 13:28 ` Maxime Ripard
2014-04-23 13:33 ` Arnd Bergmann
2014-04-17 8:46 ` [PATCH v6 3/8] ARM: sunxi: Move the clock protection to machine hooks Maxime Ripard
2014-04-23 12:39 ` Arnd Bergmann
2014-04-23 13:17 ` Maxime Ripard
2014-04-23 13:31 ` Arnd Bergmann [this message]
2014-05-13 1:30 ` Mike Turquette
2014-04-17 8:46 ` [PATCH v6 4/8] ARM: sun6i: Protect CPU clock Maxime Ripard
2014-04-17 8:46 ` [PATCH v6 5/8] ARM: sun6i: Protect SDRAM gating bit Maxime Ripard
2014-04-17 8:46 ` [PATCH v6 6/8] ARM: sun6i: Sort the NMI node by physical address Maxime Ripard
2014-04-23 12:39 ` Arnd Bergmann
2014-04-23 13:11 ` Maxime Ripard
2014-04-17 8:46 ` [PATCH v6 7/8] DMA: sun6i: Add driver for the Allwinner A31 DMA controller Maxime Ripard
2014-04-17 8:46 ` [PATCH v6 8/8] ARM: sun6i: dt: Add A31 DMA controller to DTSI Maxime Ripard
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=4987444.Zp0Prbn0Y8@wuerfel \
--to=arnd@arndb.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