4 * The default timer for the Level 2 sequencer interface
5 * Uses the (1/HZ sec) timer of kernel.
8 * Copyright (C) by Hannu Savolainen 1993-1997
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
15 * Thomas Sailer : ioctl code reworked (vmalloc/vfree removed)
16 * Andrew Veliath : adapted tmr2ticks from level 1 sequencer (avoid overflow)
18 #include <linux/spinlock.h>
19 #include "sound_config.h"
21 static volatile int opened
, tmr_running
;
22 static volatile time_t tmr_offs
, tmr_ctr
;
23 static volatile unsigned long ticks_offs
;
24 static volatile int curr_tempo
, curr_timebase
;
25 static volatile unsigned long curr_ticks
;
26 static volatile unsigned long next_event_time
;
27 static unsigned long prev_event_time
;
29 static void poll_def_tmr(unsigned long dummy
);
30 static DEFINE_SPINLOCK(lock
);
32 static struct timer_list def_tmr
= TIMER_INITIALIZER(poll_def_tmr
, 0, 0);
35 tmr2ticks(int tmr_value
)
38 * Convert timer ticks to MIDI ticks
44 /* tmr_value (ticks per sec) *
45 1000000 (usecs per sec) / HZ (ticks per sec) -=> usecs */
46 tmp
= tmr_value
* (1000000 / HZ
);
47 scale
= (60 * 1000000) / (curr_tempo
* curr_timebase
); /* usecs per MIDI tick */
48 return (tmp
+ scale
/ 2) / scale
;
52 poll_def_tmr(unsigned long dummy
)
59 def_tmr
.expires
= (1) + jiffies
;
67 curr_ticks
= ticks_offs
+ tmr2ticks(tmr_ctr
);
69 if (curr_ticks
>= next_event_time
)
71 next_event_time
= (unsigned long) -1;
84 spin_lock_irqsave(&lock
,flags
);
88 next_event_time
= (unsigned long) -1;
91 spin_unlock_irqrestore(&lock
,flags
);
95 def_tmr_open(int dev
, int mode
)
108 def_tmr
.expires
= (1) + jiffies
;
116 def_tmr_close(int dev
)
118 opened
= tmr_running
= 0;
123 def_tmr_event(int dev
, unsigned char *event
)
125 unsigned char cmd
= event
[1];
126 unsigned long parm
= *(int *) &event
[4];
131 parm
+= prev_event_time
;
137 if (parm
<= curr_ticks
) /* It's the time */
138 return TIMER_NOT_ARMED
;
141 next_event_time
= prev_event_time
= time
;
168 ticks_offs
+= tmr2ticks(tmr_ctr
);
175 seq_copy_to_input(event
, 8);
181 return TIMER_NOT_ARMED
;
185 def_tmr_get_time(int dev
)
193 /* same as sound_timer.c:timer_ioctl!? */
194 static int def_tmr_ioctl(int dev
, unsigned int cmd
, void __user
*arg
)
200 case SNDCTL_TMR_SOURCE
:
201 return __put_user(TMR_INTERNAL
, p
);
203 case SNDCTL_TMR_START
:
208 case SNDCTL_TMR_STOP
:
212 case SNDCTL_TMR_CONTINUE
:
216 case SNDCTL_TMR_TIMEBASE
:
217 if (__get_user(val
, p
))
226 return __put_user(curr_timebase
, p
);
228 case SNDCTL_TMR_TEMPO
:
229 if (__get_user(val
, p
))
237 ticks_offs
+= tmr2ticks(tmr_ctr
);
242 return __put_user(curr_tempo
, p
);
244 case SNDCTL_SEQ_CTRLRATE
:
245 if (__get_user(val
, p
))
247 if (val
!= 0) /* Can't change */
249 val
= ((curr_tempo
* curr_timebase
) + 30) / 60;
250 return __put_user(val
, p
);
252 case SNDCTL_SEQ_GETTIME
:
253 return __put_user(curr_ticks
, p
);
255 case SNDCTL_TMR_METRONOME
:
265 def_tmr_arm(int dev
, long time
)
268 time
= curr_ticks
+ 1;
269 else if (time
<= curr_ticks
) /* It's the time */
272 next_event_time
= prev_event_time
= time
;
277 struct sound_timer_operations default_sound_timer
=
279 .owner
= THIS_MODULE
,
280 .info
= {"System clock", 0},
281 .priority
= 0, /* Priority */
282 .devlink
= 0, /* Local device link */
283 .open
= def_tmr_open
,
284 .close
= def_tmr_close
,
285 .event
= def_tmr_event
,
286 .get_time
= def_tmr_get_time
,
287 .ioctl
= def_tmr_ioctl
,
288 .arm_timer
= def_tmr_arm