gro: Allow tunnel stacking in the case of FOU/GUE
[linux/fpc-iii.git] / arch / mips / kernel / csrc-r4k.c
blob3a317e1ede719eb5234c395196515cd5a301bc6a
1 /*
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.
6 * Copyright (C) 2007 by Ralf Baechle
7 */
8 #include <linux/clocksource.h>
9 #include <linux/init.h>
10 #include <linux/sched_clock.h>
12 #include <asm/time.h>
14 static cycle_t c0_hpt_read(struct clocksource *cs)
16 return read_c0_count();
19 static struct clocksource clocksource_mips = {
20 .name = "MIPS",
21 .read = c0_hpt_read,
22 .mask = CLOCKSOURCE_MASK(32),
23 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
26 static u64 __maybe_unused notrace r4k_read_sched_clock(void)
28 return read_c0_count();
31 int __init init_r4k_clocksource(void)
33 if (!cpu_has_counter || !mips_hpt_frequency)
34 return -ENXIO;
36 /* Calculate a somewhat reasonable rating value */
37 clocksource_mips.rating = 200 + mips_hpt_frequency / 10000000;
39 clocksource_register_hz(&clocksource_mips, mips_hpt_frequency);
41 #ifndef CONFIG_CPU_FREQ
42 sched_clock_register(r4k_read_sched_clock, 32, mips_hpt_frequency);
43 #endif
45 return 0;