sys_timer.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * sound/sys_timer.c
  3.  *
  4.  * The default timer for the Level 2 sequencer interface
  5.  * Uses the (1/HZ sec) timer of kernel.
  6.  */
  7. /*
  8.  * Copyright (C) by Hannu Savolainen 1993-1997
  9.  *
  10.  * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
  11.  * Version 2 (June 1991). See the "COPYING" file distributed with this software
  12.  * for more info.
  13.  */
  14. /*
  15.  * Thomas Sailer   : ioctl code reworked (vmalloc/vfree removed)
  16.  * Andrew Veliath  : adapted tmr2ticks from level 1 sequencer (avoid overflow)
  17.  */
  18. #include "sound_config.h"
  19. static volatile int opened = 0, tmr_running = 0;
  20. static volatile time_t tmr_offs, tmr_ctr;
  21. static volatile unsigned long ticks_offs;
  22. static volatile int curr_tempo, curr_timebase;
  23. static volatile unsigned long curr_ticks;
  24. static volatile unsigned long next_event_time;
  25. static unsigned long prev_event_time;
  26. static void     poll_def_tmr(unsigned long dummy);
  27. static struct timer_list def_tmr =
  28. {function: poll_def_tmr};
  29. static unsigned long
  30. tmr2ticks(int tmr_value)
  31. {
  32. /*
  33.  *    Convert timer ticks to MIDI ticks
  34.  */
  35. unsigned long tmp;
  36. unsigned long scale;
  37. /* tmr_value (ticks per sec) *
  38.    1000000 (usecs per sec) / HZ (ticks per sec) -=> usecs */
  39. tmp = tmr_value * (1000000 / HZ);
  40. scale = (60 * 1000000) / (curr_tempo * curr_timebase); /* usecs per MIDI tick */
  41. return (tmp + scale / 2) / scale;
  42. }
  43. static void
  44. poll_def_tmr(unsigned long dummy)
  45. {
  46. if (opened)
  47.   {
  48.   {
  49.   def_tmr.expires = (1) + jiffies;
  50.   add_timer(&def_tmr);
  51.   };
  52.   if (tmr_running)
  53.     {
  54.     tmr_ctr++;
  55.     curr_ticks = ticks_offs + tmr2ticks(tmr_ctr);
  56.     if (curr_ticks >= next_event_time)
  57.       {
  58.       next_event_time = (unsigned long) -1;
  59.       sequencer_timer(0);
  60.       }
  61.     }
  62.   }
  63. }
  64. static void
  65. tmr_reset(void)
  66. {
  67. unsigned long   flags;
  68. save_flags(flags);
  69. cli();
  70. tmr_offs = 0;
  71. ticks_offs = 0;
  72. tmr_ctr = 0;
  73. next_event_time = (unsigned long) -1;
  74. prev_event_time = 0;
  75. curr_ticks = 0;
  76. restore_flags(flags);
  77. }
  78. static int
  79. def_tmr_open(int dev, int mode)
  80. {
  81. if (opened)
  82. return -EBUSY;
  83. tmr_reset();
  84. curr_tempo = 60;
  85. curr_timebase = 100;
  86. opened = 1;
  87. ;
  88. {
  89. def_tmr.expires = (1) + jiffies;
  90. add_timer(&def_tmr);
  91. };
  92. return 0;
  93. }
  94. static void
  95. def_tmr_close(int dev)
  96. {
  97. opened = tmr_running = 0;
  98. del_timer(&def_tmr);;
  99. }
  100. static int
  101. def_tmr_event(int dev, unsigned char *event)
  102. {
  103. unsigned char   cmd = event[1];
  104. unsigned long   parm = *(int *) &event[4];
  105. switch (cmd)
  106.   {
  107.   case TMR_WAIT_REL:
  108.   parm += prev_event_time;
  109.   case TMR_WAIT_ABS:
  110.   if (parm > 0)
  111.     {
  112.     long            time;
  113.     if (parm <= curr_ticks) /* It's the time */
  114.     return TIMER_NOT_ARMED;
  115.     time = parm;
  116.     next_event_time = prev_event_time = time;
  117.     return TIMER_ARMED;
  118.     }
  119.   break;
  120.   case TMR_START:
  121.   tmr_reset();
  122.   tmr_running = 1;
  123.   break;
  124.   case TMR_STOP:
  125.   tmr_running = 0;
  126.   break;
  127.   case TMR_CONTINUE:
  128.   tmr_running = 1;
  129.   break;
  130.   case TMR_TEMPO:
  131.   if (parm)
  132.     {
  133.     if (parm < 8)
  134.     parm = 8;
  135.     if (parm > 360)
  136.     parm = 360;
  137.     tmr_offs = tmr_ctr;
  138.     ticks_offs += tmr2ticks(tmr_ctr);
  139.     tmr_ctr = 0;
  140.     curr_tempo = parm;
  141.     }
  142.   break;
  143.   case TMR_ECHO:
  144.   seq_copy_to_input(event, 8);
  145.   break;
  146.   default:;
  147.   }
  148. return TIMER_NOT_ARMED;
  149. }
  150. static unsigned long
  151. def_tmr_get_time(int dev)
  152. {
  153. if (!opened)
  154. return 0;
  155. return curr_ticks;
  156. }
  157. /* same as sound_timer.c:timer_ioctl!? */
  158. static int def_tmr_ioctl(int dev, unsigned int cmd, caddr_t arg)
  159. {
  160. int val;
  161. switch (cmd) {
  162. case SNDCTL_TMR_SOURCE:
  163. return __put_user(TMR_INTERNAL, (int *)arg);
  164. case SNDCTL_TMR_START:
  165. tmr_reset();
  166. tmr_running = 1;
  167. return 0;
  168. case SNDCTL_TMR_STOP:
  169. tmr_running = 0;
  170. return 0;
  171. case SNDCTL_TMR_CONTINUE:
  172. tmr_running = 1;
  173. return 0;
  174. case SNDCTL_TMR_TIMEBASE:
  175. if (__get_user(val, (int *)arg))
  176. return -EFAULT;
  177. if (val) {
  178. if (val < 1)
  179. val = 1;
  180. if (val > 1000)
  181. val = 1000;
  182. curr_timebase = val;
  183. }
  184. return __put_user(curr_timebase, (int *)arg);
  185. case SNDCTL_TMR_TEMPO:
  186. if (__get_user(val, (int *)arg))
  187. return -EFAULT;
  188. if (val) {
  189. if (val < 8)
  190. val = 8;
  191. if (val > 250)
  192. val = 250;
  193. tmr_offs = tmr_ctr;
  194. ticks_offs += tmr2ticks(tmr_ctr);
  195. tmr_ctr = 0;
  196. curr_tempo = val;
  197. reprogram_timer();
  198. }
  199. return __put_user(curr_tempo, (int *)arg);
  200. case SNDCTL_SEQ_CTRLRATE:
  201. if (__get_user(val, (int *)arg))
  202. return -EFAULT;
  203. if (val != 0) /* Can't change */
  204. return -EINVAL;
  205. val = ((curr_tempo * curr_timebase) + 30) / 60;
  206. return __put_user(val, (int *)arg);
  207. case SNDCTL_SEQ_GETTIME:
  208. return __put_user(curr_ticks, (int *)arg);
  209. case SNDCTL_TMR_METRONOME:
  210. /* NOP */
  211. break;
  212. default:;
  213. }
  214. return -EINVAL;
  215. }
  216. static void
  217. def_tmr_arm(int dev, long time)
  218. {
  219. if (time < 0)
  220. time = curr_ticks + 1;
  221. else if (time <= curr_ticks) /* It's the time */
  222. return;
  223. next_event_time = prev_event_time = time;
  224. return;
  225. }
  226. struct sound_timer_operations default_sound_timer =
  227. {
  228. owner: THIS_MODULE,
  229. info: {"System clock", 0},
  230. priority: 0, /* Priority */
  231. devlink: 0, /* Local device link */
  232. open: def_tmr_open,
  233. close: def_tmr_close,
  234. event: def_tmr_event,
  235. get_time: def_tmr_get_time,
  236. ioctl: def_tmr_ioctl,
  237. arm_timer: def_tmr_arm
  238. };