/*1* OpenRISC timer API2*3* Copyright (C) 2017 by Stafford Horne ([email protected])4*5* This file is subject to the terms and conditions of the GNU General Public6* License. See the file "COPYING" in the main directory of this archive7* for more details.8*/9#ifndef __ASM_OR1K_TIME_H10#define __ASM_OR1K_TIME_H1112extern void openrisc_clockevent_init(void);1314extern void openrisc_timer_set(unsigned long count);15extern void openrisc_timer_set_next(unsigned long delta);1617#ifdef CONFIG_SMP18extern void synchronise_count_master(int cpu);19extern void synchronise_count_slave(int cpu);20#endif2122#endif /* __ASM_OR1K_TIME_H */232425