xref: /linux/sound/core/seq/seq_ump_convert.c (revision a2fa882d6dea19b4488b10f40334e04c77503ffc)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * ALSA sequencer event conversion between UMP and legacy clients
4  */
5 
6 #include <linux/init.h>
7 #include <linux/errno.h>
8 #include <linux/string.h>
9 #include <sound/core.h>
10 #include <sound/ump.h>
11 #include <sound/ump_msg.h>
12 #include "seq_ump_convert.h"
13 
14 /*
15  * Upgrade / downgrade value bits
16  */
17 static u8 downscale_32_to_7bit(u32 src)
18 {
19 	return src >> 25;
20 }
21 
22 static u16 downscale_32_to_14bit(u32 src)
23 {
24 	return src >> 18;
25 }
26 
27 static u8 downscale_16_to_7bit(u16 src)
28 {
29 	return src >> 9;
30 }
31 
32 static u16 upscale_7_to_16bit(u8 src)
33 {
34 	u16 val, repeat;
35 
36 	val = (u16)src << 9;
37 	if (src <= 0x40)
38 		return val;
39 	repeat = src & 0x3f;
40 	return val | (repeat << 3) | (repeat >> 3);
41 }
42 
43 static u32 upscale_7_to_32bit(u8 src)
44 {
45 	u32 val, repeat;
46 
47 	val = src << 25;
48 	if (src <= 0x40)
49 		return val;
50 	repeat = src & 0x3f;
51 	return val | (repeat << 19) | (repeat << 13) |
52 		(repeat << 7) | (repeat << 1) | (repeat >> 5);
53 }
54 
55 static u32 upscale_14_to_32bit(u16 src)
56 {
57 	u32 val, repeat;
58 
59 	val = src << 18;
60 	if (src <= 0x2000)
61 		return val;
62 	repeat = src & 0x1fff;
63 	return val | (repeat << 5) | (repeat >> 8);
64 }
65 
66 static unsigned char get_ump_group(struct snd_seq_client_port *port)
67 {
68 	return port->ump_group ? (port->ump_group - 1) : 0;
69 }
70 
71 /* create a UMP header */
72 #define make_raw_ump(port, type) \
73 	ump_compose(type, get_ump_group(port), 0, 0)
74 
75 /*
76  * UMP -> MIDI1 sequencer event
77  */
78 
79 /* MIDI 1.0 CVM */
80 
81 /* encode note event */
82 static void ump_midi1_to_note_ev(const union snd_ump_midi1_msg *val,
83 				 struct snd_seq_event *ev)
84 {
85 	ev->data.note.channel = val->note.channel;
86 	ev->data.note.note = val->note.note;
87 	ev->data.note.velocity = val->note.velocity;
88 }
89 
90 /* encode one parameter controls */
91 static void ump_midi1_to_ctrl_ev(const union snd_ump_midi1_msg *val,
92 				 struct snd_seq_event *ev)
93 {
94 	ev->data.control.channel = val->caf.channel;
95 	ev->data.control.value = val->caf.data;
96 }
97 
98 /* encode pitch wheel change */
99 static void ump_midi1_to_pitchbend_ev(const union snd_ump_midi1_msg *val,
100 				      struct snd_seq_event *ev)
101 {
102 	ev->data.control.channel = val->pb.channel;
103 	ev->data.control.value = (val->pb.data_msb << 7) | val->pb.data_lsb;
104 	ev->data.control.value -= 8192;
105 }
106 
107 /* encode midi control change */
108 static void ump_midi1_to_cc_ev(const union snd_ump_midi1_msg *val,
109 			       struct snd_seq_event *ev)
110 {
111 	ev->data.control.channel = val->cc.channel;
112 	ev->data.control.param = val->cc.index;
113 	ev->data.control.value = val->cc.data;
114 }
115 
116 /* Encoding MIDI 1.0 UMP packet */
117 struct seq_ump_midi1_to_ev {
118 	int seq_type;
119 	void (*encode)(const union snd_ump_midi1_msg *val, struct snd_seq_event *ev);
120 };
121 
122 /* Encoders for MIDI1 status 0x80-0xe0 */
123 static struct seq_ump_midi1_to_ev midi1_msg_encoders[] = {
124 	{SNDRV_SEQ_EVENT_NOTEOFF,	ump_midi1_to_note_ev},	/* 0x80 */
125 	{SNDRV_SEQ_EVENT_NOTEON,	ump_midi1_to_note_ev},	/* 0x90 */
126 	{SNDRV_SEQ_EVENT_KEYPRESS,	ump_midi1_to_note_ev},	/* 0xa0 */
127 	{SNDRV_SEQ_EVENT_CONTROLLER,	ump_midi1_to_cc_ev},	/* 0xb0 */
128 	{SNDRV_SEQ_EVENT_PGMCHANGE,	ump_midi1_to_ctrl_ev},	/* 0xc0 */
129 	{SNDRV_SEQ_EVENT_CHANPRESS,	ump_midi1_to_ctrl_ev},	/* 0xd0 */
130 	{SNDRV_SEQ_EVENT_PITCHBEND,	ump_midi1_to_pitchbend_ev}, /* 0xe0 */
131 };
132 
133 static int cvt_ump_midi1_to_event(const union snd_ump_midi1_msg *val,
134 				  struct snd_seq_event *ev)
135 {
136 	unsigned char status = val->note.status;
137 
138 	if (status < 0x8 || status > 0xe)
139 		return 0; /* invalid - skip */
140 	status -= 8;
141 	ev->type = midi1_msg_encoders[status].seq_type;
142 	ev->flags = SNDRV_SEQ_EVENT_LENGTH_FIXED;
143 	midi1_msg_encoders[status].encode(val, ev);
144 	return 1;
145 }
146 
147 /* MIDI System message */
148 
149 /* encode one parameter value*/
150 static void ump_system_to_one_param_ev(const union snd_ump_midi1_msg *val,
151 				       struct snd_seq_event *ev)
152 {
153 	ev->data.control.value = val->system.parm1;
154 }
155 
156 /* encode song position */
157 static void ump_system_to_songpos_ev(const union snd_ump_midi1_msg *val,
158 				     struct snd_seq_event *ev)
159 {
160 	ev->data.control.value = (val->system.parm2 << 7) | val->system.parm1;
161 }
162 
163 /* Encoders for 0xf0 - 0xff */
164 static struct seq_ump_midi1_to_ev system_msg_encoders[] = {
165 	{SNDRV_SEQ_EVENT_NONE,		NULL},	 /* 0xf0 */
166 	{SNDRV_SEQ_EVENT_QFRAME,	ump_system_to_one_param_ev}, /* 0xf1 */
167 	{SNDRV_SEQ_EVENT_SONGPOS,	ump_system_to_songpos_ev}, /* 0xf2 */
168 	{SNDRV_SEQ_EVENT_SONGSEL,	ump_system_to_one_param_ev}, /* 0xf3 */
169 	{SNDRV_SEQ_EVENT_NONE,		NULL}, /* 0xf4 */
170 	{SNDRV_SEQ_EVENT_NONE,		NULL}, /* 0xf5 */
171 	{SNDRV_SEQ_EVENT_TUNE_REQUEST,	NULL}, /* 0xf6 */
172 	{SNDRV_SEQ_EVENT_NONE,		NULL}, /* 0xf7 */
173 	{SNDRV_SEQ_EVENT_CLOCK,		NULL}, /* 0xf8 */
174 	{SNDRV_SEQ_EVENT_NONE,		NULL}, /* 0xf9 */
175 	{SNDRV_SEQ_EVENT_START,		NULL}, /* 0xfa */
176 	{SNDRV_SEQ_EVENT_CONTINUE,	NULL}, /* 0xfb */
177 	{SNDRV_SEQ_EVENT_STOP,		NULL}, /* 0xfc */
178 	{SNDRV_SEQ_EVENT_NONE,		NULL}, /* 0xfd */
179 	{SNDRV_SEQ_EVENT_SENSING,	NULL}, /* 0xfe */
180 	{SNDRV_SEQ_EVENT_RESET,		NULL}, /* 0xff */
181 };
182 
183 static int cvt_ump_system_to_event(const union snd_ump_midi1_msg *val,
184 				   struct snd_seq_event *ev)
185 {
186 	unsigned char status = val->system.status;
187 
188 	if ((status & 0xf0) != UMP_MIDI1_MSG_REALTIME)
189 		return 0; /* invalid status - skip */
190 	status &= 0x0f;
191 	ev->type = system_msg_encoders[status].seq_type;
192 	ev->flags = SNDRV_SEQ_EVENT_LENGTH_FIXED;
193 	if (ev->type == SNDRV_SEQ_EVENT_NONE)
194 		return 0;
195 	if (system_msg_encoders[status].encode)
196 		system_msg_encoders[status].encode(val, ev);
197 	return 1;
198 }
199 
200 /* MIDI 2.0 CVM */
201 
202 /* encode note event */
203 static int ump_midi2_to_note_ev(const union snd_ump_midi2_msg *val,
204 				struct snd_seq_event *ev)
205 {
206 	ev->data.note.channel = val->note.channel;
207 	ev->data.note.note = val->note.note;
208 	ev->data.note.velocity = downscale_16_to_7bit(val->note.velocity);
209 	/* correct note-on velocity 0 to 1;
210 	 * it's no longer equivalent as not-off for MIDI 2.0
211 	 */
212 	if (ev->type == SNDRV_SEQ_EVENT_NOTEON &&
213 	    !ev->data.note.velocity)
214 		ev->data.note.velocity = 1;
215 	return 1;
216 }
217 
218 /* encode pitch wheel change */
219 static int ump_midi2_to_pitchbend_ev(const union snd_ump_midi2_msg *val,
220 				     struct snd_seq_event *ev)
221 {
222 	ev->data.control.channel = val->pb.channel;
223 	ev->data.control.value = downscale_32_to_14bit(val->pb.data);
224 	ev->data.control.value -= 8192;
225 	return 1;
226 }
227 
228 /* encode midi control change */
229 static int ump_midi2_to_cc_ev(const union snd_ump_midi2_msg *val,
230 			      struct snd_seq_event *ev)
231 {
232 	ev->data.control.channel = val->cc.channel;
233 	ev->data.control.param = val->cc.index;
234 	ev->data.control.value = downscale_32_to_7bit(val->cc.data);
235 	return 1;
236 }
237 
238 /* encode midi program change */
239 static int ump_midi2_to_pgm_ev(const union snd_ump_midi2_msg *val,
240 			       struct snd_seq_event *ev)
241 {
242 	int size = 1;
243 
244 	ev->data.control.channel = val->pg.channel;
245 	if (val->pg.bank_valid) {
246 		ev->type = SNDRV_SEQ_EVENT_CONTROL14;
247 		ev->data.control.param = UMP_CC_BANK_SELECT;
248 		ev->data.control.value = (val->pg.bank_msb << 7) | val->pg.bank_lsb;
249 		ev[1] = ev[0];
250 		ev++;
251 		ev->type = SNDRV_SEQ_EVENT_PGMCHANGE;
252 		size = 2;
253 	}
254 	ev->data.control.value = val->pg.program;
255 	return size;
256 }
257 
258 /* encode one parameter controls */
259 static int ump_midi2_to_ctrl_ev(const union snd_ump_midi2_msg *val,
260 				struct snd_seq_event *ev)
261 {
262 	ev->data.control.channel = val->caf.channel;
263 	ev->data.control.value = downscale_32_to_7bit(val->caf.data);
264 	return 1;
265 }
266 
267 /* encode RPN/NRPN */
268 static int ump_midi2_to_rpn_ev(const union snd_ump_midi2_msg *val,
269 			       struct snd_seq_event *ev)
270 {
271 	ev->data.control.channel = val->rpn.channel;
272 	ev->data.control.param = (val->rpn.bank << 7) | val->rpn.index;
273 	ev->data.control.value = downscale_32_to_14bit(val->rpn.data);
274 	return 1;
275 }
276 
277 /* Encoding MIDI 2.0 UMP Packet */
278 struct seq_ump_midi2_to_ev {
279 	int seq_type;
280 	int (*encode)(const union snd_ump_midi2_msg *val, struct snd_seq_event *ev);
281 };
282 
283 /* Encoders for MIDI2 status 0x00-0xf0 */
284 static struct seq_ump_midi2_to_ev midi2_msg_encoders[] = {
285 	{SNDRV_SEQ_EVENT_NONE,		NULL},			/* 0x00 */
286 	{SNDRV_SEQ_EVENT_NONE,		NULL},			/* 0x10 */
287 	{SNDRV_SEQ_EVENT_REGPARAM,	ump_midi2_to_rpn_ev},	/* 0x20 */
288 	{SNDRV_SEQ_EVENT_NONREGPARAM,	ump_midi2_to_rpn_ev},	/* 0x30 */
289 	{SNDRV_SEQ_EVENT_NONE,		NULL},			/* 0x40 */
290 	{SNDRV_SEQ_EVENT_NONE,		NULL},			/* 0x50 */
291 	{SNDRV_SEQ_EVENT_NONE,		NULL},			/* 0x60 */
292 	{SNDRV_SEQ_EVENT_NONE,		NULL},			/* 0x70 */
293 	{SNDRV_SEQ_EVENT_NOTEOFF,	ump_midi2_to_note_ev},	/* 0x80 */
294 	{SNDRV_SEQ_EVENT_NOTEON,	ump_midi2_to_note_ev},	/* 0x90 */
295 	{SNDRV_SEQ_EVENT_KEYPRESS,	ump_midi2_to_note_ev},	/* 0xa0 */
296 	{SNDRV_SEQ_EVENT_CONTROLLER,	ump_midi2_to_cc_ev},	/* 0xb0 */
297 	{SNDRV_SEQ_EVENT_PGMCHANGE,	ump_midi2_to_pgm_ev},	/* 0xc0 */
298 	{SNDRV_SEQ_EVENT_CHANPRESS,	ump_midi2_to_ctrl_ev},	/* 0xd0 */
299 	{SNDRV_SEQ_EVENT_PITCHBEND,	ump_midi2_to_pitchbend_ev}, /* 0xe0 */
300 	{SNDRV_SEQ_EVENT_NONE,		NULL},			/* 0xf0 */
301 };
302 
303 static int cvt_ump_midi2_to_event(const union snd_ump_midi2_msg *val,
304 				  struct snd_seq_event *ev)
305 {
306 	unsigned char status = val->note.status;
307 
308 	ev->type = midi2_msg_encoders[status].seq_type;
309 	if (ev->type == SNDRV_SEQ_EVENT_NONE)
310 		return 0; /* skip */
311 	ev->flags = SNDRV_SEQ_EVENT_LENGTH_FIXED;
312 	return midi2_msg_encoders[status].encode(val, ev);
313 }
314 
315 /* parse and compose for a sysex var-length event */
316 static int cvt_ump_sysex7_to_event(const u32 *data, unsigned char *buf,
317 				   struct snd_seq_event *ev)
318 {
319 	unsigned char status;
320 	unsigned char bytes;
321 	u32 val;
322 	int size = 0;
323 
324 	val = data[0];
325 	status = ump_sysex_message_status(val);
326 	bytes = ump_sysex_message_length(val);
327 	if (bytes > 6)
328 		return 0; // skip
329 
330 	if (status == UMP_SYSEX_STATUS_SINGLE ||
331 	    status == UMP_SYSEX_STATUS_START) {
332 		buf[0] = UMP_MIDI1_MSG_SYSEX_START;
333 		size = 1;
334 	}
335 
336 	if (bytes > 0)
337 		buf[size++] = (val >> 8) & 0x7f;
338 	if (bytes > 1)
339 		buf[size++] = val & 0x7f;
340 	val = data[1];
341 	if (bytes > 2)
342 		buf[size++] = (val >> 24) & 0x7f;
343 	if (bytes > 3)
344 		buf[size++] = (val >> 16) & 0x7f;
345 	if (bytes > 4)
346 		buf[size++] = (val >> 8) & 0x7f;
347 	if (bytes > 5)
348 		buf[size++] = val & 0x7f;
349 
350 	if (status == UMP_SYSEX_STATUS_SINGLE ||
351 	    status == UMP_SYSEX_STATUS_END)
352 		buf[size++] = UMP_MIDI1_MSG_SYSEX_END;
353 
354 	ev->type = SNDRV_SEQ_EVENT_SYSEX;
355 	ev->flags = SNDRV_SEQ_EVENT_LENGTH_VARIABLE;
356 	ev->data.ext.len = size;
357 	ev->data.ext.ptr = buf;
358 	return 1;
359 }
360 
361 /* convert UMP packet from MIDI 1.0 to MIDI 2.0 and deliver it */
362 static int cvt_ump_midi1_to_midi2(struct snd_seq_client *dest,
363 				  struct snd_seq_client_port *dest_port,
364 				  struct snd_seq_event *__event,
365 				  int atomic, int hop)
366 {
367 	struct snd_seq_ump_event *event = (struct snd_seq_ump_event *)__event;
368 	struct snd_seq_ump_event ev_cvt;
369 	const union snd_ump_midi1_msg *midi1 = (const union snd_ump_midi1_msg *)event->ump;
370 	union snd_ump_midi2_msg *midi2 = (union snd_ump_midi2_msg *)ev_cvt.ump;
371 	struct snd_seq_ump_midi2_bank *cc;
372 
373 	ev_cvt = *event;
374 	memset(&ev_cvt.ump, 0, sizeof(ev_cvt.ump));
375 
376 	midi2->note.type = UMP_MSG_TYPE_MIDI2_CHANNEL_VOICE;
377 	midi2->note.group = midi1->note.group;
378 	midi2->note.status = midi1->note.status;
379 	midi2->note.channel = midi1->note.channel;
380 	switch (midi1->note.status) {
381 	case UMP_MSG_STATUS_NOTE_ON:
382 	case UMP_MSG_STATUS_NOTE_OFF:
383 		midi2->note.note = midi1->note.note;
384 		midi2->note.velocity = upscale_7_to_16bit(midi1->note.velocity);
385 		break;
386 	case UMP_MSG_STATUS_POLY_PRESSURE:
387 		midi2->paf.note = midi1->paf.note;
388 		midi2->paf.data = upscale_7_to_32bit(midi1->paf.data);
389 		break;
390 	case UMP_MSG_STATUS_CC:
391 		cc = &dest_port->midi2_bank[midi1->note.channel];
392 		switch (midi1->cc.index) {
393 		case UMP_CC_BANK_SELECT:
394 			cc->bank_set = 1;
395 			cc->cc_bank_msb = midi1->cc.data;
396 			return 0; // skip
397 		case UMP_CC_BANK_SELECT_LSB:
398 			cc->bank_set = 1;
399 			cc->cc_bank_lsb = midi1->cc.data;
400 			return 0; // skip
401 		}
402 		midi2->cc.index = midi1->cc.index;
403 		midi2->cc.data = upscale_7_to_32bit(midi1->cc.data);
404 		break;
405 	case UMP_MSG_STATUS_PROGRAM:
406 		midi2->pg.program = midi1->pg.program;
407 		cc = &dest_port->midi2_bank[midi1->note.channel];
408 		if (cc->bank_set) {
409 			midi2->pg.bank_valid = 1;
410 			midi2->pg.bank_msb = cc->cc_bank_msb;
411 			midi2->pg.bank_lsb = cc->cc_bank_lsb;
412 			cc->bank_set = 0;
413 		}
414 		break;
415 	case UMP_MSG_STATUS_CHANNEL_PRESSURE:
416 		midi2->caf.data = upscale_7_to_32bit(midi1->caf.data);
417 		break;
418 	case UMP_MSG_STATUS_PITCH_BEND:
419 		midi2->pb.data = upscale_14_to_32bit((midi1->pb.data_msb << 7) |
420 						     midi1->pb.data_lsb);
421 		break;
422 	default:
423 		return 0;
424 	}
425 
426 	return __snd_seq_deliver_single_event(dest, dest_port,
427 					      (struct snd_seq_event *)&ev_cvt,
428 					      atomic, hop);
429 }
430 
431 /* convert UMP packet from MIDI 2.0 to MIDI 1.0 and deliver it */
432 static int cvt_ump_midi2_to_midi1(struct snd_seq_client *dest,
433 				  struct snd_seq_client_port *dest_port,
434 				  struct snd_seq_event *__event,
435 				  int atomic, int hop)
436 {
437 	struct snd_seq_ump_event *event = (struct snd_seq_ump_event *)__event;
438 	struct snd_seq_ump_event ev_cvt;
439 	union snd_ump_midi1_msg *midi1 = (union snd_ump_midi1_msg *)ev_cvt.ump;
440 	const union snd_ump_midi2_msg *midi2 = (const union snd_ump_midi2_msg *)event->ump;
441 	int err;
442 	u16 v;
443 
444 	ev_cvt = *event;
445 	memset(&ev_cvt.ump, 0, sizeof(ev_cvt.ump));
446 
447 	midi1->note.type = UMP_MSG_TYPE_MIDI1_CHANNEL_VOICE;
448 	midi1->note.group = midi2->note.group;
449 	midi1->note.status = midi2->note.status;
450 	midi1->note.channel = midi2->note.channel;
451 	switch (midi2->note.status) {
452 	case UMP_MSG_STATUS_NOTE_ON:
453 	case UMP_MSG_STATUS_NOTE_OFF:
454 		midi1->note.note = midi2->note.note;
455 		midi1->note.velocity = downscale_16_to_7bit(midi2->note.velocity);
456 		break;
457 	case UMP_MSG_STATUS_POLY_PRESSURE:
458 		midi1->paf.note = midi2->paf.note;
459 		midi1->paf.data = downscale_32_to_7bit(midi2->paf.data);
460 		break;
461 	case UMP_MSG_STATUS_CC:
462 		midi1->cc.index = midi2->cc.index;
463 		midi1->cc.data = downscale_32_to_7bit(midi2->cc.data);
464 		break;
465 	case UMP_MSG_STATUS_PROGRAM:
466 		if (midi2->pg.bank_valid) {
467 			midi1->cc.status = UMP_MSG_STATUS_CC;
468 			midi1->cc.index = UMP_CC_BANK_SELECT;
469 			midi1->cc.data = midi2->pg.bank_msb;
470 			err = __snd_seq_deliver_single_event(dest, dest_port,
471 							     (struct snd_seq_event *)&ev_cvt,
472 							     atomic, hop);
473 			if (err < 0)
474 				return err;
475 			midi1->cc.index = UMP_CC_BANK_SELECT_LSB;
476 			midi1->cc.data = midi2->pg.bank_lsb;
477 			err = __snd_seq_deliver_single_event(dest, dest_port,
478 							     (struct snd_seq_event *)&ev_cvt,
479 							     atomic, hop);
480 			if (err < 0)
481 				return err;
482 			midi1->note.status = midi2->note.status;
483 		}
484 		midi1->pg.program = midi2->pg.program;
485 		break;
486 	case UMP_MSG_STATUS_CHANNEL_PRESSURE:
487 		midi1->caf.data = downscale_32_to_7bit(midi2->caf.data);
488 		break;
489 	case UMP_MSG_STATUS_PITCH_BEND:
490 		v = downscale_32_to_14bit(midi2->pb.data);
491 		midi1->pb.data_msb = v >> 7;
492 		midi1->pb.data_lsb = v & 0x7f;
493 		break;
494 	default:
495 		return 0;
496 	}
497 
498 	return __snd_seq_deliver_single_event(dest, dest_port,
499 					      (struct snd_seq_event *)&ev_cvt,
500 					      atomic, hop);
501 }
502 
503 /* convert UMP to a legacy ALSA seq event and deliver it */
504 static int cvt_ump_to_any(struct snd_seq_client *dest,
505 			  struct snd_seq_client_port *dest_port,
506 			  struct snd_seq_event *event,
507 			  unsigned char type,
508 			  int atomic, int hop)
509 {
510 	struct snd_seq_event ev_cvt[2]; /* up to two events */
511 	struct snd_seq_ump_event *ump_ev = (struct snd_seq_ump_event *)event;
512 	/* use the second event as a temp buffer for saving stack usage */
513 	unsigned char *sysex_buf = (unsigned char *)(ev_cvt + 1);
514 	unsigned char flags = event->flags & ~SNDRV_SEQ_EVENT_UMP;
515 	int i, len, err;
516 
517 	ev_cvt[0] = ev_cvt[1] = *event;
518 	ev_cvt[0].flags = flags;
519 	ev_cvt[1].flags = flags;
520 	switch (type) {
521 	case UMP_MSG_TYPE_SYSTEM:
522 		len = cvt_ump_system_to_event((union snd_ump_midi1_msg *)ump_ev->ump,
523 					      ev_cvt);
524 		break;
525 	case UMP_MSG_TYPE_MIDI1_CHANNEL_VOICE:
526 		len = cvt_ump_midi1_to_event((union snd_ump_midi1_msg *)ump_ev->ump,
527 					     ev_cvt);
528 		break;
529 	case UMP_MSG_TYPE_MIDI2_CHANNEL_VOICE:
530 		len = cvt_ump_midi2_to_event((union snd_ump_midi2_msg *)ump_ev->ump,
531 					     ev_cvt);
532 		break;
533 	case UMP_MSG_TYPE_DATA:
534 		len = cvt_ump_sysex7_to_event(ump_ev->ump, sysex_buf, ev_cvt);
535 		break;
536 	default:
537 		return 0;
538 	}
539 
540 	for (i = 0; i < len; i++) {
541 		err = __snd_seq_deliver_single_event(dest, dest_port,
542 						     &ev_cvt[i], atomic, hop);
543 		if (err < 0)
544 			return err;
545 	}
546 
547 	return 0;
548 }
549 
550 /* Replace UMP group field with the destination and deliver */
551 static int deliver_with_group_convert(struct snd_seq_client *dest,
552 				      struct snd_seq_client_port *dest_port,
553 				      struct snd_seq_ump_event *ump_ev,
554 				      int atomic, int hop)
555 {
556 	struct snd_seq_ump_event ev = *ump_ev;
557 
558 	/* rewrite the group to the destination port */
559 	ev.ump[0] &= ~(0xfU << 24);
560 	/* fill with the new group; the dest_port->ump_group field is 1-based */
561 	ev.ump[0] |= ((dest_port->ump_group - 1) << 24);
562 
563 	return __snd_seq_deliver_single_event(dest, dest_port,
564 					      (struct snd_seq_event *)&ev,
565 					      atomic, hop);
566 }
567 
568 /* apply the UMP event filter; return true to skip the event */
569 static bool ump_event_filtered(struct snd_seq_client *dest,
570 			       const struct snd_seq_ump_event *ev)
571 {
572 	unsigned char group;
573 
574 	group = ump_message_group(ev->ump[0]);
575 	if (ump_is_groupless_msg(ump_message_type(ev->ump[0])))
576 		return dest->group_filter & (1U << 0);
577 	/* check the bitmap for 1-based group number */
578 	return dest->group_filter & (1U << (group + 1));
579 }
580 
581 /* Convert from UMP packet and deliver */
582 int snd_seq_deliver_from_ump(struct snd_seq_client *source,
583 			     struct snd_seq_client *dest,
584 			     struct snd_seq_client_port *dest_port,
585 			     struct snd_seq_event *event,
586 			     int atomic, int hop)
587 {
588 	struct snd_seq_ump_event *ump_ev = (struct snd_seq_ump_event *)event;
589 	unsigned char type;
590 
591 	if (snd_seq_ev_is_variable(event))
592 		return 0; // skip, no variable event for UMP, so far
593 	if (ump_event_filtered(dest, ump_ev))
594 		return 0; // skip if group filter is set and matching
595 	type = ump_message_type(ump_ev->ump[0]);
596 
597 	if (snd_seq_client_is_ump(dest)) {
598 		bool is_midi2 = snd_seq_client_is_midi2(dest) &&
599 			!dest_port->is_midi1;
600 
601 		if (is_midi2 && type == UMP_MSG_TYPE_MIDI1_CHANNEL_VOICE)
602 			return cvt_ump_midi1_to_midi2(dest, dest_port,
603 						      event, atomic, hop);
604 		else if (!is_midi2 && type == UMP_MSG_TYPE_MIDI2_CHANNEL_VOICE)
605 			return cvt_ump_midi2_to_midi1(dest, dest_port,
606 						      event, atomic, hop);
607 		/* non-EP port and different group is set? */
608 		if (dest_port->ump_group &&
609 		    !ump_is_groupless_msg(type) &&
610 		    ump_message_group(*ump_ev->ump) + 1 != dest_port->ump_group)
611 			return deliver_with_group_convert(dest, dest_port,
612 							  ump_ev, atomic, hop);
613 		/* copy as-is */
614 		return __snd_seq_deliver_single_event(dest, dest_port,
615 						      event, atomic, hop);
616 	}
617 
618 	return cvt_ump_to_any(dest, dest_port, event, type, atomic, hop);
619 }
620 
621 /*
622  * MIDI1 sequencer event -> UMP conversion
623  */
624 
625 /* Conversion to UMP MIDI 1.0 */
626 
627 /* convert note on/off event to MIDI 1.0 UMP */
628 static int note_ev_to_ump_midi1(const struct snd_seq_event *event,
629 				struct snd_seq_client_port *dest_port,
630 				union snd_ump_midi1_msg *data,
631 				unsigned char status)
632 {
633 	if (!event->data.note.velocity)
634 		status = UMP_MSG_STATUS_NOTE_OFF;
635 	data->note.status = status;
636 	data->note.channel = event->data.note.channel & 0x0f;
637 	data->note.velocity = event->data.note.velocity & 0x7f;
638 	data->note.note = event->data.note.note & 0x7f;
639 	return 1;
640 }
641 
642 /* convert CC event to MIDI 1.0 UMP */
643 static int cc_ev_to_ump_midi1(const struct snd_seq_event *event,
644 			      struct snd_seq_client_port *dest_port,
645 			      union snd_ump_midi1_msg *data,
646 			      unsigned char status)
647 {
648 	data->cc.status = status;
649 	data->cc.channel = event->data.control.channel & 0x0f;
650 	data->cc.index = event->data.control.param;
651 	data->cc.data = event->data.control.value;
652 	return 1;
653 }
654 
655 /* convert one-parameter control event to MIDI 1.0 UMP */
656 static int ctrl_ev_to_ump_midi1(const struct snd_seq_event *event,
657 				struct snd_seq_client_port *dest_port,
658 				union snd_ump_midi1_msg *data,
659 				unsigned char status)
660 {
661 	data->caf.status = status;
662 	data->caf.channel = event->data.control.channel & 0x0f;
663 	data->caf.data = event->data.control.value & 0x7f;
664 	return 1;
665 }
666 
667 /* convert pitchbend event to MIDI 1.0 UMP */
668 static int pitchbend_ev_to_ump_midi1(const struct snd_seq_event *event,
669 				     struct snd_seq_client_port *dest_port,
670 				     union snd_ump_midi1_msg *data,
671 				     unsigned char status)
672 {
673 	int val = event->data.control.value + 8192;
674 
675 	val = clamp(val, 0, 0x3fff);
676 	data->pb.status = status;
677 	data->pb.channel = event->data.control.channel & 0x0f;
678 	data->pb.data_msb = (val >> 7) & 0x7f;
679 	data->pb.data_lsb = val & 0x7f;
680 	return 1;
681 }
682 
683 /* convert 14bit control event to MIDI 1.0 UMP; split to two events */
684 static int ctrl14_ev_to_ump_midi1(const struct snd_seq_event *event,
685 				  struct snd_seq_client_port *dest_port,
686 				  union snd_ump_midi1_msg *data,
687 				  unsigned char status)
688 {
689 	data->cc.status = UMP_MSG_STATUS_CC;
690 	data->cc.channel = event->data.control.channel & 0x0f;
691 	data->cc.index = event->data.control.param & 0x7f;
692 	if (event->data.control.param < 0x20) {
693 		data->cc.data = (event->data.control.value >> 7) & 0x7f;
694 		data[1] = data[0];
695 		data[1].cc.index = event->data.control.param | 0x20;
696 		data[1].cc.data = event->data.control.value & 0x7f;
697 		return 2;
698 	}
699 
700 	data->cc.data = event->data.control.value & 0x7f;
701 	return 1;
702 }
703 
704 /* convert RPN/NRPN event to MIDI 1.0 UMP; split to four events */
705 static int rpn_ev_to_ump_midi1(const struct snd_seq_event *event,
706 			       struct snd_seq_client_port *dest_port,
707 			       union snd_ump_midi1_msg *data,
708 			       unsigned char status)
709 {
710 	bool is_rpn = (status == UMP_MSG_STATUS_RPN);
711 
712 	data->cc.status = UMP_MSG_STATUS_CC;
713 	data->cc.channel = event->data.control.channel & 0x0f;
714 	data[1] = data[2] = data[3] = data[0];
715 
716 	data[0].cc.index = is_rpn ? UMP_CC_RPN_MSB : UMP_CC_NRPN_MSB;
717 	data[0].cc.data = (event->data.control.param >> 7) & 0x7f;
718 	data[1].cc.index = is_rpn ? UMP_CC_RPN_LSB : UMP_CC_NRPN_LSB;
719 	data[1].cc.data = event->data.control.param & 0x7f;
720 	data[2].cc.index = UMP_CC_DATA;
721 	data[2].cc.data = (event->data.control.value >> 7) & 0x7f;
722 	data[3].cc.index = UMP_CC_DATA_LSB;
723 	data[3].cc.data = event->data.control.value & 0x7f;
724 	return 4;
725 }
726 
727 /* convert system / RT message to UMP */
728 static int system_ev_to_ump_midi1(const struct snd_seq_event *event,
729 				  struct snd_seq_client_port *dest_port,
730 				  union snd_ump_midi1_msg *data,
731 				  unsigned char status)
732 {
733 	data->system.type = UMP_MSG_TYPE_SYSTEM; // override
734 	data->system.status = status;
735 	return 1;
736 }
737 
738 /* convert system / RT message with 1 parameter to UMP */
739 static int system_1p_ev_to_ump_midi1(const struct snd_seq_event *event,
740 				     struct snd_seq_client_port *dest_port,
741 				     union snd_ump_midi1_msg *data,
742 				     unsigned char status)
743 {
744 	data->system.type = UMP_MSG_TYPE_SYSTEM; // override
745 	data->system.status = status;
746 	data->system.parm1 = event->data.control.value & 0x7f;
747 	return 1;
748 }
749 
750 /* convert system / RT message with two parameters to UMP */
751 static int system_2p_ev_to_ump_midi1(const struct snd_seq_event *event,
752 				     struct snd_seq_client_port *dest_port,
753 				     union snd_ump_midi1_msg *data,
754 				     unsigned char status)
755 {
756 	data->system.type = UMP_MSG_TYPE_SYSTEM; // override
757 	data->system.status = status;
758 	data->system.parm1 = event->data.control.value & 0x7f;
759 	data->system.parm2 = (event->data.control.value >> 7) & 0x7f;
760 	return 1;
761 }
762 
763 /* Conversion to UMP MIDI 2.0 */
764 
765 /* convert note on/off event to MIDI 2.0 UMP */
766 static int note_ev_to_ump_midi2(const struct snd_seq_event *event,
767 				struct snd_seq_client_port *dest_port,
768 				union snd_ump_midi2_msg *data,
769 				unsigned char status)
770 {
771 	if (!event->data.note.velocity)
772 		status = UMP_MSG_STATUS_NOTE_OFF;
773 	data->note.status = status;
774 	data->note.channel = event->data.note.channel & 0x0f;
775 	data->note.note = event->data.note.note & 0x7f;
776 	data->note.velocity = upscale_7_to_16bit(event->data.note.velocity & 0x7f);
777 	return 1;
778 }
779 
780 /* convert PAF event to MIDI 2.0 UMP */
781 static int paf_ev_to_ump_midi2(const struct snd_seq_event *event,
782 			       struct snd_seq_client_port *dest_port,
783 			       union snd_ump_midi2_msg *data,
784 			       unsigned char status)
785 {
786 	data->paf.status = status;
787 	data->paf.channel = event->data.note.channel & 0x0f;
788 	data->paf.note = event->data.note.note & 0x7f;
789 	data->paf.data = upscale_7_to_32bit(event->data.note.velocity & 0x7f);
790 	return 1;
791 }
792 
793 /* set up the MIDI2 RPN/NRPN packet data from the parsed info */
794 static void fill_rpn(struct snd_seq_ump_midi2_bank *cc,
795 		     union snd_ump_midi2_msg *data,
796 		     unsigned char channel)
797 {
798 	if (cc->rpn_set) {
799 		data->rpn.status = UMP_MSG_STATUS_RPN;
800 		data->rpn.bank = cc->cc_rpn_msb;
801 		data->rpn.index = cc->cc_rpn_lsb;
802 		cc->rpn_set = 0;
803 		cc->cc_rpn_msb = cc->cc_rpn_lsb = 0;
804 	} else {
805 		data->rpn.status = UMP_MSG_STATUS_NRPN;
806 		data->rpn.bank = cc->cc_nrpn_msb;
807 		data->rpn.index = cc->cc_nrpn_lsb;
808 		cc->nrpn_set = 0;
809 		cc->cc_nrpn_msb = cc->cc_nrpn_lsb = 0;
810 	}
811 	data->rpn.data = upscale_14_to_32bit((cc->cc_data_msb << 7) |
812 					     cc->cc_data_lsb);
813 	data->rpn.channel = channel;
814 	cc->cc_data_msb = cc->cc_data_lsb = 0;
815 }
816 
817 /* convert CC event to MIDI 2.0 UMP */
818 static int cc_ev_to_ump_midi2(const struct snd_seq_event *event,
819 			      struct snd_seq_client_port *dest_port,
820 			      union snd_ump_midi2_msg *data,
821 			      unsigned char status)
822 {
823 	unsigned char channel = event->data.control.channel & 0x0f;
824 	unsigned char index = event->data.control.param & 0x7f;
825 	unsigned char val = event->data.control.value & 0x7f;
826 	struct snd_seq_ump_midi2_bank *cc = &dest_port->midi2_bank[channel];
827 
828 	/* process special CC's (bank/rpn/nrpn) */
829 	switch (index) {
830 	case UMP_CC_RPN_MSB:
831 		cc->rpn_set = 1;
832 		cc->cc_rpn_msb = val;
833 		return 0; // skip
834 	case UMP_CC_RPN_LSB:
835 		cc->rpn_set = 1;
836 		cc->cc_rpn_lsb = val;
837 		return 0; // skip
838 	case UMP_CC_NRPN_MSB:
839 		cc->nrpn_set = 1;
840 		cc->cc_nrpn_msb = val;
841 		return 0; // skip
842 	case UMP_CC_NRPN_LSB:
843 		cc->nrpn_set = 1;
844 		cc->cc_nrpn_lsb = val;
845 		return 0; // skip
846 	case UMP_CC_DATA:
847 		cc->cc_data_msb = val;
848 		return 0; // skip
849 	case UMP_CC_BANK_SELECT:
850 		cc->bank_set = 1;
851 		cc->cc_bank_msb = val;
852 		return 0; // skip
853 	case UMP_CC_BANK_SELECT_LSB:
854 		cc->bank_set = 1;
855 		cc->cc_bank_lsb = val;
856 		return 0; // skip
857 	case UMP_CC_DATA_LSB:
858 		cc->cc_data_lsb = val;
859 		if (!(cc->rpn_set || cc->nrpn_set))
860 			return 0; // skip
861 		fill_rpn(cc, data, channel);
862 		return 1;
863 	}
864 
865 	data->cc.status = status;
866 	data->cc.channel = channel;
867 	data->cc.index = index;
868 	data->cc.data = upscale_7_to_32bit(event->data.control.value & 0x7f);
869 	return 1;
870 }
871 
872 /* convert one-parameter control event to MIDI 2.0 UMP */
873 static int ctrl_ev_to_ump_midi2(const struct snd_seq_event *event,
874 				struct snd_seq_client_port *dest_port,
875 				union snd_ump_midi2_msg *data,
876 				unsigned char status)
877 {
878 	data->caf.status = status;
879 	data->caf.channel = event->data.control.channel & 0x0f;
880 	data->caf.data = upscale_7_to_32bit(event->data.control.value & 0x7f);
881 	return 1;
882 }
883 
884 /* convert program change event to MIDI 2.0 UMP */
885 static int pgm_ev_to_ump_midi2(const struct snd_seq_event *event,
886 			       struct snd_seq_client_port *dest_port,
887 			       union snd_ump_midi2_msg *data,
888 			       unsigned char status)
889 {
890 	unsigned char channel = event->data.control.channel & 0x0f;
891 	struct snd_seq_ump_midi2_bank *cc = &dest_port->midi2_bank[channel];
892 
893 	data->pg.status = status;
894 	data->pg.channel = channel;
895 	data->pg.program = event->data.control.value & 0x7f;
896 	if (cc->bank_set) {
897 		data->pg.bank_valid = 1;
898 		data->pg.bank_msb = cc->cc_bank_msb;
899 		data->pg.bank_lsb = cc->cc_bank_lsb;
900 		cc->bank_set = 0;
901 	}
902 	return 1;
903 }
904 
905 /* convert pitchbend event to MIDI 2.0 UMP */
906 static int pitchbend_ev_to_ump_midi2(const struct snd_seq_event *event,
907 				     struct snd_seq_client_port *dest_port,
908 				     union snd_ump_midi2_msg *data,
909 				     unsigned char status)
910 {
911 	int val = event->data.control.value + 8192;
912 
913 	val = clamp(val, 0, 0x3fff);
914 	data->pb.status = status;
915 	data->pb.channel = event->data.control.channel & 0x0f;
916 	data->pb.data = upscale_14_to_32bit(val);
917 	return 1;
918 }
919 
920 /* convert 14bit control event to MIDI 2.0 UMP; split to two events */
921 static int ctrl14_ev_to_ump_midi2(const struct snd_seq_event *event,
922 				  struct snd_seq_client_port *dest_port,
923 				  union snd_ump_midi2_msg *data,
924 				  unsigned char status)
925 {
926 	unsigned char channel = event->data.control.channel & 0x0f;
927 	unsigned char index = event->data.control.param & 0x7f;
928 	struct snd_seq_ump_midi2_bank *cc = &dest_port->midi2_bank[channel];
929 	unsigned char msb, lsb;
930 
931 	msb = (event->data.control.value >> 7) & 0x7f;
932 	lsb = event->data.control.value & 0x7f;
933 	/* process special CC's (bank/rpn/nrpn) */
934 	switch (index) {
935 	case UMP_CC_BANK_SELECT:
936 		cc->cc_bank_msb = msb;
937 		fallthrough;
938 	case UMP_CC_BANK_SELECT_LSB:
939 		cc->bank_set = 1;
940 		cc->cc_bank_lsb = lsb;
941 		return 0; // skip
942 	case UMP_CC_RPN_MSB:
943 		cc->cc_rpn_msb = msb;
944 		fallthrough;
945 	case UMP_CC_RPN_LSB:
946 		cc->rpn_set = 1;
947 		cc->cc_rpn_lsb = lsb;
948 		return 0; // skip
949 	case UMP_CC_NRPN_MSB:
950 		cc->cc_nrpn_msb = msb;
951 		fallthrough;
952 	case UMP_CC_NRPN_LSB:
953 		cc->nrpn_set = 1;
954 		cc->cc_nrpn_lsb = lsb;
955 		return 0; // skip
956 	case UMP_CC_DATA:
957 		cc->cc_data_msb = msb;
958 		fallthrough;
959 	case UMP_CC_DATA_LSB:
960 		cc->cc_data_lsb = lsb;
961 		if (!(cc->rpn_set || cc->nrpn_set))
962 			return 0; // skip
963 		fill_rpn(cc, data, channel);
964 		return 1;
965 	}
966 
967 	data->cc.status = UMP_MSG_STATUS_CC;
968 	data->cc.channel = channel;
969 	data->cc.index = index;
970 	if (event->data.control.param < 0x20) {
971 		data->cc.data = upscale_7_to_32bit(msb);
972 		data[1] = data[0];
973 		data[1].cc.index = event->data.control.param | 0x20;
974 		data[1].cc.data = upscale_7_to_32bit(lsb);
975 		return 2;
976 	}
977 
978 	data->cc.data = upscale_7_to_32bit(lsb);
979 	return 1;
980 }
981 
982 /* convert RPN/NRPN event to MIDI 2.0 UMP */
983 static int rpn_ev_to_ump_midi2(const struct snd_seq_event *event,
984 			       struct snd_seq_client_port *dest_port,
985 			       union snd_ump_midi2_msg *data,
986 			       unsigned char status)
987 {
988 	data->rpn.status = status;
989 	data->rpn.channel = event->data.control.channel;
990 	data->rpn.bank = (event->data.control.param >> 7) & 0x7f;
991 	data->rpn.index = event->data.control.param & 0x7f;
992 	data->rpn.data = upscale_14_to_32bit(event->data.control.value & 0x3fff);
993 	return 1;
994 }
995 
996 /* convert system / RT message to UMP */
997 static int system_ev_to_ump_midi2(const struct snd_seq_event *event,
998 				  struct snd_seq_client_port *dest_port,
999 				  union snd_ump_midi2_msg *data,
1000 				  unsigned char status)
1001 {
1002 	return system_ev_to_ump_midi1(event, dest_port,
1003 				      (union snd_ump_midi1_msg *)data,
1004 				      status);
1005 }
1006 
1007 /* convert system / RT message with 1 parameter to UMP */
1008 static int system_1p_ev_to_ump_midi2(const struct snd_seq_event *event,
1009 				     struct snd_seq_client_port *dest_port,
1010 				     union snd_ump_midi2_msg *data,
1011 				     unsigned char status)
1012 {
1013 	return system_1p_ev_to_ump_midi1(event, dest_port,
1014 					 (union snd_ump_midi1_msg *)data,
1015 					 status);
1016 }
1017 
1018 /* convert system / RT message with two parameters to UMP */
1019 static int system_2p_ev_to_ump_midi2(const struct snd_seq_event *event,
1020 				     struct snd_seq_client_port *dest_port,
1021 				     union snd_ump_midi2_msg *data,
1022 				     unsigned char status)
1023 {
1024 	return system_2p_ev_to_ump_midi1(event, dest_port,
1025 					 (union snd_ump_midi1_msg *)data,
1026 					 status);
1027 }
1028 
1029 struct seq_ev_to_ump {
1030 	int seq_type;
1031 	unsigned char status;
1032 	int (*midi1_encode)(const struct snd_seq_event *event,
1033 			    struct snd_seq_client_port *dest_port,
1034 			    union snd_ump_midi1_msg *data,
1035 			    unsigned char status);
1036 	int (*midi2_encode)(const struct snd_seq_event *event,
1037 			    struct snd_seq_client_port *dest_port,
1038 			    union snd_ump_midi2_msg *data,
1039 			    unsigned char status);
1040 };
1041 
1042 static const struct seq_ev_to_ump seq_ev_ump_encoders[] = {
1043 	{ SNDRV_SEQ_EVENT_NOTEON, UMP_MSG_STATUS_NOTE_ON,
1044 	  note_ev_to_ump_midi1, note_ev_to_ump_midi2 },
1045 	{ SNDRV_SEQ_EVENT_NOTEOFF, UMP_MSG_STATUS_NOTE_OFF,
1046 	  note_ev_to_ump_midi1, note_ev_to_ump_midi2 },
1047 	{ SNDRV_SEQ_EVENT_KEYPRESS, UMP_MSG_STATUS_POLY_PRESSURE,
1048 	  note_ev_to_ump_midi1, paf_ev_to_ump_midi2 },
1049 	{ SNDRV_SEQ_EVENT_CONTROLLER, UMP_MSG_STATUS_CC,
1050 	  cc_ev_to_ump_midi1, cc_ev_to_ump_midi2 },
1051 	{ SNDRV_SEQ_EVENT_PGMCHANGE, UMP_MSG_STATUS_PROGRAM,
1052 	  ctrl_ev_to_ump_midi1, pgm_ev_to_ump_midi2 },
1053 	{ SNDRV_SEQ_EVENT_CHANPRESS, UMP_MSG_STATUS_CHANNEL_PRESSURE,
1054 	  ctrl_ev_to_ump_midi1, ctrl_ev_to_ump_midi2 },
1055 	{ SNDRV_SEQ_EVENT_PITCHBEND, UMP_MSG_STATUS_PITCH_BEND,
1056 	  pitchbend_ev_to_ump_midi1, pitchbend_ev_to_ump_midi2 },
1057 	{ SNDRV_SEQ_EVENT_CONTROL14, 0,
1058 	  ctrl14_ev_to_ump_midi1, ctrl14_ev_to_ump_midi2 },
1059 	{ SNDRV_SEQ_EVENT_NONREGPARAM, UMP_MSG_STATUS_NRPN,
1060 	  rpn_ev_to_ump_midi1, rpn_ev_to_ump_midi2 },
1061 	{ SNDRV_SEQ_EVENT_REGPARAM, UMP_MSG_STATUS_RPN,
1062 	  rpn_ev_to_ump_midi1, rpn_ev_to_ump_midi2 },
1063 	{ SNDRV_SEQ_EVENT_QFRAME, UMP_SYSTEM_STATUS_MIDI_TIME_CODE,
1064 	  system_1p_ev_to_ump_midi1, system_1p_ev_to_ump_midi2 },
1065 	{ SNDRV_SEQ_EVENT_SONGPOS, UMP_SYSTEM_STATUS_SONG_POSITION,
1066 	  system_2p_ev_to_ump_midi1, system_2p_ev_to_ump_midi2 },
1067 	{ SNDRV_SEQ_EVENT_SONGSEL, UMP_SYSTEM_STATUS_SONG_SELECT,
1068 	  system_1p_ev_to_ump_midi1, system_1p_ev_to_ump_midi2 },
1069 	{ SNDRV_SEQ_EVENT_TUNE_REQUEST, UMP_SYSTEM_STATUS_TUNE_REQUEST,
1070 	  system_ev_to_ump_midi1, system_ev_to_ump_midi2 },
1071 	{ SNDRV_SEQ_EVENT_CLOCK, UMP_SYSTEM_STATUS_TIMING_CLOCK,
1072 	  system_ev_to_ump_midi1, system_ev_to_ump_midi2 },
1073 	{ SNDRV_SEQ_EVENT_START, UMP_SYSTEM_STATUS_START,
1074 	  system_ev_to_ump_midi1, system_ev_to_ump_midi2 },
1075 	{ SNDRV_SEQ_EVENT_CONTINUE, UMP_SYSTEM_STATUS_CONTINUE,
1076 	  system_ev_to_ump_midi1, system_ev_to_ump_midi2 },
1077 	{ SNDRV_SEQ_EVENT_STOP, UMP_SYSTEM_STATUS_STOP,
1078 	  system_ev_to_ump_midi1, system_ev_to_ump_midi2 },
1079 	{ SNDRV_SEQ_EVENT_SENSING, UMP_SYSTEM_STATUS_ACTIVE_SENSING,
1080 	  system_ev_to_ump_midi1, system_ev_to_ump_midi2 },
1081 	{ SNDRV_SEQ_EVENT_RESET, UMP_SYSTEM_STATUS_RESET,
1082 	  system_ev_to_ump_midi1, system_ev_to_ump_midi2 },
1083 };
1084 
1085 static const struct seq_ev_to_ump *find_ump_encoder(int type)
1086 {
1087 	int i;
1088 
1089 	for (i = 0; i < ARRAY_SIZE(seq_ev_ump_encoders); i++)
1090 		if (seq_ev_ump_encoders[i].seq_type == type)
1091 			return &seq_ev_ump_encoders[i];
1092 
1093 	return NULL;
1094 }
1095 
1096 static void setup_ump_event(struct snd_seq_ump_event *dest,
1097 			    const struct snd_seq_event *src)
1098 {
1099 	memcpy(dest, src, sizeof(*src));
1100 	dest->type = 0;
1101 	dest->flags |= SNDRV_SEQ_EVENT_UMP;
1102 	dest->flags &= ~SNDRV_SEQ_EVENT_LENGTH_MASK;
1103 	memset(dest->ump, 0, sizeof(dest->ump));
1104 }
1105 
1106 /* Convert ALSA seq event to UMP MIDI 1.0 and deliver it */
1107 static int cvt_to_ump_midi1(struct snd_seq_client *dest,
1108 			    struct snd_seq_client_port *dest_port,
1109 			    struct snd_seq_event *event,
1110 			    int atomic, int hop)
1111 {
1112 	const struct seq_ev_to_ump *encoder;
1113 	struct snd_seq_ump_event ev_cvt;
1114 	union snd_ump_midi1_msg data[4];
1115 	int i, n, err;
1116 
1117 	encoder = find_ump_encoder(event->type);
1118 	if (!encoder)
1119 		return __snd_seq_deliver_single_event(dest, dest_port,
1120 						      event, atomic, hop);
1121 
1122 	data->raw = make_raw_ump(dest_port, UMP_MSG_TYPE_MIDI1_CHANNEL_VOICE);
1123 	n = encoder->midi1_encode(event, dest_port, data, encoder->status);
1124 	if (!n)
1125 		return 0;
1126 
1127 	setup_ump_event(&ev_cvt, event);
1128 	for (i = 0; i < n; i++) {
1129 		ev_cvt.ump[0] = data[i].raw;
1130 		err = __snd_seq_deliver_single_event(dest, dest_port,
1131 						     (struct snd_seq_event *)&ev_cvt,
1132 						     atomic, hop);
1133 		if (err < 0)
1134 			return err;
1135 	}
1136 
1137 	return 0;
1138 }
1139 
1140 /* Convert ALSA seq event to UMP MIDI 2.0 and deliver it */
1141 static int cvt_to_ump_midi2(struct snd_seq_client *dest,
1142 			    struct snd_seq_client_port *dest_port,
1143 			    struct snd_seq_event *event,
1144 			    int atomic, int hop)
1145 {
1146 	const struct seq_ev_to_ump *encoder;
1147 	struct snd_seq_ump_event ev_cvt;
1148 	union snd_ump_midi2_msg data[2];
1149 	int i, n, err;
1150 
1151 	encoder = find_ump_encoder(event->type);
1152 	if (!encoder)
1153 		return __snd_seq_deliver_single_event(dest, dest_port,
1154 						      event, atomic, hop);
1155 
1156 	data->raw[0] = make_raw_ump(dest_port, UMP_MSG_TYPE_MIDI2_CHANNEL_VOICE);
1157 	data->raw[1] = 0;
1158 	n = encoder->midi2_encode(event, dest_port, data, encoder->status);
1159 	if (!n)
1160 		return 0;
1161 
1162 	setup_ump_event(&ev_cvt, event);
1163 	for (i = 0; i < n; i++) {
1164 		memcpy(ev_cvt.ump, &data[i], sizeof(data[i]));
1165 		err = __snd_seq_deliver_single_event(dest, dest_port,
1166 						     (struct snd_seq_event *)&ev_cvt,
1167 						     atomic, hop);
1168 		if (err < 0)
1169 			return err;
1170 	}
1171 
1172 	return 0;
1173 }
1174 
1175 /* Fill up a sysex7 UMP from the byte stream */
1176 static void fill_sysex7_ump(struct snd_seq_client_port *dest_port,
1177 			    u32 *val, u8 status, u8 *buf, int len)
1178 {
1179 	memset(val, 0, 8);
1180 	memcpy((u8 *)val + 2, buf, len);
1181 #ifdef __LITTLE_ENDIAN
1182 	swab32_array(val, 2);
1183 #endif
1184 	val[0] |= ump_compose(UMP_MSG_TYPE_DATA, get_ump_group(dest_port),
1185 			      status, len);
1186 }
1187 
1188 /* Convert sysex var event to UMP sysex7 packets and deliver them */
1189 static int cvt_sysex_to_ump(struct snd_seq_client *dest,
1190 			    struct snd_seq_client_port *dest_port,
1191 			    struct snd_seq_event *event,
1192 			    int atomic, int hop)
1193 {
1194 	struct snd_seq_ump_event ev_cvt;
1195 	unsigned char status;
1196 	u8 buf[8], *xbuf;
1197 	int offset = 0;
1198 	int len, err;
1199 	bool finished = false;
1200 
1201 	if (!snd_seq_ev_is_variable(event))
1202 		return 0;
1203 
1204 	setup_ump_event(&ev_cvt, event);
1205 	while (!finished) {
1206 		len = snd_seq_expand_var_event_at(event, sizeof(buf), buf, offset);
1207 		if (len <= 0)
1208 			break;
1209 		if (WARN_ON(len > sizeof(buf)))
1210 			break;
1211 
1212 		xbuf = buf;
1213 		status = UMP_SYSEX_STATUS_CONTINUE;
1214 		/* truncate the sysex start-marker */
1215 		if (*xbuf == UMP_MIDI1_MSG_SYSEX_START) {
1216 			status = UMP_SYSEX_STATUS_START;
1217 			len--;
1218 			offset++;
1219 			xbuf++;
1220 		}
1221 
1222 		/* if the last of this packet or the 1st byte of the next packet
1223 		 * is the end-marker, finish the transfer with this packet
1224 		 */
1225 		if (len > 0 && len < 8 &&
1226 		    xbuf[len - 1] == UMP_MIDI1_MSG_SYSEX_END) {
1227 			if (status == UMP_SYSEX_STATUS_START)
1228 				status = UMP_SYSEX_STATUS_SINGLE;
1229 			else
1230 				status = UMP_SYSEX_STATUS_END;
1231 			len--;
1232 			finished = true;
1233 		}
1234 
1235 		len = min(len, 6);
1236 		fill_sysex7_ump(dest_port, ev_cvt.ump, status, xbuf, len);
1237 		err = __snd_seq_deliver_single_event(dest, dest_port,
1238 						     (struct snd_seq_event *)&ev_cvt,
1239 						     atomic, hop);
1240 		if (err < 0)
1241 			return err;
1242 		offset += len;
1243 	}
1244 	return 0;
1245 }
1246 
1247 /* Convert to UMP packet and deliver */
1248 int snd_seq_deliver_to_ump(struct snd_seq_client *source,
1249 			   struct snd_seq_client *dest,
1250 			   struct snd_seq_client_port *dest_port,
1251 			   struct snd_seq_event *event,
1252 			   int atomic, int hop)
1253 {
1254 	if (dest->group_filter & (1U << dest_port->ump_group))
1255 		return 0; /* group filtered - skip the event */
1256 	if (event->type == SNDRV_SEQ_EVENT_SYSEX)
1257 		return cvt_sysex_to_ump(dest, dest_port, event, atomic, hop);
1258 	else if (snd_seq_client_is_midi2(dest) && !dest_port->is_midi1)
1259 		return cvt_to_ump_midi2(dest, dest_port, event, atomic, hop);
1260 	else
1261 		return cvt_to_ump_midi1(dest, dest_port, event, atomic, hop);
1262 }
1263