From: Kukjin Kim <kgene.kim@samsung.com>
To: "'Stephen Boyd'" <sboyd@codeaurora.org>,
linux-arm-kernel@lists.infradead.org
Cc: linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org,
"'Thomas Abraham'" <thomas.abraham@linaro.org>
Subject: RE: [PATCHv6 06/11] ARM: EXYNOS4: Divorce mct from local timer API
Date: Mon, 03 Jun 2013 18:38:06 +0900 [thread overview]
Message-ID: <049701ce603e$0d446cb0$27cd4610$%kim@samsung.com> (raw)
In-Reply-To: <1368473175-4841-7-git-send-email-sboyd@codeaurora.org>
Stephen Boyd wrote:
>
> Separate the mct local timers from the local timer API. This will
> allow us to remove ARM local timer support in the near future and
> gets us closer to moving this driver to drivers/clocksource.
>
> Cc: Kukjin Kim <kgene.kim@samsung.com>
Looks good to me after looking at this series,
Acked-by: Kukjin Kim <kgene.kim@samsung.com>
Sorry for late response :-)
Thanks for your gentle reminder.
- Kukjin
> Cc: Thomas Abraham <thomas.abraham@linaro.org>
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> ---
> drivers/clocksource/exynos_mct.c | 60 ++++++++++++++++++++++++++++-------
> -----
> 1 file changed, 43 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/clocksource/exynos_mct.c
> b/drivers/clocksource/exynos_mct.c
> index 662fcc0..1c3f5a6 100644
> --- a/drivers/clocksource/exynos_mct.c
> +++ b/drivers/clocksource/exynos_mct.c
> @@ -16,6 +16,7 @@
> #include <linux/err.h>
> #include <linux/clk.h>
> #include <linux/clockchips.h>
> +#include <linux/cpu.h>
> #include <linux/platform_device.h>
> #include <linux/delay.h>
> #include <linux/percpu.h>
> @@ -24,7 +25,6 @@
> #include <linux/of_address.h>
> #include <linux/clocksource.h>
>
> -#include <asm/localtimer.h>
> #include <asm/mach/time.h>
>
> #define EXYNOS4_MCTREG(x) (x)
> @@ -80,7 +80,7 @@ static unsigned int mct_int_type;
> static int mct_irqs[MCT_NR_IRQS];
>
> struct mct_clock_event_device {
> - struct clock_event_device *evt;
> + struct clock_event_device evt;
> unsigned long base;
> char name[10];
> };
> @@ -295,8 +295,6 @@ static void exynos4_clockevent_init(void)
> setup_irq(mct_irqs[MCT_G0_IRQ], &mct_comp_event_irq);
> }
>
> -#ifdef CONFIG_LOCAL_TIMERS
> -
> static DEFINE_PER_CPU(struct mct_clock_event_device, percpu_mct_tick);
>
> /* Clock event handling */
> @@ -369,7 +367,7 @@ static inline void exynos4_tick_set_mode(enum
> clock_event_mode mode,
>
> static int exynos4_mct_tick_clear(struct mct_clock_event_device *mevt)
> {
> - struct clock_event_device *evt = mevt->evt;
> + struct clock_event_device *evt = &mevt->evt;
>
> /*
> * This is for supporting oneshot mode.
> @@ -391,7 +389,7 @@ static int exynos4_mct_tick_clear(struct
> mct_clock_event_device *mevt)
> static irqreturn_t exynos4_mct_tick_isr(int irq, void *dev_id)
> {
> struct mct_clock_event_device *mevt = dev_id;
> - struct clock_event_device *evt = mevt->evt;
> + struct clock_event_device *evt = &mevt->evt;
>
> exynos4_mct_tick_clear(mevt);
>
> @@ -417,8 +415,7 @@ static int __cpuinit exynos4_local_timer_setup(struct
> clock_event_device *evt)
> struct mct_clock_event_device *mevt;
> unsigned int cpu = smp_processor_id();
>
> - mevt = this_cpu_ptr(&percpu_mct_tick);
> - mevt->evt = evt;
> + mevt = container_of(evt, struct mct_clock_event_device, evt);
>
> mevt->base = EXYNOS4_MCT_L_BASE(cpu);
> sprintf(mevt->name, "mct_tick%d", cpu);
> @@ -452,7 +449,7 @@ static int __cpuinit exynos4_local_timer_setup(struct
> clock_event_device *evt)
> return 0;
> }
>
> -static void exynos4_local_timer_stop(struct clock_event_device *evt)
> +static void __cpuinit exynos4_local_timer_stop(struct clock_event_device
> *evt)
> {
> unsigned int cpu = smp_processor_id();
> evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt);
> @@ -465,14 +462,37 @@ static void exynos4_local_timer_stop(struct
> clock_event_device *evt)
> disable_percpu_irq(mct_irqs[MCT_L0_IRQ]);
> }
>
> -static struct local_timer_ops exynos4_mct_tick_ops __cpuinitdata = {
> - .setup = exynos4_local_timer_setup,
> - .stop = exynos4_local_timer_stop,
> +static int __cpuinit exynos4_mct_cpu_notify(struct notifier_block *self,
> + unsigned long action, void *hcpu)
> +{
> + struct mct_clock_event_device *mevt;
> +
> + /*
> + * Grab cpu pointer in each case to avoid spurious
> + * preemptible warnings
> + */
> + switch (action & ~CPU_TASKS_FROZEN) {
> + case CPU_STARTING:
> + mevt = this_cpu_ptr(&percpu_mct_tick);
> + exynos4_local_timer_setup(&mevt->evt);
> + break;
> + case CPU_DYING:
> + mevt = this_cpu_ptr(&percpu_mct_tick);
> + exynos4_local_timer_stop(&mevt->evt);
> + break;
> + }
> +
> + return NOTIFY_OK;
> +}
> +
> +static struct notifier_block exynos4_mct_cpu_nb __cpuinitdata = {
> + .notifier_call = exynos4_mct_cpu_notify,
> };
> -#endif /* CONFIG_LOCAL_TIMERS */
>
> static void __init exynos4_timer_resources(struct device_node *np, void
> __iomem *base)
> {
> + int err;
> + struct mct_clock_event_device *mevt =
> this_cpu_ptr(&percpu_mct_tick);
> struct clk *mct_clk, *tick_clk;
>
> tick_clk = np ? of_clk_get_by_name(np, "fin_pll") :
> @@ -490,9 +510,7 @@ static void __init exynos4_timer_resources(struct
> device_node *np, void __iomem
> if (!reg_base)
> panic("%s: unable to ioremap mct address space\n",
__func__);
>
> -#ifdef CONFIG_LOCAL_TIMERS
> if (mct_int_type == MCT_INT_PPI) {
> - int err;
>
> err = request_percpu_irq(mct_irqs[MCT_L0_IRQ],
> exynos4_mct_tick_isr, "MCT",
> @@ -501,8 +519,16 @@ static void __init exynos4_timer_resources(struct
> device_node *np, void __iomem
> mct_irqs[MCT_L0_IRQ], err);
> }
>
> - local_timer_register(&exynos4_mct_tick_ops);
> -#endif /* CONFIG_LOCAL_TIMERS */
> + err = register_cpu_notifier(&exynos4_mct_cpu_nb);
> + if (err)
> + goto out_irq;
> +
> + /* Immediately configure the timer on the boot CPU */
> + exynos4_local_timer_setup(&mevt->evt);
> + return;
> +
> +out_irq:
> + free_percpu_irq(mct_irqs[MCT_L0_IRQ], &percpu_mct_tick);
> }
>
> void __init mct_init(void __iomem *base, int irq_g0, int irq_l0, int
> irq_l1)
> --
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
> hosted by The Linux Foundation
next prev parent reply other threads:[~2013-06-03 9:38 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-13 19:26 [PATCHv6 00/11] Remove ARM " Stephen Boyd
2013-05-13 19:26 ` [PATCHv6 01/11] clockevents: Prefer CPU local devices over global devices Stephen Boyd
2013-05-23 21:33 ` Sören Brinkmann
2013-05-13 19:26 ` [PATCHv6 02/11] clocksource: add generic dummy timer driver Stephen Boyd
2013-05-13 19:26 ` [PATCHv6 03/11] ARM: smp: Remove duplicate dummy timer implementation Stephen Boyd
2013-05-20 21:55 ` Stephen Boyd
2013-05-13 19:26 ` [PATCHv6 04/11] ARM: smp_twd: Divorce smp_twd from local timer API Stephen Boyd
2013-05-13 19:26 ` [PATCHv6 05/11] ARM: OMAP2+: Divorce " Stephen Boyd
2013-05-13 19:26 ` [PATCHv6 06/11] ARM: EXYNOS4: Divorce mct " Stephen Boyd
2013-06-03 9:38 ` Kukjin Kim [this message]
2013-05-13 19:26 ` [PATCHv6 07/11] ARM: PRIMA2: Divorce timer-marco " Stephen Boyd
2013-05-31 18:38 ` Stephen Boyd
2013-05-13 19:26 ` [PATCHv6 08/11] ARM: msm: Divorce msm_timer " Stephen Boyd
2013-05-13 19:26 ` [PATCHv6 09/11] clocksource: time-armada-370-xp: Fix sparse warning Stephen Boyd
2013-05-13 19:26 ` [PATCHv6 10/11] clocksource: time-armada-370-xp: Divorce from local timer API Stephen Boyd
2013-05-13 19:26 ` [PATCHv6 11/11] ARM: smp: Remove " Stephen Boyd
2013-05-31 17:45 ` [PATCHv6 00/11] Remove ARM " Stephen Boyd
2013-05-31 18:08 ` John Stultz
2013-05-31 22:16 ` Stephen Boyd
2013-06-03 8:39 ` Daniel Lezcano
2013-06-03 8:54 ` Marc Zyngier
2013-06-03 9:41 ` Kukjin Kim
2013-06-03 20:00 ` Stephen Boyd
2013-06-03 20:06 ` Marc Zyngier
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='049701ce603e$0d446cb0$27cd4610$%kim@samsung.com' \
--to=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sboyd@codeaurora.org \
--cc=thomas.abraham@linaro.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
all inboxes | Powered by JetHome®