diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2007-02-16 04:28:03 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-16 11:13:59 -0500 |
| commit | 79bf2bb335b85db25d27421c798595a2fa2a0e82 (patch) | |
| tree | 550ec2654ae1dd65b871de7fe9c890108c6e86d8 /kernel/time | |
| parent | f8381cba04ba8173fd5a2b8e5cd8b3290ee13a98 (diff) | |
[PATCH] tick-management: dyntick / highres functionality
With Ingo Molnar <mingo@elte.hu>
Add functions to provide dynamic ticks and high resolution timers. The code
which keeps track of jiffies and handles the long idle periods is shared
between tick based and high resolution timer based dynticks. The dyntick
functionality can be disabled on the kernel commandline. Provide also the
infrastructure to support high resolution timers.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Cc: john stultz <johnstul@us.ibm.com>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/time')
| -rw-r--r-- | kernel/time/Kconfig | 15 | ||||
| -rw-r--r-- | kernel/time/Makefile | 2 | ||||
| -rw-r--r-- | kernel/time/clocksource.c | 8 | ||||
| -rw-r--r-- | kernel/time/tick-broadcast.c | 191 | ||||
| -rw-r--r-- | kernel/time/tick-common.c | 26 | ||||
| -rw-r--r-- | kernel/time/tick-internal.h | 49 | ||||
| -rw-r--r-- | kernel/time/tick-oneshot.c | 84 | ||||
| -rw-r--r-- | kernel/time/tick-sched.c | 558 |
8 files changed, 930 insertions, 3 deletions
diff --git a/kernel/time/Kconfig b/kernel/time/Kconfig new file mode 100644 index 000000000000..9ec54eb3667f --- /dev/null +++ b/kernel/time/Kconfig | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | # | ||
| 2 | # Timer subsystem related configuration options | ||
| 3 | # | ||
| 4 | config TICK_ONESHOT | ||
| 5 | bool | ||
| 6 | default n | ||
| 7 | |||
| 8 | config NO_HZ | ||
| 9 | bool "Tickless System (Dynamic Ticks)" | ||
| 10 | depends on GENERIC_TIME && GENERIC_CLOCKEVENTS | ||
| 11 | select TICK_ONESHOT | ||
| 12 | help | ||
| 13 | This option enables a tickless system: timer interrupts will | ||
| 14 | only trigger on an as-needed basis both when the system is | ||
| 15 | busy and when the system is idle. | ||
diff --git a/kernel/time/Makefile b/kernel/time/Makefile index a941743c3ff8..f246bc836b9a 100644 --- a/kernel/time/Makefile +++ b/kernel/time/Makefile | |||
| @@ -3,3 +3,5 @@ obj-y += ntp.o clocksource.o jiffies.o | |||
| 3 | obj-$(CONFIG_GENERIC_CLOCKEVENTS) += clockevents.o | 3 | obj-$(CONFIG_GENERIC_CLOCKEVENTS) += clockevents.o |
| 4 | obj-$(CONFIG_GENERIC_CLOCKEVENTS) += tick-common.o | 4 | obj-$(CONFIG_GENERIC_CLOCKEVENTS) += tick-common.o |
| 5 | obj-$(CONFIG_GENERIC_CLOCKEVENTS_BROADCAST) += tick-broadcast.o | 5 | obj-$(CONFIG_GENERIC_CLOCKEVENTS_BROADCAST) += tick-broadcast.o |
| 6 | obj-$(CONFIG_TICK_ONESHOT) += tick-oneshot.o | ||
| 7 | obj-$(CONFIG_TICK_ONESHOT) += tick-sched.o | ||
diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c index 3cb8ac978270..193a0793af95 100644 --- a/kernel/time/clocksource.c +++ b/kernel/time/clocksource.c | |||
| @@ -29,6 +29,7 @@ | |||
| 29 | #include <linux/init.h> | 29 | #include <linux/init.h> |
| 30 | #include <linux/module.h> | 30 | #include <linux/module.h> |
| 31 | #include <linux/sched.h> /* for spin_unlock_irq() using preempt_count() m68k */ | 31 | #include <linux/sched.h> /* for spin_unlock_irq() using preempt_count() m68k */ |
| 32 | #include <linux/tick.h> | ||
| 32 | 33 | ||
| 33 | /* XXX - Would like a better way for initializing curr_clocksource */ | 34 | /* XXX - Would like a better way for initializing curr_clocksource */ |
| 34 | extern struct clocksource clocksource_jiffies; | 35 | extern struct clocksource clocksource_jiffies; |
| @@ -109,6 +110,13 @@ static void clocksource_watchdog(unsigned long data) | |||
| 109 | if ((cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) && | 110 | if ((cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) && |
| 110 | (watchdog->flags & CLOCK_SOURCE_IS_CONTINUOUS)) { | 111 | (watchdog->flags & CLOCK_SOURCE_IS_CONTINUOUS)) { |
| 111 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; | 112 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; |
| 113 | /* | ||
| 114 | * We just marked the clocksource as | ||
| 115 | * highres-capable, notify the rest of the | ||
| 116 | * system as well so that we transition | ||
| 117 | * into high-res mode: | ||
| 118 | */ | ||
| 119 | tick_clock_notify(); | ||
| 112 | } | 120 | } |
| 113 | cs->flags |= CLOCK_SOURCE_WATCHDOG; | 121 | cs->flags |= CLOCK_SOURCE_WATCHDOG; |
| 114 | cs->wd_last = csnow; | 122 | cs->wd_last = csnow; |
diff --git a/kernel/time/tick-broadcast.c b/kernel/time/tick-broadcast.c index 0ee4968ff791..8314ecb32d33 100644 --- a/kernel/time/tick-broadcast.c +++ b/kernel/time/tick-broadcast.c | |||
| @@ -29,7 +29,7 @@ | |||
| 29 | 29 | ||
| 30 | struct tick_device tick_broadcast_device; | 30 | struct tick_device tick_broadcast_device; |
| 31 | static cpumask_t tick_broadcast_mask; | 31 | static cpumask_t tick_broadcast_mask; |
| 32 | DEFINE_SPINLOCK(tick_broadcast_lock); | 32 | static DEFINE_SPINLOCK(tick_broadcast_lock); |
| 33 | 33 | ||
| 34 | /* | 34 | /* |
| 35 | * Start the device in periodic mode | 35 | * Start the device in periodic mode |
| @@ -215,6 +215,8 @@ static void tick_do_broadcast_on_off(void *why) | |||
| 215 | else { | 215 | else { |
| 216 | if (tick_broadcast_device.mode == TICKDEV_MODE_PERIODIC) | 216 | if (tick_broadcast_device.mode == TICKDEV_MODE_PERIODIC) |
| 217 | tick_broadcast_start_periodic(bc); | 217 | tick_broadcast_start_periodic(bc); |
| 218 | else | ||
| 219 | tick_broadcast_setup_oneshot(bc); | ||
| 218 | } | 220 | } |
| 219 | out: | 221 | out: |
| 220 | spin_unlock_irqrestore(&tick_broadcast_lock, flags); | 222 | spin_unlock_irqrestore(&tick_broadcast_lock, flags); |
| @@ -268,3 +270,190 @@ void tick_shutdown_broadcast(unsigned int *cpup) | |||
| 268 | 270 | ||
| 269 | spin_unlock_irqrestore(&tick_broadcast_lock, flags); | 271 | spin_unlock_irqrestore(&tick_broadcast_lock, flags); |
| 270 | } | 272 | } |
| 273 | |||
| 274 | #ifdef CONFIG_TICK_ONESHOT | ||
| 275 | |||
| 276 | static cpumask_t tick_broadcast_oneshot_mask; | ||
| 277 | |||
| 278 | static int tick_broadcast_set_event(ktime_t expires, int force) | ||
| 279 | { | ||
| 280 | struct clock_event_device *bc = tick_broadcast_device.evtdev; | ||
| 281 | ktime_t now = ktime_get(); | ||
| 282 | int res; | ||
| 283 | |||
| 284 | for(;;) { | ||
| 285 | res = clockevents_program_event(bc, expires, now); | ||
| 286 | if (!res || !force) | ||
| 287 | return res; | ||
| 288 | now = ktime_get(); | ||
| 289 | expires = ktime_add(now, ktime_set(0, bc->min_delta_ns)); | ||
| 290 | } | ||
| 291 | } | ||
| 292 | |||
| 293 | /* | ||
| 294 | * Reprogram the broadcast device: | ||
| 295 | * | ||
| 296 | * Called with tick_broadcast_lock held and interrupts disabled. | ||
| 297 | */ | ||
| 298 | static int tick_broadcast_reprogram(void) | ||
| 299 | { | ||
| 300 | ktime_t expires = { .tv64 = KTIME_MAX }; | ||
| 301 | struct tick_device *td; | ||
| 302 | int cpu; | ||
| 303 | |||
| 304 | /* | ||
| 305 | * Find the event which expires next: | ||
| 306 | */ | ||
| 307 | for (cpu = first_cpu(tick_broadcast_oneshot_mask); cpu != NR_CPUS; | ||
| 308 | cpu = next_cpu(cpu, tick_broadcast_oneshot_mask)) { | ||
| 309 | td = &per_cpu(tick_cpu_device, cpu); | ||
| 310 | if (td->evtdev->next_event.tv64 < expires.tv64) | ||
| 311 | expires = td->evtdev->next_event; | ||
| 312 | } | ||
| 313 | |||
| 314 | if (expires.tv64 == KTIME_MAX) | ||
| 315 | return 0; | ||
| 316 | |||
| 317 | return tick_broadcast_set_event(expires, 0); | ||
| 318 | } | ||
| 319 | |||
| 320 | /* | ||
| 321 | * Handle oneshot mode broadcasting | ||
| 322 | */ | ||
| 323 | static void tick_handle_oneshot_broadcast(struct clock_event_device *dev) | ||
| 324 | { | ||
| 325 | struct tick_device *td; | ||
| 326 | cpumask_t mask; | ||
| 327 | ktime_t now; | ||
| 328 | int cpu; | ||
| 329 | |||
| 330 | spin_lock(&tick_broadcast_lock); | ||
| 331 | again: | ||
| 332 | dev->next_event.tv64 = KTIME_MAX; | ||
| 333 | mask = CPU_MASK_NONE; | ||
| 334 | now = ktime_get(); | ||
| 335 | /* Find all expired events */ | ||
| 336 | for (cpu = first_cpu(tick_broadcast_oneshot_mask); cpu != NR_CPUS; | ||
| 337 | cpu = next_cpu(cpu, tick_broadcast_oneshot_mask)) { | ||
| 338 | td = &per_cpu(tick_cpu_device, cpu); | ||
| 339 | if (td->evtdev->next_event.tv64 <= now.tv64) | ||
| 340 | cpu_set(cpu, mask); | ||
| 341 | } | ||
| 342 | |||
| 343 | /* | ||
| 344 | * Wakeup the cpus which have an expired event. The broadcast | ||
| 345 | * device is reprogrammed in the return from idle code. | ||
| 346 | */ | ||
| 347 | if (!tick_do_broadcast(mask)) { | ||
| 348 | /* | ||
| 349 | * The global event did not expire any CPU local | ||
| 350 | * events. This happens in dyntick mode, as the | ||
| 351 | * maximum PIT delta is quite small. | ||
| 352 | */ | ||
| 353 | if (tick_broadcast_reprogram()) | ||
| 354 | goto again; | ||
| 355 | } | ||
| 356 | spin_unlock(&tick_broadcast_lock); | ||
| 357 | } | ||
| 358 | |||
| 359 | /* | ||
| 360 | * Powerstate information: The system enters/leaves a state, where | ||
| 361 | * affected devices might stop | ||
| 362 | */ | ||
| 363 | void tick_broadcast_oneshot_control(unsigned long reason) | ||
| 364 | { | ||
| 365 | struct clock_event_device *bc, *dev; | ||
| 366 | struct tick_device *td; | ||
| 367 | unsigned long flags; | ||
| 368 | int cpu; | ||
