]> git.karo-electronics.de Git - karo-tx-linux.git/blob - sound/core/seq/seq_midi_event.c
[ALSA] seq_midi_event: fix encoding of data bytes after end of sysex
[karo-tx-linux.git] / sound / core / seq / seq_midi_event.c
1 /*
2  *  MIDI byte <-> sequencer event coder
3  *
4  *  Copyright (C) 1998,99 Takashi Iwai <tiwai@suse.de>,
5  *                        Jaroslav Kysela <perex@suse.cz>
6  *
7  *   This program is free software; you can redistribute it and/or modify
8  *   it under the terms of the GNU General Public License as published by
9  *   the Free Software Foundation; either version 2 of the License, or
10  *   (at your option) any later version.
11  *
12  *   This program is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with this program; if not, write to the Free Software
19  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20  */
21
22 #include <sound/driver.h>
23 #include <linux/slab.h>
24 #include <linux/errno.h>
25 #include <linux/string.h>
26 #include <sound/core.h>
27 #include <sound/seq_kernel.h>
28 #include <sound/seq_midi_event.h>
29 #include <sound/asoundef.h>
30
31 MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>, Jaroslav Kysela <perex@suse.cz>");
32 MODULE_DESCRIPTION("MIDI byte <-> sequencer event coder");
33 MODULE_LICENSE("GPL");
34
35 /* event type, index into status_event[] */
36 /* from 0 to 6 are normal commands (note off, on, etc.) for 0x9?-0xe? */
37 #define ST_INVALID      7
38 #define ST_SPECIAL      8
39 #define ST_SYSEX        ST_SPECIAL
40 /* from 8 to 15 are events for 0xf0-0xf7 */
41
42
43 /*
44  * prototypes
45  */
46 static void note_event(struct snd_midi_event *dev, struct snd_seq_event *ev);
47 static void one_param_ctrl_event(struct snd_midi_event *dev, struct snd_seq_event *ev);
48 static void pitchbend_ctrl_event(struct snd_midi_event *dev, struct snd_seq_event *ev);
49 static void two_param_ctrl_event(struct snd_midi_event *dev, struct snd_seq_event *ev);
50 static void one_param_event(struct snd_midi_event *dev, struct snd_seq_event *ev);
51 static void songpos_event(struct snd_midi_event *dev, struct snd_seq_event *ev);
52 static void note_decode(struct snd_seq_event *ev, unsigned char *buf);
53 static void one_param_decode(struct snd_seq_event *ev, unsigned char *buf);
54 static void pitchbend_decode(struct snd_seq_event *ev, unsigned char *buf);
55 static void two_param_decode(struct snd_seq_event *ev, unsigned char *buf);
56 static void songpos_decode(struct snd_seq_event *ev, unsigned char *buf);
57
58 /*
59  * event list
60  */
61 static struct status_event_list {
62         int event;
63         int qlen;
64         void (*encode)(struct snd_midi_event *dev, struct snd_seq_event *ev);
65         void (*decode)(struct snd_seq_event *ev, unsigned char *buf);
66 } status_event[] = {
67         /* 0x80 - 0xef */
68         {SNDRV_SEQ_EVENT_NOTEOFF,       2, note_event, note_decode},
69         {SNDRV_SEQ_EVENT_NOTEON,        2, note_event, note_decode},
70         {SNDRV_SEQ_EVENT_KEYPRESS,      2, note_event, note_decode},
71         {SNDRV_SEQ_EVENT_CONTROLLER,    2, two_param_ctrl_event, two_param_decode},
72         {SNDRV_SEQ_EVENT_PGMCHANGE,     1, one_param_ctrl_event, one_param_decode},
73         {SNDRV_SEQ_EVENT_CHANPRESS,     1, one_param_ctrl_event, one_param_decode},
74         {SNDRV_SEQ_EVENT_PITCHBEND,     2, pitchbend_ctrl_event, pitchbend_decode},
75         /* invalid */
76         {SNDRV_SEQ_EVENT_NONE,          0, NULL, NULL},
77         /* 0xf0 - 0xff */
78         {SNDRV_SEQ_EVENT_SYSEX,         1, NULL, NULL}, /* sysex: 0xf0 */
79         {SNDRV_SEQ_EVENT_QFRAME,        1, one_param_event, one_param_decode}, /* 0xf1 */
80         {SNDRV_SEQ_EVENT_SONGPOS,       2, songpos_event, songpos_decode}, /* 0xf2 */
81         {SNDRV_SEQ_EVENT_SONGSEL,       1, one_param_event, one_param_decode}, /* 0xf3 */
82         {SNDRV_SEQ_EVENT_NONE,          0, NULL, NULL}, /* 0xf4 */
83         {SNDRV_SEQ_EVENT_NONE,          0, NULL, NULL}, /* 0xf5 */
84         {SNDRV_SEQ_EVENT_TUNE_REQUEST,  0, NULL, NULL}, /* 0xf6 */
85         {SNDRV_SEQ_EVENT_NONE,          0, NULL, NULL}, /* 0xf7 */
86         {SNDRV_SEQ_EVENT_CLOCK,         0, NULL, NULL}, /* 0xf8 */
87         {SNDRV_SEQ_EVENT_NONE,          0, NULL, NULL}, /* 0xf9 */
88         {SNDRV_SEQ_EVENT_START,         0, NULL, NULL}, /* 0xfa */
89         {SNDRV_SEQ_EVENT_CONTINUE,      0, NULL, NULL}, /* 0xfb */
90         {SNDRV_SEQ_EVENT_STOP,          0, NULL, NULL}, /* 0xfc */
91         {SNDRV_SEQ_EVENT_NONE,          0, NULL, NULL}, /* 0xfd */
92         {SNDRV_SEQ_EVENT_SENSING,       0, NULL, NULL}, /* 0xfe */
93         {SNDRV_SEQ_EVENT_RESET,         0, NULL, NULL}, /* 0xff */
94 };
95
96 static int extra_decode_ctrl14(struct snd_midi_event *dev, unsigned char *buf, int len,
97                                struct snd_seq_event *ev);
98 static int extra_decode_xrpn(struct snd_midi_event *dev, unsigned char *buf, int count,
99                              struct snd_seq_event *ev);
100
101 static struct extra_event_list {
102         int event;
103         int (*decode)(struct snd_midi_event *dev, unsigned char *buf, int len,
104                       struct snd_seq_event *ev);
105 } extra_event[] = {
106         {SNDRV_SEQ_EVENT_CONTROL14, extra_decode_ctrl14},
107         {SNDRV_SEQ_EVENT_NONREGPARAM, extra_decode_xrpn},
108         {SNDRV_SEQ_EVENT_REGPARAM, extra_decode_xrpn},
109 };
110
111 /*
112  *  new/delete record
113  */
114
115 int snd_midi_event_new(int bufsize, struct snd_midi_event **rdev)
116 {
117         struct snd_midi_event *dev;
118
119         *rdev = NULL;
120         dev = kzalloc(sizeof(*dev), GFP_KERNEL);
121         if (dev == NULL)
122                 return -ENOMEM;
123         if (bufsize > 0) {
124                 dev->buf = kmalloc(bufsize, GFP_KERNEL);
125                 if (dev->buf == NULL) {
126                         kfree(dev);
127                         return -ENOMEM;
128                 }
129         }
130         dev->bufsize = bufsize;
131         dev->lastcmd = 0xff;
132         dev->type = ST_INVALID;
133         spin_lock_init(&dev->lock);
134         *rdev = dev;
135         return 0;
136 }
137
138 void snd_midi_event_free(struct snd_midi_event *dev)
139 {
140         if (dev != NULL) {
141                 kfree(dev->buf);
142                 kfree(dev);
143         }
144 }
145
146 /*
147  * initialize record
148  */
149 static inline void reset_encode(struct snd_midi_event *dev)
150 {
151         dev->read = 0;
152         dev->qlen = 0;
153         dev->type = ST_INVALID;
154 }
155
156 void snd_midi_event_reset_encode(struct snd_midi_event *dev)
157 {
158         unsigned long flags;
159
160         spin_lock_irqsave(&dev->lock, flags);
161         reset_encode(dev);
162         spin_unlock_irqrestore(&dev->lock, flags);
163 }
164
165 void snd_midi_event_reset_decode(struct snd_midi_event *dev)
166 {
167         unsigned long flags;
168
169         spin_lock_irqsave(&dev->lock, flags);
170         dev->lastcmd = 0xff;
171         spin_unlock_irqrestore(&dev->lock, flags);
172 }
173
174 #if 0
175 void snd_midi_event_init(struct snd_midi_event *dev)
176 {
177         snd_midi_event_reset_encode(dev);
178         snd_midi_event_reset_decode(dev);
179 }
180 #endif  /*  0  */
181
182 void snd_midi_event_no_status(struct snd_midi_event *dev, int on)
183 {
184         dev->nostat = on ? 1 : 0;
185 }
186
187 /*
188  * resize buffer
189  */
190 #if 0
191 int snd_midi_event_resize_buffer(struct snd_midi_event *dev, int bufsize)
192 {
193         unsigned char *new_buf, *old_buf;
194         unsigned long flags;
195
196         if (bufsize == dev->bufsize)
197                 return 0;
198         new_buf = kmalloc(bufsize, GFP_KERNEL);
199         if (new_buf == NULL)
200                 return -ENOMEM;
201         spin_lock_irqsave(&dev->lock, flags);
202         old_buf = dev->buf;
203         dev->buf = new_buf;
204         dev->bufsize = bufsize;
205         reset_encode(dev);
206         spin_unlock_irqrestore(&dev->lock, flags);
207         kfree(old_buf);
208         return 0;
209 }
210 #endif  /*  0  */
211
212 /*
213  *  read bytes and encode to sequencer event if finished
214  *  return the size of encoded bytes
215  */
216 long snd_midi_event_encode(struct snd_midi_event *dev, unsigned char *buf, long count,
217                            struct snd_seq_event *ev)
218 {
219         long result = 0;
220         int rc;
221
222         ev->type = SNDRV_SEQ_EVENT_NONE;
223
224         while (count-- > 0) {
225                 rc = snd_midi_event_encode_byte(dev, *buf++, ev);
226                 result++;
227                 if (rc < 0)
228                         return rc;
229                 else if (rc > 0)
230                         return result;
231         }
232
233         return result;
234 }
235
236 /*
237  *  read one byte and encode to sequencer event:
238  *  return 1 if MIDI bytes are encoded to an event
239  *         0 data is not finished
240  *         negative for error
241  */
242 int snd_midi_event_encode_byte(struct snd_midi_event *dev, int c,
243                                struct snd_seq_event *ev)
244 {
245         int rc = 0;
246         unsigned long flags;
247
248         c &= 0xff;
249
250         if (c >= MIDI_CMD_COMMON_CLOCK) {
251                 /* real-time event */
252                 ev->type = status_event[ST_SPECIAL + c - 0xf0].event;
253                 ev->flags &= ~SNDRV_SEQ_EVENT_LENGTH_MASK;
254                 ev->flags |= SNDRV_SEQ_EVENT_LENGTH_FIXED;
255                 return 1;
256         }
257
258         spin_lock_irqsave(&dev->lock, flags);
259         if (dev->qlen > 0) {
260                 /* rest of command */
261                 dev->buf[dev->read++] = c;
262                 if (dev->type != ST_SYSEX)
263                         dev->qlen--;
264         } else {
265                 /* new command */
266                 dev->read = 1;
267                 if (c & 0x80) {
268                         dev->buf[0] = c;
269                         if ((c & 0xf0) == 0xf0) /* special events */
270                                 dev->type = (c & 0x0f) + ST_SPECIAL;
271                         else
272                                 dev->type = (c >> 4) & 0x07;
273                         dev->qlen = status_event[dev->type].qlen;
274                 } else {
275                         /* process this byte as argument */
276                         dev->buf[dev->read++] = c;
277                         dev->qlen = status_event[dev->type].qlen - 1;
278                 }
279         }
280         if (dev->qlen == 0) {
281                 ev->type = status_event[dev->type].event;
282                 ev->flags &= ~SNDRV_SEQ_EVENT_LENGTH_MASK;
283                 ev->flags |= SNDRV_SEQ_EVENT_LENGTH_FIXED;
284                 if (status_event[dev->type].encode) /* set data values */
285                         status_event[dev->type].encode(dev, ev);
286                 rc = 1;
287         } else  if (dev->type == ST_SYSEX) {
288                 if (c == MIDI_CMD_COMMON_SYSEX_END ||
289                     dev->read >= dev->bufsize) {
290                         ev->flags &= ~SNDRV_SEQ_EVENT_LENGTH_MASK;
291                         ev->flags |= SNDRV_SEQ_EVENT_LENGTH_VARIABLE;
292                         ev->type = SNDRV_SEQ_EVENT_SYSEX;
293                         ev->data.ext.len = dev->read;
294                         ev->data.ext.ptr = dev->buf;
295                         if (c != MIDI_CMD_COMMON_SYSEX_END)
296                                 dev->read = 0; /* continue to parse */
297                         else
298                                 reset_encode(dev); /* all parsed */
299                         rc = 1;
300                 }
301         }
302
303         spin_unlock_irqrestore(&dev->lock, flags);
304         return rc;
305 }
306
307 /* encode note event */
308 static void note_event(struct snd_midi_event *dev, struct snd_seq_event *ev)
309 {
310         ev->data.note.channel = dev->buf[0] & 0x0f;
311         ev->data.note.note = dev->buf[1];
312         ev->data.note.velocity = dev->buf[2];
313 }
314
315 /* encode one parameter controls */
316 static void one_param_ctrl_event(struct snd_midi_event *dev, struct snd_seq_event *ev)
317 {
318         ev->data.control.channel = dev->buf[0] & 0x0f;
319         ev->data.control.value = dev->buf[1];
320 }
321
322 /* encode pitch wheel change */
323 static void pitchbend_ctrl_event(struct snd_midi_event *dev, struct snd_seq_event *ev)
324 {
325         ev->data.control.channel = dev->buf[0] & 0x0f;
326         ev->data.control.value = (int)dev->buf[2] * 128 + (int)dev->buf[1] - 8192;
327 }
328
329 /* encode midi control change */
330 static void two_param_ctrl_event(struct snd_midi_event *dev, struct snd_seq_event *ev)
331 {
332         ev->data.control.channel = dev->buf[0] & 0x0f;
333         ev->data.control.param = dev->buf[1];
334         ev->data.control.value = dev->buf[2];
335 }
336
337 /* encode one parameter value*/
338 static void one_param_event(struct snd_midi_event *dev, struct snd_seq_event *ev)
339 {
340         ev->data.control.value = dev->buf[1];
341 }
342
343 /* encode song position */
344 static void songpos_event(struct snd_midi_event *dev, struct snd_seq_event *ev)
345 {
346         ev->data.control.value = (int)dev->buf[2] * 128 + (int)dev->buf[1];
347 }
348
349 /*
350  * decode from a sequencer event to midi bytes
351  * return the size of decoded midi events
352  */
353 long snd_midi_event_decode(struct snd_midi_event *dev, unsigned char *buf, long count,
354                            struct snd_seq_event *ev)
355 {
356         unsigned int cmd, type;
357
358         if (ev->type == SNDRV_SEQ_EVENT_NONE)
359                 return -ENOENT;
360
361         for (type = 0; type < ARRAY_SIZE(status_event); type++) {
362                 if (ev->type == status_event[type].event)
363                         goto __found;
364         }
365         for (type = 0; type < ARRAY_SIZE(extra_event); type++) {
366                 if (ev->type == extra_event[type].event)
367                         return extra_event[type].decode(dev, buf, count, ev);
368         }
369         return -ENOENT;
370
371       __found:
372         if (type >= ST_SPECIAL)
373                 cmd = 0xf0 + (type - ST_SPECIAL);
374         else
375                 /* data.note.channel and data.control.channel is identical */
376                 cmd = 0x80 | (type << 4) | (ev->data.note.channel & 0x0f);
377
378
379         if (cmd == MIDI_CMD_COMMON_SYSEX) {
380                 snd_midi_event_reset_decode(dev);
381                 return snd_seq_expand_var_event(ev, count, buf, 1, 0);
382         } else {
383                 int qlen;
384                 unsigned char xbuf[4];
385                 unsigned long flags;
386
387                 spin_lock_irqsave(&dev->lock, flags);
388                 if ((cmd & 0xf0) == 0xf0 || dev->lastcmd != cmd || dev->nostat) {
389                         dev->lastcmd = cmd;
390                         spin_unlock_irqrestore(&dev->lock, flags);
391                         xbuf[0] = cmd;
392                         if (status_event[type].decode)
393                                 status_event[type].decode(ev, xbuf + 1);
394                         qlen = status_event[type].qlen + 1;
395                 } else {
396                         spin_unlock_irqrestore(&dev->lock, flags);
397                         if (status_event[type].decode)
398                                 status_event[type].decode(ev, xbuf + 0);
399                         qlen = status_event[type].qlen;
400                 }
401                 if (count < qlen)
402                         return -ENOMEM;
403                 memcpy(buf, xbuf, qlen);
404                 return qlen;
405         }
406 }
407
408
409 /* decode note event */
410 static void note_decode(struct snd_seq_event *ev, unsigned char *buf)
411 {
412         buf[0] = ev->data.note.note & 0x7f;
413         buf[1] = ev->data.note.velocity & 0x7f;
414 }
415
416 /* decode one parameter controls */
417 static void one_param_decode(struct snd_seq_event *ev, unsigned char *buf)
418 {
419         buf[0] = ev->data.control.value & 0x7f;
420 }
421
422 /* decode pitch wheel change */
423 static void pitchbend_decode(struct snd_seq_event *ev, unsigned char *buf)
424 {
425         int value = ev->data.control.value + 8192;
426         buf[0] = value & 0x7f;
427         buf[1] = (value >> 7) & 0x7f;
428 }
429
430 /* decode midi control change */
431 static void two_param_decode(struct snd_seq_event *ev, unsigned char *buf)
432 {
433         buf[0] = ev->data.control.param & 0x7f;
434         buf[1] = ev->data.control.value & 0x7f;
435 }
436
437 /* decode song position */
438 static void songpos_decode(struct snd_seq_event *ev, unsigned char *buf)
439 {
440         buf[0] = ev->data.control.value & 0x7f;
441         buf[1] = (ev->data.control.value >> 7) & 0x7f;
442 }
443
444 /* decode 14bit control */
445 static int extra_decode_ctrl14(struct snd_midi_event *dev, unsigned char *buf,
446                                int count, struct snd_seq_event *ev)
447 {
448         unsigned char cmd;
449         int idx = 0;
450
451         cmd = MIDI_CMD_CONTROL|(ev->data.control.channel & 0x0f);
452         if (ev->data.control.param < 0x20) {
453                 if (count < 4)
454                         return -ENOMEM;
455                 if (dev->nostat && count < 6)
456                         return -ENOMEM;
457                 if (cmd != dev->lastcmd || dev->nostat) {
458                         if (count < 5)
459                                 return -ENOMEM;
460                         buf[idx++] = dev->lastcmd = cmd;
461                 }
462                 buf[idx++] = ev->data.control.param;
463                 buf[idx++] = (ev->data.control.value >> 7) & 0x7f;
464                 if (dev->nostat)
465                         buf[idx++] = cmd;
466                 buf[idx++] = ev->data.control.param + 0x20;
467                 buf[idx++] = ev->data.control.value & 0x7f;
468         } else {
469                 if (count < 2)
470                         return -ENOMEM;
471                 if (cmd != dev->lastcmd || dev->nostat) {
472                         if (count < 3)
473                                 return -ENOMEM;
474                         buf[idx++] = dev->lastcmd = cmd;
475                 }
476                 buf[idx++] = ev->data.control.param & 0x7f;
477                 buf[idx++] = ev->data.control.value & 0x7f;
478         }
479         return idx;
480 }
481
482 /* decode reg/nonreg param */
483 static int extra_decode_xrpn(struct snd_midi_event *dev, unsigned char *buf,
484                              int count, struct snd_seq_event *ev)
485 {
486         unsigned char cmd;
487         char *cbytes;
488         static char cbytes_nrpn[4] = { MIDI_CTL_NONREG_PARM_NUM_MSB,
489                                        MIDI_CTL_NONREG_PARM_NUM_LSB,
490                                        MIDI_CTL_MSB_DATA_ENTRY,
491                                        MIDI_CTL_LSB_DATA_ENTRY };
492         static char cbytes_rpn[4] =  { MIDI_CTL_REGIST_PARM_NUM_MSB,
493                                        MIDI_CTL_REGIST_PARM_NUM_LSB,
494                                        MIDI_CTL_MSB_DATA_ENTRY,
495                                        MIDI_CTL_LSB_DATA_ENTRY };
496         unsigned char bytes[4];
497         int idx = 0, i;
498
499         if (count < 8)
500                 return -ENOMEM;
501         if (dev->nostat && count < 12)
502                 return -ENOMEM;
503         cmd = MIDI_CMD_CONTROL|(ev->data.control.channel & 0x0f);
504         bytes[0] = ev->data.control.param & 0x007f;
505         bytes[1] = (ev->data.control.param & 0x3f80) >> 7;
506         bytes[2] = ev->data.control.value & 0x007f;
507         bytes[3] = (ev->data.control.value & 0x3f80) >> 7;
508         if (cmd != dev->lastcmd && !dev->nostat) {
509                 if (count < 9)
510                         return -ENOMEM;
511                 buf[idx++] = dev->lastcmd = cmd;
512         }
513         cbytes = ev->type == SNDRV_SEQ_EVENT_NONREGPARAM ? cbytes_nrpn : cbytes_rpn;
514         for (i = 0; i < 4; i++) {
515                 if (dev->nostat)
516                         buf[idx++] = dev->lastcmd = cmd;
517                 buf[idx++] = cbytes[i];
518                 buf[idx++] = bytes[i];
519         }
520         return idx;
521 }
522
523 /*
524  *  exports
525  */
526  
527 EXPORT_SYMBOL(snd_midi_event_new);
528 EXPORT_SYMBOL(snd_midi_event_free);
529 EXPORT_SYMBOL(snd_midi_event_reset_encode);
530 EXPORT_SYMBOL(snd_midi_event_reset_decode);
531 EXPORT_SYMBOL(snd_midi_event_no_status);
532 EXPORT_SYMBOL(snd_midi_event_encode);
533 EXPORT_SYMBOL(snd_midi_event_encode_byte);
534 EXPORT_SYMBOL(snd_midi_event_decode);
535
536 static int __init alsa_seq_midi_event_init(void)
537 {
538         return 0;
539 }
540
541 static void __exit alsa_seq_midi_event_exit(void)
542 {
543 }
544
545 module_init(alsa_seq_midi_event_init)
546 module_exit(alsa_seq_midi_event_exit)