From 76cb841cb886eef6b3bee341a2266c76578724ad Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 May 2024 03:02:30 +0200 Subject: Adding upstream version 4.19.249. Signed-off-by: Daniel Baumann --- arch/arm/mach-footbridge/isa-timer.c | 41 ++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 arch/arm/mach-footbridge/isa-timer.c (limited to 'arch/arm/mach-footbridge/isa-timer.c') diff --git a/arch/arm/mach-footbridge/isa-timer.c b/arch/arm/mach-footbridge/isa-timer.c new file mode 100644 index 000000000..82f45591f --- /dev/null +++ b/arch/arm/mach-footbridge/isa-timer.c @@ -0,0 +1,41 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * linux/arch/arm/mach-footbridge/isa-timer.c + * + * Copyright (C) 1998 Russell King. + * Copyright (C) 1998 Phil Blundell + */ +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#include "common.h" + +static irqreturn_t pit_timer_interrupt(int irq, void *dev_id) +{ + struct clock_event_device *ce = dev_id; + ce->event_handler(ce); + return IRQ_HANDLED; +} + +static struct irqaction pit_timer_irq = { + .name = "pit", + .handler = pit_timer_interrupt, + .flags = IRQF_TIMER | IRQF_IRQPOLL, + .dev_id = &i8253_clockevent, +}; + +void __init isa_timer_init(void) +{ + clocksource_i8253_init(); + + setup_irq(i8253_clockevent.irq, &pit_timer_irq); + clockevent_i8253_init(false); +} -- cgit v1.2.3