mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 15:48:56 +07:00
19971c0bcb
Long ago, commit8531a35e5e
("[MIPS] SMTC: Fix SMTC dyntick support.") moved handle_perf_irq() out of cevt-r4k.c into a header so it could be shared with cevt-smtc.c. Slightly less long ago, commitb633648c5a
("MIPS: MT: Remove SMTC support") removed all traces of SMTC support, including cevt-smtc.c, leaving cevt-r4k.c once again the sole user of handle_perf_irq(), therefore move it back into cevt-r4k.c from the header. Signed-off-by: James Hogan <james.hogan@imgtec.com> Cc: linux-mips@linux-mips.org Cc: linux-kernel@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/9123/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
31 lines
901 B
C
31 lines
901 B
C
/*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*
|
|
* Copyright (C) 2008 Kevin D. Kissell
|
|
*/
|
|
|
|
/*
|
|
* Definitions used for common event timer implementation
|
|
* for MIPS 4K-type processors and their MIPS MT variants.
|
|
* Avoids unsightly extern declarations in C files.
|
|
*/
|
|
#ifndef __ASM_CEVT_R4K_H
|
|
#define __ASM_CEVT_R4K_H
|
|
|
|
#include <linux/clockchips.h>
|
|
#include <asm/time.h>
|
|
|
|
DECLARE_PER_CPU(struct clock_event_device, mips_clockevent_device);
|
|
|
|
void mips_event_handler(struct clock_event_device *dev);
|
|
int c0_compare_int_usable(void);
|
|
void mips_set_clock_mode(enum clock_event_mode, struct clock_event_device *);
|
|
irqreturn_t c0_compare_interrupt(int, void *);
|
|
|
|
extern struct irqaction c0_compare_irqaction;
|
|
extern int cp0_timer_irq_installed;
|
|
|
|
#endif /* __ASM_CEVT_R4K_H */
|