time.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * arch/arm/mach-netx/time.c
  3. *
  4. * Copyright (c) 2005 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
  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
  8. * as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #include <linux/init.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/irq.h>
  22. #include <linux/clocksource.h>
  23. #include <linux/io.h>
  24. #include <mach/hardware.h>
  25. #include <asm/mach/time.h>
  26. #include <mach/netx-regs.h>
  27. /*
  28. * IRQ handler for the timer
  29. */
  30. static irqreturn_t
  31. netx_timer_interrupt(int irq, void *dev_id)
  32. {
  33. timer_tick();
  34. /* acknowledge interrupt */
  35. writel(COUNTER_BIT(0), NETX_GPIO_IRQ);
  36. return IRQ_HANDLED;
  37. }
  38. static struct irqaction netx_timer_irq = {
  39. .name = "NetX Timer Tick",
  40. .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
  41. .handler = netx_timer_interrupt,
  42. };
  43. cycle_t netx_get_cycles(void)
  44. {
  45. return readl(NETX_GPIO_COUNTER_CURRENT(1));
  46. }
  47. static struct clocksource clocksource_netx = {
  48. .name = "netx_timer",
  49. .rating = 200,
  50. .read = netx_get_cycles,
  51. .mask = CLOCKSOURCE_MASK(32),
  52. .shift = 20,
  53. .flags = CLOCK_SOURCE_IS_CONTINUOUS,
  54. };
  55. /*
  56. * Set up timer interrupt
  57. */
  58. static void __init netx_timer_init(void)
  59. {
  60. /* disable timer initially */
  61. writel(0, NETX_GPIO_COUNTER_CTRL(0));
  62. /* Reset the timer value to zero */
  63. writel(0, NETX_GPIO_COUNTER_CURRENT(0));
  64. writel(LATCH, NETX_GPIO_COUNTER_MAX(0));
  65. /* acknowledge interrupt */
  66. writel(COUNTER_BIT(0), NETX_GPIO_IRQ);
  67. /* Enable the interrupt in the specific timer register and start timer */
  68. writel(COUNTER_BIT(0), NETX_GPIO_IRQ_ENABLE);
  69. writel(NETX_GPIO_COUNTER_CTRL_IRQ_EN | NETX_GPIO_COUNTER_CTRL_RUN,
  70. NETX_GPIO_COUNTER_CTRL(0));
  71. setup_irq(NETX_IRQ_TIMER0, &netx_timer_irq);
  72. /* Setup timer one for clocksource */
  73. writel(0, NETX_GPIO_COUNTER_CTRL(1));
  74. writel(0, NETX_GPIO_COUNTER_CURRENT(1));
  75. writel(0xFFFFFFFF, NETX_GPIO_COUNTER_MAX(1));
  76. writel(NETX_GPIO_COUNTER_CTRL_RUN,
  77. NETX_GPIO_COUNTER_CTRL(1));
  78. clocksource_netx.mult =
  79. clocksource_hz2mult(CLOCK_TICK_RATE, clocksource_netx.shift);
  80. clocksource_register(&clocksource_netx);
  81. }
  82. struct sys_timer netx_timer = {
  83. .init = netx_timer_init,
  84. };