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
6 * Copyright (C) 2007 by Ralf Baechle
9 static cycle_t c0_hpt_read(void)
11 return read_c0_count();
14 static struct clocksource clocksource_mips = {
17 .mask = CLOCKSOURCE_MASK(32),
18 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
21 static void __init init_mips_clocksource(void)
23 /* Calclate a somewhat reasonable rating value */
24 clocksource_mips.rating = 200 + mips_hpt_frequency / 10000000;
26 clocksource_set_clock(&clocksource_mips, mips_hpt_frequency);
28 clocksource_register(&clocksource_mips);