timer.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * linux/arch/h8300/platform/h8s/generic/timer.c
  3. *
  4. * Yoshinori Sato <ysato@users.sourceforge.jp>
  5. *
  6. * Platform depend Timer Handler
  7. *
  8. */
  9. #include <linux/errno.h>
  10. #include <linux/sched.h>
  11. #include <linux/kernel.h>
  12. #include <linux/param.h>
  13. #include <linux/string.h>
  14. #include <linux/mm.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/init.h>
  17. #include <linux/timex.h>
  18. #include <asm/segment.h>
  19. #include <asm/io.h>
  20. #include <asm/irq.h>
  21. #include <asm/regs267x.h>
  22. #define CMFA 6
  23. #define CMIEA 0x40
  24. #define CCLR_CMA 0x08
  25. #define CLK_DIV8192 0x03
  26. #define H8300_TIMER_FREQ CONFIG_CPU_CLOCK*1000/8192 /* Timer input freq. */
  27. void __init platform_timer_setup(irqreturn_t (*timer_int)(int, void *, struct pt_regs *))
  28. {
  29. /* 8bit timer module enabled */
  30. ctrl_outb(ctrl_inb(MSTPCRL) & ~0x01, MSTPCRL);
  31. /* setup 8bit timer ch1 */
  32. ctrl_outb(H8300_TIMER_FREQ / HZ, _8TCORA1); /* set interval */
  33. ctrl_outb(0x00, _8TCSR1); /* no output */
  34. request_irq(76, timer_int, 0, "timer" ,0);
  35. ctrl_outb(CMIEA|CCLR_CMA|CLK_DIV8192, _8TCR1); /* start count */
  36. }
  37. void platform_timer_eoi(void)
  38. {
  39. *(volatile unsigned char *)_8TCSR1 &= ~(1 << CMFA);
  40. }
  41. void platform_gettod(int *year, int *mon, int *day, int *hour,
  42. int *min, int *sec)
  43. {
  44. *year = *mon = *day = *hour = *min = *sec = 0;
  45. }