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