blob: 0e2b5cd81f67dbdd4e48bd83846e074d6c17ea0c [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>
10
11#include <asm/time.h>
Ralf Baechle940f6b42007-11-24 22:33:28 +000012
13static cycle_t c0_hpt_read(void)
14{
15 return read_c0_count();
16}
17
18static struct clocksource clocksource_mips = {
19 .name = "MIPS",
20 .read = c0_hpt_read,
21 .mask = CLOCKSOURCE_MASK(32),
22 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
23};
24
Ralf Baechlee6a1bb72007-11-28 15:07:42 +000025void __init init_mips_clocksource(void)
Ralf Baechle940f6b42007-11-24 22:33:28 +000026{
27 /* Calclate a somewhat reasonable rating value */
28 clocksource_mips.rating = 200 + mips_hpt_frequency / 10000000;
29
30 clocksource_set_clock(&clocksource_mips, mips_hpt_frequency);
31
32 clocksource_register(&clocksource_mips);
33}