From: Andrew Morton <akpm@osdl.org>
To: Thomas Gleixner <tglx@linutronix.de>
Cc: LKML <linux-kernel@vger.kernel.org>, Ingo Molnar <mingo@elte.hu>,
Jim Gettys <jg@laptop.org>, John Stultz <johnstul@us.ibm.com>,
David Woodhouse <dwmw2@infradead.org>,
Arjan van de Ven <arjan@infradead.org>,
Dave Jones <davej@redhat.com>
Subject: Re: [patch 14/23] clockevents: drivers for i386
Date: Sat, 30 Sep 2006 01:40:53 -0700 [thread overview]
Message-ID: <20060930014053.5dc9624f.akpm@osdl.org> (raw)
In-Reply-To: <20060929234440.404341000@cruncher.tec.linutronix.de>
On Fri, 29 Sep 2006 23:58:33 -0000
Thomas Gleixner <tglx@linutronix.de> wrote:
> From: Thomas Gleixner <tglx@linutronix.de>
>
> add clockevent drivers for i386: lapic (local) and PIT (global).
> Update the timer IRQ to call into the PIT driver's event handler
> and the lapic-timer IRQ to call into the lapic clockevent driver.
>
What's the story on other clock sources? hpet, pm-timer?
> --- linux-2.6.18-mm2.orig/arch/i386/kernel/apic.c 2006-09-30 01:41:11.000000000 +0200
> +++ linux-2.6.18-mm2/arch/i386/kernel/apic.c 2006-09-30 01:41:18.000000000 +0200
> @@ -25,6 +25,7 @@
> #include <linux/kernel_stat.h>
> #include <linux/sysdev.h>
> #include <linux/cpu.h>
> +#include <linux/clockchips.h>
> #include <linux/module.h>
>
> #include <asm/atomic.h>
> @@ -70,6 +71,23 @@ static inline void lapic_enable(void)
> */
> int apic_verbosity;
>
> +static unsigned int calibration_result;
> +
> +static void lapic_next_event(unsigned long delta, struct clock_event *evt);
> +static void lapic_timer_setup(int mode, struct clock_event *evt);
> +
> +static struct clock_event lapic_clockevent = {
> + .name = "lapic",
> + .capabilities = CLOCK_CAP_NEXTEVT | CLOCK_CAP_PROFILE
> +#ifdef CONFIG_SMP
> + | CLOCK_CAP_UPDATE
> +#endif
I can't work out why this is SMP-only. Please add changelog information
or, better, a comment explaining this.
> -static void __devinit setup_APIC_timer(unsigned int clocks)
> +static void lapic_timer_setup(int mode, struct clock_event *evt)
> {
> unsigned long flags;
>
> local_irq_save(flags);
> + __setup_APIC_LVTT(calibration_result, mode != CLOCK_EVT_PERIODIC);
> + local_irq_restore(flags);
> +}
>
> - /*
> - * Wait for IRQ0's slice:
> - */
> - wait_timer_tick();
> - wait_timer_tick();
For what reason was setup_APIC_timer() "Waiting for IRQ0's slice" and why
is it safe to remove that?
> +#ifdef CONFIG_HIGH_RES_TIMERS
> + printk("Disabling NO_HZ and high resolution timers "
> + "due to timer broadcasting\n");
> + for_each_possible_cpu(cpu)
> + per_cpu(lapic_events, cpu).capabilities &=
> + ~CLOCK_CAP_NEXTEVT;
> +#endif
I think you mean "due to lack of timer broadcasting"?
No comment, no changelog entry -> I don't understand why this code is here.
> *
> */
> -#include <linux/clocksource.h>
> +#include <linux/clockchips.h>
> #include <linux/spinlock.h>
> #include <linux/jiffies.h>
> #include <linux/sysdev.h>
> @@ -19,19 +19,63 @@
> DEFINE_SPINLOCK(i8253_lock);
> EXPORT_SYMBOL(i8253_lock);
>
> -void setup_pit_timer(void)
> +static void init_pit_timer(int mode, struct clock_event *evt)
No. `mode' is not an integer. It has type `enum you_forgot_to_give_it_a_name'.
In several places the timer code is using enums as integers - basically
using them as a glorified #define.
This loses the main advantages of enums: readability. They permit the
reader to say "ah, that's a clock event type" instead of "oh, thats an
integer".
Please give those enums a name, and use it everywhere, rather than relying
upon implicit conversion to `int'.
(C sucks)
> +{
> + unsigned long flags;
> +
> + spin_lock_irqsave(&i8253_lock, flags);
> +
> + switch(mode) {
> + case CLOCK_EVT_PERIODIC:
> + /* binary, mode 2, LSB/MSB, ch 0 */
> + outb_p(0x34, PIT_MODE);
> + udelay(10);
> + outb_p(LATCH & 0xff , PIT_CH0); /* LSB */
> + outb(LATCH >> 8 , PIT_CH0); /* MSB */
> + break;
> +
> + case CLOCK_EVT_ONESHOT:
> + case CLOCK_EVT_SHUTDOWN:
> + /* One shot setup */
> + outb_p(0x38, PIT_MODE);
> + udelay(10);
> + break;
> + }
> + spin_unlock_irqrestore(&i8253_lock, flags);
> +}
> +
> +static void pit_next_event(unsigned long delta, struct clock_event *evt)
> {
> unsigned long flags;
>
> spin_lock_irqsave(&i8253_lock, flags);
> - outb_p(0x34,PIT_MODE); /* binary, mode 2, LSB/MSB, ch 0 */
> - udelay(10);
> - outb_p(LATCH & 0xff , PIT_CH0); /* LSB */
> - udelay(10);
> - outb(LATCH >> 8 , PIT_CH0); /* MSB */
> + outb_p(delta & 0xff , PIT_CH0); /* LSB */
> + outb(delta >> 8 , PIT_CH0); /* MSB */
> spin_unlock_irqrestore(&i8253_lock, flags);
> }
>
> +struct clock_event pit_clockevent = {
> + .name = "pit",
> + .capabilities = CLOCK_CAP_TICK | CLOCK_CAP_PROFILE | CLOCK_CAP_UPDATE
> +#ifndef CONFIG_SMP
> + | CLOCK_CAP_NEXTEVT
> +#endif
Again, the CONFIG_SMP conditionality is a complete mystery to this reader.
next prev parent reply other threads:[~2006-09-30 8:45 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-29 23:58 [patch 00/23] Thomas Gleixner
2006-09-29 23:58 ` [patch 01/23] GTOD: exponential update_wall_time Thomas Gleixner
2006-09-29 23:58 ` [patch 02/23] GTOD: persistent clock support, core Thomas Gleixner
2006-09-30 8:35 ` Andrew Morton
2006-09-30 17:15 ` Jan Engelhardt
2006-10-02 21:49 ` john stultz
2006-09-29 23:58 ` [patch 03/23] GTOD: persistent clock support, i386 Thomas Gleixner
2006-09-30 8:36 ` Andrew Morton
2006-10-02 22:03 ` john stultz
2006-10-02 22:44 ` Andrew Morton
2006-10-02 23:09 ` john stultz
2006-10-03 23:30 ` Thomas Gleixner
2006-09-29 23:58 ` [patch 04/23] time: uninline jiffies.h Thomas Gleixner
2006-09-29 23:58 ` [patch 05/23] time: fix msecs_to_jiffies() bug Thomas Gleixner
2006-09-29 23:58 ` [patch 06/23] time: fix timeout overflow Thomas Gleixner
2006-09-29 23:58 ` [patch 07/23] cleanup: uninline irq_enter() and move it into a function Thomas Gleixner
2006-09-30 8:36 ` Andrew Morton
2006-09-29 23:58 ` [patch 08/23] dynticks: prepare the RCU code Thomas Gleixner
2006-09-30 8:36 ` Andrew Morton
2006-09-30 12:25 ` Dipankar Sarma
2006-09-30 13:09 ` Ingo Molnar
2006-09-30 13:52 ` Dipankar Sarma
2006-09-30 21:35 ` Ingo Molnar
2006-09-29 23:58 ` [patch 09/23] dynticks: extend next_timer_interrupt() to use a reference jiffie Thomas Gleixner
2006-09-30 8:37 ` Andrew Morton
2006-09-29 23:58 ` [patch 10/23] hrtimers: clean up locking Thomas Gleixner
2006-09-30 8:37 ` Andrew Morton
2006-09-29 23:58 ` [patch 11/23] hrtimers: state tracking Thomas Gleixner
2006-09-30 8:37 ` Andrew Morton
2006-09-29 23:58 ` [patch 12/23] hrtimers: clean up callback tracking Thomas Gleixner
2006-09-29 23:58 ` [patch 13/23] clockevents: core Thomas Gleixner
2006-09-30 8:39 ` Andrew Morton
2006-10-03 4:33 ` John Kacur
2006-09-29 23:58 ` [patch 14/23] clockevents: drivers for i386 Thomas Gleixner
2006-09-30 8:40 ` Andrew Morton [this message]
2006-09-29 23:58 ` [patch 15/23] high-res timers: core Thomas Gleixner
2006-09-30 8:43 ` Andrew Morton
2006-09-29 23:58 ` [patch 16/23] dynticks: core Thomas Gleixner
2006-09-30 8:44 ` Andrew Morton
2006-09-30 12:11 ` Dipankar Sarma
2006-09-29 23:58 ` [patch 17/23] dyntick: add nohz stats to /proc/stat Thomas Gleixner
2006-09-29 23:58 ` [patch 18/23] dynticks: i386 arch code Thomas Gleixner
2006-09-30 8:45 ` Andrew Morton
2006-09-29 23:58 ` [patch 19/23] high-res timers, dynticks: enable i386 support Thomas Gleixner
2006-09-29 23:58 ` [patch 20/23] add /proc/sys/kernel/timeout_granularity Thomas Gleixner
2006-09-30 8:45 ` Andrew Morton
2006-09-29 23:58 ` [patch 21/23] debugging feature: timer stats Thomas Gleixner
2006-09-30 8:46 ` Andrew Morton
2006-09-29 23:58 ` [patch 22/23] dynticks: increase SLAB timeouts Thomas Gleixner
2006-09-30 8:49 ` Andrew Morton
2006-09-29 23:58 ` [patch 23/23] dynticks: decrease I8042_POLL_PERIOD Thomas Gleixner
2006-09-30 8:49 ` Andrew Morton
2006-09-30 8:35 ` [patch 00/23] Andrew Morton
2006-09-30 19:17 ` Thomas Gleixner
2006-09-30 8:35 ` Andrew Morton
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=20060930014053.5dc9624f.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=arjan@infradead.org \
--cc=davej@redhat.com \
--cc=dwmw2@infradead.org \
--cc=jg@laptop.org \
--cc=johnstul@us.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=tglx@linutronix.de \
/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
Powered by JetHome