// SPDX-License-Identifier: GPL-2.0-only /* * tascam-transaction.c - a part of driver for TASCAM FireWire series * * Copyright (c) 2015 Takashi Sakamoto
*/
#include"tascam.h"
/* * When return minus value, given argument is not MIDI status. * When return 0, given argument is a beginning of system exclusive. * When return the others, given argument is MIDI data.
*/ staticinlineint calculate_message_bytes(u8 status)
{ switch (status) { case 0xf6: /* Tune request. */ case 0xf8: /* Timing clock. */ case 0xfa: /* Start. */ case 0xfb: /* Continue. */ case 0xfc: /* Stop. */ case 0xfe: /* Active sensing. */ case 0xff: /* System reset. */ return 1; case 0xf1: /* MIDI time code quarter frame. */ case 0xf3: /* Song select. */ return 2; case 0xf2: /* Song position pointer. */ return 3; case 0xf0: /* Exclusive. */ return 0; case 0xf7: /* End of exclusive. */ break; case 0xf4: /* Undefined. */ case 0xf5: /* Undefined. */ case 0xf9: /* Undefined. */ case 0xfd: /* Undefined. */ break; default: switch (status & 0xf0) { case 0x80: /* Note on. */ case 0x90: /* Note off. */ case 0xa0: /* Polyphonic key pressure. */ case 0xb0: /* Control change and Mode change. */ case 0xe0: /* Pitch bend change. */ return 3; case 0xc0: /* Program change. */ case 0xd0: /* Channel pressure. */ return 2; default: break;
} break;
}
return -EINVAL;
}
staticint fill_message(struct snd_fw_async_midi_port *port, struct snd_rawmidi_substream *substream)
{ int i, len, consume;
u8 *label, *msg;
u8 status;
/* The first byte is used for label, the rest for MIDI bytes. */
label = port->buf;
msg = port->buf + 1;
/* On exclusive message. */ if (port->on_sysex) { /* Seek the end of exclusives. */ for (i = 0; i < consume; ++i) { if (msg[i] == 0xf7) {
port->on_sysex = false; break;
}
}
/* At the end of exclusive message, use label 0x07. */ if (!port->on_sysex) {
consume = i + 1;
*label = (substream->number << 4) | 0x07; /* During exclusive message, use label 0x04. */
} elseif (consume == 3) {
*label = (substream->number << 4) | 0x04; /* We need to fill whole 3 bytes. Go to next change. */
} else { return 0;
}
len = consume;
} else { /* The beginning of exclusives. */ if (msg[0] == 0xf0) { /* Transfer it in next chance in another condition. */
port->on_sysex = true; return 0;
} else { /* On running-status. */ if ((msg[0] & 0x80) != 0x80)
status = port->running_status; else
status = msg[0];
/* Calculate consume bytes. */
len = calculate_message_bytes(status); if (len <= 0) return 0;
/* On running-status. */ if ((msg[0] & 0x80) != 0x80) { /* Enough MIDI bytes were not retrieved. */ if (consume < len - 1) return 0;
consume = len - 1;
msg[2] = msg[1];
msg[1] = msg[0];
msg[0] = port->running_status;
} else { /* Enough MIDI bytes were not retrieved. */ if (consume < len) return 0;
consume = len;
/* Under transacting or error state. */ if (!port->idling || port->error) return;
/* Nothing to do. */ if (substream == NULL || snd_rawmidi_transmit_empty(substream)) return;
/* Do it in next chance. */ if (ktime_after(port->next_ktime, ktime_get())) {
schedule_work(&port->work); return;
}
/* * Fill the buffer. The callee must use snd_rawmidi_transmit_peek(). * Later, snd_rawmidi_transmit_ack() is called.
*/
memset(port->buf, 0, 4);
port->consume_bytes = fill_message(port, substream); if (port->consume_bytes <= 0) { /* Do it in next chance, immediately. */ if (port->consume_bytes == 0) {
port->next_ktime = 0;
schedule_work(&port->work);
} else { /* Fatal error. */
port->error = true;
} return;
}
/* Set interval to next transaction. */
port->next_ktime = ktime_add_ns(ktime_get(),
port->consume_bytes * 8 * (NSEC_PER_SEC / 31250));
/* Start this transaction. */
port->idling = false;
/* * In Linux FireWire core, when generation is updated with memory * barrier, node id has already been updated. In this module, After * this smp_rmb(), load/store instructions to memory are completed. * Thus, both of generation and node id are available with recent * values. This is a light-serialization solution to handle bus reset * events on IEEE 1394 bus.
*/
generation = port->parent->generation;
smp_rmb();
staticvoid handle_midi_tx(struct fw_card *card, struct fw_request *request, int tcode, int destination, int source, int generation, unsignedlonglong offset, void *data, size_t length, void *callback_data)
{ struct snd_tscm *tscm = callback_data;
u32 *buf = (u32 *)data; unsignedint messages; unsignedint i; unsignedint port; struct snd_rawmidi_substream *substream;
u8 *b; int bytes;
if (offset != tscm->async_handler.offset) goto end;
messages = length / 8; for (i = 0; i < messages; i++) {
b = (u8 *)(buf + i * 2);
port = b[0] >> 4; /* TODO: support virtual MIDI ports. */ if (port >= tscm->spec->midi_capture_ports) goto end;
/* Assume the message length. */
bytes = calculate_message_bytes(b[1]); /* On MIDI data or exclusives. */ if (bytes <= 0) { /* Seek the end of exclusives. */ for (bytes = 1; bytes < 4; bytes++) { if (b[bytes] == 0xf7) break;
} if (bytes == 4)
bytes = 3;
}
substream = READ_ONCE(tscm->tx_midi_substreams[port]); if (substream != NULL)
snd_rawmidi_receive(substream, b + 1, bytes);
}
end:
fw_send_response(card, request, RCODE_COMPLETE);
}
/* * Usually, two quadlets are transferred by one transaction. The first * quadlet has MIDI messages, the rest includes timestamp. * Sometimes, 8 set of the data is transferred by a block transaction.
*/
tscm->async_handler.length = 8 * 8;
tscm->async_handler.address_callback = handle_midi_tx;
tscm->async_handler.callback_data = tscm;
err = fw_core_add_address_handler(&tscm->async_handler,
&resp_register_region); if (err < 0) return err;
err = snd_tscm_transaction_reregister(tscm); if (err < 0) goto error;
for (i = 0; i < TSCM_MIDI_OUT_PORT_MAX; i++) {
tscm->out_ports[i].parent = fw_parent_device(tscm->unit);
tscm->out_ports[i].next_ktime = 0;
INIT_WORK(&tscm->out_ports[i].work, midi_port_work);
}
/* At bus reset, these registers are cleared. */ int snd_tscm_transaction_reregister(struct snd_tscm *tscm)
{ struct fw_device *device = fw_parent_device(tscm->unit);
__be32 reg; int err;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.