csrc-ioasic.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <linux/clocksource.h>
  21. #include <linux/init.h>
  22. #include <asm/ds1287.h>
  23. #include <asm/time.h>
  24. #include <asm/dec/ioasic.h>
  25. #include <asm/dec/ioasic_addrs.h>
  26. static cycle_t dec_ioasic_hpt_read(struct clocksource *cs)
  27. {
  28. return ioasic_read(IO_REG_FCTR);
  29. }
  30. static struct clocksource clocksource_dec = {
  31. .name = "dec-ioasic",
  32. .read = dec_ioasic_hpt_read,
  33. .mask = CLOCKSOURCE_MASK(32),
  34. .flags = CLOCK_SOURCE_IS_CONTINUOUS,
  35. };
  36. void __init dec_ioasic_clocksource_init(void)
  37. {
  38. unsigned int freq;
  39. u32 start, end;
  40. int i = HZ / 10;
  41. while (!ds1287_timer_state())
  42. ;
  43. start = dec_ioasic_hpt_read(&clocksource_dec);
  44. while (i--)
  45. while (!ds1287_timer_state())
  46. ;
  47. end = dec_ioasic_hpt_read(&clocksource_dec);
  48. freq = (end - start) * 10;
  49. printk(KERN_INFO "I/O ASIC clock frequency %dHz\n", freq);
  50. clocksource_dec.rating = 200 + freq / 10000000;
  51. clocksource_register_hz(&clocksource_dec, freq);
  52. }