* [RFC Implement clockevents/clocksource for R4000-style cp0 timer [take #3]
@ 2007-06-25 9:34 Franck Bui-Huu
2007-06-27 18:07 ` Sergei Shtylyov
0 siblings, 1 reply; 3+ messages in thread
From: Franck Bui-Huu @ 2007-06-25 9:34 UTC (permalink / raw)
To: linux-mips; +Cc: Ralf Baechle, Sergei Shtylyov, Atsushi Nemoto
Hi,
This patch is an attempt to add clocksource/clockevent support for
platforms that use R4000-style cp0 timer as the tick source of the
system.
Actually it's an alternative to Ralf's patch named:
[MIPS] Implement clockevents for R4000-style cp0 count/compare interrupt
which can be found in Ralf's linux-time repo:
git://git.linux-mips.org/pub/scm/linux-time.git
It implements clockevent/clocksource support for cp0 counter in a new
file "hpt-cp0.c" but let the platform code to initialize it if it
chooses to use it. Therefore there's no more generic code which tries
to guess what the platform wants to use as tick source because in
practice only the platform code can drive the initialization of all
timer devices and interrupts properly.
This patch breaks the current code in the way that it requires all
boards that use cp0-counter to adapt their code. For now it doesn't
include any platform changes because I'd like to know if it's the
right way to go or it's time to stop it now.
Take #3 includes minor changes (Thanks to Sergei Shtylyov's feedbacks)
Changes since take #2:
---------------------
- clocksource rating does not depend on cp0-count frequency anymore
since a clocksource should be selected for its stability first,
not its precision.
- Rename CP0_HPT_TIMER into CP0_CLOCKS but I'm still not sure. If
someone can come with a better idea that would be nice. BTW
hpt-cp0.c file should be renamed into clock-cp0.c too.
TODO:
-----
- There are still few places to fix that uses 'mips_hpt_frequency'
global.
- If this patch is accepted, fix all platforms that use cp0
counter.
Please have a look,
Franck
-- 8< --
Subject: [PATCH] Implement clockevents/clocksource for R4000-style cp0 timer
Signed-off-by: Franck Bui-Huu <fbuihuu@gmail.com>
---
arch/mips/Kconfig | 9 +
arch/mips/kernel/Makefile | 2 +
arch/mips/kernel/hpt-cp0.c | 259 +++++++++++++++++++++++++++
arch/mips/kernel/process.c | 3 +
arch/mips/kernel/smp.c | 2 +
arch/mips/kernel/time.c | 416 ++++----------------------------------------
include/asm-mips/hpt.h | 36 ++++
include/asm-mips/time.h | 40 +----
8 files changed, 347 insertions(+), 420 deletions(-)
create mode 100644 arch/mips/kernel/hpt-cp0.c
create mode 100644 include/asm-mips/hpt.h
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
index 7bcf38d..a994af1 100644
--- a/arch/mips/Kconfig
+++ b/arch/mips/Kconfig
@@ -723,6 +723,14 @@ config GENERIC_TIME
bool
default y
+config GENERIC_CLOCKEVENTS
+ bool
+ default y
+
+config CP0_CLOCKS
+ bool
+ default y
+
config GENERIC_CMOS_UPDATE
bool
default y
@@ -1741,6 +1749,7 @@ config HZ
default 1000 if HZ_1000
default 1024 if HZ_1024
+source "kernel/time/Kconfig"
source "kernel/Kconfig.preempt"
config MIPS_INSANE_LARGE
diff --git a/arch/mips/kernel/Makefile b/arch/mips/kernel/Makefile
index 4924626..8aa9570 100644
--- a/arch/mips/kernel/Makefile
+++ b/arch/mips/kernel/Makefile
@@ -11,6 +11,8 @@ obj-y += cpu-probe.o branch.o entry.o genex.o irq.o process.o \
binfmt_irix-objs := irixelf.o irixinv.o irixioctl.o irixsig.o \
irix5sys.o sysirix.o
+obj-$(CONFIG_CP0_CLOCKS) += hpt-cp0.o
+
obj-$(CONFIG_STACKTRACE) += stacktrace.o
obj-$(CONFIG_MODULES) += mips_ksyms.o module.o
diff --git a/arch/mips/kernel/hpt-cp0.c b/arch/mips/kernel/hpt-cp0.c
new file mode 100644
index 0000000..e2defcd
--- /dev/null
+++ b/arch/mips/kernel/hpt-cp0.c
@@ -0,0 +1,259 @@
+/*
+ * hpt-cp0.c - CP0 clock driver
+ *
+ * Copyright (C) 2007, Franck Bui-Huu <fbuihuu@gmail.com>
+ *
+ * This code is released under the GNU General Public License,
+ * Version 2 (GPL v2).
+ */
+#include <linux/kernel_stat.h>
+#include <linux/spinlock.h>
+#include <linux/clockchips.h>
+#include <linux/clocksource.h>
+
+#include <asm/time.h>
+#include <asm/hpt.h>
+
+
+#define CP0_CLOCK_NAME "cp0-count"
+
+static unsigned (*get_freq)(int cpu) __initdata;
+static irqreturn_t (*perf_handler)(int irq, void *dev_id) __read_mostly;
+
+/*
+ * cp0 clocks can be disabled by boot command line
+ */
+static int disable_clockevent __initdata;
+static int disable_clocksource __initdata;
+
+static int __init cp0_clock_setup(char *arg)
+{
+ if (arg == NULL)
+ return -EINVAL;
+
+ if (!strcmp(arg, "disable_event"))
+ disable_clockevent = 1;
+ else if (!strcmp(arg, "disable_source"))
+ disable_clocksource = 1;
+ else if (!strcmp(arg, "disable_both")) {
+ disable_clocksource = 1;
+ disable_clockevent = 1;
+ }
+ return 0;
+}
+early_param("cp0_clock", cp0_clock_setup);
+
+/*
+ * cp0 count/compare operations.
+ */
+static void cp0_count_ack(void)
+{
+ write_c0_compare(read_c0_compare());
+}
+
+static cycle_t cp0_count_read(void)
+{
+ return read_c0_count();
+}
+
+/*
+ * Clocksource device. Its rating should not depend on its frequency:
+ * stability is a feature more valuable for a clock source.
+ */
+struct clocksource cp0_clocksource = {
+ .name = CP0_CLOCK_NAME,
+ .rating = 200,
+ .mask = CLOCKSOURCE_MASK(32),
+ .flags = CLOCK_SOURCE_IS_CONTINUOUS,
+ .read = cp0_count_read,
+};
+
+static void __init setup_cp0_clocksource(void)
+{
+ int cpu = smp_processor_id();
+ unsigned freq = get_freq(cpu);
+ unsigned shift = 0;
+ u64 mult;
+
+ for (shift = 32; shift > 0; shift--) {
+ mult = (u64)NSEC_PER_SEC << shift;
+ do_div(mult, freq);
+ if ((mult >> 32) == 0)
+ break;
+ }
+
+ cp0_clocksource.shift = shift;
+ cp0_clocksource.mult = mult;
+
+ clocksource_register(&cp0_clocksource);
+}
+
+/*
+ * High precision timer functions
+ */
+static int cp0_set_next_event(unsigned long delta,
+ struct clock_event_device *evt)
+{
+ unsigned int cnt;
+
+ BUG_ON(evt->mode != CLOCK_EVT_MODE_ONESHOT);
+
+ /* interrupt ack is done by setting up the next event */
+ cnt = read_c0_count();
+ cnt += delta;
+ write_c0_compare(cnt);
+
+ return ((long)(read_c0_count() - cnt) > 0L) ? -ETIME : 0;
+}
+
+static void cp0_set_mode(enum clock_event_mode mode,
+ struct clock_event_device *evt)
+{
+ switch (mode) {
+ case CLOCK_EVT_MODE_UNUSED:
+ case CLOCK_EVT_MODE_SHUTDOWN:
+ /*
+ * For now, we don't disable cp0 hpt interrupts. So we
+ * leave them enabled, and ignore them in this mode.
+ * Therefore we will get one useless but also harmless
+ * interrupt every 2^32 cycles...
+ */
+ cp0_count_ack();
+ break;
+ case CLOCK_EVT_MODE_ONESHOT:
+ /* nothing to do */
+ break;
+ case CLOCK_EVT_MODE_PERIODIC:
+ BUG();
+ };
+}
+
+static struct clock_event_device cp0_clockevent __initdata = {
+ .name = CP0_CLOCK_NAME,
+ .mode = CLOCK_EVT_MODE_UNUSED,
+ .features = CLOCK_EVT_FEAT_ONESHOT,
+ .shift = 32,
+ .set_mode = cp0_set_mode,
+ .set_next_event = cp0_set_next_event,
+ .irq = -1,
+};
+
+static DEFINE_PER_CPU(struct clock_event_device, cp0_clock_events);
+
+void __init setup_cp0_clockevent(void)
+{
+ struct clock_event_device *evt;
+ int cpu = smp_processor_id();
+ unsigned freq;
+
+ if (disable_clockevent)
+ return;
+
+ evt = &__get_cpu_var(cp0_clock_events);
+
+ memcpy(evt, &cp0_clockevent, sizeof(*evt));
+
+ freq = get_freq(cpu);
+
+ evt->rating = 200 + freq/10000000;
+ evt->mult = div_sc(freq, NSEC_PER_SEC, evt->shift);
+ evt->cpumask = cpumask_of_cpu(cpu);
+
+ evt->max_delta_ns = clockevent_delta2ns(0x7fffffff, evt);
+ evt->min_delta_ns = clockevent_delta2ns(0x10, evt);
+
+ clockevents_register_device(evt);
+
+ printk("Using %u.%03u MHz CP0 high precision timer on CPU #%d.\n",
+ ((freq + 500) / 1000) / 1000,
+ ((freq + 500) / 1000) % 1000,
+ cpu);
+}
+
+static irqreturn_t cp0_clockevent_interrupt(int irq, void *dev_id)
+{
+ const int r2 = cpu_has_mips_r2;
+ struct clock_event_device *evt;
+
+ /*
+ * Suckage alert:
+ * Before R2 of the architecture there was no way to see if a
+ * performance counter interrupt was pending, so we have to run
+ * the performance counter interrupt handler anyway.
+ */
+ if (perf_handler && perf_handler(irq, dev_id) == IRQ_HANDLED)
+ /*
+ * The performance counter overflow interrupt may be
+ * shared with the timer interrupt. If it is (!r2)
+ * then we can't reliably determine if a counter
+ * interrupt has also happened. So don't check for a
+ * timer interrupt in this case.
+ */
+ if (!r2)
+ goto out;
+
+ /*
+ * The same applies to performance counter interrupts. But with the
+ * above we now know that the reason we got here must be a timer
+ * interrupt. Being the paranoiacs we are we check anyway.
+ */
+ if (!r2 || (read_c0_cause() & (1 << 30))) {
+ evt = &__get_cpu_var(cp0_clock_events);
+
+ /*
+ * We can get interrupts whereas the hpt clock event
+ * device has been disabled since we can't shut it
+ * down. So always ack the timer.
+ */
+ cp0_count_ack();
+
+ switch (evt->mode) {
+ case CLOCK_EVT_MODE_ONESHOT:
+ evt->event_handler(evt);
+ break;
+ case CLOCK_EVT_MODE_UNUSED:
+ case CLOCK_EVT_MODE_SHUTDOWN:
+ case CLOCK_EVT_MODE_PERIODIC:
+ /* nothing */;
+ }
+ }
+out:
+ return IRQ_HANDLED;
+}
+
+static struct irqaction cp0_clockevent_irqaction = {
+ .handler = cp0_clockevent_interrupt,
+ .flags = IRQF_DISABLED | IRQF_PERCPU,
+ .name = CP0_CLOCK_NAME,
+};
+
+
+/*
+ * This function is used by platforms which use the hpt as clock
+ * source and timer.
+ */
+int __init setup_cp0_clocks(struct cp0_clock_info *info)
+{
+ if (!cpu_has_counter)
+ goto disable_all;
+ if (info->get_freq == NULL)
+ goto disable_all;
+
+ get_freq = info->get_freq;
+ perf_handler = info->perf_handler;
+
+ if (info->irq == 0)
+ disable_clockevent = 1;
+
+ if (!disable_clocksource)
+ setup_cp0_clocksource();
+ if (!disable_clockevent) {
+ setup_cp0_clockevent();
+ setup_irq(info->irq, &cp0_clockevent_irqaction);
+ }
+ return 0;
+
+disable_all:
+ disable_clocksource = disable_clockevent = 1;
+ return -EINVAL;
+}
diff --git a/arch/mips/kernel/process.c b/arch/mips/kernel/process.c
index 6bdfb5a..23b8858 100644
--- a/arch/mips/kernel/process.c
+++ b/arch/mips/kernel/process.c
@@ -25,6 +25,7 @@
#include <linux/init.h>
#include <linux/completion.h>
#include <linux/kallsyms.h>
+#include <linux/tick.h>
#include <asm/bootinfo.h>
#include <asm/cpu.h>
@@ -50,6 +51,7 @@ ATTRIB_NORET void cpu_idle(void)
{
/* endless idle loop with no priority at all */
while (1) {
+ tick_nohz_stop_sched_tick();
while (!need_resched()) {
#ifdef CONFIG_SMTC_IDLE_HOOK_DEBUG
extern void smtc_idle_loop_hook(void);
@@ -59,6 +61,7 @@ ATTRIB_NORET void cpu_idle(void)
if (cpu_wait)
(*cpu_wait)();
}
+ tick_nohz_restart_sched_tick();
preempt_enable_no_resched();
schedule();
preempt_disable();
diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c
index 67edfa7..85ad130 100644
--- a/arch/mips/kernel/smp.c
+++ b/arch/mips/kernel/smp.c
@@ -37,6 +37,7 @@
#include <asm/system.h>
#include <asm/mmu_context.h>
#include <asm/smp.h>
+#include <asm/hpt.h>
#ifdef CONFIG_MIPS_MT_SMTC
#include <asm/mipsmtregs.h>
@@ -79,6 +80,7 @@ asmlinkage __cpuinit void start_secondary(void)
cpu_probe();
cpu_report();
per_cpu_trap_init();
+ setup_cp0_hpt_clockevent(/* calibrate_timer() */);
prom_init_secondary();
/*
diff --git a/arch/mips/kernel/time.c b/arch/mips/kernel/time.c
index 72df0bf..0cc8363 100644
--- a/arch/mips/kernel/time.c
+++ b/arch/mips/kernel/time.c
@@ -1,48 +1,16 @@
-/*
- * Copyright 2001 MontaVista Software Inc.
- * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
- * Copyright (c) 2003, 2004 Maciej W. Rozycki
- *
- * Common time service routines for MIPS machines. See
- * Documentation/mips/time.README.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation; either version 2 of the License, or (at your
- * option) any later version.
- */
-#include <linux/types.h>
-#include <linux/kernel.h>
-#include <linux/init.h>
-#include <linux/sched.h>
-#include <linux/param.h>
-#include <linux/time.h>
-#include <linux/timex.h>
-#include <linux/smp.h>
#include <linux/kernel_stat.h>
#include <linux/spinlock.h>
-#include <linux/interrupt.h>
-#include <linux/module.h>
+#include <linux/clocksource.h> /* cycle_t */
-#include <asm/bootinfo.h>
-#include <asm/cache.h>
-#include <asm/compiler.h>
-#include <asm/cpu.h>
-#include <asm/cpu-features.h>
-#include <asm/div64.h>
-#include <asm/sections.h>
#include <asm/time.h>
/*
- * The integer part of the number of usecs per jiffy is taken from tick,
- * but the fractional part is not recorded, so we calculate it using the
- * initial value of HZ. This aids systems where tick isn't really an
- * integer (e.g. for HZ = 128).
+ * This is the freq of the tick timer of the platform. It's not
+ * always a _high_ precision timer as its name suggests.
+ *
+ * FIXME: Is it really needed ? shouldn't it be a per cpu value ?
*/
-#define USECS_PER_JIFFY TICK_SIZE
-#define USECS_PER_JIFFY_FRAC ((unsigned long)(u32)((1000000ULL << 32) / HZ))
-
-#define TICK_SIZE (tick_nsec / 1000)
+unsigned int mips_hpt_frequency __read_mostly;
/*
* RTC. By default we provide the null RTC hooks
@@ -79,264 +47,36 @@ int update_persistent_clock(struct timespec now)
return mips_rtc_set_mmss(now.tv_sec);
}
-/* how many counter cycles in a jiffy */
-static unsigned long cycles_per_jiffy __read_mostly;
-
-/* expirelo is the count value for next CPU timer interrupt */
-static unsigned int expirelo;
-
-
-/*
- * Null timer ack for systems not needing one (e.g. i8254).
- */
-static void null_timer_ack(void) { /* nothing */ }
-
-/*
- * Null high precision timer functions for systems lacking one.
- */
-static cycle_t null_hpt_read(void)
-{
- return 0;
-}
-
-/*
- * Timer ack for an R4k-compatible timer of a known frequency.
- */
-static void c0_timer_ack(void)
-{
- unsigned int count;
-
- /* Ack this timer interrupt and set the next one. */
- expirelo += cycles_per_jiffy;
- write_c0_compare(expirelo);
-
- /* Check to see if we have missed any timer interrupts. */
- while (((count = read_c0_count()) - expirelo) < 0x7fffffff) {
- /* missed_timer_count++; */
- expirelo = count + cycles_per_jiffy;
- write_c0_compare(expirelo);
- }
-}
-
-/*
- * High precision timer functions for a R4k-compatible timer.
- */
-static cycle_t c0_hpt_read(void)
-{
- return read_c0_count();
-}
-
-/* For use both as a high precision timer and an interrupt source. */
-static void __init c0_hpt_timer_init(void)
-{
- expirelo = read_c0_count() + cycles_per_jiffy;
- write_c0_compare(expirelo);
-}
-
-int (*mips_timer_state)(void);
-void (*mips_timer_ack)(void);
-
-/*
- * local_timer_interrupt() does profiling and process accounting
- * on a per-CPU basis.
- *
- * In UP mode, it is invoked from the (global) timer_interrupt.
- *
- * In SMP mode, it might invoked by per-CPU timer interrupt, or
- * a broadcasted inter-processor interrupt which itself is triggered
- * by the global timer interrupt.
- */
-void local_timer_interrupt(int irq)
-{
- profile_tick(CPU_PROFILING);
- update_process_times(user_mode(get_irq_regs()));
-}
-
-/*
- * High-level timer interrupt service routines. This function
- * is set as irqaction->handler and is invoked through do_IRQ.
- */
-irqreturn_t timer_interrupt(int irq, void *dev_id)
-{
- write_seqlock(&xtime_lock);
-
- mips_timer_ack();
-
- /*
- * call the generic timer interrupt handling
- */
- do_timer(1);
-
- write_sequnlock(&xtime_lock);
-
- /*
- * In UP mode, we call local_timer_interrupt() to do profiling
- * and process accouting.
- *
- * In SMP mode, local_timer_interrupt() is invoked by appropriate
- * low-level local timer interrupt handler.
- */
- local_timer_interrupt(irq);
-
- return IRQ_HANDLED;
-}
-
-int null_perf_irq(void)
-{
- return 0;
-}
-
-EXPORT_SYMBOL(null_perf_irq);
-
-int (*perf_irq)(void) = null_perf_irq;
-
-EXPORT_SYMBOL(perf_irq);
-
-/*
- * Performance counter IRQ or -1 if shared with timer
- */
-int mipsxx_perfcount_irq;
-EXPORT_SYMBOL(mipsxx_perfcount_irq);
-
/*
- * Possibly handle a performance counter interrupt.
- * Return true if the timer interrupt should not be checked
+ * Basically it calls the platform hooks to setup:
+ * a) RTC
+ * b) a timer
*/
-static inline int handle_perf_irq(int r2)
-{
- /*
- * The performance counter overflow interrupt may be shared with the
- * timer interrupt (mipsxx_perfcount_irq < 0). If it is and a
- * performance counter has overflowed (perf_irq() == IRQ_HANDLED)
- * and we can't reliably determine if a counter interrupt has also
- * happened (!r2) then don't check for a timer interrupt.
- */
- return (mipsxx_perfcount_irq < 0) &&
- perf_irq() == IRQ_HANDLED &&
- !r2;
-}
-
-extern void smtc_timer_broadcast(int);
-
-void ll_timer_interrupt(int irq)
+void __init time_init(void)
{
- int cpu = smp_processor_id();
- int r2 = cpu_has_mips_r2;
-
- irq_enter();
- kstat_this_cpu.irqs[irq]++;
-
-#ifdef CONFIG_MIPS_MT_SMTC
/*
- * In an SMTC system, one Count/Compare set exists per VPE.
- * Which TC within a VPE gets the interrupt is essentially
- * random - we only know that it shouldn't be one with
- * IXMT set. Whichever TC gets the interrupt needs to
- * send special interprocessor interrupts to the other
- * TCs to make sure that they schedule, etc.
- *
- * That code is specific to the SMTC kernel, not to
- * the a particular platform, so it's invoked from
- * the general MIPS timer_interrupt routine.
+ * Mandatory platform hook. It basically setup the RTC.
+ * FIXME: shouldn't we call these before calling
+ * timekeeping_init() ?
*/
+ plat_time_init();
/*
- * We could be here due to timer interrupt,
- * perf counter overflow, or both.
+ * Platform can setup a new timer, hpt timer...
*/
- (void) handle_perf_irq(1);
-
- if (read_c0_cause() & (1 << 30)) {
- /*
- * There are things we only want to do once per tick
- * in an "MP" system. One TC of each VPE will take
- * the actual timer interrupt. The others will get
- * timer broadcast IPIs. We use whoever it is that takes
- * the tick on VPE 0 to run the full timer_interrupt().
- */
- if (cpu_data[cpu].vpe_id == 0) {
- timer_interrupt(irq, NULL);
- } else {
- write_c0_compare(read_c0_count() +
- (mips_hpt_frequency/HZ));
- local_timer_interrupt(irq);
- }
- smtc_timer_broadcast(cpu_data[cpu].vpe_id);
- }
-#else /* CONFIG_MIPS_MT_SMTC */
- if (handle_perf_irq(r2))
- goto out;
-
- if (r2 && ((read_c0_cause() & (1 << 30)) == 0))
- goto out;
-
- if (cpu == 0) {
- /*
- * CPU 0 handles the global timer interrupt job and process
- * accounting resets count/compare registers to trigger next
- * timer int.
- */
- timer_interrupt(irq, NULL);
- } else {
- /* Everyone else needs to reset the timer int here as
- ll_local_timer_interrupt doesn't */
- /*
- * FIXME: need to cope with counter underflow.
- * More support needs to be added to kernel/time for
- * counter/timer interrupts on multiple CPU's
- */
- write_c0_compare(read_c0_count() + (mips_hpt_frequency/HZ));
-
- /*
- * Other CPUs should do profiling and process accounting
- */
- local_timer_interrupt(irq);
- }
-out:
-#endif /* CONFIG_MIPS_MT_SMTC */
-
- irq_exit();
+ plat_timer_setup();
}
-asmlinkage void ll_local_timer_interrupt(int irq)
-{
- irq_enter();
- if (smp_processor_id() != 0)
- kstat_this_cpu.irqs[irq]++;
-
- /* we keep interrupt disabled all the time */
- local_timer_interrupt(irq);
-
- irq_exit();
-}
-
/*
- * time_init() - it does the following things.
- *
- * 1) plat_time_init() -
- * a) (optional) set up RTC routines,
- * b) (optional) calibrate and set the mips_hpt_frequency
- * (only needed if you intended to use cpu counter as timer interrupt
- * source)
- * 2) calculate a couple of cached variables for later usage
- * 3) plat_timer_setup() -
- * a) (optional) over-write any choices made above by time_init().
- * b) machine specific code should setup the timer irqaction.
- * c) enable the timer interrupt
+ * If you don't know timer 'X' frequency and have another timer 'Y'
+ * that flips at HZ rate, you can use this helper to determinate the
+ * timer 'X' freq.
*/
-
-unsigned int mips_hpt_frequency;
-
-static struct irqaction timer_irqaction = {
- .handler = timer_interrupt,
- .flags = IRQF_DISABLED | IRQF_PERCPU,
- .name = "timer",
-};
-
-static unsigned int __init calibrate_hpt(void)
+unsigned __init calibrate_timer(cycle_t (*x_read)(void),
+ int (*y_state)(void))
{
- cycle_t frequency, hpt_start, hpt_end, hpt_count, hz;
+ cycle_t freq, start, end, count, hz;
const int loops = HZ / 10;
int log_2_loops = 0;
@@ -354,118 +94,24 @@ static unsigned int __init calibrate_hpt(void)
/*
* Wait for a rising edge of the timer interrupt.
*/
- while (mips_timer_state());
- while (!mips_timer_state());
+ while (y_state());
+ while (!y_state());
/*
* Now see how many high precision timer ticks happen
* during the calculated number of periods between timer
* interrupts.
*/
- hpt_start = clocksource_mips.read();
+ start = x_read();
do {
- while (mips_timer_state());
- while (!mips_timer_state());
+ while (y_state());
+ while (!y_state());
} while (--i);
- hpt_end = clocksource_mips.read();
+ end = x_read();
- hpt_count = (hpt_end - hpt_start) & clocksource_mips.mask;
+ count = end - start;
hz = HZ;
- frequency = hpt_count * hz;
-
- return frequency >> log_2_loops;
-}
-
-struct clocksource clocksource_mips = {
- .name = "MIPS",
- .mask = CLOCKSOURCE_MASK(32),
- .flags = CLOCK_SOURCE_IS_CONTINUOUS,
-};
-
-static void __init init_mips_clocksource(void)
-{
- u64 temp;
- u32 shift;
-
- if (!mips_hpt_frequency || clocksource_mips.read == null_hpt_read)
- return;
-
- /* Calclate a somewhat reasonable rating value */
- clocksource_mips.rating = 200 + mips_hpt_frequency / 10000000;
- /* Find a shift value */
- for (shift = 32; shift > 0; shift--) {
- temp = (u64) NSEC_PER_SEC << shift;
- do_div(temp, mips_hpt_frequency);
- if ((temp >> 32) == 0)
- break;
- }
- clocksource_mips.shift = shift;
- clocksource_mips.mult = (u32)temp;
-
- clocksource_register(&clocksource_mips);
-}
-
-void __init __weak plat_time_init(void)
-{
-}
-
-void __init time_init(void)
-{
- plat_time_init();
-
- /* Choose appropriate high precision timer routines. */
- if (!cpu_has_counter && !clocksource_mips.read)
- /* No high precision timer -- sorry. */
- clocksource_mips.read = null_hpt_read;
- else if (!mips_hpt_frequency && !mips_timer_state) {
- /* A high precision timer of unknown frequency. */
- if (!clocksource_mips.read)
- /* No external high precision timer -- use R4k. */
- clocksource_mips.read = c0_hpt_read;
- } else {
- /* We know counter frequency. Or we can get it. */
- if (!clocksource_mips.read) {
- /* No external high precision timer -- use R4k. */
- clocksource_mips.read = c0_hpt_read;
-
- if (!mips_timer_state) {
- /* No external timer interrupt -- use R4k. */
- mips_timer_ack = c0_timer_ack;
- /* Calculate cache parameters. */
- cycles_per_jiffy =
- (mips_hpt_frequency + HZ / 2) / HZ;
- /*
- * This sets up the high precision
- * timer for the first interrupt.
- */
- c0_hpt_timer_init();
- }
- }
- if (!mips_hpt_frequency)
- mips_hpt_frequency = calibrate_hpt();
-
- /* Report the high precision timer rate for a reference. */
- printk("Using %u.%03u MHz high precision timer.\n",
- ((mips_hpt_frequency + 500) / 1000) / 1000,
- ((mips_hpt_frequency + 500) / 1000) % 1000);
- }
-
- if (!mips_timer_ack)
- /* No timer interrupt ack (e.g. i8254). */
- mips_timer_ack = null_timer_ack;
-
- /*
- * Call board specific timer interrupt setup.
- *
- * this pointer must be setup in machine setup routine.
- *
- * Even if a machine chooses to use a low-level timer interrupt,
- * it still needs to setup the timer_irqaction.
- * In that case, it might be better to set timer_irqaction.handler
- * to be NULL function so that we are sure the high-level code
- * is not invoked accidentally.
- */
- plat_timer_setup(&timer_irqaction);
+ freq = count * hz;
- init_mips_clocksource();
+ return freq >> log_2_loops;
}
diff --git a/include/asm-mips/hpt.h b/include/asm-mips/hpt.h
new file mode 100644
index 0000000..f0acab3
--- /dev/null
+++ b/include/asm-mips/hpt.h
@@ -0,0 +1,36 @@
+#ifndef _ASM_HPT_H
+#define _ASM_HPT_H
+
+#ifdef CONFIG_CP0_CLOCKS
+
+struct cp0_clock_info {
+ /*
+ * This is the irq num of the cp0 count/compare timer.
+ */
+ int irq;
+
+ /*
+ * This mandartory hook is called to get the frequency of
+ * the running processor.
+ */
+ unsigned (*get_freq)(int cpu);
+
+ /*
+ * The performance counter overflow irq may be shared with the
+ * hpt interrupt. In that case this handler will be called
+ * during a hpt interrupt.
+ */
+ irqreturn_t (*perf_handler)(int irq, void *dev_id);
+};
+
+
+extern int setup_cp0_clocks(struct cp0_clock_info *info);
+extern void setup_cp0_clockevent(void);
+
+#else
+
+static inline void setup_cp0_clockevent(void) {}
+
+#endif /* CONFIG_CP0_CLOCKS */
+
+#endif /* _ASM_HPT_H */
diff --git a/include/asm-mips/time.h b/include/asm-mips/time.h
index 33645ed..6d8c9b4 100644
--- a/include/asm-mips/time.h
+++ b/include/asm-mips/time.h
@@ -16,12 +16,8 @@
#ifndef _ASM_TIME_H
#define _ASM_TIME_H
-#include <linux/interrupt.h>
-#include <linux/linkage.h>
-#include <linux/ptrace.h>
+#include <linux/clocksource.h> /* cycle_t */
#include <linux/rtc.h>
-#include <linux/spinlock.h>
-#include <linux/clocksource.h>
extern spinlock_t rtc_lock;
@@ -41,12 +37,6 @@ extern int (*mips_timer_state)(void);
extern void (*mips_timer_ack)(void);
/*
- * High precision timer clocksource.
- * If .read is NULL, an R4k-compatible timer setup is attempted.
- */
-extern struct clocksource clocksource_mips;
-
-/*
* to_tm() converts system time back to (year, mon, day, hour, min, sec).
* It is intended to help implement rtc_set_time() functions.
* Copied from PPC implementation.
@@ -54,32 +44,12 @@ extern struct clocksource clocksource_mips;
extern void to_tm(unsigned long tim, struct rtc_time *tm);
/*
- * high-level timer interrupt routines.
- */
-extern irqreturn_t timer_interrupt(int irq, void *dev_id);
-
-/*
- * the corresponding low-level timer interrupt routine.
- */
-extern void ll_timer_interrupt(int irq);
-
-/*
- * profiling and process accouting is done separately in local_timer_interrupt
+ * board specific hooks called by time_init().
*/
-extern void local_timer_interrupt(int irq);
-
-/*
- * board specific routines required by time_init().
- */
-struct irqaction;
extern void plat_time_init(void);
-extern void plat_timer_setup(struct irqaction *irq);
+extern void plat_timer_setup(void);
-/*
- * mips_hpt_frequency - must be set if you intend to use an R4k-compatible
- * counter as a timer interrupt source; otherwise it can be set up
- * automagically with an aid of mips_timer_state.
- */
-extern unsigned int mips_hpt_frequency;
+extern unsigned calibrate_timer(cycle_t (*x_read)(void),
+ int (*y_state)(void));
#endif /* _ASM_TIME_H */
--
1.5.2.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [RFC Implement clockevents/clocksource for R4000-style cp0 timer [take #3]
2007-06-25 9:34 [RFC Implement clockevents/clocksource for R4000-style cp0 timer [take #3] Franck Bui-Huu
@ 2007-06-27 18:07 ` Sergei Shtylyov
2007-06-29 9:30 ` Franck Bui-Huu
0 siblings, 1 reply; 3+ messages in thread
From: Sergei Shtylyov @ 2007-06-27 18:07 UTC (permalink / raw)
To: Franck; +Cc: linux-mips, Ralf Baechle, Atsushi Nemoto
Hello.
Franck Bui-Huu wrote:
> This patch is an attempt to add clocksource/clockevent support for
> platforms that use R4000-style cp0 timer as the tick source of the
> system.
[...]
> It implements clockevent/clocksource support for cp0 counter in a new
> file "hpt-cp0.c" but let the platform code to initialize it if it
> chooses to use it. Therefore there's no more generic code which tries
> to guess what the platform wants to use as tick source because in
> practice only the platform code can drive the initialization of all
> timer devices and interrupts properly.
> Take #3 includes minor changes (Thanks to Sergei Shtylyov's feedbacks)
> Changes since take #2:
> ---------------------
> - clocksource rating does not depend on cp0-count frequency anymore
> since a clocksource should be selected for its stability first,
> not its precision.
> - Rename CP0_HPT_TIMER into CP0_CLOCKS but I'm still not sure. If
Why not just CP0_TIMER? Hm, CP0_HPT_TIMER was even redundant... :-)
> someone can come with a better idea that would be nice. BTW
> hpt-cp0.c file should be renamed into clock-cp0.c too.
I suggest timer-cp0.c ot cp0-timer.c
> TODO:
> -----
> - There are still few places to fix that uses 'mips_hpt_frequency'
> global.
> - If this patch is accepted, fix all platforms that use cp0
> counter.
> Please have a look,
> Franck
> -- 8< --
> Subject: [PATCH] Implement clockevents/clocksource for R4000-style cp0 timer
> Signed-off-by: Franck Bui-Huu <fbuihuu@gmail.com>
> ---
> arch/mips/Kconfig | 9 +
> arch/mips/kernel/Makefile | 2 +
> arch/mips/kernel/hpt-cp0.c | 259 +++++++++++++++++++++++++++
> arch/mips/kernel/process.c | 3 +
> arch/mips/kernel/smp.c | 2 +
> arch/mips/kernel/time.c | 416 ++++----------------------------------------
> include/asm-mips/hpt.h | 36 ++++
That HPT just doesn't want to die. :-)
[...]
> diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
> index 7bcf38d..a994af1 100644
[...]
> @@ -1741,6 +1749,7 @@ config HZ
> default 1000 if HZ_1000
> default 1024 if HZ_1024
>
> +source "kernel/time/Kconfig"
> source "kernel/Kconfig.preempt"
I would have put this part into a separate patch, along with tickless mode
hooks in arch/mips/kernel/process.c...
> diff --git a/arch/mips/kernel/hpt-cp0.c b/arch/mips/kernel/hpt-cp0.c
> new file mode 100644
> index 0000000..e2defcd
> --- /dev/null
> +++ b/arch/mips/kernel/hpt-cp0.c
> @@ -0,0 +1,259 @@
> +/*
> + * hpt-cp0.c - CP0 clock driver
> + *
> + * Copyright (C) 2007, Franck Bui-Huu <fbuihuu@gmail.com>
> + *
> + * This code is released under the GNU General Public License,
> + * Version 2 (GPL v2).
> + */
> +#include <linux/kernel_stat.h>
> +#include <linux/spinlock.h>
> +#include <linux/clockchips.h>
> +#include <linux/clocksource.h>
> +
> +#include <asm/time.h>
> +#include <asm/hpt.h>
> +
> +
> +#define CP0_CLOCK_NAME "cp0-count"
> +
> +static unsigned (*get_freq)(int cpu) __initdata;
> +static irqreturn_t (*perf_handler)(int irq, void *dev_id) __read_mostly;
> +
> +/*
> + * cp0 clocks can be disabled by boot command line
> + */
> +static int disable_clockevent __initdata;
> +static int disable_clocksource __initdata;
> +
> +static int __init cp0_clock_setup(char *arg)
> +{
> + if (arg == NULL)
> + return -EINVAL;
> +
> + if (!strcmp(arg, "disable_event"))
> + disable_clockevent = 1;
> + else if (!strcmp(arg, "disable_source"))
> + disable_clocksource = 1;
> + else if (!strcmp(arg, "disable_both")) {
> + disable_clocksource = 1;
> + disable_clockevent = 1;
How about "noevent", "nosource", and "none"?
> + }
> + return 0;
> +}
> +early_param("cp0_clock", cp0_clock_setup);
> +
> +/*
> + * cp0 count/compare operations.
> + */
> +static void cp0_count_ack(void)
> +{
> + write_c0_compare(read_c0_compare());
> +}
> +
> +static cycle_t cp0_count_read(void)
> +{
> + return read_c0_count();
"Entab" spaces here please.
> +}
> +
> +/*
> + * Clocksource device. Its rating should not depend on its frequency:
> + * stability is a feature more valuable for a clock source.
> + */
> +struct clocksource cp0_clocksource = {
> + .name = CP0_CLOCK_NAME,
> + .rating = 200,
Perhaps we even need to rise the rating to 300 or 400 -- according to what
<linux/clocksource.h> says...
> + .mask = CLOCKSOURCE_MASK(32),
> + .flags = CLOCK_SOURCE_IS_CONTINUOUS,
> + .read = cp0_count_read,
> +};
> +
> +static void __init setup_cp0_clocksource(void)
> +{
> + int cpu = smp_processor_id();
> + unsigned freq = get_freq(cpu);
Might fold these 2 lines into:
unsigned freq = get_freq(smp_processor_id());
> + unsigned shift = 0;
Unneeded initializer.
> + u64 mult;
> +
> + for (shift = 32; shift > 0; shift--) {
> + mult = (u64)NSEC_PER_SEC << shift;
> + do_div(mult, freq);
> + if ((mult >> 32) == 0)
> + break;
> + }
> +
> + cp0_clocksource.shift = shift;
> + cp0_clocksource.mult = mult;
> +
> + clocksource_register(&cp0_clocksource);
> +}
> +
> +/*
> + * High precision timer functions
> + */
> +static int cp0_set_next_event(unsigned long delta,
> + struct clock_event_device *evt)
> +{
> + unsigned int cnt;
> +
> + BUG_ON(evt->mode != CLOCK_EVT_MODE_ONESHOT);
> +
> + /* interrupt ack is done by setting up the next event */
We acknowledge interrupt independently from this code anyway, so the
comment seems misplaced.
> + cnt = read_c0_count();
> + cnt += delta;
Could be merge into one statement...
> + write_c0_compare(cnt);
> +
> + return ((long)(read_c0_count() - cnt) > 0L) ? -ETIME : 0;
> +}
> +
> +static void cp0_set_mode(enum clock_event_mode mode,
> + struct clock_event_device *evt)
> +{
> + switch (mode) {
> + case CLOCK_EVT_MODE_UNUSED:
> + case CLOCK_EVT_MODE_SHUTDOWN:
> + /*
> + * For now, we don't disable cp0 hpt interrupts. So we
A reference to hpt needs to be killed.
> + * leave them enabled, and ignore them in this mode.
> + * Therefore we will get one useless but also harmless
> + * interrupt every 2^32 cycles...
> + */
> + cp0_count_ack();
> + break;
> + case CLOCK_EVT_MODE_ONESHOT:
> + /* nothing to do */
> + break;
> + case CLOCK_EVT_MODE_PERIODIC:
> + BUG();
> + };
> +}
> +
> +static struct clock_event_device cp0_clockevent __initdata = {
> + .name = CP0_CLOCK_NAME,
> + .mode = CLOCK_EVT_MODE_UNUSED,
Needless intialization, that constant is 0 anyway, so this field will just
get zeroed implicitly.
> + .features = CLOCK_EVT_FEAT_ONESHOT,
> + .shift = 32,
> + .set_mode = cp0_set_mode,
> + .set_next_event = cp0_set_next_event,
> + .irq = -1,
> +};
> +
> +static DEFINE_PER_CPU(struct clock_event_device, cp0_clock_events);
> +
> +void __init setup_cp0_clockevent(void)
> +{
> + struct clock_event_device *evt;
> + int cpu = smp_processor_id();
> + unsigned freq;
> +
> + if (disable_clockevent)
> + return;
> +
> + evt = &__get_cpu_var(cp0_clock_events);
Could use per_cpu() here, as we already have "sampled" smp_processor_id().
> +
> + memcpy(evt, &cp0_clockevent, sizeof(*evt));
> +
> + freq = get_freq(cpu);
> +
> + evt->rating = 200 + freq/10000000;
> + evt->mult = div_sc(freq, NSEC_PER_SEC, evt->shift);
> + evt->cpumask = cpumask_of_cpu(cpu);
> +
> + evt->max_delta_ns = clockevent_delta2ns(0x7fffffff, evt);
> + evt->min_delta_ns = clockevent_delta2ns(0x10, evt);
> +
> + clockevents_register_device(evt);
> +
> + printk("Using %u.%03u MHz CP0 high precision timer on CPU #%d.\n",
The "high precision " part should disapper.
> + ((freq + 500) / 1000) / 1000,
> + ((freq + 500) / 1000) % 1000,
> + cpu);
> +}
> +
> +static irqreturn_t cp0_clockevent_interrupt(int irq, void *dev_id)
> +{
> + const int r2 = cpu_has_mips_r2;
> + struct clock_event_device *evt;
> +
[...]
> + /*
> + * The same applies to performance counter interrupts. But with the
> + * above we now know that the reason we got here must be a timer
> + * interrupt. Being the paranoiacs we are we check anyway.
> + */
> + if (!r2 || (read_c0_cause() & (1 << 30))) {
> + evt = &__get_cpu_var(cp0_clock_events);
I'd think 'evt' should be declared in this block too, not at the function
level.
> +
> + /*
> + * We can get interrupts whereas the hpt clock event
A reference to hpt needs to be killed there too...
> + * device has been disabled since we can't shut it
> + * down. So always ack the timer.
> + */
> + cp0_count_ack();
> +
> + switch (evt->mode) {
> + case CLOCK_EVT_MODE_ONESHOT:
> + evt->event_handler(evt);
> + break;
> + case CLOCK_EVT_MODE_UNUSED:
> + case CLOCK_EVT_MODE_SHUTDOWN:
> + case CLOCK_EVT_MODE_PERIODIC:
> + /* nothing */;
> + }
Isn't this over-engineered? Why use *switch*' where the simple *if* would
suffice?
> + }
> +out:
> + return IRQ_HANDLED;
> +}
> +
> +static struct irqaction cp0_clockevent_irqaction = {
> + .handler = cp0_clockevent_interrupt,
> + .flags = IRQF_DISABLED | IRQF_PERCPU,
> + .name = CP0_CLOCK_NAME,
> +};
> +
> +
> +/*
> + * This function is used by platforms which use the hpt as clock
> + * source and timer.
> + */
> +int __init setup_cp0_clocks(struct cp0_clock_info *info)
> +{
Erm, do we need this function at all after we have separate setups for
clock source/event? Just move all the override checks there.
> + if (!cpu_has_counter)
> + goto disable_all;
> + if (info->get_freq == NULL)
> + goto disable_all;
> +
> + get_freq = info->get_freq;
> + perf_handler = info->perf_handler;
I seriously don't understand why are you expecting this to be passed by
the platform code... :-/ Currently this is not so -- since it's the Oprofile
code that handles the performance interrupt.
> +
> + if (info->irq == 0)
> + disable_clockevent = 1;
> +
> + if (!disable_clocksource)
> + setup_cp0_clocksource();
> + if (!disable_clockevent) {
> + setup_cp0_clockevent();
> + setup_irq(info->irq, &cp0_clockevent_irqaction);
Erm... why not include setup_irq() into setup_cp0_clockevent()? This way,
it'll be autonomous and callable by the platfrom code on its own... but there
would remain perf_irq and get_freq problems. Wouldn't it be better to declare
get_cp0_timer_freq as a pointer ot function and let the platform just fill it
before calling setup?
> + }
> + return 0;
> +
> +disable_all:
> + disable_clocksource = disable_clockevent = 1;
> + return -EINVAL;
> +}
> diff --git a/arch/mips/kernel/process.c b/arch/mips/kernel/process.c
> index 6bdfb5a..23b8858 100644
> --- a/arch/mips/kernel/process.c
> +++ b/arch/mips/kernel/process.c
> @@ -25,6 +25,7 @@
> #include <linux/init.h>
> #include <linux/completion.h>
> #include <linux/kallsyms.h>
> +#include <linux/tick.h>
>
> #include <asm/bootinfo.h>
> #include <asm/cpu.h>
> @@ -50,6 +51,7 @@ ATTRIB_NORET void cpu_idle(void)
> {
> /* endless idle loop with no priority at all */
> while (1) {
> + tick_nohz_stop_sched_tick();
> while (!need_resched()) {
> #ifdef CONFIG_SMTC_IDLE_HOOK_DEBUG
> extern void smtc_idle_loop_hook(void);
> @@ -59,6 +61,7 @@ ATTRIB_NORET void cpu_idle(void)
> if (cpu_wait)
> (*cpu_wait)();
> }
> + tick_nohz_restart_sched_tick();
> preempt_enable_no_resched();
> schedule();
> preempt_disable();
> diff --git a/arch/mips/kernel/time.c b/arch/mips/kernel/time.c
> index 72df0bf..0cc8363 100644
> --- a/arch/mips/kernel/time.c
> +++ b/arch/mips/kernel/time.c
[...]
> + * If you don't know timer 'X' frequency and have another timer 'Y'
> + * that flips at HZ rate, you can use this helper to determinate the
> + * timer 'X' freq.
> */
> -
> -unsigned int mips_hpt_frequency;
> -
> -static struct irqaction timer_irqaction = {
> - .handler = timer_interrupt,
> - .flags = IRQF_DISABLED | IRQF_PERCPU,
> - .name = "timer",
> -};
> -
> -static unsigned int __init calibrate_hpt(void)
> +unsigned __init calibrate_timer(cycle_t (*x_read)(void),
> + int (*y_state)(void))
Hm, with those x/y it looks a bit like joystick code. :-)
> diff --git a/include/asm-mips/hpt.h b/include/asm-mips/hpt.h
> new file mode 100644
> index 0000000..f0acab3
> --- /dev/null
> +++ b/include/asm-mips/hpt.h
> @@ -0,0 +1,36 @@
> +#ifndef _ASM_HPT_H
> +#define _ASM_HPT_H
> +
> +#ifdef CONFIG_CP0_CLOCKS
> +
> +struct cp0_clock_info {
> + /*
> + * This is the irq num of the cp0 count/compare timer.
> + */
> + int irq;
> +
> + /*
> + * This mandartory hook is called to get the frequency of
> + * the running processor.
> + */
> + unsigned (*get_freq)(int cpu);
Creating a global variable looks like a better idea...
> +
> + /*
> + * The performance counter overflow irq may be shared with the
> + * hpt interrupt. In that case this handler will be called
> + * during a hpt interrupt.
> + */
> + irqreturn_t (*perf_handler)(int irq, void *dev_id);
The only issue is that the platform code may have no idea what it should
be... I think we need to stick to the old approach here.
> +};
... this would leave us with only IRQ field and eliminate the need for
this structure.
> +
> +extern int setup_cp0_clocks(struct cp0_clock_info *info);
> +extern void setup_cp0_clockevent(void);
> +
> +#else
> +
> +static inline void setup_cp0_clockevent(void) {}
> +
> +#endif /* CONFIG_CP0_CLOCKS */
> +
> +#endif /* _ASM_HPT_H */
The remaining declaration might be joined to time.h, thus making this
whole header unneeded... well, that's up to you.
WBR, Sergei
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [RFC Implement clockevents/clocksource for R4000-style cp0 timer [take #3]
2007-06-27 18:07 ` Sergei Shtylyov
@ 2007-06-29 9:30 ` Franck Bui-Huu
0 siblings, 0 replies; 3+ messages in thread
From: Franck Bui-Huu @ 2007-06-29 9:30 UTC (permalink / raw)
To: Sergei Shtylyov; +Cc: linux-mips, Ralf Baechle, Atsushi Nemoto
Hi,
Sergei Shtylyov wrote:
> Franck Bui-Huu wrote:
>> - Rename CP0_HPT_TIMER into CP0_CLOCKS but I'm still not sure. If
>
> Why not just CP0_TIMER? Hm, CP0_HPT_TIMER was even redundant... :-)
>
I already gave up CP0_HPT_TIMER, as you said it was redundant. Now I use
CPO_CLOCKS but I'm not really happy with it.
Ok for CP0_TIMER...
>> someone can come with a better idea that would be nice. BTW
>> hpt-cp0.c file should be renamed into clock-cp0.c too.
>
> I suggest timer-cp0.c ot cp0-timer.c
>
Ok for timer-cp0.c
>> arch/mips/Kconfig | 9 +
>> arch/mips/kernel/Makefile | 2 +
>> arch/mips/kernel/hpt-cp0.c | 259 +++++++++++++++++++++++++++
>> arch/mips/kernel/process.c | 3 +
>> arch/mips/kernel/smp.c | 2 +
>> arch/mips/kernel/time.c | 416
>> ++++----------------------------------------
>> include/asm-mips/hpt.h | 36 ++++
>
> That HPT just doesn't want to die. :-)
yes I wanted to be sure about the name before getting rid of
all these 'hpt'. Done now.
>
> [...]
>> diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
>> index 7bcf38d..a994af1 100644
> [...]
>> @@ -1741,6 +1749,7 @@ config HZ
>> default 1000 if HZ_1000
>> default 1024 if HZ_1024
>>
>> +source "kernel/time/Kconfig"
>> source "kernel/Kconfig.preempt"
>
> I would have put this part into a separate patch, along with tickless
> mode
> hooks in arch/mips/kernel/process.c...
>
Fair enough, that was my plan too but I wanted this single rfc patch
to be functional.
>> +static int disable_clockevent __initdata;
>> +static int disable_clocksource __initdata;
>> +
>> +static int __init cp0_clock_setup(char *arg)
>> +{
>> + if (arg == NULL)
>> + return -EINVAL;
>> +
>> + if (!strcmp(arg, "disable_event"))
>> + disable_clockevent = 1;
>> + else if (!strcmp(arg, "disable_source"))
>> + disable_clocksource = 1;
>> + else if (!strcmp(arg, "disable_both")) {
>> + disable_clocksource = 1;
>> + disable_clockevent = 1;
>
> How about "noevent", "nosource", and "none"?
>
No objection.
>> + }
>> + return 0;
>> +}
>> +early_param("cp0_clock", cp0_clock_setup);
>> +
>> +/*
>> + * cp0 count/compare operations.
>> + */
>> +static void cp0_count_ack(void)
>> +{
>> + write_c0_compare(read_c0_compare());
>> +}
>> +
>> +static cycle_t cp0_count_read(void)
>> +{
>> + return read_c0_count();
>
> "Entab" spaces here please.
>
I forgot to enable git hooks in my new repo... sorry, it shouldn't
happen anymore.
>> +}
>> +
>> +/*
>> + * Clocksource device. Its rating should not depend on its frequency:
>> + * stability is a feature more valuable for a clock source.
>> + */
>> +struct clocksource cp0_clocksource = {
>> + .name = CP0_CLOCK_NAME,
>> + .rating = 200,
>
> Perhaps we even need to rise the rating to 300 or 400 -- according to
> what
> <linux/clocksource.h> says...
>
I dunno. I kept the previous value (without the timer freq depedency).
Do you think cp0 counter is stable enough to rise this rating ?
>> + .mask = CLOCKSOURCE_MASK(32),
>> + .flags = CLOCK_SOURCE_IS_CONTINUOUS,
>> + .read = cp0_count_read,
>> +};
>> +
>> +static void __init setup_cp0_clocksource(void)
>> +{
>> + int cpu = smp_processor_id();
>> + unsigned freq = get_freq(cpu);
>
> Might fold these 2 lines into:
>
OK
> unsigned freq = get_freq(smp_processor_id());
>
>> + unsigned shift = 0;
>
> Unneeded initializer.
>
OK
>> + u64 mult;
>> +
>> + for (shift = 32; shift > 0; shift--) {
>> + mult = (u64)NSEC_PER_SEC << shift;
>> + do_div(mult, freq);
>> + if ((mult >> 32) == 0)
>> + break;
>> + }
>> +
>> + cp0_clocksource.shift = shift;
>> + cp0_clocksource.mult = mult;
>> +
>> + clocksource_register(&cp0_clocksource);
>> +}
>> +
>> +/*
>> + * High precision timer functions
>> + */
>> +static int cp0_set_next_event(unsigned long delta,
>> + struct clock_event_device *evt)
>> +{
>> + unsigned int cnt;
>> +
>> + BUG_ON(evt->mode != CLOCK_EVT_MODE_ONESHOT);
>> +
>> + /* interrupt ack is done by setting up the next event */
>
> We acknowledge interrupt independently from this code anyway, so the
> comment seems misplaced.
>
Old comment. Removed.
>> + cnt = read_c0_count();
>> + cnt += delta;
>
> Could be merge into one statement...
>
>> + write_c0_compare(cnt);
>> +
>> + return ((long)(read_c0_count() - cnt) > 0L) ? -ETIME : 0;
>> +}
>> +
>> +static void cp0_set_mode(enum clock_event_mode mode,
>> + struct clock_event_device *evt)
>> +{
>> + switch (mode) {
>> + case CLOCK_EVT_MODE_UNUSED:
>> + case CLOCK_EVT_MODE_SHUTDOWN:
>> + /*
>> + * For now, we don't disable cp0 hpt interrupts. So we
>
> A reference to hpt needs to be killed.
Done
>
>> + * leave them enabled, and ignore them in this mode.
>> + * Therefore we will get one useless but also harmless
>> + * interrupt every 2^32 cycles...
>> + */
>> + cp0_count_ack();
>> + break;
>> + case CLOCK_EVT_MODE_ONESHOT:
>> + /* nothing to do */
>> + break;
>> + case CLOCK_EVT_MODE_PERIODIC:
>> + BUG();
>> + };
>> +}
>> +
>> +static struct clock_event_device cp0_clockevent __initdata = {
>> + .name = CP0_CLOCK_NAME,
>> + .mode = CLOCK_EVT_MODE_UNUSED,
>
> Needless intialization, that constant is 0 anyway, so this field will
> just get zeroed implicitly.
Well you can state this because you took a look to the clockevent
implementation internals. What's happening if they change this value ?
I know it won't happen but it's cleaner anyway. I prefer leave it
alone if you don't mind.
>
>> + .features = CLOCK_EVT_FEAT_ONESHOT,
>> + .shift = 32,
>> + .set_mode = cp0_set_mode,
>> + .set_next_event = cp0_set_next_event,
>> + .irq = -1,
>> +};
>> +
>> +static DEFINE_PER_CPU(struct clock_event_device, cp0_clock_events);
>> +
>> +void __init setup_cp0_clockevent(void)
>> +{
>> + struct clock_event_device *evt;
>> + int cpu = smp_processor_id();
>> + unsigned freq;
>> +
>> + if (disable_clockevent)
>> + return;
>> +
>> + evt = &__get_cpu_var(cp0_clock_events);
>
> Could use per_cpu() here, as we already have "sampled"
> smp_processor_id().
>
OK.
>> +
>> + memcpy(evt, &cp0_clockevent, sizeof(*evt));
>> +
>> + freq = get_freq(cpu);
>> +
>> + evt->rating = 200 + freq/10000000;
>> + evt->mult = div_sc(freq, NSEC_PER_SEC, evt->shift);
>> + evt->cpumask = cpumask_of_cpu(cpu);
>> +
>> + evt->max_delta_ns = clockevent_delta2ns(0x7fffffff, evt);
>> + evt->min_delta_ns = clockevent_delta2ns(0x10, evt);
>> +
>> + clockevents_register_device(evt);
>> +
>> + printk("Using %u.%03u MHz CP0 high precision timer on CPU #%d.\n",
>
> The "high precision " part should disapper.
Killed.
>
>> + ((freq + 500) / 1000) / 1000,
>> + ((freq + 500) / 1000) % 1000,
>> + cpu);
>> +}
>> +
>> +static irqreturn_t cp0_clockevent_interrupt(int irq, void *dev_id)
>> +{
>> + const int r2 = cpu_has_mips_r2;
>> + struct clock_event_device *evt;
>> +
> [...]
>> + /*
>> + * The same applies to performance counter interrupts. But with the
>> + * above we now know that the reason we got here must be a timer
>> + * interrupt. Being the paranoiacs we are we check anyway.
>> + */
>> + if (!r2 || (read_c0_cause() & (1 << 30))) {
>> + evt = &__get_cpu_var(cp0_clock_events);
>
> I'd think 'evt' should be declared in this block too, not at the
> function level.
OK.
>
>> +
>> + /*
>> + * We can get interrupts whereas the hpt clock event
>
> A reference to hpt needs to be killed there too...
Destroyed.
>
>> + * device has been disabled since we can't shut it
>> + * down. So always ack the timer.
>> + */
>> + cp0_count_ack();
>> +
>> + switch (evt->mode) {
>> + case CLOCK_EVT_MODE_ONESHOT:
>> + evt->event_handler(evt);
>> + break;
>> + case CLOCK_EVT_MODE_UNUSED:
>> + case CLOCK_EVT_MODE_SHUTDOWN:
>> + case CLOCK_EVT_MODE_PERIODIC:
>> + /* nothing */;
>> + }
>
> Isn't this over-engineered? Why use *switch*' where the simple *if*
> would suffice?
I just wanted to be sure that I won't miss any new mode, being
paranoid I guess. I'll change it.
>
>> + }
>> +out:
>> + return IRQ_HANDLED;
>> +}
>> +
>> +static struct irqaction cp0_clockevent_irqaction = {
>> + .handler = cp0_clockevent_interrupt,
>> + .flags = IRQF_DISABLED | IRQF_PERCPU,
>> + .name = CP0_CLOCK_NAME,
>> +};
>> +
>> +
>> +/*
>> + * This function is used by platforms which use the hpt as clock
>> + * source and timer.
>> + */
>> +int __init setup_cp0_clocks(struct cp0_clock_info *info)
>> +{
>
> Erm, do we need this function at all after we have separate setups
> for clock source/event? Just move all the override checks there.
>
Well I would say no. setup_cp0_clockevent() is normally called only
once by board init code. Whereas setup_cp0_clockevent() can be called
several times in SMP. Thus we can have several cp0 counters with
different frequencies. It was Ralf's requierement.
Maybe I should rename setup_cp0_clockevent() into
setup_cp0_clockevent_per_cpu() ?
>> + if (!cpu_has_counter)
>> + goto disable_all;
>> + if (info->get_freq == NULL)
>> + goto disable_all;
>> +
>> + get_freq = info->get_freq;
>> + perf_handler = info->perf_handler;
>
> I seriously don't understand why are you expecting this to be passed
> by the platform code... :-/ Currently this is not so -- since it's the
> Oprofile code that handles the performance interrupt.
>
You're right, I didn't give a close look to this. I'll remove it and
try to implement something else.
>> +
>> + if (info->irq == 0)
>> + disable_clockevent = 1;
>> +
>> + if (!disable_clocksource)
>> + setup_cp0_clocksource();
>> + if (!disable_clockevent) {
>> + setup_cp0_clockevent();
>> + setup_irq(info->irq, &cp0_clockevent_irqaction);
>
> Erm... why not include setup_irq() into setup_cp0_clockevent()? This
> way, it'll be autonomous and callable by the platfrom code on its own...
See my previous answer about setup_cp0_clockevent() which can be
called several times in SMP.
> but there would remain perf_irq and get_freq problems. Wouldn't it be
> better to declare get_cp0_timer_freq as a pointer ot function and let
> the platform just fill it before calling setup?
>
see structure comment below...
>> -
>> -static unsigned int __init calibrate_hpt(void)
>> +unsigned __init calibrate_timer(cycle_t (*x_read)(void),
>> + int (*y_state)(void))
>
> Hm, with those x/y it looks a bit like joystick code. :-)
>
Yeah. Actually it was said that this function should be rewritten in
order to be called by any platform code. Until this, I added 2
parameters to this function and killed 2 global function pointers.
Actually it should be part of a separate patch but until it got
written I leave this joystick code.
>> diff --git a/include/asm-mips/hpt.h b/include/asm-mips/hpt.h
>> new file mode 100644
>> index 0000000..f0acab3
>> --- /dev/null
>> +++ b/include/asm-mips/hpt.h
>> @@ -0,0 +1,36 @@
>> +#ifndef _ASM_HPT_H
>> +#define _ASM_HPT_H
>> +
>> +#ifdef CONFIG_CP0_CLOCKS
>> +
>> +struct cp0_clock_info {
>> + /*
>> + * This is the irq num of the cp0 count/compare timer.
>> + */
>> + int irq;
>> +
>> + /*
>> + * This mandartory hook is called to get the frequency of
>> + * the running processor.
>> + */
>> + unsigned (*get_freq)(int cpu);
>
> Creating a global variable looks like a better idea...
>
>> +
>> + /*
>> + * The performance counter overflow irq may be shared with the
>> + * hpt interrupt. In that case this handler will be called
>> + * during a hpt interrupt.
>> + */
>> + irqreturn_t (*perf_handler)(int irq, void *dev_id);
>
> The only issue is that the platform code may have no idea what it
> should be... I think we need to stick to the old approach here.
>
>> +};
>
> ... this would leave us with only IRQ field and eliminate the need
> for this structure.
I think this structure allow us to gather all information needed by
cp0 timer 'driver' in one place. They're all one place and thus easy
for a board to see what they need to setup in order to use cp0 timer.
>
>> +
>> +extern int setup_cp0_clocks(struct cp0_clock_info *info);
>> +extern void setup_cp0_clockevent(void);
>> +
>> +#else
>> +
>> +static inline void setup_cp0_clockevent(void) {}
>> +
>> +#endif /* CONFIG_CP0_CLOCKS */
>> +
>> +#endif /* _ASM_HPT_H */
>
> The remaining declaration might be joined to time.h, thus making this
> whole header unneeded... well, that's up to you.
>
OK.
I'll cook up a new patch.
Thanks a lot for your comments.
---
Franck
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-06-29 9:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-25 9:34 [RFC Implement clockevents/clocksource for R4000-style cp0 timer [take #3] Franck Bui-Huu
2007-06-27 18:07 ` Sergei Shtylyov
2007-06-29 9:30 ` Franck Bui-Huu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox