cevt-txx9.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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. * Based on linux/arch/mips/kernel/cevt-r4k.c,
  7. * linux/arch/mips/jmr3927/rbhma3100/setup.c
  8. *
  9. * Copyright 2001 MontaVista Software Inc.
  10. * Copyright (C) 2000-2001 Toshiba Corporation
  11. * Copyright (C) 2007 MIPS Technologies, Inc.
  12. * Copyright (C) 2007 Ralf Baechle <ralf@linux-mips.org>
  13. */
  14. #include <linux/init.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/irq.h>
  17. #include <asm/time.h>
  18. #include <asm/txx9tmr.h>
  19. #define TCR_BASE (TXx9_TMTCR_CCDE | TXx9_TMTCR_CRE | TXx9_TMTCR_TMODE_ITVL)
  20. #define TIMER_CCD 0 /* 1/2 */
  21. #define TIMER_CLK(imclk) ((imclk) / (2 << TIMER_CCD))
  22. struct txx9_clocksource {
  23. struct clocksource cs;
  24. struct txx9_tmr_reg __iomem *tmrptr;
  25. };
  26. static cycle_t txx9_cs_read(struct clocksource *cs)
  27. {
  28. struct txx9_clocksource *txx9_cs =
  29. container_of(cs, struct txx9_clocksource, cs);
  30. return __raw_readl(&txx9_cs->tmrptr->trr);
  31. }
  32. /* Use 1 bit smaller width to use full bits in that width */
  33. #define TXX9_CLOCKSOURCE_BITS (TXX9_TIMER_BITS - 1)
  34. static struct txx9_clocksource txx9_clocksource = {
  35. .cs = {
  36. .name = "TXx9",
  37. .rating = 200,
  38. .read = txx9_cs_read,
  39. .mask = CLOCKSOURCE_MASK(TXX9_CLOCKSOURCE_BITS),
  40. .flags = CLOCK_SOURCE_IS_CONTINUOUS,
  41. },
  42. };
  43. void __init txx9_clocksource_init(unsigned long baseaddr,
  44. unsigned int imbusclk)
  45. {
  46. struct txx9_tmr_reg __iomem *tmrptr;
  47. clocksource_register_hz(&txx9_clocksource.cs, TIMER_CLK(imbusclk));
  48. tmrptr = ioremap(baseaddr, sizeof(struct txx9_tmr_reg));
  49. __raw_writel(TCR_BASE, &tmrptr->tcr);
  50. __raw_writel(0, &tmrptr->tisr);
  51. __raw_writel(TIMER_CCD, &tmrptr->ccdr);
  52. __raw_writel(TXx9_TMITMR_TZCE, &tmrptr->itmr);
  53. __raw_writel(1 << TXX9_CLOCKSOURCE_BITS, &tmrptr->cpra);
  54. __raw_writel(TCR_BASE | TXx9_TMTCR_TCE, &tmrptr->tcr);
  55. txx9_clocksource.tmrptr = tmrptr;
  56. }
  57. struct txx9_clock_event_device {
  58. struct clock_event_device cd;
  59. struct txx9_tmr_reg __iomem *tmrptr;
  60. };
  61. static void txx9tmr_stop_and_clear(struct txx9_tmr_reg __iomem *tmrptr)
  62. {
  63. /* stop and reset counter */
  64. __raw_writel(TCR_BASE, &tmrptr->tcr);
  65. /* clear pending interrupt */
  66. __raw_writel(0, &tmrptr->tisr);
  67. }
  68. static void txx9tmr_set_mode(enum clock_event_mode mode,
  69. struct clock_event_device *evt)
  70. {
  71. struct txx9_clock_event_device *txx9_cd =
  72. container_of(evt, struct txx9_clock_event_device, cd);
  73. struct txx9_tmr_reg __iomem *tmrptr = txx9_cd->tmrptr;
  74. txx9tmr_stop_and_clear(tmrptr);
  75. switch (mode) {
  76. case CLOCK_EVT_MODE_PERIODIC:
  77. __raw_writel(TXx9_TMITMR_TIIE | TXx9_TMITMR_TZCE,
  78. &tmrptr->itmr);
  79. /* start timer */
  80. __raw_writel(((u64)(NSEC_PER_SEC / HZ) * evt->mult) >>
  81. evt->shift,
  82. &tmrptr->cpra);
  83. __raw_writel(TCR_BASE | TXx9_TMTCR_TCE, &tmrptr->tcr);
  84. break;
  85. case CLOCK_EVT_MODE_SHUTDOWN:
  86. case CLOCK_EVT_MODE_UNUSED:
  87. __raw_writel(0, &tmrptr->itmr);
  88. break;
  89. case CLOCK_EVT_MODE_ONESHOT:
  90. __raw_writel(TXx9_TMITMR_TIIE, &tmrptr->itmr);
  91. break;
  92. case CLOCK_EVT_MODE_RESUME:
  93. __raw_writel(TIMER_CCD, &tmrptr->ccdr);
  94. __raw_writel(0, &tmrptr->itmr);
  95. break;
  96. }
  97. }
  98. static int txx9tmr_set_next_event(unsigned long delta,
  99. struct clock_event_device *evt)
  100. {
  101. struct txx9_clock_event_device *txx9_cd =
  102. container_of(evt, struct txx9_clock_event_device, cd);
  103. struct txx9_tmr_reg __iomem *tmrptr = txx9_cd->tmrptr;
  104. txx9tmr_stop_and_clear(tmrptr);
  105. /* start timer */
  106. __raw_writel(delta, &tmrptr->cpra);
  107. __raw_writel(TCR_BASE | TXx9_TMTCR_TCE, &tmrptr->tcr);
  108. return 0;
  109. }
  110. static struct txx9_clock_event_device txx9_clock_event_device = {
  111. .cd = {
  112. .name = "TXx9",
  113. .features = CLOCK_EVT_FEAT_PERIODIC |
  114. CLOCK_EVT_FEAT_ONESHOT,
  115. .rating = 200,
  116. .set_mode = txx9tmr_set_mode,
  117. .set_next_event = txx9tmr_set_next_event,
  118. },
  119. };
  120. static irqreturn_t txx9tmr_interrupt(int irq, void *dev_id)
  121. {
  122. struct txx9_clock_event_device *txx9_cd = dev_id;
  123. struct clock_event_device *cd = &txx9_cd->cd;
  124. struct txx9_tmr_reg __iomem *tmrptr = txx9_cd->tmrptr;
  125. __raw_writel(0, &tmrptr->tisr); /* ack interrupt */
  126. cd->event_handler(cd);
  127. return IRQ_HANDLED;
  128. }
  129. static struct irqaction txx9tmr_irq = {
  130. .handler = txx9tmr_interrupt,
  131. .flags = IRQF_PERCPU | IRQF_TIMER,
  132. .name = "txx9tmr",
  133. .dev_id = &txx9_clock_event_device,
  134. };
  135. void __init txx9_clockevent_init(unsigned long baseaddr, int irq,
  136. unsigned int imbusclk)
  137. {
  138. struct clock_event_device *cd = &txx9_clock_event_device.cd;
  139. struct txx9_tmr_reg __iomem *tmrptr;
  140. tmrptr = ioremap(baseaddr, sizeof(struct txx9_tmr_reg));
  141. txx9tmr_stop_and_clear(tmrptr);
  142. __raw_writel(TIMER_CCD, &tmrptr->ccdr);
  143. __raw_writel(0, &tmrptr->itmr);
  144. txx9_clock_event_device.tmrptr = tmrptr;
  145. clockevent_set_clock(cd, TIMER_CLK(imbusclk));
  146. cd->max_delta_ns =
  147. clockevent_delta2ns(0xffffffff >> (32 - TXX9_TIMER_BITS), cd);
  148. cd->min_delta_ns = clockevent_delta2ns(0xf, cd);
  149. cd->irq = irq;
  150. cd->cpumask = cpumask_of(0),
  151. clockevents_register_device(cd);
  152. setup_irq(irq, &txx9tmr_irq);
  153. printk(KERN_INFO "TXx9: clockevent device at 0x%lx, irq %d\n",
  154. baseaddr, irq);
  155. }
  156. void __init txx9_tmr_init(unsigned long baseaddr)
  157. {
  158. struct txx9_tmr_reg __iomem *tmrptr;
  159. tmrptr = ioremap(baseaddr, sizeof(struct txx9_tmr_reg));
  160. /* Start once to make CounterResetEnable effective */
  161. __raw_writel(TXx9_TMTCR_CRE | TXx9_TMTCR_TCE, &tmrptr->tcr);
  162. /* Stop and reset the counter */
  163. __raw_writel(TXx9_TMTCR_CRE, &tmrptr->tcr);
  164. __raw_writel(0, &tmrptr->tisr);
  165. __raw_writel(0xffffffff, &tmrptr->cpra);
  166. __raw_writel(0, &tmrptr->itmr);
  167. __raw_writel(0, &tmrptr->ccdr);
  168. __raw_writel(0, &tmrptr->pgmr);
  169. iounmap(tmrptr);
  170. }