blob: abe28d5cb3f4e8096f59778e6c2edb564c3bed71 [file] [log] [blame]
Russell King112f38a42010-12-15 19:23:07 +00001/*
2 * sched_clock.h: support for extending counters to full 64-bit ns counter
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
Stephen Boyd38ff87f2013-06-01 23:39:40 -07008#ifndef LINUX_SCHED_CLOCK
9#define LINUX_SCHED_CLOCK
Russell King112f38a42010-12-15 19:23:07 +000010
Stephen Boyd38ff87f2013-06-01 23:39:40 -070011#ifdef CONFIG_GENERIC_SCHED_CLOCK
Pavel Tatashin5d2a4e92018-07-19 16:55:41 -040012extern void generic_sched_clock_init(void);
Stephen Boyd38ff87f2013-06-01 23:39:40 -070013
Stephen Boyde7e3ff12013-07-18 16:21:17 -070014extern void sched_clock_register(u64 (*read)(void), int bits,
15 unsigned long rate);
Daniel Lezcano364eba42015-10-29 18:33:47 +010016#else
Pavel Tatashin5d2a4e92018-07-19 16:55:41 -040017static inline void generic_sched_clock_init(void) { }
Daniel Lezcano364eba42015-10-29 18:33:47 +010018
19static inline void sched_clock_register(u64 (*read)(void), int bits,
20 unsigned long rate)
21{
Daniel Lezcano364eba42015-10-29 18:33:47 +010022}
23#endif
Russell King211baa702011-01-11 16:23:04 +000024
Russell King112f38a42010-12-15 19:23:07 +000025#endif