cs5535-clockevt.c 5.8 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_detached(&cs5535_clockevent) ||
  102. clockevent_state_shutdown(&cs5535_clockevent))
  103. return IRQ_HANDLED;
  104. /* Clear the counter */
  105. cs5535_mfgpt_write(cs5535_event_clock, MFGPT_REG_COUNTER, 0);
  106. /* Restart the clock in periodic mode */
  107. if (clockevent_state_periodic(&cs5535_clockevent))
  108. cs5535_mfgpt_write(cs5535_event_clock, MFGPT_REG_SETUP,
  109. MFGPT_SETUP_CNTEN | MFGPT_SETUP_CMP2);
  110. cs5535_clockevent.event_handler(&cs5535_clockevent);
  111. return IRQ_HANDLED;
  112. }
  113. static struct irqaction mfgptirq = {
  114. .handler = mfgpt_tick,
  115. .flags = IRQF_NOBALANCING | IRQF_TIMER | IRQF_SHARED,
  116. .name = DRV_NAME,
  117. };
  118. static int __init cs5535_mfgpt_init(void)
  119. {
  120. struct cs5535_mfgpt_timer *timer;
  121. int ret;
  122. uint16_t val;
  123. timer = cs5535_mfgpt_alloc_timer(MFGPT_TIMER_ANY, MFGPT_DOMAIN_WORKING);
  124. if (!timer) {
  125. printk(KERN_ERR DRV_NAME ": Could not allocate MFGPT timer\n");
  126. return -ENODEV;
  127. }
  128. cs5535_event_clock = timer;
  129. /* Set up the IRQ on the MFGPT side */
  130. if (cs5535_mfgpt_setup_irq(timer, MFGPT_CMP2, &timer_irq)) {
  131. printk(KERN_ERR DRV_NAME ": Could not set up IRQ %d\n",
  132. timer_irq);
  133. goto err_timer;
  134. }
  135. /* And register it with the kernel */
  136. ret = setup_irq(timer_irq, &mfgptirq);
  137. if (ret) {
  138. printk(KERN_ERR DRV_NAME ": Unable to set up the interrupt.\n");
  139. goto err_irq;
  140. }
  141. /* Set the clock scale and enable the event mode for CMP2 */
  142. val = MFGPT_SCALE | (3 << 8);
  143. cs5535_mfgpt_write(cs5535_event_clock, MFGPT_REG_SETUP, val);
  144. /* Set up the clock event */
  145. printk(KERN_INFO DRV_NAME
  146. ": Registering MFGPT timer as a clock event, using IRQ %d\n",
  147. timer_irq);
  148. clockevents_config_and_register(&cs5535_clockevent, MFGPT_HZ,
  149. 0xF, 0xFFFE);
  150. return 0;
  151. err_irq:
  152. cs5535_mfgpt_release_irq(cs5535_event_clock, MFGPT_CMP2, &timer_irq);
  153. err_timer:
  154. cs5535_mfgpt_free_timer(cs5535_event_clock);
  155. printk(KERN_ERR DRV_NAME ": Unable to set up the MFGPT clock source\n");
  156. return -EIO;
  157. }
  158. module_init(cs5535_mfgpt_init);
  159. MODULE_AUTHOR("Andres Salomon <dilinger@queued.net>");
  160. MODULE_DESCRIPTION("CS5535/CS5536 MFGPT clock event driver");
  161. MODULE_LICENSE("GPL");