moxart_timer.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /*
  2. * MOXA ART SoCs timer handling.
  3. *
  4. * Copyright (C) 2013 Jonas Jensen
  5. *
  6. * Jonas Jensen <jonas.jensen@gmail.com>
  7. *
  8. * This file is licensed under the terms of the GNU General Public
  9. * License version 2. This program is licensed "as is" without any
  10. * warranty of any kind, whether express or implied.
  11. */
  12. #include <linux/clk.h>
  13. #include <linux/clockchips.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/irq.h>
  16. #include <linux/irqreturn.h>
  17. #include <linux/of.h>
  18. #include <linux/of_address.h>
  19. #include <linux/of_irq.h>
  20. #include <linux/io.h>
  21. #include <linux/clocksource.h>
  22. #include <linux/bitops.h>
  23. #define TIMER1_BASE 0x00
  24. #define TIMER2_BASE 0x10
  25. #define TIMER3_BASE 0x20
  26. #define REG_COUNT 0x0 /* writable */
  27. #define REG_LOAD 0x4
  28. #define REG_MATCH1 0x8
  29. #define REG_MATCH2 0xC
  30. #define TIMER_CR 0x30
  31. #define TIMER_INTR_STATE 0x34
  32. #define TIMER_INTR_MASK 0x38
  33. /*
  34. * TIMER_CR flags:
  35. *
  36. * TIMEREG_CR_*_CLOCK 0: PCLK, 1: EXT1CLK
  37. * TIMEREG_CR_*_INT overflow interrupt enable bit
  38. */
  39. #define TIMEREG_CR_1_ENABLE BIT(0)
  40. #define TIMEREG_CR_1_CLOCK BIT(1)
  41. #define TIMEREG_CR_1_INT BIT(2)
  42. #define TIMEREG_CR_2_ENABLE BIT(3)
  43. #define TIMEREG_CR_2_CLOCK BIT(4)
  44. #define TIMEREG_CR_2_INT BIT(5)
  45. #define TIMEREG_CR_3_ENABLE BIT(6)
  46. #define TIMEREG_CR_3_CLOCK BIT(7)
  47. #define TIMEREG_CR_3_INT BIT(8)
  48. #define TIMEREG_CR_COUNT_UP BIT(9)
  49. #define TIMER1_ENABLE (TIMEREG_CR_2_ENABLE | TIMEREG_CR_1_ENABLE)
  50. #define TIMER1_DISABLE (TIMEREG_CR_2_ENABLE)
  51. static void __iomem *base;
  52. static unsigned int clock_count_per_tick;
  53. static void moxart_clkevt_mode(enum clock_event_mode mode,
  54. struct clock_event_device *clk)
  55. {
  56. switch (mode) {
  57. case CLOCK_EVT_MODE_RESUME:
  58. case CLOCK_EVT_MODE_ONESHOT:
  59. writel(TIMER1_DISABLE, base + TIMER_CR);
  60. writel(~0, base + TIMER1_BASE + REG_LOAD);
  61. break;
  62. case CLOCK_EVT_MODE_PERIODIC:
  63. writel(clock_count_per_tick, base + TIMER1_BASE + REG_LOAD);
  64. writel(TIMER1_ENABLE, base + TIMER_CR);
  65. break;
  66. case CLOCK_EVT_MODE_UNUSED:
  67. case CLOCK_EVT_MODE_SHUTDOWN:
  68. default:
  69. writel(TIMER1_DISABLE, base + TIMER_CR);
  70. break;
  71. }
  72. }
  73. static int moxart_clkevt_next_event(unsigned long cycles,
  74. struct clock_event_device *unused)
  75. {
  76. u32 u;
  77. writel(TIMER1_DISABLE, base + TIMER_CR);
  78. u = readl(base + TIMER1_BASE + REG_COUNT) - cycles;
  79. writel(u, base + TIMER1_BASE + REG_MATCH1);
  80. writel(TIMER1_ENABLE, base + TIMER_CR);
  81. return 0;
  82. }
  83. static struct clock_event_device moxart_clockevent = {
  84. .name = "moxart_timer",
  85. .rating = 200,
  86. .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
  87. .set_mode = moxart_clkevt_mode,
  88. .set_next_event = moxart_clkevt_next_event,
  89. };
  90. static irqreturn_t moxart_timer_interrupt(int irq, void *dev_id)
  91. {
  92. struct clock_event_device *evt = dev_id;
  93. evt->event_handler(evt);
  94. return IRQ_HANDLED;
  95. }
  96. static struct irqaction moxart_timer_irq = {
  97. .name = "moxart-timer",
  98. .flags = IRQF_TIMER,
  99. .handler = moxart_timer_interrupt,
  100. .dev_id = &moxart_clockevent,
  101. };
  102. static void __init moxart_timer_init(struct device_node *node)
  103. {
  104. int ret, irq;
  105. unsigned long pclk;
  106. struct clk *clk;
  107. base = of_iomap(node, 0);
  108. if (!base)
  109. panic("%s: of_iomap failed\n", node->full_name);
  110. irq = irq_of_parse_and_map(node, 0);
  111. if (irq <= 0)
  112. panic("%s: irq_of_parse_and_map failed\n", node->full_name);
  113. ret = setup_irq(irq, &moxart_timer_irq);
  114. if (ret)
  115. panic("%s: setup_irq failed\n", node->full_name);
  116. clk = of_clk_get(node, 0);
  117. if (IS_ERR(clk))
  118. panic("%s: of_clk_get failed\n", node->full_name);
  119. pclk = clk_get_rate(clk);
  120. if (clocksource_mmio_init(base + TIMER2_BASE + REG_COUNT,
  121. "moxart_timer", pclk, 200, 32,
  122. clocksource_mmio_readl_down))
  123. panic("%s: clocksource_mmio_init failed\n", node->full_name);
  124. clock_count_per_tick = DIV_ROUND_CLOSEST(pclk, HZ);
  125. writel(~0, base + TIMER2_BASE + REG_LOAD);
  126. writel(TIMEREG_CR_2_ENABLE, base + TIMER_CR);
  127. moxart_clockevent.cpumask = cpumask_of(0);
  128. moxart_clockevent.irq = irq;
  129. /*
  130. * documentation is not publicly available:
  131. * min_delta / max_delta obtained by trial-and-error,
  132. * max_delta 0xfffffffe should be ok because count
  133. * register size is u32
  134. */
  135. clockevents_config_and_register(&moxart_clockevent, pclk,
  136. 0x4, 0xfffffffe);
  137. }
  138. CLOCKSOURCE_OF_DECLARE(moxart, "moxa,moxart-timer", moxart_timer_init);