time.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * arch/arm/mach-l7200/include/mach/time.h
  3. *
  4. * Copyright (C) 2000 Rob Scott (rscott@mtrob.fdns.net)
  5. * Steve Hill (sjhill@cotw.com)
  6. *
  7. * Changelog:
  8. * 01-02-2000 RS Created l7200 version, derived from rpc code
  9. * 05-03-2000 SJH Complete rewrite
  10. */
  11. #ifndef _ASM_ARCH_TIME_H
  12. #define _ASM_ARCH_TIME_H
  13. #include <mach/irqs.h>
  14. /*
  15. * RTC base register address
  16. */
  17. #define RTC_BASE (IO_BASE_2 + 0x2000)
  18. /*
  19. * RTC registers
  20. */
  21. #define RTC_RTCDR (*(volatile unsigned char *) (RTC_BASE + 0x000))
  22. #define RTC_RTCMR (*(volatile unsigned char *) (RTC_BASE + 0x004))
  23. #define RTC_RTCS (*(volatile unsigned char *) (RTC_BASE + 0x008))
  24. #define RTC_RTCC (*(volatile unsigned char *) (RTC_BASE + 0x008))
  25. #define RTC_RTCDV (*(volatile unsigned char *) (RTC_BASE + 0x00c))
  26. #define RTC_RTCCR (*(volatile unsigned char *) (RTC_BASE + 0x010))
  27. /*
  28. * RTCCR register values
  29. */
  30. #define RTC_RATE_32 0x00 /* 32 Hz tick */
  31. #define RTC_RATE_64 0x10 /* 64 Hz tick */
  32. #define RTC_RATE_128 0x20 /* 128 Hz tick */
  33. #define RTC_RATE_256 0x30 /* 256 Hz tick */
  34. #define RTC_EN_ALARM 0x01 /* Enable alarm */
  35. #define RTC_EN_TIC 0x04 /* Enable counter */
  36. #define RTC_EN_STWDOG 0x08 /* Enable watchdog */
  37. /*
  38. * Handler for RTC timer interrupt
  39. */
  40. static irqreturn_t
  41. timer_interrupt(int irq, void *dev_id)
  42. {
  43. struct pt_regs *regs = get_irq_regs();
  44. do_timer(1);
  45. #ifndef CONFIG_SMP
  46. update_process_times(user_mode(regs));
  47. #endif
  48. do_profile(regs);
  49. RTC_RTCC = 0; /* Clear interrupt */
  50. return IRQ_HANDLED;
  51. }
  52. /*
  53. * Set up RTC timer interrupt, and return the current time in seconds.
  54. */
  55. void __init time_init(void)
  56. {
  57. RTC_RTCC = 0; /* Clear interrupt */
  58. timer_irq.handler = timer_interrupt;
  59. setup_irq(IRQ_RTC_TICK, &timer_irq);
  60. RTC_RTCCR = RTC_RATE_128 | RTC_EN_TIC; /* Set rate and enable timer */
  61. }
  62. #endif