csrc-ioasic.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * DEC I/O ASIC's counter clocksource
  3. *
  4. * Copyright (C) 2008 Yoichi Yuasa <yuasa@linux-mips.org>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. */
  16. #include <linux/clocksource.h>
  17. #include <linux/sched_clock.h>
  18. #include <linux/init.h>
  19. #include <asm/ds1287.h>
  20. #include <asm/time.h>
  21. #include <asm/dec/ioasic.h>
  22. #include <asm/dec/ioasic_addrs.h>
  23. static cycle_t dec_ioasic_hpt_read(struct clocksource *cs)
  24. {
  25. return ioasic_read(IO_REG_FCTR);
  26. }
  27. static struct clocksource clocksource_dec = {
  28. .name = "dec-ioasic",
  29. .read = dec_ioasic_hpt_read,
  30. .mask = CLOCKSOURCE_MASK(32),
  31. .flags = CLOCK_SOURCE_IS_CONTINUOUS,
  32. };
  33. static u64 notrace dec_ioasic_read_sched_clock(void)
  34. {
  35. return ioasic_read(IO_REG_FCTR);
  36. }
  37. int __init dec_ioasic_clocksource_init(void)
  38. {
  39. unsigned int freq;
  40. u32 start, end;
  41. int i = HZ / 8;
  42. ds1287_timer_state();
  43. while (!ds1287_timer_state())
  44. ;
  45. start = dec_ioasic_hpt_read(&clocksource_dec);
  46. while (i--)
  47. while (!ds1287_timer_state())
  48. ;
  49. end = dec_ioasic_hpt_read(&clocksource_dec);
  50. freq = (end - start) * 8;
  51. /* An early revision of the I/O ASIC didn't have the counter. */
  52. if (!freq)
  53. return -ENXIO;
  54. printk(KERN_INFO "I/O ASIC clock frequency %dHz\n", freq);
  55. clocksource_dec.rating = 200 + freq / 10000000;
  56. clocksource_register_hz(&clocksource_dec, freq);
  57. sched_clock_register(dec_ioasic_read_sched_clock, 32, freq);
  58. return 0;
  59. }