time.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * arch/arm/plat-iop/time.c
  3. *
  4. * Timer code for IOP32x and IOP33x based systems
  5. *
  6. * Author: Deepak Saxena <dsaxena@mvista.com>
  7. *
  8. * Copyright 2002-2003 MontaVista Software Inc.
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License as published by the
  12. * Free Software Foundation; either version 2 of the License, or (at your
  13. * option) any later version.
  14. */
  15. #include <linux/kernel.h>
  16. #include <linux/interrupt.h>
  17. #include <linux/time.h>
  18. #include <linux/init.h>
  19. #include <linux/timex.h>
  20. #include <linux/io.h>
  21. #include <mach/hardware.h>
  22. #include <asm/irq.h>
  23. #include <asm/uaccess.h>
  24. #include <asm/mach/irq.h>
  25. #include <asm/mach/time.h>
  26. #include <mach/time.h>
  27. static unsigned long ticks_per_jiffy;
  28. static unsigned long ticks_per_usec;
  29. static unsigned long next_jiffy_time;
  30. unsigned long iop_gettimeoffset(void)
  31. {
  32. unsigned long offset, temp;
  33. /* enable cp6, if necessary, to avoid taking the overhead of an
  34. * undefined instruction trap
  35. */
  36. asm volatile (
  37. "mrc p15, 0, %0, c15, c1, 0\n\t"
  38. "tst %0, #(1 << 6)\n\t"
  39. "orreq %0, %0, #(1 << 6)\n\t"
  40. "mcreq p15, 0, %0, c15, c1, 0\n\t"
  41. #ifdef CONFIG_CPU_XSCALE
  42. "mrceq p15, 0, %0, c15, c1, 0\n\t"
  43. "moveq %0, %0\n\t"
  44. "subeq pc, pc, #4\n\t"
  45. #endif
  46. : "=r"(temp) : : "cc");
  47. offset = next_jiffy_time - read_tcr1();
  48. return offset / ticks_per_usec;
  49. }
  50. static irqreturn_t
  51. iop_timer_interrupt(int irq, void *dev_id)
  52. {
  53. write_tisr(1);
  54. while ((signed long)(next_jiffy_time - read_tcr1())
  55. >= ticks_per_jiffy) {
  56. timer_tick();
  57. next_jiffy_time -= ticks_per_jiffy;
  58. }
  59. return IRQ_HANDLED;
  60. }
  61. static struct irqaction iop_timer_irq = {
  62. .name = "IOP Timer Tick",
  63. .handler = iop_timer_interrupt,
  64. .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
  65. };
  66. static unsigned long iop_tick_rate;
  67. unsigned long get_iop_tick_rate(void)
  68. {
  69. return iop_tick_rate;
  70. }
  71. EXPORT_SYMBOL(get_iop_tick_rate);
  72. void __init iop_init_time(unsigned long tick_rate)
  73. {
  74. u32 timer_ctl;
  75. ticks_per_jiffy = (tick_rate + HZ/2) / HZ;
  76. ticks_per_usec = tick_rate / 1000000;
  77. next_jiffy_time = 0xffffffff;
  78. iop_tick_rate = tick_rate;
  79. timer_ctl = IOP_TMR_EN | IOP_TMR_PRIVILEGED |
  80. IOP_TMR_RELOAD | IOP_TMR_RATIO_1_1;
  81. /*
  82. * We use timer 0 for our timer interrupt, and timer 1 as
  83. * monotonic counter for tracking missed jiffies.
  84. */
  85. write_trr0(ticks_per_jiffy - 1);
  86. write_tmr0(timer_ctl);
  87. write_trr1(0xffffffff);
  88. write_tmr1(timer_ctl);
  89. setup_irq(IRQ_IOP_TIMER0, &iop_timer_irq);
  90. }