1 // SPDX-License-Identifier: GPL-2.0
3 * i8253.c 8253/PIT functions
6 #include <linux/clockchips.h>
7 #include <linux/i8253.h>
8 #include <linux/export.h>
10 #include <linux/irq.h>
14 static irqreturn_t
timer_interrupt(int irq
, void *dev_id
)
16 i8253_clockevent
.event_handler(&i8253_clockevent
);
21 void __init
setup_pit_timer(void)
23 unsigned long flags
= IRQF_NOBALANCING
| IRQF_TIMER
;
25 clockevent_i8253_init(true);
26 if (request_irq(0, timer_interrupt
, flags
, "timer", NULL
))
27 pr_err("Failed to request irq 0 (timer)\n");
30 static int __init
init_pit_clocksource(void)
32 if (num_possible_cpus() > 1 || /* PIT does not scale! */
33 !clockevent_state_periodic(&i8253_clockevent
))
36 return clocksource_i8253_init();
38 arch_initcall(init_pit_clocksource
);