csrc-r4k.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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 <linux/sched_clock.h>
  11. #include <asm/time.h>
  12. static cycle_t c0_hpt_read(struct clocksource *cs)
  13. {
  14. return read_c0_count();
  15. }
  16. static struct clocksource clocksource_mips = {
  17. .name = "MIPS",
  18. .read = c0_hpt_read,
  19. .mask = CLOCKSOURCE_MASK(32),
  20. .flags = CLOCK_SOURCE_IS_CONTINUOUS,
  21. };
  22. static u64 __maybe_unused notrace r4k_read_sched_clock(void)
  23. {
  24. return read_c0_count();
  25. }
  26. static inline unsigned int rdhwr_count(void)
  27. {
  28. unsigned int count;
  29. __asm__ __volatile__(
  30. " .set push\n"
  31. " .set mips32r2\n"
  32. " rdhwr %0, $2\n"
  33. " .set pop\n"
  34. : "=r" (count));
  35. return count;
  36. }
  37. static bool rdhwr_count_usable(void)
  38. {
  39. unsigned int prev, curr, i;
  40. /*
  41. * Older QEMUs have a broken implementation of RDHWR for the CP0 count
  42. * which always returns a constant value. Try to identify this and don't
  43. * use it in the VDSO if it is broken. This workaround can be removed
  44. * once the fix has been in QEMU stable for a reasonable amount of time.
  45. */
  46. for (i = 0, prev = rdhwr_count(); i < 100; i++) {
  47. curr = rdhwr_count();
  48. if (curr != prev)
  49. return true;
  50. prev = curr;
  51. }
  52. pr_warn("Not using R4K clocksource in VDSO due to broken RDHWR\n");
  53. return false;
  54. }
  55. int __init init_r4k_clocksource(void)
  56. {
  57. if (!cpu_has_counter || !mips_hpt_frequency)
  58. return -ENXIO;
  59. /* Calculate a somewhat reasonable rating value */
  60. clocksource_mips.rating = 200 + mips_hpt_frequency / 10000000;
  61. /*
  62. * R2 onwards makes the count accessible to user mode so it can be used
  63. * by the VDSO (HWREna is configured by configure_hwrena()).
  64. */
  65. if (cpu_has_mips_r2_r6 && rdhwr_count_usable())
  66. clocksource_mips.archdata.vdso_clock_mode = VDSO_CLOCK_R4K;
  67. clocksource_register_hz(&clocksource_mips, mips_hpt_frequency);
  68. #ifndef CONFIG_CPU_FREQ
  69. sched_clock_register(r4k_read_sched_clock, 32, mips_hpt_frequency);
  70. #endif
  71. return 0;
  72. }