4 * The sequencer personality manager.
7 * Copyright (C) by Hannu Savolainen 1993-1997
9 * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
10 * Version 2 (June 1991). See the "COPYING" file distributed with this software
14 * Thomas Sailer : ioctl code reworked (vmalloc/vfree removed)
15 * Alan Cox : reformatted and fixed a pair of null pointer bugs
17 #include <linux/kmod.h>
18 #include <linux/spinlock.h>
20 #include "sound_config.h"
22 #include "midi_ctrl.h"
24 static int sequencer_ok;
25 static struct sound_timer_operations *tmr;
26 static int tmr_no = -1; /* Currently selected timer */
27 static int pending_timer = -1; /* For timer change operation */
28 extern unsigned long seq_time;
30 static int obsolete_api_used;
31 static DEFINE_SPINLOCK(lock);
34 * Local counts for number of synth and MIDI devices. These are initialized
35 * by the sequencer_open.
37 static int max_mididev;
38 static int max_synthdev;
41 * The seq_mode gives the operating mode of the sequencer:
42 * 1 = level1 (the default)
43 * 2 = level2 (extended capabilities)
48 static int seq_mode = SEQ_1;
50 static DECLARE_WAIT_QUEUE_HEAD(seq_sleeper);
51 static DECLARE_WAIT_QUEUE_HEAD(midi_sleeper);
53 static int midi_opened[MAX_MIDI_DEV];
55 static int midi_written[MAX_MIDI_DEV];
57 static unsigned long prev_input_time;
58 static int prev_event_time;
65 static unsigned char *queue;
66 static unsigned char *iqueue;
68 static volatile int qhead, qtail, qlen;
69 static volatile int iqhead, iqtail, iqlen;
70 static volatile int seq_playing;
71 static volatile int sequencer_busy;
72 static int output_threshold;
73 static long pre_event_timeout;
74 static unsigned synth_open_mask;
76 static int seq_queue(unsigned char *note, char nonblock);
77 static void seq_startplay(void);
78 static int seq_sync(void);
79 static void seq_reset(void);
81 #if MAX_SYNTH_DEV > 15
82 #error Too many synthesizer devices enabled.
85 int sequencer_read(int dev, struct file *file, char __user *buf, int count)
93 ev_len = seq_mode == SEQ_1 ? 4 : 8;
95 spin_lock_irqsave(&lock,flags);
99 spin_unlock_irqrestore(&lock,flags);
100 if (file->f_flags & O_NONBLOCK) {
104 interruptible_sleep_on_timeout(&midi_sleeper,
106 spin_lock_irqsave(&lock,flags);
109 spin_unlock_irqrestore(&lock,flags);
113 while (iqlen && c >= ev_len)
115 char *fixit = (char *) &iqueue[iqhead * IEV_SZ];
116 spin_unlock_irqrestore(&lock,flags);
117 if (copy_to_user(&(buf)[p], fixit, ev_len))
122 spin_lock_irqsave(&lock,flags);
123 iqhead = (iqhead + 1) % SEQ_MAX_QUEUE;
126 spin_unlock_irqrestore(&lock,flags);
130 static void sequencer_midi_output(int dev)
137 void seq_copy_to_input(unsigned char *event_rec, int len)
142 * Verify that the len is valid for the current mode.
145 if (len != 4 && len != 8)
147 if ((seq_mode == SEQ_1) != (len == 4))
150 if (iqlen >= (SEQ_MAX_QUEUE - 1))
151 return; /* Overflow */
153 spin_lock_irqsave(&lock,flags);
154 memcpy(&iqueue[iqtail * IEV_SZ], event_rec, len);
156 iqtail = (iqtail + 1) % SEQ_MAX_QUEUE;
157 wake_up(&midi_sleeper);
158 spin_unlock_irqrestore(&lock,flags);
161 static void sequencer_midi_input(int dev, unsigned char data)
164 unsigned char event_rec[4];
166 if (data == 0xfe) /* Ignore active sensing */
169 tstamp = jiffies - seq_time;
171 if (tstamp != prev_input_time)
173 tstamp = (tstamp << 8) | SEQ_WAIT;
174 seq_copy_to_input((unsigned char *) &tstamp, 4);
175 prev_input_time = tstamp;
177 event_rec[0] = SEQ_MIDIPUTC;
182 seq_copy_to_input(event_rec, 4);
185 void seq_input_event(unsigned char *event_rec, int len)
187 unsigned long this_time;
189 if (seq_mode == SEQ_2)
190 this_time = tmr->get_time(tmr_no);
192 this_time = jiffies - seq_time;
194 if (this_time != prev_input_time)
196 unsigned char tmp_event[8];
198 tmp_event[0] = EV_TIMING;
199 tmp_event[1] = TMR_WAIT_ABS;
202 *(unsigned int *) &tmp_event[4] = this_time;
204 seq_copy_to_input(tmp_event, 8);
205 prev_input_time = this_time;
207 seq_copy_to_input(event_rec, len);
210 int sequencer_write(int dev, struct file *file, const char __user *buf, int count)
212 unsigned char event_rec[EV_SZ], ev_code;
213 int p = 0, c, ev_size;
215 int mode = translate_mode(file);
219 DEB(printk("sequencer_write(dev=%d, count=%d)\n", dev, count));
221 if (mode == OPEN_READ)
228 if (copy_from_user((char *) event_rec, &(buf)[p], 4))
230 ev_code = event_rec[0];
232 if (ev_code == SEQ_FULLSIZE)
236 dev = *(unsigned short *) &event_rec[2];
237 if (dev < 0 || dev >= max_synthdev || synth_devs[dev] == NULL)
240 if (!(synth_open_mask & (1 << dev)))
243 fmt = (*(short *) &event_rec[0]) & 0xffff;
244 err = synth_devs[dev]->load_patch(dev, fmt, buf, p + 4, c, 0);
252 if (seq_mode == SEQ_2 && ev_code == SEQ_EXTENDED)
254 printk(KERN_WARNING "Sequencer: Invalid level 2 event %x\n", ev_code);
265 if (copy_from_user((char *)&event_rec[4],
272 if (seq_mode == SEQ_2)
274 printk(KERN_WARNING "Sequencer: 4 byte event in level 2 mode\n");
279 if (event_rec[0] != SEQ_MIDIPUTC)
280 obsolete_api_used = 1;
283 if (event_rec[0] == SEQ_MIDIPUTC)
285 if (!midi_opened[event_rec[2]])
288 int dev = event_rec[2];
290 if (dev >= max_mididev || midi_devs[dev]==NULL)
292 /*printk("Sequencer Error: Nonexistent MIDI device %d\n", dev);*/
295 mode = translate_mode(file);
297 if ((err = midi_devs[dev]->open(dev, mode,
298 sequencer_midi_input, sequencer_midi_output)) < 0)
301 printk(KERN_WARNING "Sequencer Error: Unable to open Midi #%d\n", dev);
304 midi_opened[dev] = 1;
307 if (!seq_queue(event_rec, (file->f_flags & (O_NONBLOCK) ? 1 : 0)))
309 int processed = count - c;
314 if (!processed && (file->f_flags & O_NONBLOCK))
329 static int seq_queue(unsigned char *note, char nonblock)
333 * Test if there is space in the queue
336 if (qlen >= SEQ_MAX_QUEUE)
339 * Give chance to drain the queue
342 if (!nonblock && qlen >= SEQ_MAX_QUEUE && !waitqueue_active(&seq_sleeper)) {
344 * Sleep until there is enough space on the queue
346 interruptible_sleep_on(&seq_sleeper);
348 if (qlen >= SEQ_MAX_QUEUE)
354 memcpy(&queue[qtail * EV_SZ], note, EV_SZ);
356 qtail = (qtail + 1) % SEQ_MAX_QUEUE;
362 static int extended_event(unsigned char *q)
366 if (dev < 0 || dev >= max_synthdev)
369 if (!(synth_open_mask & (1 << dev)))
375 synth_devs[dev]->kill_note(dev, q[3], q[4], q[5]);
379 if (q[4] > 127 && q[4] != 255)
384 synth_devs[dev]->kill_note(dev, q[3], q[4], q[5]);
387 synth_devs[dev]->start_note(dev, q[3], q[4], q[5]);
391 synth_devs[dev]->set_instr(dev, q[3], q[4]);
395 synth_devs[dev]->aftertouch(dev, q[3], q[4]);
399 synth_devs[dev]->panning(dev, q[3], (char) q[4]);
403 synth_devs[dev]->controller(dev, q[3], q[4], (short) (q[5] | (q[6] << 8)));
407 if (synth_devs[dev]->volume_method != NULL)
408 synth_devs[dev]->volume_method(dev, q[3]);
417 static int find_voice(int dev, int chn, int note)
422 key = (chn << 8) | (note + 1);
423 for (i = 0; i < synth_devs[dev]->alloc.max_voice; i++)
424 if (synth_devs[dev]->alloc.map[i] == key)
429 static int alloc_voice(int dev, int chn, int note)
434 key = (chn << 8) | (note + 1);
436 voice = synth_devs[dev]->alloc_voice(dev, chn, note,
437 &synth_devs[dev]->alloc);
438 synth_devs[dev]->alloc.map[voice] = key;
439 synth_devs[dev]->alloc.alloc_times[voice] =
440 synth_devs[dev]->alloc.timestamp++;
444 static void seq_chn_voice_event(unsigned char *event_rec)
446 #define dev event_rec[1]
447 #define cmd event_rec[2]
448 #define chn event_rec[3]
449 #define note event_rec[4]
450 #define parm event_rec[5]
454 if ((int) dev > max_synthdev || synth_devs[dev] == NULL)
456 if (!(synth_open_mask & (1 << dev)))
458 if (!synth_devs[dev])
461 if (seq_mode == SEQ_2)
463 if (synth_devs[dev]->alloc_voice)
464 voice = find_voice(dev, chn, note);
466 if (cmd == MIDI_NOTEON && parm == 0)
476 if (note > 127 && note != 255) /* Not a seq2 feature */
479 if (voice == -1 && seq_mode == SEQ_2 && synth_devs[dev]->alloc_voice)
481 /* Internal synthesizer (FM, GUS, etc) */
482 voice = alloc_voice(dev, chn, note);
487 if (seq_mode == SEQ_2 && (int) dev < num_synths)
490 * The MIDI channel 10 is a percussive channel. Use the note
491 * number to select the proper patch (128 to 255) to play.
496 synth_devs[dev]->set_instr(dev, voice, 128 + note);
497 synth_devs[dev]->chn_info[chn].pgm_num = 128 + note;
499 synth_devs[dev]->setup_voice(dev, voice, chn);
501 synth_devs[dev]->start_note(dev, voice, note, parm);
507 synth_devs[dev]->kill_note(dev, voice, note, parm);
510 case MIDI_KEY_PRESSURE:
513 synth_devs[dev]->aftertouch(dev, voice, parm);
526 static void seq_chn_common_event(unsigned char *event_rec)
528 unsigned char dev = event_rec[1];
529 unsigned char cmd = event_rec[2];
530 unsigned char chn = event_rec[3];
531 unsigned char p1 = event_rec[4];
533 /* unsigned char p2 = event_rec[5]; */
534 unsigned short w14 = *(short *) &event_rec[6];
536 if ((int) dev > max_synthdev || synth_devs[dev] == NULL)
538 if (!(synth_open_mask & (1 << dev)))
540 if (!synth_devs[dev])
545 case MIDI_PGM_CHANGE:
546 if (seq_mode == SEQ_2)
548 synth_devs[dev]->chn_info[chn].pgm_num = p1;
549 if ((int) dev >= num_synths)
550 synth_devs[dev]->set_instr(dev, chn, p1);
553 synth_devs[dev]->set_instr(dev, chn, p1);
557 case MIDI_CTL_CHANGE:
558 if (seq_mode == SEQ_2)
560 if (chn > 15 || p1 > 127)
563 synth_devs[dev]->chn_info[chn].controllers[p1] = w14 & 0x7f;
565 if (p1 < 32) /* Setting MSB should clear LSB to 0 */
566 synth_devs[dev]->chn_info[chn].controllers[p1 + 32] = 0;
568 if ((int) dev < num_synths)
570 int val = w14 & 0x7f;
573 if (p1 < 64) /* Combine MSB and LSB */
575 val = ((synth_devs[dev]->
576 chn_info[chn].controllers[p1 & ~32] & 0x7f) << 7)
578 chn_info[chn].controllers[p1 | 32] & 0x7f);
581 /* Handle all playing notes on this channel */
583 key = ((int) chn << 8);
585 for (i = 0; i < synth_devs[dev]->alloc.max_voice; i++)
586 if ((synth_devs[dev]->alloc.map[i] & 0xff00) == key)
587 synth_devs[dev]->controller(dev, i, p1, val);
590 synth_devs[dev]->controller(dev, chn, p1, w14);
593 synth_devs[dev]->controller(dev, chn, p1, w14);
596 case MIDI_PITCH_BEND:
597 if (seq_mode == SEQ_2)
599 synth_devs[dev]->chn_info[chn].bender_value = w14;
601 if ((int) dev < num_synths)
603 /* Handle all playing notes on this channel */
608 for (i = 0; i < synth_devs[dev]->alloc.max_voice; i++)
609 if ((synth_devs[dev]->alloc.map[i] & 0xff00) == key)
610 synth_devs[dev]->bender(dev, i, w14);
613 synth_devs[dev]->bender(dev, chn, w14);
616 synth_devs[dev]->bender(dev, chn, w14);
623 static int seq_timing_event(unsigned char *event_rec)
625 unsigned char cmd = event_rec[1];
626 unsigned int parm = *(int *) &event_rec[4];
628 if (seq_mode == SEQ_2)
632 if ((ret = tmr->event(tmr_no, event_rec)) == TIMER_ARMED)
633 if ((SEQ_MAX_QUEUE - qlen) >= output_threshold)
634 wake_up(&seq_sleeper);
640 parm += prev_event_time;
643 * NOTE! No break here. Execution of TMR_WAIT_REL continues in the
644 * next case (TMR_WAIT_ABS)
653 prev_event_time = time;
656 request_sound_timer(time);
658 if ((SEQ_MAX_QUEUE - qlen) >= output_threshold)
659 wake_up(&seq_sleeper);
680 if (seq_mode == SEQ_2)
681 seq_copy_to_input(event_rec, 8);
684 parm = (parm << 8 | SEQ_ECHO);
685 seq_copy_to_input((unsigned char *) &parm, 4);
692 return TIMER_NOT_ARMED;
695 static void seq_local_event(unsigned char *event_rec)
697 unsigned char cmd = event_rec[1];
698 unsigned int parm = *((unsigned int *) &event_rec[4]);
702 case LOCL_STARTAUDIO:
703 DMAbuf_start_devices(parm);
710 static void seq_sysex_message(unsigned char *event_rec)
712 unsigned int dev = event_rec[1];
714 unsigned char *buf = &event_rec[2];
716 if (dev > max_synthdev)
718 if (!(synth_open_mask & (1 << dev)))
720 if (!synth_devs[dev])
724 for (i = 0; i < 6 && buf[i] != 0xff; i++)
727 if (!synth_devs[dev]->send_sysex)
730 synth_devs[dev]->send_sysex(dev, buf, l);
733 static int play_event(unsigned char *q)
736 * NOTE! This routine returns
737 * 0 = normal event played.
738 * 1 = Timer armed. Suspend playback until timer callback.
739 * 2 = MIDI output buffer full. Restore queue and suspend until timer
746 if (synth_open_mask & (1 << 0))
748 synth_devs[0]->kill_note(0, q[1], 255, q[3]);
752 if (q[4] < 128 || q[4] == 255)
753 if (synth_open_mask & (1 << 0))
755 synth_devs[0]->start_note(0, q[1], q[2], q[3]);
759 delay = (unsigned int *) q; /*
760 * Bytes 1 to 3 are containing the *
763 *delay = (*delay >> 8) & 0xffffff;
771 prev_event_time = time;
773 request_sound_timer(time);
775 if ((SEQ_MAX_QUEUE - qlen) >= output_threshold)
776 wake_up(&seq_sleeper);
778 * The timer is now active and will reinvoke this function
779 * after the timer expires. Return to the caller now.
786 if (synth_open_mask & (1 << 0))
788 synth_devs[0]->set_instr(0, q[1], q[2]);
791 case SEQ_SYNCTIMER: /*
799 case SEQ_MIDIPUTC: /*
800 * Put a midi character
802 if (midi_opened[q[2]])
808 if (dev < 0 || dev >= num_midis || midi_devs[dev] == NULL)
811 if (!midi_devs[dev]->outputc(dev, q[1]))
814 * Output FIFO is full. Wait one timer cycle and try again.
818 request_sound_timer(-1);
822 midi_written[dev] = 1;
827 seq_copy_to_input(q, 4); /*
828 * Echo back to the process
833 if ((int) q[1] < max_synthdev)
834 synth_devs[q[1]]->hw_control(q[1], q);
842 seq_chn_voice_event(q);
846 seq_chn_common_event(q);
850 if (seq_timing_event(q) == TIMER_ARMED)
861 seq_sysex_message(q);
869 /* called also as timer in irq context */
870 static void seq_startplay(void)
872 int this_one, action;
878 spin_lock_irqsave(&lock,flags);
879 qhead = ((this_one = qhead) + 1) % SEQ_MAX_QUEUE;
881 spin_unlock_irqrestore(&lock,flags);
885 if ((action = play_event(&queue[this_one * EV_SZ])))
886 { /* Suspend playback. Next timer routine invokes this routine again */
898 if ((SEQ_MAX_QUEUE - qlen) >= output_threshold)
899 wake_up(&seq_sleeper);
902 static void reset_controllers(int dev, unsigned char *controller, int update_dev)
905 for (i = 0; i < 128; i++)
906 controller[i] = ctrl_def_values[i];
909 static void setup_mode2(void)
913 max_synthdev = num_synths;
915 for (dev = 0; dev < num_midis; dev++)
917 if (midi_devs[dev] && midi_devs[dev]->converter != NULL)
919 synth_devs[max_synthdev++] = midi_devs[dev]->converter;
923 for (dev = 0; dev < max_synthdev; dev++)
927 synth_devs[dev]->sysex_ptr = 0;
928 synth_devs[dev]->emulation = 0;
930 for (chn = 0; chn < 16; chn++)
932 synth_devs[dev]->chn_info[chn].pgm_num = 0;
933 reset_controllers(dev,
934 synth_devs[dev]->chn_info[chn].controllers,0);
935 synth_devs[dev]->chn_info[chn].bender_value = (1 << 7); /* Neutral */
936 synth_devs[dev]->chn_info[chn].bender_range = 200;
943 int sequencer_open(int dev, struct file *file)
951 level = ((dev & 0x0f) == SND_DEV_SEQ2) ? 2 : 1;
954 mode = translate_mode(file);
956 DEB(printk("sequencer_open(dev=%d)\n", dev));
960 /* printk("Sound card: sequencer not initialized\n");*/
963 if (dev) /* Patch manager device (obsolete) */
966 if(synth_devs[dev] == NULL)
967 request_module("synth0");
969 if (mode == OPEN_READ)
973 /*printk("Sequencer: No MIDI devices. Input not possible\n");*/
983 obsolete_api_used = 0;
985 max_mididev = num_midis;
986 max_synthdev = num_synths;
987 pre_event_timeout = MAX_SCHEDULE_TIMEOUT;
990 if (pending_timer != -1)
992 tmr_no = pending_timer;
995 if (tmr_no == -1) /* Not selected yet */
1000 for (i = 0; i < num_sound_timers; i++)
1001 if (sound_timer_devs[i] && sound_timer_devs[i]->priority > best)
1004 best = sound_timer_devs[i]->priority;
1006 if (tmr_no == -1) /* Should not be */
1009 tmr = sound_timer_devs[tmr_no];
1015 /*printk("sequencer: No timer for level 2\n");*/
1021 if (!max_synthdev && !max_mididev)
1027 synth_open_mask = 0;
1029 for (i = 0; i < max_mididev; i++)
1032 midi_written[i] = 0;
1035 for (i = 0; i < max_synthdev; i++)
1037 if (synth_devs[i]==NULL)
1040 if (!try_module_get(synth_devs[i]->owner))
1043 if ((tmp = synth_devs[i]->open(i, mode)) < 0)
1045 printk(KERN_WARNING "Sequencer: Warning! Cannot open synth device #%d (%d)\n", i, tmp);
1046 if (synth_devs[i]->midi_dev)
1047 printk(KERN_WARNING "(Maps to MIDI dev #%d)\n", synth_devs[i]->midi_dev);
1051 synth_open_mask |= (1 << i);
1052 if (synth_devs[i]->midi_dev)
1053 midi_opened[synth_devs[i]->midi_dev] = 1;
1059 prev_input_time = 0;
1060 prev_event_time = 0;
1062 if (seq_mode == SEQ_1 && (mode == OPEN_READ || mode == OPEN_READWRITE))
1065 * Initialize midi input devices
1068 for (i = 0; i < max_mididev; i++)
1069 if (!midi_opened[i] && midi_devs[i])
1071 if (!try_module_get(midi_devs[i]->owner))
1074 if ((retval = midi_devs[i]->open(i, mode,
1075 sequencer_midi_input, sequencer_midi_output)) >= 0)
1082 if (seq_mode == SEQ_2) {
1083 if (try_module_get(tmr->owner))
1084 tmr->open(tmr_no, seq_mode);
1087 init_waitqueue_head(&seq_sleeper);
1088 init_waitqueue_head(&midi_sleeper);
1089 output_threshold = SEQ_MAX_QUEUE / 2;
1094 static void seq_drain_midi_queues(void)
1099 * Give the Midi drivers time to drain their output queues
1104 while (!signal_pending(current) && n)
1108 for (i = 0; i < max_mididev; i++)
1109 if (midi_opened[i] && midi_written[i])
1110 if (midi_devs[i]->buffer_status != NULL)
1111 if (midi_devs[i]->buffer_status(i))
1115 * Let's have a delay
1119 interruptible_sleep_on_timeout(&seq_sleeper,
1124 void sequencer_release(int dev, struct file *file)
1127 int mode = translate_mode(file);
1131 DEB(printk("sequencer_release(dev=%d)\n", dev));
1134 * Wait until the queue is empty (if we don't have nonblock)
1137 if (mode != OPEN_READ && !(file->f_flags & O_NONBLOCK))
1139 while (!signal_pending(current) && qlen > 0)
1142 interruptible_sleep_on_timeout(&seq_sleeper,
1148 if (mode != OPEN_READ)
1149 seq_drain_midi_queues(); /*
1150 * Ensure the output queues are empty
1153 if (mode != OPEN_READ)
1154 seq_drain_midi_queues(); /*
1155 * Flush the all notes off messages
1158 for (i = 0; i < max_synthdev; i++)
1160 if (synth_open_mask & (1 << i)) /*
1165 synth_devs[i]->close(i);
1167 module_put(synth_devs[i]->owner);
1169 if (synth_devs[i]->midi_dev)
1170 midi_opened[synth_devs[i]->midi_dev] = 0;
1174 for (i = 0; i < max_mididev; i++)
1176 if (midi_opened[i]) {
1177 midi_devs[i]->close(i);
1178 module_put(midi_devs[i]->owner);
1182 if (seq_mode == SEQ_2) {
1184 module_put(tmr->owner);
1187 if (obsolete_api_used)
1188 printk(KERN_WARNING "/dev/music: Obsolete (4 byte) API was used by %s\n", current->comm);
1192 static int seq_sync(void)
1194 if (qlen && !seq_playing && !signal_pending(current))
1198 interruptible_sleep_on_timeout(&seq_sleeper, HZ);
1202 static void midi_outc(int dev, unsigned char data)
1205 * NOTE! Calls sleep(). Don't call this from interrupt.
1209 unsigned long flags;
1212 * This routine sends one byte to the Midi channel.
1213 * If the output FIFO is full, it waits until there
1214 * is space in the queue
1217 n = 3 * HZ; /* Timeout */
1219 spin_lock_irqsave(&lock,flags);
1220 while (n && !midi_devs[dev]->outputc(dev, data)) {
1221 interruptible_sleep_on_timeout(&seq_sleeper, HZ/25);
1224 spin_unlock_irqrestore(&lock,flags);
1227 static void seq_reset(void)
1230 * NOTE! Calls sleep(). Don't call this from interrupt.
1235 unsigned long flags;
1240 prev_input_time = 0;
1241 prev_event_time = 0;
1243 qlen = qhead = qtail = 0;
1244 iqlen = iqhead = iqtail = 0;
1246 for (i = 0; i < max_synthdev; i++)
1247 if (synth_open_mask & (1 << i))
1249 synth_devs[i]->reset(i);
1251 if (seq_mode == SEQ_2)
1253 for (chn = 0; chn < 16; chn++)
1254 for (i = 0; i < max_synthdev; i++)
1255 if (synth_open_mask & (1 << i))
1258 synth_devs[i]->controller(i, chn, 123, 0); /* All notes off */
1259 synth_devs[i]->controller(i, chn, 121, 0); /* Reset all ctl */
1260 synth_devs[i]->bender(i, chn, 1 << 13); /* Bender off */
1263 else /* seq_mode == SEQ_1 */
1265 for (i = 0; i < max_mididev; i++)
1266 if (midi_written[i]) /*
1267 * Midi used. Some notes may still be playing
1271 * Sending just a ACTIVE SENSING message should be enough to stop all
1272 * playing notes. Since there are devices not recognizing the
1273 * active sensing, we have to send some all notes off messages also.
1277 for (chn = 0; chn < 16; chn++)
1279 midi_outc(i, (unsigned char) (0xb0 + (chn & 0x0f))); /* control change */
1280 midi_outc(i, 0x7b); /* All notes off */
1281 midi_outc(i, 0); /* Dummy parameter */
1284 midi_devs[i]->close(i);
1286 midi_written[i] = 0;
1293 spin_lock_irqsave(&lock,flags);
1295 if (waitqueue_active(&seq_sleeper)) {
1296 /* printk( "Sequencer Warning: Unexpected sleeping process - Waking up\n"); */
1297 wake_up(&seq_sleeper);
1299 spin_unlock_irqrestore(&lock,flags);
1302 static void seq_panic(void)
1305 * This routine is called by the application in case the user
1306 * wants to reset the system to the default state.
1312 * Since some of the devices don't recognize the active sensing and
1313 * all notes off messages, we have to shut all notes manually.
1315 * TO BE IMPLEMENTED LATER
1319 * Also return the controllers to their default states
1323 int sequencer_ioctl(int dev, struct file *file, unsigned int cmd, void __user *arg)
1325 int midi_dev, orig_dev, val, err;
1326 int mode = translate_mode(file);
1327 struct synth_info inf;
1328 struct seq_event_rec event_rec;
1329 unsigned long flags;
1330 int __user *p = arg;
1332 orig_dev = dev = dev >> 4;
1336 case SNDCTL_TMR_TIMEBASE:
1337 case SNDCTL_TMR_TEMPO:
1338 case SNDCTL_TMR_START:
1339 case SNDCTL_TMR_STOP:
1340 case SNDCTL_TMR_CONTINUE:
1341 case SNDCTL_TMR_METRONOME:
1342 case SNDCTL_TMR_SOURCE:
1343 if (seq_mode != SEQ_2)
1345 return tmr->ioctl(tmr_no, cmd, arg);
1347 case SNDCTL_TMR_SELECT:
1348 if (seq_mode != SEQ_2)
1350 if (get_user(pending_timer, p))
1352 if (pending_timer < 0 || pending_timer >= num_sound_timers || sound_timer_devs[pending_timer] == NULL)
1357 val = pending_timer;
1360 case SNDCTL_SEQ_PANIC:
1364 case SNDCTL_SEQ_SYNC:
1365 if (mode == OPEN_READ)
1367 while (qlen > 0 && !signal_pending(current))
1369 return qlen ? -EINTR : 0;
1371 case SNDCTL_SEQ_RESET:
1375 case SNDCTL_SEQ_TESTMIDI:
1376 if (__get_user(midi_dev, p))
1378 if (midi_dev < 0 || midi_dev >= max_mididev || !midi_devs[midi_dev])
1381 if (!midi_opened[midi_dev] &&
1382 (err = midi_devs[midi_dev]->open(midi_dev, mode, sequencer_midi_input,
1383 sequencer_midi_output)) < 0)
1385 midi_opened[midi_dev] = 1;
1388 case SNDCTL_SEQ_GETINCOUNT:
1389 if (mode == OPEN_WRITE)
1394 case SNDCTL_SEQ_GETOUTCOUNT:
1395 if (mode == OPEN_READ)
1397 val = SEQ_MAX_QUEUE - qlen;
1400 case SNDCTL_SEQ_GETTIME:
1401 if (seq_mode == SEQ_2)
1402 return tmr->ioctl(tmr_no, cmd, arg);
1403 val = jiffies - seq_time;
1406 case SNDCTL_SEQ_CTRLRATE:
1408 * If *arg == 0, just return the current rate
1410 if (seq_mode == SEQ_2)
1411 return tmr->ioctl(tmr_no, cmd, arg);
1413 if (get_user(val, p))
1420 case SNDCTL_SEQ_RESETSAMPLES:
1421 case SNDCTL_SYNTH_REMOVESAMPLE:
1422 case SNDCTL_SYNTH_CONTROL:
1423 if (get_user(dev, p))
1425 if (dev < 0 || dev >= num_synths || synth_devs[dev] == NULL)
1427 if (!(synth_open_mask & (1 << dev)) && !orig_dev)
1429 return synth_devs[dev]->ioctl(dev, cmd, arg);
1431 case SNDCTL_SEQ_NRSYNTHS:
1435 case SNDCTL_SEQ_NRMIDIS:
1439 case SNDCTL_SYNTH_MEMAVL:
1440 if (get_user(dev, p))
1442 if (dev < 0 || dev >= num_synths || synth_devs[dev] == NULL)
1444 if (!(synth_open_mask & (1 << dev)) && !orig_dev)
1446 val = synth_devs[dev]->ioctl(dev, cmd, arg);
1449 case SNDCTL_FM_4OP_ENABLE:
1450 if (get_user(dev, p))
1452 if (dev < 0 || dev >= num_synths || synth_devs[dev] == NULL)
1454 if (!(synth_open_mask & (1 << dev)))
1456 synth_devs[dev]->ioctl(dev, cmd, arg);
1459 case SNDCTL_SYNTH_INFO:
1460 if (get_user(dev, &((struct synth_info __user *)arg)->device))
1462 if (dev < 0 || dev >= max_synthdev)
1464 if (!(synth_open_mask & (1 << dev)) && !orig_dev)
1466 return synth_devs[dev]->ioctl(dev, cmd, arg);
1468 /* Like SYNTH_INFO but returns ID in the name field */
1469 case SNDCTL_SYNTH_ID:
1470 if (get_user(dev, &((struct synth_info __user *)arg)->device))
1472 if (dev < 0 || dev >= max_synthdev)
1474 if (!(synth_open_mask & (1 << dev)) && !orig_dev)
1476 memcpy(&inf, synth_devs[dev]->info, sizeof(inf));
1477 strlcpy(inf.name, synth_devs[dev]->id, sizeof(inf.name));
1479 return copy_to_user(arg, &inf, sizeof(inf))?-EFAULT:0;
1481 case SNDCTL_SEQ_OUTOFBAND:
1482 if (copy_from_user(&event_rec, arg, sizeof(event_rec)))
1484 spin_lock_irqsave(&lock,flags);
1485 play_event(event_rec.arr);
1486 spin_unlock_irqrestore(&lock,flags);
1489 case SNDCTL_MIDI_INFO:
1490 if (get_user(dev, &((struct midi_info __user *)arg)->device))
1492 if (dev < 0 || dev >= max_mididev || !midi_devs[dev])
1494 midi_devs[dev]->info.device = dev;
1495 return copy_to_user(arg, &midi_devs[dev]->info, sizeof(struct midi_info))?-EFAULT:0;
1497 case SNDCTL_SEQ_THRESHOLD:
1498 if (get_user(val, p))
1502 if (val >= SEQ_MAX_QUEUE)
1503 val = SEQ_MAX_QUEUE - 1;
1504 output_threshold = val;
1507 case SNDCTL_MIDI_PRETIME:
1508 if (get_user(val, p))
1512 val = (HZ * val) / 10;
1513 pre_event_timeout = val;
1517 if (mode == OPEN_READ)
1521 if (!(synth_open_mask & (1 << 0)))
1523 if (!synth_devs[0]->ioctl)
1525 return synth_devs[0]->ioctl(0, cmd, arg);
1527 return put_user(val, p);
1530 /* No kernel lock - we're using the global irq lock here */
1531 unsigned int sequencer_poll(int dev, struct file *file, poll_table * wait)
1533 unsigned long flags;
1534 unsigned int mask = 0;
1538 spin_lock_irqsave(&lock,flags);
1540 poll_wait(file, &midi_sleeper, wait);
1542 mask |= POLLIN | POLLRDNORM;
1545 poll_wait(file, &seq_sleeper, wait);
1546 if ((SEQ_MAX_QUEUE - qlen) >= output_threshold)
1547 mask |= POLLOUT | POLLWRNORM;
1548 spin_unlock_irqrestore(&lock,flags);
1553 void sequencer_timer(unsigned long dummy)
1558 int note_to_freq(int note_num)
1562 * This routine converts a midi note to a frequency (multiplied by 1000)
1565 int note, octave, note_freq;
1566 static int notes[] =
1568 261632, 277189, 293671, 311132, 329632, 349232,
1569 369998, 391998, 415306, 440000, 466162, 493880
1572 #define BASE_OCTAVE 5
1574 octave = note_num / 12;
1575 note = note_num % 12;
1577 note_freq = notes[note];
1579 if (octave < BASE_OCTAVE)
1580 note_freq >>= (BASE_OCTAVE - octave);
1581 else if (octave > BASE_OCTAVE)
1582 note_freq <<= (octave - BASE_OCTAVE);
1591 unsigned long compute_finetune(unsigned long base_freq, int bend, int range,
1594 unsigned long amount;
1595 int negative, semitones, cents, multiplier = 1;
1608 bend = bend * range / 8192; /* Convert to cents */
1609 bend += vibrato_cents;
1614 negative = bend < 0 ? 1 : 0;
1631 semitones = bend / 100;
1636 amount = (int) (semitone_tuning[semitones] * multiplier * cent_tuning[cents]) / 10000;
1639 return (base_freq * 10000) / amount; /* Bend down */
1641 return (base_freq * amount) / 10000; /* Bend up */
1645 void sequencer_init(void)
1647 /* drag in sequencer_syms.o */
1649 extern char sequencer_syms_symbol;
1650 sequencer_syms_symbol = 0;
1656 queue = (unsigned char *)vmalloc(SEQ_MAX_QUEUE * EV_SZ);
1659 printk(KERN_ERR "sequencer: Can't allocate memory for sequencer output queue\n");
1662 iqueue = (unsigned char *)vmalloc(SEQ_MAX_QUEUE * IEV_SZ);
1665 printk(KERN_ERR "sequencer: Can't allocate memory for sequencer input queue\n");
1672 void sequencer_unload(void)
1676 queue = iqueue = NULL;