2006-06-26 00:25:09 -07:00
|
|
|
/*
|
2007-10-12 21:10:53 -04:00
|
|
|
* 8253/PIT functions
|
2006-06-26 00:25:09 -07:00
|
|
|
*
|
|
|
|
*/
|
2007-02-16 01:28:04 -08:00
|
|
|
#include <linux/clockchips.h>
|
2006-06-26 00:25:09 -07:00
|
|
|
#include <linux/module.h>
|
2009-06-16 15:31:12 -07:00
|
|
|
#include <linux/timex.h>
|
2011-06-01 19:04:57 +01:00
|
|
|
#include <linux/i8253.h>
|
2006-06-26 00:25:09 -07:00
|
|
|
|
2008-01-30 13:30:02 +01:00
|
|
|
#include <asm/hpet.h>
|
2011-06-01 19:05:06 +01:00
|
|
|
#include <asm/time.h>
|
2009-03-21 16:56:10 +05:30
|
|
|
#include <asm/smp.h>
|
2006-06-26 00:25:09 -07:00
|
|
|
|
2007-02-16 01:28:04 -08:00
|
|
|
/*
|
|
|
|
* HPET replaces the PIT, when enabled. So we need to know, which of
|
|
|
|
* the two timers is used
|
|
|
|
*/
|
|
|
|
struct clock_event_device *global_clock_event;
|
|
|
|
|
|
|
|
void __init setup_pit_timer(void)
|
|
|
|
{
|
2011-06-09 13:08:26 +00:00
|
|
|
clockevent_i8253_init(true);
|
|
|
|
global_clock_event = &i8253_clockevent;
|
2006-06-26 00:25:09 -07:00
|
|
|
}
|
2006-06-26 00:25:12 -07:00
|
|
|
|
2007-10-12 23:04:06 +02:00
|
|
|
#ifndef CONFIG_X86_64
|
2006-06-26 00:25:12 -07:00
|
|
|
static int __init init_pit_clocksource(void)
|
|
|
|
{
|
2008-01-30 13:30:02 +01:00
|
|
|
/*
|
|
|
|
* Several reasons not to register PIT as a clocksource:
|
|
|
|
*
|
|
|
|
* - On SMP PIT does not scale due to i8253_lock
|
|
|
|
* - when HPET is enabled
|
|
|
|
* - when local APIC timer is active (PIT is switched off)
|
|
|
|
*/
|
|
|
|
if (num_possible_cpus() > 1 || is_hpet_enabled() ||
|
2011-06-09 13:08:26 +00:00
|
|
|
i8253_clockevent.mode != CLOCK_EVT_MODE_PERIODIC)
|
2006-06-26 00:25:12 -07:00
|
|
|
return 0;
|
|
|
|
|
2011-05-08 18:55:19 +01:00
|
|
|
return clocksource_i8253_init();
|
2006-06-26 00:25:12 -07:00
|
|
|
}
|
2007-03-05 00:30:50 -08:00
|
|
|
arch_initcall(init_pit_clocksource);
|
2009-03-21 16:56:10 +05:30
|
|
|
#endif /* !CONFIG_X86_64 */
|