2019-05-27 14:55:01 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2001, 2002, MontaVista Software Inc.
|
|
|
|
* Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
|
|
|
|
* Copyright (c) 2003 Maciej W. Rozycki
|
|
|
|
*
|
|
|
|
* include/asm-mips/time.h
|
|
|
|
* header file for the new style time.c file and time services.
|
|
|
|
*/
|
|
|
|
#ifndef _ASM_TIME_H
|
|
|
|
#define _ASM_TIME_H
|
|
|
|
|
|
|
|
#include <linux/rtc.h>
|
2005-11-03 00:01:15 +08:00
|
|
|
#include <linux/spinlock.h>
|
2007-10-19 15:13:08 +08:00
|
|
|
#include <linux/clockchips.h>
|
2006-11-11 23:10:28 +08:00
|
|
|
#include <linux/clocksource.h>
|
2005-11-03 00:01:15 +08:00
|
|
|
|
|
|
|
extern spinlock_t rtc_lock;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* board specific routines required by time_init().
|
|
|
|
*/
|
2007-10-12 06:46:08 +08:00
|
|
|
extern void plat_time_init(void);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* mips_hpt_frequency - must be set if you intend to use an R4k-compatible
|
2007-12-09 20:19:36 +08:00
|
|
|
* counter as a timer interrupt source.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
extern unsigned int mips_hpt_frequency;
|
|
|
|
|
2007-10-12 06:46:09 +08:00
|
|
|
/*
|
|
|
|
* The performance counter IRQ on MIPS is a close relative to the timer IRQ
|
|
|
|
* so it lives here.
|
|
|
|
*/
|
|
|
|
extern int (*perf_irq)(void);
|
2014-09-19 05:47:12 +08:00
|
|
|
extern int __weak get_c0_perfcount_int(void);
|
2007-10-12 06:46:09 +08:00
|
|
|
|
2007-10-12 06:46:09 +08:00
|
|
|
/*
|
|
|
|
* Initialize the calling CPU's compare interrupt as clockevent device
|
|
|
|
*/
|
2015-07-13 07:11:38 +08:00
|
|
|
extern unsigned int get_c0_compare_int(void);
|
2008-12-21 16:26:22 +08:00
|
|
|
extern int r4k_clockevent_init(void);
|
|
|
|
|
2007-11-22 00:39:44 +08:00
|
|
|
static inline int mips_clockevent_init(void)
|
2007-10-19 00:48:11 +08:00
|
|
|
{
|
2014-10-21 03:04:04 +08:00
|
|
|
#ifdef CONFIG_CEVT_R4K
|
2008-12-21 16:26:22 +08:00
|
|
|
return r4k_clockevent_init();
|
|
|
|
#else
|
2007-11-22 00:39:44 +08:00
|
|
|
return -ENXIO;
|
2007-10-19 00:48:11 +08:00
|
|
|
#endif
|
2008-12-21 16:26:22 +08:00
|
|
|
}
|
2007-10-12 06:46:09 +08:00
|
|
|
|
2007-11-25 06:33:28 +08:00
|
|
|
/*
|
|
|
|
* Initialize the count register as a clocksource
|
|
|
|
*/
|
2008-12-21 16:26:22 +08:00
|
|
|
extern int init_r4k_clocksource(void);
|
|
|
|
|
2008-03-12 21:58:10 +08:00
|
|
|
static inline int init_mips_clocksource(void)
|
2007-11-25 06:33:28 +08:00
|
|
|
{
|
2013-10-07 18:32:54 +08:00
|
|
|
#ifdef CONFIG_CSRC_R4K
|
2008-12-21 16:26:22 +08:00
|
|
|
return init_r4k_clocksource();
|
|
|
|
#else
|
2008-03-12 21:58:10 +08:00
|
|
|
return 0;
|
2007-11-25 06:33:28 +08:00
|
|
|
#endif
|
2008-12-21 16:26:22 +08:00
|
|
|
}
|
2007-11-25 06:33:28 +08:00
|
|
|
|
2009-11-11 22:05:34 +08:00
|
|
|
static inline void clockevent_set_clock(struct clock_event_device *cd,
|
|
|
|
unsigned int clock)
|
|
|
|
{
|
|
|
|
clockevents_calc_mult_shift(cd, clock, 4);
|
|
|
|
}
|
2007-10-19 15:13:08 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* _ASM_TIME_H */
|