blob: e5ed7ada14334c682218aa567e18414465fea81c [file] [log] [blame]
Ralf Baechle940f6b42007-11-24 22:33:28 +00001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 2007 by Ralf Baechle
7 */
Ralf Baechlee6a1bb72007-11-28 15:07:42 +00008#include <linux/clocksource.h>
9#include <linux/init.h>
Deng-Cheng Zhue9cef542015-03-07 10:30:24 -080010#include <linux/sched_clock.h>
Ralf Baechlee6a1bb72007-11-28 15:07:42 +000011
12#include <asm/time.h>
Ralf Baechle940f6b42007-11-24 22:33:28 +000013
Magnus Damm8e196082009-04-21 12:24:00 -070014static cycle_t c0_hpt_read(struct clocksource *cs)
Ralf Baechle940f6b42007-11-24 22:33:28 +000015{
16 return read_c0_count();
17}
18
19static struct clocksource clocksource_mips = {
20 .name = "MIPS",
21 .read = c0_hpt_read,
22 .mask = CLOCKSOURCE_MASK(32),
23 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
24};
25
Deng-Cheng Zhue9cef542015-03-07 10:30:24 -080026static u64 notrace r4k_read_sched_clock(void)
27{
28 return read_c0_count();
29}
30
Manuel Lauss779e7d42008-12-21 09:26:22 +010031int __init init_r4k_clocksource(void)
Ralf Baechle940f6b42007-11-24 22:33:28 +000032{
Ralf Baechle69e634f2008-03-12 13:58:10 +000033 if (!cpu_has_counter || !mips_hpt_frequency)
34 return -ENXIO;
35
Ralf Baechle664c4bb2008-11-03 11:31:54 +000036 /* Calculate a somewhat reasonable rating value */
Ralf Baechle940f6b42007-11-24 22:33:28 +000037 clocksource_mips.rating = 200 + mips_hpt_frequency / 10000000;
38
John Stultz75c4fd82010-04-26 20:23:11 -070039 clocksource_register_hz(&clocksource_mips, mips_hpt_frequency);
Ralf Baechle69e634f2008-03-12 13:58:10 +000040
Deng-Cheng Zhue9cef542015-03-07 10:30:24 -080041 sched_clock_register(r4k_read_sched_clock, 32, mips_hpt_frequency);
42
Ralf Baechle69e634f2008-03-12 13:58:10 +000043 return 0;
Ralf Baechle940f6b42007-11-24 22:33:28 +000044}