From: tony@atomide.com (Tony Lindgren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 1/8] clk: Add temporary mapping to the existing API
Date: Thu, 21 Aug 2014 11:04:48 -0700 [thread overview]
Message-ID: <20140821180448.GD10066@atomide.com> (raw)
In-Reply-To: <20140820145006.5251.30923@quantum>
* Mike Turquette <mturquette@linaro.org> [140820 07:53]:
> Quoting Tomeu Vizoso (2014-08-18 08:30:27)
> > To preserve git-bisectability, add aliases from the future provider API to the
> > existing public API.
> >
> > Also includes clk-provider.h and clk-dev.h in a few places so the right
> > functions are defined.
> >
> > Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
>
> Cc'ing Tony for the OMAP2+ parts, Simon & Magnus for the SHMobile parts,
> Jason & Andrew for the Orion parts, Mauro & Kukjin for the Exynos parts.
>
> This change is super trivial but it's best not to touch these files
> without a heads-up for the owners.
As long as it compiles omap2plus_defconfig it seems safe to me:
Acked-by: Tony Lindgren <tony@atomide.com>
> > ---
> > v7: * Add mappings for clk_notifier_[un]register
> > * Add more clk-provider.h includes to clk implementations
> >
> > v4: * Add more clk-provider.h includes to clk implementations
> > * Add mapping for clk_provider_round_rate
> > ---
> > arch/arm/mach-omap2/display.c | 1 +
> > arch/arm/mach-omap2/omap_device.c | 1 +
> > arch/arm/mach-shmobile/clock.c | 1 +
> > arch/arm/plat-orion/common.c | 1 +
> > drivers/clk/berlin/bg2.c | 1 +
> > drivers/clk/berlin/bg2q.c | 1 +
> > drivers/clk/clk-conf.c | 1 +
> > drivers/clk/clkdev.c | 1 +
> > drivers/media/platform/exynos4-is/media-dev.c | 1 +
> > include/linux/clk-provider.h | 25 +++++++++++++++++++++++++
> > include/linux/clk/zynq.h | 1 +
> > 11 files changed, 35 insertions(+)
> >
> > diff --git a/arch/arm/mach-omap2/display.c b/arch/arm/mach-omap2/display.c
> > index bf852d7..0f9e479 100644
> > --- a/arch/arm/mach-omap2/display.c
> > +++ b/arch/arm/mach-omap2/display.c
> > @@ -21,6 +21,7 @@
> > #include <linux/platform_device.h>
> > #include <linux/io.h>
> > #include <linux/clk.h>
> > +#include <linux/clk-provider.h>
> > #include <linux/err.h>
> > #include <linux/delay.h>
> > #include <linux/of.h>
> > diff --git a/arch/arm/mach-omap2/omap_device.c b/arch/arm/mach-omap2/omap_device.c
> > index 01ef59d..fbe8cf0 100644
> > --- a/arch/arm/mach-omap2/omap_device.c
> > +++ b/arch/arm/mach-omap2/omap_device.c
> > @@ -32,6 +32,7 @@
> > #include <linux/io.h>
> > #include <linux/clk.h>
> > #include <linux/clkdev.h>
> > +#include <linux/clk-provider.h>
> > #include <linux/pm_runtime.h>
> > #include <linux/of.h>
> > #include <linux/notifier.h>
> > diff --git a/arch/arm/mach-shmobile/clock.c b/arch/arm/mach-shmobile/clock.c
> > index 806f940..ed415dc 100644
> > --- a/arch/arm/mach-shmobile/clock.c
> > +++ b/arch/arm/mach-shmobile/clock.c
> > @@ -24,6 +24,7 @@
> >
> > #ifdef CONFIG_COMMON_CLK
> > #include <linux/clk.h>
> > +#include <linux/clk-provider.h>
> > #include <linux/clkdev.h>
> > #include "clock.h"
> >
> > diff --git a/arch/arm/plat-orion/common.c b/arch/arm/plat-orion/common.c
> > index 3ec6e8e..961b593 100644
> > --- a/arch/arm/plat-orion/common.c
> > +++ b/arch/arm/plat-orion/common.c
> > @@ -15,6 +15,7 @@
> > #include <linux/serial_8250.h>
> > #include <linux/ata_platform.h>
> > #include <linux/clk.h>
> > +#include <linux/clk-provider.h>
> > #include <linux/clkdev.h>
> > #include <linux/mv643xx_eth.h>
> > #include <linux/mv643xx_i2c.h>
> > diff --git a/drivers/clk/berlin/bg2.c b/drivers/clk/berlin/bg2.c
> > index 515fb13..4c81e09 100644
> > --- a/drivers/clk/berlin/bg2.c
> > +++ b/drivers/clk/berlin/bg2.c
> > @@ -19,6 +19,7 @@
> >
> > #include <linux/clk.h>
> > #include <linux/clk-provider.h>
> > +#include <linux/clkdev.h>
> > #include <linux/kernel.h>
> > #include <linux/of.h>
> > #include <linux/of_address.h>
> > diff --git a/drivers/clk/berlin/bg2q.c b/drivers/clk/berlin/bg2q.c
> > index 21784e4..748da9b 100644
> > --- a/drivers/clk/berlin/bg2q.c
> > +++ b/drivers/clk/berlin/bg2q.c
> > @@ -19,6 +19,7 @@
> >
> > #include <linux/clk.h>
> > #include <linux/clk-provider.h>
> > +#include <linux/clkdev.h>
> > #include <linux/kernel.h>
> > #include <linux/of.h>
> > #include <linux/of_address.h>
> > diff --git a/drivers/clk/clk-conf.c b/drivers/clk/clk-conf.c
> > index aad4796..d36a7b3 100644
> > --- a/drivers/clk/clk-conf.c
> > +++ b/drivers/clk/clk-conf.c
> > @@ -8,6 +8,7 @@
> > */
> >
> > #include <linux/clk.h>
> > +#include <linux/clkdev.h>
> > #include <linux/clk-provider.h>
> > #include <linux/clk/clk-conf.h>
> > #include <linux/device.h>
> > diff --git a/drivers/clk/clkdev.c b/drivers/clk/clkdev.c
> > index da4bda8..c751d0c 100644
> > --- a/drivers/clk/clkdev.c
> > +++ b/drivers/clk/clkdev.c
> > @@ -18,6 +18,7 @@
> > #include <linux/string.h>
> > #include <linux/mutex.h>
> > #include <linux/clk.h>
> > +#include <linux/clk-provider.h>
> > #include <linux/clkdev.h>
> > #include <linux/of.h>
> >
> > diff --git a/drivers/media/platform/exynos4-is/media-dev.c b/drivers/media/platform/exynos4-is/media-dev.c
> > index 344718d..2620c48 100644
> > --- a/drivers/media/platform/exynos4-is/media-dev.c
> > +++ b/drivers/media/platform/exynos4-is/media-dev.c
> > @@ -13,6 +13,7 @@
> > #include <linux/bug.h>
> > #include <linux/clk.h>
> > #include <linux/clk-provider.h>
> > +#include <linux/clkdev.h>
> > #include <linux/device.h>
> > #include <linux/errno.h>
> > #include <linux/i2c.h>
> > diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
> > index 411dd7e..a1a7bb7 100644
> > --- a/include/linux/clk-provider.h
> > +++ b/include/linux/clk-provider.h
> > @@ -16,6 +16,31 @@
> >
> > #ifdef CONFIG_COMMON_CLK
> >
> > +/* Temporarily map the to-be-added API to the old API, just so stuff compiles */
> > +#define clk_core clk
> > +
> > +#define __clk_create_clk
> > +
> > +#define clk_provider_get clk_get
> > +#define clk_provider_get_sys clk_get_sys
> > +#define devm_clk_provider_get devm_clk_get
> > +#define of_clk_provider_get of_clk_get
> > +#define of_clk_provider_get_by_name of_clk_get_by_name
> > +
> > +#define clk_provider_set_rate clk_set_rate
> > +#define clk_provider_get_rate clk_get_rate
> > +#define clk_provider_round_rate clk_round_rate
> > +#define clk_provider_set_parent clk_set_parent
> > +#define clk_provider_get_parent clk_get_parent
> > +#define clk_provider_prepare clk_prepare
> > +#define clk_provider_unprepare clk_unprepare
> > +#define clk_provider_enable clk_enable
> > +#define clk_provider_disable clk_disable
> > +#define clk_provider_prepare_enable clk_prepare_enable
> > +#define clk_provider_disable_unprepare clk_unprepare
> > +#define clk_provider_notifier_register clk_notifier_register
> > +#define clk_provider_notifier_unregister clk_notifier_unregister
> > +
> > /*
> > * flags used across common struct clk. these flags should only affect the
> > * top-level framework. custom flags for dealing with hardware specifics
> > diff --git a/include/linux/clk/zynq.h b/include/linux/clk/zynq.h
> > index 7a5633b..a990a59 100644
> > --- a/include/linux/clk/zynq.h
> > +++ b/include/linux/clk/zynq.h
> > @@ -21,6 +21,7 @@
> > #define __LINUX_CLK_ZYNQ_H_
> >
> > #include <linux/spinlock.h>
> > +#include <linux/clk-provider.h>
> >
> > void zynq_clock_init(void);
> >
> > --
> > 1.9.3
> >
next prev parent reply other threads:[~2014-08-21 18:04 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-18 15:30 [PATCH v7 0/8] Per-user clock constraints Tomeu Vizoso
2014-08-18 15:30 ` [PATCH v7 1/8] clk: Add temporary mapping to the existing API Tomeu Vizoso
2014-08-20 14:50 ` Mike Turquette
2014-08-21 18:04 ` Tony Lindgren [this message]
2014-08-21 18:10 ` Jason Cooper
2014-08-22 3:49 ` Simon Horman
2014-08-25 9:18 ` Sebastian Hesselbarth
2014-08-18 15:30 ` [PATCH v7 2/8] clk: provide public clk_is_enabled function Tomeu Vizoso
2014-08-18 15:30 ` [PATCH v7 3/8] cpufreq: kirkwood: Remove use of the clk provider API Tomeu Vizoso
[not found] ` <20140820225513.5251.284@quantum>
2014-08-21 7:53 ` Tomeu Vizoso
2014-08-21 13:38 ` Andrew Lunn
2014-08-22 19:29 ` Mike Turquette
2014-08-22 20:11 ` Andrew Lunn
2014-08-22 20:27 ` Andrew Lunn
2014-08-26 21:46 ` Mike Turquette
2014-08-26 22:36 ` Andrew Lunn
2014-08-26 23:30 ` Mike Turquette
2014-08-27 0:35 ` Andrew Lunn
2014-08-27 5:04 ` Mike Turquette
2014-08-27 15:58 ` Jason Gunthorpe
2014-08-18 15:30 ` [PATCH v7 4/8] ASoC: mxs-saif: fix mixed use of public and provider clk API Tomeu Vizoso
2014-08-18 15:30 ` [PATCH v7 6/8] clk: use struct clk only for external API Tomeu Vizoso
2014-08-18 15:30 ` [PATCH v7 7/8] clk: per-user clock accounting for debug Tomeu Vizoso
2014-08-27 20:54 ` Mike Turquette
2014-08-18 15:30 ` [PATCH v7 8/8] clk: Add floor and ceiling constraints to clock rates Tomeu Vizoso
2014-08-21 2:12 ` [PATCH v7 0/8] Per-user clock constraints Andrew Lunn
2014-08-21 7:10 ` Tomeu Vizoso
2014-08-26 13:20 ` Heiko Stübner
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=20140821180448.GD10066@atomide.com \
--to=tony@atomide.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).