Merge tag 'sched-urgent-2020-12-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / arch / mips / kernel / i8253.c
blobca21210e06b5209780bcab3366cd5da8ed0dda2f
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * i8253.c 8253/PIT functions
5 */
6 #include <linux/clockchips.h>
7 #include <linux/i8253.h>
8 #include <linux/export.h>
9 #include <linux/smp.h>
10 #include <linux/irq.h>
12 #include <asm/time.h>
14 static irqreturn_t timer_interrupt(int irq, void *dev_id)
16 i8253_clockevent.event_handler(&i8253_clockevent);
18 return IRQ_HANDLED;
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))
34 return 0;
36 return clocksource_i8253_init();
38 arch_initcall(init_pit_clocksource);