blob: f8e66425cbf826f2f62aef4756869442a9ed5fdc [file] [log] [blame]
David Howellsb920de12008-02-08 04:19:31 -08001/* MN10300 Architecture time management specifications
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11#ifndef _ASM_TIMEX_H
12#define _ASM_TIMEX_H
13
David Howells2f2a2132009-04-10 14:33:48 +010014#include <unit/timex.h>
David Howellsb920de12008-02-08 04:19:31 -080015
16#define TICK_SIZE (tick_nsec / 1000)
17
Akira Takeuchi368dd5a2010-10-27 17:28:55 +010018#define CLOCK_TICK_RATE MN10300_JCCLK /* Underlying HZ */
David Howellsb920de12008-02-08 04:19:31 -080019
David Howellsb920de12008-02-08 04:19:31 -080020#ifdef __KERNEL__
21
Mark Salter730c1fa2010-10-27 17:28:57 +010022extern cycles_t cacheflush_time;
23
David Howellsb920de12008-02-08 04:19:31 -080024static inline cycles_t get_cycles(void)
25{
26 return read_timestamp_counter();
27}
28
Mark Salter730c1fa2010-10-27 17:28:57 +010029extern int init_clockevents(void);
30extern int init_clocksource(void);
31
David Howellsb920de12008-02-08 04:19:31 -080032#endif /* __KERNEL__ */
33
34#endif /* _ASM_TIMEX_H */