csrc-r4k.c 885 B

1234567891011121314151617181920212223242526272829303132333435363738
  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.
  5. *
  6. * Copyright (C) 2007 by Ralf Baechle
  7. */
  8. #include <linux/clocksource.h>
  9. #include <linux/init.h>
  10. #include <asm/time.h>
  11. static cycle_t c0_hpt_read(struct clocksource *cs)
  12. {
  13. return read_c0_count();
  14. }
  15. static struct clocksource clocksource_mips = {
  16. .name = "MIPS",
  17. .read = c0_hpt_read,
  18. .mask = CLOCKSOURCE_MASK(32),
  19. .flags = CLOCK_SOURCE_IS_CONTINUOUS,
  20. };
  21. int __init init_r4k_clocksource(void)
  22. {
  23. if (!cpu_has_counter || !mips_hpt_frequency)
  24. return -ENXIO;
  25. /* Calculate a somewhat reasonable rating value */
  26. clocksource_mips.rating = 200 + mips_hpt_frequency / 10000000;
  27. clocksource_set_clock(&clocksource_mips, mips_hpt_frequency);
  28. clocksource_register(&clocksource_mips);
  29. return 0;
  30. }