2019-05-27 14:55:05 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* GM/GS/XG midi module.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 Steve Ratcliffe
|
|
|
|
*
|
|
|
|
* Based on awe_wave.c by Takashi Iwai
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* This module is used to keep track of the current midi state.
|
|
|
|
* It can be used for drivers that are required to emulate midi when
|
|
|
|
* the hardware doesn't.
|
|
|
|
*
|
|
|
|
* It was written for a AWE64 driver, but there should be no AWE specific
|
|
|
|
* code in here. If there is it should be reported as a bug.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/string.h>
|
2011-07-16 00:38:28 +08:00
|
|
|
#include <linux/module.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <sound/core.h>
|
|
|
|
#include <sound/seq_kernel.h>
|
|
|
|
#include <sound/seq_midi_emul.h>
|
|
|
|
#include <sound/initval.h>
|
|
|
|
#include <sound/asoundef.h>
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Takashi Iwai / Steve Ratcliffe");
|
|
|
|
MODULE_DESCRIPTION("Advanced Linux Sound Architecture sequencer MIDI emulation.");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
|
|
|
/* Prototypes for static functions */
|
2005-11-17 21:04:02 +08:00
|
|
|
static void note_off(struct snd_midi_op *ops, void *drv,
|
|
|
|
struct snd_midi_channel *chan,
|
|
|
|
int note, int vel);
|
|
|
|
static void do_control(struct snd_midi_op *ops, void *private,
|
|
|
|
struct snd_midi_channel_set *chset,
|
|
|
|
struct snd_midi_channel *chan,
|
2005-04-17 06:20:36 +08:00
|
|
|
int control, int value);
|
2005-11-17 21:04:02 +08:00
|
|
|
static void rpn(struct snd_midi_op *ops, void *drv, struct snd_midi_channel *chan,
|
|
|
|
struct snd_midi_channel_set *chset);
|
|
|
|
static void nrpn(struct snd_midi_op *ops, void *drv, struct snd_midi_channel *chan,
|
|
|
|
struct snd_midi_channel_set *chset);
|
|
|
|
static void sysex(struct snd_midi_op *ops, void *private, unsigned char *sysex,
|
|
|
|
int len, struct snd_midi_channel_set *chset);
|
|
|
|
static void all_sounds_off(struct snd_midi_op *ops, void *private,
|
|
|
|
struct snd_midi_channel *chan);
|
|
|
|
static void all_notes_off(struct snd_midi_op *ops, void *private,
|
|
|
|
struct snd_midi_channel *chan);
|
|
|
|
static void snd_midi_reset_controllers(struct snd_midi_channel *chan);
|
|
|
|
static void reset_all_channels(struct snd_midi_channel_set *chset);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process an event in a driver independent way. This means dealing
|
|
|
|
* with RPN, NRPN, SysEx etc that are defined for common midi applications
|
|
|
|
* such as GM, GS and XG.
|
|
|
|
* There modes that this module will run in are:
|
|
|
|
* Generic MIDI - no interpretation at all, it will just save current values
|
2007-10-20 05:10:43 +08:00
|
|
|
* of controllers etc.
|
2005-04-17 06:20:36 +08:00
|
|
|
* GM - You can use all gm_ prefixed elements of chan. Controls, RPN, NRPN,
|
|
|
|
* SysEx will be interpreded as defined in General Midi.
|
|
|
|
* GS - You can use all gs_ prefixed elements of chan. Codes for GS will be
|
|
|
|
* interpreted.
|
|
|
|
* XG - You can use all xg_ prefixed elements of chan. Codes for XG will
|
|
|
|
* be interpreted.
|
|
|
|
*/
|
|
|
|
void
|
2005-11-17 21:04:02 +08:00
|
|
|
snd_midi_process_event(struct snd_midi_op *ops,
|
|
|
|
struct snd_seq_event *ev,
|
|
|
|
struct snd_midi_channel_set *chanset)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-11-17 21:04:02 +08:00
|
|
|
struct snd_midi_channel *chan;
|
2005-04-17 06:20:36 +08:00
|
|
|
void *drv;
|
|
|
|
int dest_channel = 0;
|
|
|
|
|
|
|
|
if (ev == NULL || chanset == NULL) {
|
2014-02-05 01:24:34 +08:00
|
|
|
pr_debug("ALSA: seq_midi_emul: ev or chanbase NULL (snd_midi_process_event)\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (chanset->channels == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (snd_seq_ev_is_channel_type(ev)) {
|
|
|
|
dest_channel = ev->data.note.channel;
|
|
|
|
if (dest_channel >= chanset->max_channels) {
|
2014-02-05 01:24:34 +08:00
|
|
|
pr_debug("ALSA: seq_midi_emul: dest channel is %d, max is %d\n",
|
2005-11-17 21:04:02 +08:00
|
|
|
dest_channel, chanset->max_channels);
|
2005-04-17 06:20:36 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
chan = chanset->channels + dest_channel;
|
|
|
|
drv = chanset->private_data;
|
|
|
|
|
|
|
|
/* EVENT_NOTE should be processed before queued */
|
|
|
|
if (ev->type == SNDRV_SEQ_EVENT_NOTE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Make sure that we don't have a note on that should really be
|
|
|
|
* a note off */
|
|
|
|
if (ev->type == SNDRV_SEQ_EVENT_NOTEON && ev->data.note.velocity == 0)
|
|
|
|
ev->type = SNDRV_SEQ_EVENT_NOTEOFF;
|
|
|
|
|
|
|
|
/* Make sure the note is within array range */
|
|
|
|
if (ev->type == SNDRV_SEQ_EVENT_NOTEON ||
|
|
|
|
ev->type == SNDRV_SEQ_EVENT_NOTEOFF ||
|
|
|
|
ev->type == SNDRV_SEQ_EVENT_KEYPRESS) {
|
|
|
|
if (ev->data.note.note >= 128)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ev->type) {
|
|
|
|
case SNDRV_SEQ_EVENT_NOTEON:
|
|
|
|
if (chan->note[ev->data.note.note] & SNDRV_MIDI_NOTE_ON) {
|
|
|
|
if (ops->note_off)
|
|
|
|
ops->note_off(drv, ev->data.note.note, 0, chan);
|
|
|
|
}
|
|
|
|
chan->note[ev->data.note.note] = SNDRV_MIDI_NOTE_ON;
|
|
|
|
if (ops->note_on)
|
|
|
|
ops->note_on(drv, ev->data.note.note, ev->data.note.velocity, chan);
|
|
|
|
break;
|
|
|
|
case SNDRV_SEQ_EVENT_NOTEOFF:
|
|
|
|
if (! (chan->note[ev->data.note.note] & SNDRV_MIDI_NOTE_ON))
|
|
|
|
break;
|
|
|
|
if (ops->note_off)
|
|
|
|
note_off(ops, drv, chan, ev->data.note.note, ev->data.note.velocity);
|
|
|
|
break;
|
|
|
|
case SNDRV_SEQ_EVENT_KEYPRESS:
|
|
|
|
if (ops->key_press)
|
|
|
|
ops->key_press(drv, ev->data.note.note, ev->data.note.velocity, chan);
|
|
|
|
break;
|
|
|
|
case SNDRV_SEQ_EVENT_CONTROLLER:
|
|
|
|
do_control(ops, drv, chanset, chan,
|
|
|
|
ev->data.control.param, ev->data.control.value);
|
|
|
|
break;
|
|
|
|
case SNDRV_SEQ_EVENT_PGMCHANGE:
|
|
|
|
chan->midi_program = ev->data.control.value;
|
|
|
|
break;
|
|
|
|
case SNDRV_SEQ_EVENT_PITCHBEND:
|
|
|
|
chan->midi_pitchbend = ev->data.control.value;
|
|
|
|
if (ops->control)
|
|
|
|
ops->control(drv, MIDI_CTL_PITCHBEND, chan);
|
|
|
|
break;
|
|
|
|
case SNDRV_SEQ_EVENT_CHANPRESS:
|
|
|
|
chan->midi_pressure = ev->data.control.value;
|
|
|
|
if (ops->control)
|
|
|
|
ops->control(drv, MIDI_CTL_CHAN_PRESSURE, chan);
|
|
|
|
break;
|
|
|
|
case SNDRV_SEQ_EVENT_CONTROL14:
|
|
|
|
/* Best guess is that this is any of the 14 bit controller values */
|
|
|
|
if (ev->data.control.param < 32) {
|
|
|
|
/* set low part first */
|
|
|
|
chan->control[ev->data.control.param + 32] =
|
|
|
|
ev->data.control.value & 0x7f;
|
|
|
|
do_control(ops, drv, chanset, chan,
|
|
|
|
ev->data.control.param,
|
|
|
|
((ev->data.control.value>>7) & 0x7f));
|
|
|
|
} else
|
|
|
|
do_control(ops, drv, chanset, chan,
|
|
|
|
ev->data.control.param,
|
|
|
|
ev->data.control.value);
|
|
|
|
break;
|
|
|
|
case SNDRV_SEQ_EVENT_NONREGPARAM:
|
2007-10-20 05:10:43 +08:00
|
|
|
/* Break it back into its controller values */
|
2005-04-17 06:20:36 +08:00
|
|
|
chan->param_type = SNDRV_MIDI_PARAM_TYPE_NONREGISTERED;
|
|
|
|
chan->control[MIDI_CTL_MSB_DATA_ENTRY]
|
|
|
|
= (ev->data.control.value >> 7) & 0x7f;
|
|
|
|
chan->control[MIDI_CTL_LSB_DATA_ENTRY]
|
|
|
|
= ev->data.control.value & 0x7f;
|
|
|
|
chan->control[MIDI_CTL_NONREG_PARM_NUM_MSB]
|
|
|
|
= (ev->data.control.param >> 7) & 0x7f;
|
|
|
|
chan->control[MIDI_CTL_NONREG_PARM_NUM_LSB]
|
|
|
|
= ev->data.control.param & 0x7f;
|
|
|
|
nrpn(ops, drv, chan, chanset);
|
|
|
|
break;
|
|
|
|
case SNDRV_SEQ_EVENT_REGPARAM:
|
2007-10-20 05:10:43 +08:00
|
|
|
/* Break it back into its controller values */
|
2005-04-17 06:20:36 +08:00
|
|
|
chan->param_type = SNDRV_MIDI_PARAM_TYPE_REGISTERED;
|
|
|
|
chan->control[MIDI_CTL_MSB_DATA_ENTRY]
|
|
|
|
= (ev->data.control.value >> 7) & 0x7f;
|
|
|
|
chan->control[MIDI_CTL_LSB_DATA_ENTRY]
|
|
|
|
= ev->data.control.value & 0x7f;
|
|
|
|
chan->control[MIDI_CTL_REGIST_PARM_NUM_MSB]
|
|
|
|
= (ev->data.control.param >> 7) & 0x7f;
|
|
|
|
chan->control[MIDI_CTL_REGIST_PARM_NUM_LSB]
|
|
|
|
= ev->data.control.param & 0x7f;
|
|
|
|
rpn(ops, drv, chan, chanset);
|
|
|
|
break;
|
|
|
|
case SNDRV_SEQ_EVENT_SYSEX:
|
|
|
|
if ((ev->flags & SNDRV_SEQ_EVENT_LENGTH_MASK) == SNDRV_SEQ_EVENT_LENGTH_VARIABLE) {
|
|
|
|
unsigned char sysexbuf[64];
|
|
|
|
int len;
|
|
|
|
len = snd_seq_expand_var_event(ev, sizeof(sysexbuf), sysexbuf, 1, 0);
|
|
|
|
if (len > 0)
|
|
|
|
sysex(ops, drv, sysexbuf, len, chanset);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SNDRV_SEQ_EVENT_SONGPOS:
|
|
|
|
case SNDRV_SEQ_EVENT_SONGSEL:
|
|
|
|
case SNDRV_SEQ_EVENT_CLOCK:
|
|
|
|
case SNDRV_SEQ_EVENT_START:
|
|
|
|
case SNDRV_SEQ_EVENT_CONTINUE:
|
|
|
|
case SNDRV_SEQ_EVENT_STOP:
|
|
|
|
case SNDRV_SEQ_EVENT_QFRAME:
|
|
|
|
case SNDRV_SEQ_EVENT_TEMPO:
|
|
|
|
case SNDRV_SEQ_EVENT_TIMESIGN:
|
|
|
|
case SNDRV_SEQ_EVENT_KEYSIGN:
|
|
|
|
goto not_yet;
|
|
|
|
case SNDRV_SEQ_EVENT_SENSING:
|
|
|
|
break;
|
|
|
|
case SNDRV_SEQ_EVENT_CLIENT_START:
|
|
|
|
case SNDRV_SEQ_EVENT_CLIENT_EXIT:
|
|
|
|
case SNDRV_SEQ_EVENT_CLIENT_CHANGE:
|
|
|
|
case SNDRV_SEQ_EVENT_PORT_START:
|
|
|
|
case SNDRV_SEQ_EVENT_PORT_EXIT:
|
|
|
|
case SNDRV_SEQ_EVENT_PORT_CHANGE:
|
|
|
|
case SNDRV_SEQ_EVENT_ECHO:
|
|
|
|
not_yet:
|
|
|
|
default:
|
2014-02-05 01:24:34 +08:00
|
|
|
/*pr_debug("ALSA: seq_midi_emul: Unimplemented event %d\n", ev->type);*/
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-06-16 22:15:24 +08:00
|
|
|
EXPORT_SYMBOL(snd_midi_process_event);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* release note
|
|
|
|
*/
|
|
|
|
static void
|
2005-11-17 21:04:02 +08:00
|
|
|
note_off(struct snd_midi_op *ops, void *drv, struct snd_midi_channel *chan,
|
|
|
|
int note, int vel)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
if (chan->gm_hold) {
|
|
|
|
/* Hold this note until pedal is turned off */
|
|
|
|
chan->note[note] |= SNDRV_MIDI_NOTE_RELEASED;
|
|
|
|
} else if (chan->note[note] & SNDRV_MIDI_NOTE_SOSTENUTO) {
|
|
|
|
/* Mark this note as release; it will be turned off when sostenuto
|
|
|
|
* is turned off */
|
|
|
|
chan->note[note] |= SNDRV_MIDI_NOTE_RELEASED;
|
|
|
|
} else {
|
|
|
|
chan->note[note] = 0;
|
|
|
|
if (ops->note_off)
|
|
|
|
ops->note_off(drv, note, vel, chan);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2007-10-20 05:10:43 +08:00
|
|
|
* Do all driver independent operations for this controller and pass
|
2005-04-17 06:20:36 +08:00
|
|
|
* events that need to take place immediately to the driver.
|
|
|
|
*/
|
|
|
|
static void
|
2005-11-17 21:04:02 +08:00
|
|
|
do_control(struct snd_midi_op *ops, void *drv, struct snd_midi_channel_set *chset,
|
|
|
|
struct snd_midi_channel *chan, int control, int value)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2015-02-11 23:10:54 +08:00
|
|
|
if (control >= ARRAY_SIZE(chan->control))
|
|
|
|
return;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Switches */
|
|
|
|
if ((control >=64 && control <=69) || (control >= 80 && control <= 83)) {
|
|
|
|
/* These are all switches; either off or on so set to 0 or 127 */
|
|
|
|
value = (value >= 64)? 127: 0;
|
|
|
|
}
|
|
|
|
chan->control[control] = value;
|
|
|
|
|
|
|
|
switch (control) {
|
|
|
|
case MIDI_CTL_SUSTAIN:
|
|
|
|
if (value == 0) {
|
|
|
|
/* Sustain has been released, turn off held notes */
|
|
|
|
for (i = 0; i < 128; i++) {
|
|
|
|
if (chan->note[i] & SNDRV_MIDI_NOTE_RELEASED) {
|
|
|
|
chan->note[i] = SNDRV_MIDI_NOTE_OFF;
|
|
|
|
if (ops->note_off)
|
|
|
|
ops->note_off(drv, i, 0, chan);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MIDI_CTL_PORTAMENTO:
|
|
|
|
break;
|
|
|
|
case MIDI_CTL_SOSTENUTO:
|
|
|
|
if (value) {
|
|
|
|
/* Mark each note that is currently held down */
|
|
|
|
for (i = 0; i < 128; i++) {
|
|
|
|
if (chan->note[i] & SNDRV_MIDI_NOTE_ON)
|
|
|
|
chan->note[i] |= SNDRV_MIDI_NOTE_SOSTENUTO;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* release all notes that were held */
|
|
|
|
for (i = 0; i < 128; i++) {
|
|
|
|
if (chan->note[i] & SNDRV_MIDI_NOTE_SOSTENUTO) {
|
|
|
|
chan->note[i] &= ~SNDRV_MIDI_NOTE_SOSTENUTO;
|
|
|
|
if (chan->note[i] & SNDRV_MIDI_NOTE_RELEASED) {
|
|
|
|
chan->note[i] = SNDRV_MIDI_NOTE_OFF;
|
|
|
|
if (ops->note_off)
|
|
|
|
ops->note_off(drv, i, 0, chan);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MIDI_CTL_MSB_DATA_ENTRY:
|
|
|
|
chan->control[MIDI_CTL_LSB_DATA_ENTRY] = 0;
|
2018-08-04 04:52:33 +08:00
|
|
|
/* fall through */
|
2005-04-17 06:20:36 +08:00
|
|
|
case MIDI_CTL_LSB_DATA_ENTRY:
|
|
|
|
if (chan->param_type == SNDRV_MIDI_PARAM_TYPE_REGISTERED)
|
|
|
|
rpn(ops, drv, chan, chset);
|
|
|
|
else
|
|
|
|
nrpn(ops, drv, chan, chset);
|
|
|
|
break;
|
|
|
|
case MIDI_CTL_REGIST_PARM_NUM_LSB:
|
|
|
|
case MIDI_CTL_REGIST_PARM_NUM_MSB:
|
|
|
|
chan->param_type = SNDRV_MIDI_PARAM_TYPE_REGISTERED;
|
|
|
|
break;
|
|
|
|
case MIDI_CTL_NONREG_PARM_NUM_LSB:
|
|
|
|
case MIDI_CTL_NONREG_PARM_NUM_MSB:
|
|
|
|
chan->param_type = SNDRV_MIDI_PARAM_TYPE_NONREGISTERED;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MIDI_CTL_ALL_SOUNDS_OFF:
|
|
|
|
all_sounds_off(ops, drv, chan);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MIDI_CTL_ALL_NOTES_OFF:
|
|
|
|
all_notes_off(ops, drv, chan);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MIDI_CTL_MSB_BANK:
|
|
|
|
if (chset->midi_mode == SNDRV_MIDI_MODE_XG) {
|
|
|
|
if (value == 127)
|
|
|
|
chan->drum_channel = 1;
|
|
|
|
else
|
|
|
|
chan->drum_channel = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MIDI_CTL_LSB_BANK:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MIDI_CTL_RESET_CONTROLLERS:
|
|
|
|
snd_midi_reset_controllers(chan);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MIDI_CTL_SOFT_PEDAL:
|
|
|
|
case MIDI_CTL_LEGATO_FOOTSWITCH:
|
|
|
|
case MIDI_CTL_HOLD2:
|
|
|
|
case MIDI_CTL_SC1_SOUND_VARIATION:
|
|
|
|
case MIDI_CTL_SC2_TIMBRE:
|
|
|
|
case MIDI_CTL_SC3_RELEASE_TIME:
|
|
|
|
case MIDI_CTL_SC4_ATTACK_TIME:
|
|
|
|
case MIDI_CTL_SC5_BRIGHTNESS:
|
|
|
|
case MIDI_CTL_E1_REVERB_DEPTH:
|
|
|
|
case MIDI_CTL_E2_TREMOLO_DEPTH:
|
|
|
|
case MIDI_CTL_E3_CHORUS_DEPTH:
|
|
|
|
case MIDI_CTL_E4_DETUNE_DEPTH:
|
|
|
|
case MIDI_CTL_E5_PHASER_DEPTH:
|
|
|
|
goto notyet;
|
|
|
|
notyet:
|
|
|
|
default:
|
|
|
|
if (ops->control)
|
|
|
|
ops->control(drv, control, chan);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* initialize the MIDI status
|
|
|
|
*/
|
|
|
|
void
|
2005-11-17 21:04:02 +08:00
|
|
|
snd_midi_channel_set_clear(struct snd_midi_channel_set *chset)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
chset->midi_mode = SNDRV_MIDI_MODE_GM;
|
|
|
|
chset->gs_master_volume = 127;
|
|
|
|
|
|
|
|
for (i = 0; i < chset->max_channels; i++) {
|
2005-11-17 21:04:02 +08:00
|
|
|
struct snd_midi_channel *chan = chset->channels + i;
|
2005-04-17 06:20:36 +08:00
|
|
|
memset(chan->note, 0, sizeof(chan->note));
|
|
|
|
|
|
|
|
chan->midi_aftertouch = 0;
|
|
|
|
chan->midi_pressure = 0;
|
|
|
|
chan->midi_program = 0;
|
|
|
|
chan->midi_pitchbend = 0;
|
|
|
|
snd_midi_reset_controllers(chan);
|
|
|
|
chan->gm_rpn_pitch_bend_range = 256; /* 2 semitones */
|
|
|
|
chan->gm_rpn_fine_tuning = 0;
|
|
|
|
chan->gm_rpn_coarse_tuning = 0;
|
|
|
|
|
|
|
|
if (i == 9)
|
|
|
|
chan->drum_channel = 1;
|
|
|
|
else
|
|
|
|
chan->drum_channel = 0;
|
|
|
|
}
|
|
|
|
}
|
2017-06-16 22:15:24 +08:00
|
|
|
EXPORT_SYMBOL(snd_midi_channel_set_clear);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Process a rpn message.
|
|
|
|
*/
|
|
|
|
static void
|
2005-11-17 21:04:02 +08:00
|
|
|
rpn(struct snd_midi_op *ops, void *drv, struct snd_midi_channel *chan,
|
|
|
|
struct snd_midi_channel_set *chset)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
int type;
|
|
|
|
int val;
|
|
|
|
|
|
|
|
if (chset->midi_mode != SNDRV_MIDI_MODE_NONE) {
|
|
|
|
type = (chan->control[MIDI_CTL_REGIST_PARM_NUM_MSB] << 8) |
|
|
|
|
chan->control[MIDI_CTL_REGIST_PARM_NUM_LSB];
|
|
|
|
val = (chan->control[MIDI_CTL_MSB_DATA_ENTRY] << 7) |
|
|
|
|
chan->control[MIDI_CTL_LSB_DATA_ENTRY];
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case 0x0000: /* Pitch bend sensitivity */
|
|
|
|
/* MSB only / 1 semitone per 128 */
|
|
|
|
chan->gm_rpn_pitch_bend_range = val;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x0001: /* fine tuning: */
|
|
|
|
/* MSB/LSB, 8192=center, 100/8192 cent step */
|
|
|
|
chan->gm_rpn_fine_tuning = val - 8192;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x0002: /* coarse tuning */
|
|
|
|
/* MSB only / 8192=center, 1 semitone per 128 */
|
|
|
|
chan->gm_rpn_coarse_tuning = val - 8192;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x7F7F: /* "lock-in" RPN */
|
|
|
|
/* ignored */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* should call nrpn or rpn callback here.. */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process an nrpn message.
|
|
|
|
*/
|
|
|
|
static void
|
2005-11-17 21:04:02 +08:00
|
|
|
nrpn(struct snd_midi_op *ops, void *drv, struct snd_midi_channel *chan,
|
|
|
|
struct snd_midi_channel_set *chset)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
/* parse XG NRPNs here if possible */
|
|
|
|
if (ops->nrpn)
|
|
|
|
ops->nrpn(drv, chan, chset);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* convert channel parameter in GS sysex
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
get_channel(unsigned char cmd)
|
|
|
|
{
|
|
|
|
int p = cmd & 0x0f;
|
|
|
|
if (p == 0)
|
|
|
|
p = 9;
|
|
|
|
else if (p < 10)
|
|
|
|
p--;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process a sysex message.
|
|
|
|
*/
|
|
|
|
static void
|
2005-11-17 21:04:02 +08:00
|
|
|
sysex(struct snd_midi_op *ops, void *private, unsigned char *buf, int len,
|
|
|
|
struct snd_midi_channel_set *chset)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
/* GM on */
|
|
|
|
static unsigned char gm_on_macro[] = {
|
|
|
|
0x7e,0x7f,0x09,0x01,
|
|
|
|
};
|
|
|
|
/* XG on */
|
|
|
|
static unsigned char xg_on_macro[] = {
|
|
|
|
0x43,0x10,0x4c,0x00,0x00,0x7e,0x00,
|
|
|
|
};
|
|
|
|
/* GS prefix
|
|
|
|
* drum channel: XX=0x1?(channel), YY=0x15, ZZ=on/off
|
|
|
|
* reverb mode: XX=0x01, YY=0x30, ZZ=0-7
|
|
|
|
* chorus mode: XX=0x01, YY=0x38, ZZ=0-7
|
|
|
|
* master vol: XX=0x00, YY=0x04, ZZ=0-127
|
|
|
|
*/
|
|
|
|
static unsigned char gs_pfx_macro[] = {
|
|
|
|
0x41,0x10,0x42,0x12,0x40,/*XX,YY,ZZ*/
|
|
|
|
};
|
|
|
|
|
|
|
|
int parsed = SNDRV_MIDI_SYSEX_NOT_PARSED;
|
|
|
|
|
|
|
|
if (len <= 0 || buf[0] != 0xf0)
|
|
|
|
return;
|
|
|
|
/* skip first byte */
|
|
|
|
buf++;
|
|
|
|
len--;
|
|
|
|
|
|
|
|
/* GM on */
|
|
|
|
if (len >= (int)sizeof(gm_on_macro) &&
|
|
|
|
memcmp(buf, gm_on_macro, sizeof(gm_on_macro)) == 0) {
|
|
|
|
if (chset->midi_mode != SNDRV_MIDI_MODE_GS &&
|
|
|
|
chset->midi_mode != SNDRV_MIDI_MODE_XG) {
|
|
|
|
chset->midi_mode = SNDRV_MIDI_MODE_GM;
|
|
|
|
reset_all_channels(chset);
|
|
|
|
parsed = SNDRV_MIDI_SYSEX_GM_ON;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GS macros */
|
|
|
|
else if (len >= 8 &&
|
|
|
|
memcmp(buf, gs_pfx_macro, sizeof(gs_pfx_macro)) == 0) {
|
|
|
|
if (chset->midi_mode != SNDRV_MIDI_MODE_GS &&
|
|
|
|
chset->midi_mode != SNDRV_MIDI_MODE_XG)
|
|
|
|
chset->midi_mode = SNDRV_MIDI_MODE_GS;
|
|
|
|
|
|
|
|
if (buf[5] == 0x00 && buf[6] == 0x7f && buf[7] == 0x00) {
|
|
|
|
/* GS reset */
|
|
|
|
parsed = SNDRV_MIDI_SYSEX_GS_RESET;
|
|
|
|
reset_all_channels(chset);
|
|
|
|
}
|
|
|
|
|
|
|
|
else if ((buf[5] & 0xf0) == 0x10 && buf[6] == 0x15) {
|
|
|
|
/* drum pattern */
|
|
|
|
int p = get_channel(buf[5]);
|
|
|
|
if (p < chset->max_channels) {
|
|
|
|
parsed = SNDRV_MIDI_SYSEX_GS_DRUM_CHANNEL;
|
|
|
|
if (buf[7])
|
|
|
|
chset->channels[p].drum_channel = 1;
|
|
|
|
else
|
|
|
|
chset->channels[p].drum_channel = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if ((buf[5] & 0xf0) == 0x10 && buf[6] == 0x21) {
|
|
|
|
/* program */
|
|
|
|
int p = get_channel(buf[5]);
|
|
|
|
if (p < chset->max_channels &&
|
|
|
|
! chset->channels[p].drum_channel) {
|
|
|
|
parsed = SNDRV_MIDI_SYSEX_GS_DRUM_CHANNEL;
|
|
|
|
chset->channels[p].midi_program = buf[7];
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (buf[5] == 0x01 && buf[6] == 0x30) {
|
|
|
|
/* reverb mode */
|
|
|
|
parsed = SNDRV_MIDI_SYSEX_GS_REVERB_MODE;
|
|
|
|
chset->gs_reverb_mode = buf[7];
|
|
|
|
|
|
|
|
} else if (buf[5] == 0x01 && buf[6] == 0x38) {
|
|
|
|
/* chorus mode */
|
|
|
|
parsed = SNDRV_MIDI_SYSEX_GS_CHORUS_MODE;
|
|
|
|
chset->gs_chorus_mode = buf[7];
|
|
|
|
|
|
|
|
} else if (buf[5] == 0x00 && buf[6] == 0x04) {
|
|
|
|
/* master volume */
|
|
|
|
parsed = SNDRV_MIDI_SYSEX_GS_MASTER_VOLUME;
|
|
|
|
chset->gs_master_volume = buf[7];
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XG on */
|
|
|
|
else if (len >= (int)sizeof(xg_on_macro) &&
|
|
|
|
memcmp(buf, xg_on_macro, sizeof(xg_on_macro)) == 0) {
|
|
|
|
int i;
|
|
|
|
chset->midi_mode = SNDRV_MIDI_MODE_XG;
|
|
|
|
parsed = SNDRV_MIDI_SYSEX_XG_ON;
|
|
|
|
/* reset CC#0 for drums */
|
|
|
|
for (i = 0; i < chset->max_channels; i++) {
|
|
|
|
if (chset->channels[i].drum_channel)
|
|
|
|
chset->channels[i].control[MIDI_CTL_MSB_BANK] = 127;
|
|
|
|
else
|
|
|
|
chset->channels[i].control[MIDI_CTL_MSB_BANK] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ops->sysex)
|
|
|
|
ops->sysex(private, buf - 1, len + 1, parsed, chset);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* all sound off
|
|
|
|
*/
|
|
|
|
static void
|
2005-11-17 21:04:02 +08:00
|
|
|
all_sounds_off(struct snd_midi_op *ops, void *drv, struct snd_midi_channel *chan)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if (! ops->note_terminate)
|
|
|
|
return;
|
|
|
|
for (n = 0; n < 128; n++) {
|
|
|
|
if (chan->note[n]) {
|
|
|
|
ops->note_terminate(drv, n, chan);
|
|
|
|
chan->note[n] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* all notes off
|
|
|
|
*/
|
|
|
|
static void
|
2005-11-17 21:04:02 +08:00
|
|
|
all_notes_off(struct snd_midi_op *ops, void *drv, struct snd_midi_channel *chan)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if (! ops->note_off)
|
|
|
|
return;
|
|
|
|
for (n = 0; n < 128; n++) {
|
|
|
|
if (chan->note[n] == SNDRV_MIDI_NOTE_ON)
|
|
|
|
note_off(ops, drv, chan, n, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialise a single midi channel control block.
|
|
|
|
*/
|
2005-11-17 21:04:02 +08:00
|
|
|
static void snd_midi_channel_init(struct snd_midi_channel *p, int n)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
if (p == NULL)
|
|
|
|
return;
|
|
|
|
|
2005-11-17 21:04:02 +08:00
|
|
|
memset(p, 0, sizeof(struct snd_midi_channel));
|
2005-04-17 06:20:36 +08:00
|
|
|
p->private = NULL;
|
|
|
|
p->number = n;
|
|
|
|
|
|
|
|
snd_midi_reset_controllers(p);
|
|
|
|
p->gm_rpn_pitch_bend_range = 256; /* 2 semitones */
|
|
|
|
p->gm_rpn_fine_tuning = 0;
|
|
|
|
p->gm_rpn_coarse_tuning = 0;
|
|
|
|
|
|
|
|
if (n == 9)
|
|
|
|
p->drum_channel = 1; /* Default ch 10 as drums */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate and initialise a set of midi channel control blocks.
|
|
|
|
*/
|
2005-11-17 21:04:02 +08:00
|
|
|
static struct snd_midi_channel *snd_midi_channel_init_set(int n)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-11-17 21:04:02 +08:00
|
|
|
struct snd_midi_channel *chan;
|
2005-04-17 06:20:36 +08:00
|
|
|
int i;
|
|
|
|
|
treewide: kmalloc() -> kmalloc_array()
The kmalloc() function has a 2-factor argument form, kmalloc_array(). This
patch replaces cases of:
kmalloc(a * b, gfp)
with:
kmalloc_array(a * b, gfp)
as well as handling cases of:
kmalloc(a * b * c, gfp)
with:
kmalloc(array3_size(a, b, c), gfp)
as it's slightly less ugly than:
kmalloc_array(array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
kmalloc(4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
The tools/ directory was manually excluded, since it has its own
implementation of kmalloc().
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
type TYPE;
expression THING, E;
@@
(
kmalloc(
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
kmalloc(
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression COUNT;
typedef u8;
typedef __u8;
@@
(
kmalloc(
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
kmalloc(
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
kmalloc(
- sizeof(char) * COUNT
+ COUNT
, ...)
|
kmalloc(
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
identifier SIZE, COUNT;
@@
- kmalloc
+ kmalloc_array
(
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
kmalloc(
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kmalloc(
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kmalloc(
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kmalloc(
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
kmalloc(
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kmalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kmalloc(
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kmalloc(
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kmalloc(
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
kmalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
identifier STRIDE, SIZE, COUNT;
@@
(
kmalloc(
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
kmalloc(C1 * C2 * C3, ...)
|
kmalloc(
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
kmalloc(
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
kmalloc(
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
kmalloc(
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
kmalloc(sizeof(THING) * C2, ...)
|
kmalloc(sizeof(TYPE) * C2, ...)
|
kmalloc(C1 * C2 * C3, ...)
|
kmalloc(C1 * C2, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- (E1) * E2
+ E1, E2
, ...)
|
- kmalloc
+ kmalloc_array
(
- (E1) * (E2)
+ E1, E2
, ...)
|
- kmalloc
+ kmalloc_array
(
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-13 04:55:00 +08:00
|
|
|
chan = kmalloc_array(n, sizeof(struct snd_midi_channel), GFP_KERNEL);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (chan) {
|
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
snd_midi_channel_init(chan+i, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
return chan;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* reset all midi channels
|
|
|
|
*/
|
|
|
|
static void
|
2005-11-17 21:04:02 +08:00
|
|
|
reset_all_channels(struct snd_midi_channel_set *chset)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
int ch;
|
|
|
|
for (ch = 0; ch < chset->max_channels; ch++) {
|
2005-11-17 21:04:02 +08:00
|
|
|
struct snd_midi_channel *chan = chset->channels + ch;
|
2005-04-17 06:20:36 +08:00
|
|
|
snd_midi_reset_controllers(chan);
|
|
|
|
chan->gm_rpn_pitch_bend_range = 256; /* 2 semitones */
|
|
|
|
chan->gm_rpn_fine_tuning = 0;
|
|
|
|
chan->gm_rpn_coarse_tuning = 0;
|
|
|
|
|
|
|
|
if (ch == 9)
|
|
|
|
chan->drum_channel = 1;
|
|
|
|
else
|
|
|
|
chan->drum_channel = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate and initialise a midi channel set.
|
|
|
|
*/
|
2005-11-17 21:04:02 +08:00
|
|
|
struct snd_midi_channel_set *snd_midi_channel_alloc_set(int n)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-11-17 21:04:02 +08:00
|
|
|
struct snd_midi_channel_set *chset;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
chset = kmalloc(sizeof(*chset), GFP_KERNEL);
|
|
|
|
if (chset) {
|
|
|
|
chset->channels = snd_midi_channel_init_set(n);
|
|
|
|
chset->private_data = NULL;
|
|
|
|
chset->max_channels = n;
|
|
|
|
}
|
|
|
|
return chset;
|
|
|
|
}
|
2017-06-16 22:15:24 +08:00
|
|
|
EXPORT_SYMBOL(snd_midi_channel_alloc_set);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Reset the midi controllers on a particular channel to default values.
|
|
|
|
*/
|
2005-11-17 21:04:02 +08:00
|
|
|
static void snd_midi_reset_controllers(struct snd_midi_channel *chan)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
memset(chan->control, 0, sizeof(chan->control));
|
|
|
|
chan->gm_volume = 127;
|
|
|
|
chan->gm_expression = 127;
|
|
|
|
chan->gm_pan = 64;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free a midi channel set.
|
|
|
|
*/
|
2005-11-17 21:04:02 +08:00
|
|
|
void snd_midi_channel_free_set(struct snd_midi_channel_set *chset)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
if (chset == NULL)
|
|
|
|
return;
|
|
|
|
kfree(chset->channels);
|
|
|
|
kfree(chset);
|
|
|
|
}
|
2017-06-16 22:15:24 +08:00
|
|
|
EXPORT_SYMBOL(snd_midi_channel_free_set);
|