cs5535-clockevt.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*
  2. * Clock event driver for the CS5535/CS5536
  3. *
  4. * Copyright (C) 2006, Advanced Micro Devices, Inc.
  5. * Copyright (C) 2007 Andres Salomon <dilinger@debian.org>
  6. * Copyright (C) 2009 Andres Salomon <dilinger@collabora.co.uk>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of version 2 of the GNU General Public License
  10. * as published by the Free Software Foundation.
  11. *
  12. * The MFGPTs are documented in AMD Geode CS5536 Companion Device Data Book.
  13. */
  14. #include <linux/kernel.h>
  15. #include <linux/irq.h>
  16. #include <linux/interrupt.h>
  17. #include <linux/module.h>
  18. #include <linux/cs5535.h>
  19. #include <linux/clockchips.h>
  20. #define DRV_NAME "cs5535-clockevt"
  21. static int timer_irq;
  22. module_param_named(irq, timer_irq, int, 0644);
  23. MODULE_PARM_DESC(irq, "Which IRQ to use for the clock source MFGPT ticks.");
  24. /*
  25. * We are using the 32.768kHz input clock - it's the only one that has the
  26. * ranges we find desirable. The following table lists the suitable
  27. * divisors and the associated Hz, minimum interval and the maximum interval:
  28. *
  29. * Divisor Hz Min Delta (s) Max Delta (s)
  30. * 1 32768 .00048828125 2.000
  31. * 2 16384 .0009765625 4.000
  32. * 4 8192 .001953125 8.000
  33. * 8 4096 .00390625 16.000
  34. * 16 2048 .0078125 32.000
  35. * 32 1024 .015625 64.000
  36. * 64 512 .03125 128.000
  37. * 128 256 .0625 256.000
  38. * 256 128 .125 512.000
  39. */
  40. static struct cs5535_mfgpt_timer *cs5535_event_clock;
  41. /* Selected from the table above */
  42. #define MFGPT_DIVISOR 16
  43. #define MFGPT_SCALE 4 /* divisor = 2^(scale) */
  44. #define MFGPT_HZ (32768 / MFGPT_DIVISOR)
  45. #define MFGPT_PERIODIC (MFGPT_HZ / HZ)
  46. /*
  47. * The MFGPT timers on the CS5536 provide us with suitable timers to use
  48. * as clock event sources - not as good as a HPET or APIC, but certainly
  49. * better than the PIT. This isn't a general purpose MFGPT driver, but
  50. * a simplified one designed specifically to act as a clock event source.
  51. * For full details about the MFGPT, please consult the CS5536 data sheet.
  52. */
  53. static void disable_timer(struct cs5535_mfgpt_timer *timer)
  54. {
  55. /* avoid races by clearing CMP1 and CMP2 unconditionally */
  56. cs5535_mfgpt_write(timer, MFGPT_REG_SETUP,
  57. (uint16_t) ~MFGPT_SETUP_CNTEN | MFGPT_SETUP_CMP1 |
  58. MFGPT_SETUP_CMP2);
  59. }
  60. static void start_timer(struct cs5535_mfgpt_timer *timer, uint16_t delta)
  61. {
  62. cs5535_mfgpt_write(timer, MFGPT_REG_CMP2, delta);
  63. cs5535_mfgpt_write(timer, MFGPT_REG_COUNTER, 0);
  64. cs5535_mfgpt_write(timer, MFGPT_REG_SETUP,
  65. MFGPT_SETUP_CNTEN | MFGPT_SETUP_CMP2);
  66. }
  67. static int mfgpt_shutdown(struct clock_event_device *evt)
  68. {
  69. disable_timer(cs5535_event_clock);
  70. return 0;
  71. }
  72. static int mfgpt_set_periodic(struct clock_event_device *evt)
  73. {
  74. disable_timer(cs5535_event_clock);
  75. start_timer(cs5535_event_clock, MFGPT_PERIODIC);
  76. return 0;
  77. }
  78. static int mfgpt_next_event(unsigned long delta, struct clock_event_device *evt)
  79. {
  80. start_timer(cs5535_event_clock, delta);
  81. return 0;
  82. }
  83. static struct clock_event_device cs5535_clockevent = {
  84. .name = DRV_NAME,
  85. .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
  86. .set_state_shutdown = mfgpt_shutdown,
  87. .set_state_periodic = mfgpt_set_periodic,
  88. .set_state_oneshot = mfgpt_shutdown,
  89. .tick_resume = mfgpt_shutdown,
  90. .set_next_event = mfgpt_next_event,
  91. .rating = 250,
  92. };
  93. static irqreturn_t mfgpt_tick(int irq, void *dev_id)
  94. {
  95. uint16_t val = cs5535_mfgpt_read(cs5535_event_clock, MFGPT_REG_SETUP);
  96. /* See if the interrupt was for us */
  97. if (!(val & (MFGPT_SETUP_SETUP | MFGPT_SETUP_CMP2 | MFGPT_SETUP_CMP1)))
  98. return IRQ_NONE;
  99. /* Turn off the clock (and clear the event) */
  100. disable_timer(cs5535_event_clock);
  101. if (clockevent_state_shutdown(&cs5535_clockevent))
  102. return IRQ_HANDLED;
  103. /* Clear the counter */
  104. cs5535_mfgpt_write(cs5535_event_clock, MFGPT_REG_COUNTER, 0);
  105. /* Restart the clock in periodic mode */
  106. if (clockevent_state_periodic(&cs5535_clockevent))
  107. cs5535_mfgpt_write(cs5535_event_clock, MFGPT_REG_SETUP,
  108. MFGPT_SETUP_CNTEN | MFGPT_SETUP_CMP2);
  109. cs5535_clockevent.event_handler(&cs5535_clockevent);
  110. return IRQ_HANDLED;
  111. }
  112. static struct irqaction mfgptirq = {
  113. .handler = mfgpt_tick,
  114. .flags = IRQF_NOBALANCING | IRQF_TIMER | IRQF_SHARED,
  115. .name = DRV_NAME,
  116. };
  117. static int __init cs5535_mfgpt_init(void)
  118. {
  119. struct cs5535_mfgpt_timer *timer;
  120. int ret;
  121. uint16_t val;
  122. timer = cs5535_mfgpt_alloc_timer(MFGPT_TIMER_ANY, MFGPT_DOMAIN_WORKING);
  123. if (!timer) {
  124. printk(KERN_ERR DRV_NAME ": Could not allocate MFGPT timer\n");
  125. return -ENODEV;
  126. }
  127. cs5535_event_clock = timer;
  128. /* Set up the IRQ on the MFGPT side */
  129. if (cs5535_mfgpt_setup_irq(timer, MFGPT_CMP2, &timer_irq)) {
  130. printk(KERN_ERR DRV_NAME ": Could not set up IRQ %d\n",
  131. timer_irq);
  132. goto err_timer;
  133. }
  134. /* And register it with the kernel */
  135. ret = setup_irq(timer_irq, &mfgptirq);
  136. if (ret) {
  137. printk(KERN_ERR DRV_NAME ": Unable to set up the interrupt.\n");
  138. goto err_irq;
  139. }
  140. /* Set the clock scale and enable the event mode for CMP2 */
  141. val = MFGPT_SCALE | (3 << 8);
  142. cs5535_mfgpt_write(cs5535_event_clock, MFGPT_REG_SETUP, val);
  143. /* Set up the clock event */
  144. printk(KERN_INFO DRV_NAME
  145. ": Registering MFGPT timer as a clock event, using IRQ %d\n",
  146. timer_irq);
  147. clockevents_config_and_register(&cs5535_clockevent, MFGPT_HZ,
  148. 0xF, 0xFFFE);
  149. return 0;
  150. err_irq:
  151. cs5535_mfgpt_release_irq(cs5535_event_clock, MFGPT_CMP2, &timer_irq);
  152. err_timer:
  153. cs5535_mfgpt_free_timer(cs5535_event_clock);
  154. printk(KERN_ERR DRV_NAME ": Unable to set up the MFGPT clock source\n");
  155. return -EIO;
  156. }
  157. module_init(cs5535_mfgpt_init);
  158. MODULE_AUTHOR("Andres Salomon <dilinger@queued.net>");
  159. MODULE_DESCRIPTION("CS5535/CS5536 MFGPT clock event driver");
  160. MODULE_LICENSE("GPL");