2006-06-26 11:25:09 +04:00
|
|
|
/*
|
2007-10-13 05:10:53 +04:00
|
|
|
* 8253/PIT functions
|
2006-06-26 11:25:09 +04:00
|
|
|
*
|
|
|
|
*/
|
2007-02-16 12:28:04 +03:00
|
|
|
#include <linux/clockchips.h>
|
2016-07-14 03:18:56 +03:00
|
|
|
#include <linux/init.h>
|
2009-06-17 02:31:12 +04:00
|
|
|
#include <linux/timex.h>
|
2011-06-01 22:04:57 +04:00
|
|
|
#include <linux/i8253.h>
|
2006-06-26 11:25:09 +04:00
|
|
|
|
2008-01-30 15:30:02 +03:00
|
|
|
#include <asm/hpet.h>
|
2011-06-01 22:05:06 +04:00
|
|
|
#include <asm/time.h>
|
2009-03-21 14:26:10 +03:00
|
|
|
#include <asm/smp.h>
|
2006-06-26 11:25:09 +04:00
|
|
|
|
2007-02-16 12:28:04 +03: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 17:08:26 +04:00
|
|
|
clockevent_i8253_init(true);
|
|
|
|
global_clock_event = &i8253_clockevent;
|
2006-06-26 11:25:09 +04:00
|
|
|
}
|
2006-06-26 11:25:12 +04:00
|
|
|
|
2007-10-13 01:04:06 +04:00
|
|
|
#ifndef CONFIG_X86_64
|
2006-06-26 11:25:12 +04:00
|
|
|
static int __init init_pit_clocksource(void)
|
|
|
|
{
|
2008-01-30 15:30:02 +03: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() ||
|
2015-06-18 13:54:22 +03:00
|
|
|
!clockevent_state_periodic(&i8253_clockevent))
|
2006-06-26 11:25:12 +04:00
|
|
|
return 0;
|
|
|
|
|
2011-05-08 21:55:19 +04:00
|
|
|
return clocksource_i8253_init();
|
2006-06-26 11:25:12 +04:00
|
|
|
}
|
2007-03-05 11:30:50 +03:00
|
|
|
arch_initcall(init_pit_clocksource);
|
2009-03-21 14:26:10 +03:00
|
|
|
#endif /* !CONFIG_X86_64 */
|