rockchip_timer.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /*
  2. * Rockchip timer support
  3. *
  4. * Copyright (C) Daniel Lezcano <daniel.lezcano@linaro.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 version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/clk.h>
  11. #include <linux/clockchips.h>
  12. #include <linux/init.h>
  13. #include <linux/interrupt.h>
  14. #include <linux/of.h>
  15. #include <linux/of_address.h>
  16. #include <linux/of_irq.h>
  17. #define TIMER_NAME "rk_timer"
  18. #define TIMER_LOAD_COUNT0 0x00
  19. #define TIMER_LOAD_COUNT1 0x04
  20. #define TIMER_CONTROL_REG 0x10
  21. #define TIMER_INT_STATUS 0x18
  22. #define TIMER_DISABLE 0x0
  23. #define TIMER_ENABLE 0x1
  24. #define TIMER_MODE_FREE_RUNNING (0 << 1)
  25. #define TIMER_MODE_USER_DEFINED_COUNT (1 << 1)
  26. #define TIMER_INT_UNMASK (1 << 2)
  27. struct bc_timer {
  28. struct clock_event_device ce;
  29. void __iomem *base;
  30. u32 freq;
  31. };
  32. static struct bc_timer bc_timer;
  33. static inline struct bc_timer *rk_timer(struct clock_event_device *ce)
  34. {
  35. return container_of(ce, struct bc_timer, ce);
  36. }
  37. static inline void __iomem *rk_base(struct clock_event_device *ce)
  38. {
  39. return rk_timer(ce)->base;
  40. }
  41. static inline void rk_timer_disable(struct clock_event_device *ce)
  42. {
  43. writel_relaxed(TIMER_DISABLE, rk_base(ce) + TIMER_CONTROL_REG);
  44. }
  45. static inline void rk_timer_enable(struct clock_event_device *ce, u32 flags)
  46. {
  47. writel_relaxed(TIMER_ENABLE | TIMER_INT_UNMASK | flags,
  48. rk_base(ce) + TIMER_CONTROL_REG);
  49. }
  50. static void rk_timer_update_counter(unsigned long cycles,
  51. struct clock_event_device *ce)
  52. {
  53. writel_relaxed(cycles, rk_base(ce) + TIMER_LOAD_COUNT0);
  54. writel_relaxed(0, rk_base(ce) + TIMER_LOAD_COUNT1);
  55. }
  56. static void rk_timer_interrupt_clear(struct clock_event_device *ce)
  57. {
  58. writel_relaxed(1, rk_base(ce) + TIMER_INT_STATUS);
  59. }
  60. static inline int rk_timer_set_next_event(unsigned long cycles,
  61. struct clock_event_device *ce)
  62. {
  63. rk_timer_disable(ce);
  64. rk_timer_update_counter(cycles, ce);
  65. rk_timer_enable(ce, TIMER_MODE_USER_DEFINED_COUNT);
  66. return 0;
  67. }
  68. static int rk_timer_shutdown(struct clock_event_device *ce)
  69. {
  70. rk_timer_disable(ce);
  71. return 0;
  72. }
  73. static int rk_timer_set_periodic(struct clock_event_device *ce)
  74. {
  75. rk_timer_disable(ce);
  76. rk_timer_update_counter(rk_timer(ce)->freq / HZ - 1, ce);
  77. rk_timer_enable(ce, TIMER_MODE_FREE_RUNNING);
  78. return 0;
  79. }
  80. static irqreturn_t rk_timer_interrupt(int irq, void *dev_id)
  81. {
  82. struct clock_event_device *ce = dev_id;
  83. rk_timer_interrupt_clear(ce);
  84. if (clockevent_state_oneshot(ce))
  85. rk_timer_disable(ce);
  86. ce->event_handler(ce);
  87. return IRQ_HANDLED;
  88. }
  89. static void __init rk_timer_init(struct device_node *np)
  90. {
  91. struct clock_event_device *ce = &bc_timer.ce;
  92. struct clk *timer_clk;
  93. struct clk *pclk;
  94. int ret, irq;
  95. bc_timer.base = of_iomap(np, 0);
  96. if (!bc_timer.base) {
  97. pr_err("Failed to get base address for '%s'\n", TIMER_NAME);
  98. return;
  99. }
  100. pclk = of_clk_get_by_name(np, "pclk");
  101. if (IS_ERR(pclk)) {
  102. pr_err("Failed to get pclk for '%s'\n", TIMER_NAME);
  103. goto out_unmap;
  104. }
  105. if (clk_prepare_enable(pclk)) {
  106. pr_err("Failed to enable pclk for '%s'\n", TIMER_NAME);
  107. goto out_unmap;
  108. }
  109. timer_clk = of_clk_get_by_name(np, "timer");
  110. if (IS_ERR(timer_clk)) {
  111. pr_err("Failed to get timer clock for '%s'\n", TIMER_NAME);
  112. goto out_timer_clk;
  113. }
  114. if (clk_prepare_enable(timer_clk)) {
  115. pr_err("Failed to enable timer clock\n");
  116. goto out_timer_clk;
  117. }
  118. bc_timer.freq = clk_get_rate(timer_clk);
  119. irq = irq_of_parse_and_map(np, 0);
  120. if (!irq) {
  121. pr_err("Failed to map interrupts for '%s'\n", TIMER_NAME);
  122. goto out_irq;
  123. }
  124. ce->name = TIMER_NAME;
  125. ce->features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT;
  126. ce->set_next_event = rk_timer_set_next_event;
  127. ce->set_state_shutdown = rk_timer_shutdown;
  128. ce->set_state_periodic = rk_timer_set_periodic;
  129. ce->irq = irq;
  130. ce->cpumask = cpumask_of(0);
  131. ce->rating = 250;
  132. rk_timer_interrupt_clear(ce);
  133. rk_timer_disable(ce);
  134. ret = request_irq(irq, rk_timer_interrupt, IRQF_TIMER, TIMER_NAME, ce);
  135. if (ret) {
  136. pr_err("Failed to initialize '%s': %d\n", TIMER_NAME, ret);
  137. goto out_irq;
  138. }
  139. clockevents_config_and_register(ce, bc_timer.freq, 1, UINT_MAX);
  140. return;
  141. out_irq:
  142. clk_disable_unprepare(timer_clk);
  143. out_timer_clk:
  144. clk_disable_unprepare(pclk);
  145. out_unmap:
  146. iounmap(bc_timer.base);
  147. }
  148. CLOCKSOURCE_OF_DECLARE(rk_timer, "rockchip,rk3288-timer", rk_timer_init);