blob: a463730c72bc23a8ba7b4ea74b4d14a7ce20b805 [file] [log] [blame]
Takashi Sakamoto9e796e72017-03-22 21:30:23 +09001/*
2 * motu-midi.h - a part of driver for MOTU FireWire series
3 *
4 * Copyright (c) 2015-2017 Takashi Sakamoto <o-takashi@sakamocchi.jp>
5 *
6 * Licensed under the terms of the GNU General Public License, version 2.
7 */
8#include "motu.h"
9
Takashi Sakamotof6341db2019-06-17 17:15:02 +090010static int midi_open(struct snd_rawmidi_substream *substream)
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090011{
12 struct snd_motu *motu = substream->rmidi->private_data;
13 int err;
14
Takashi Sakamoto71c37972017-03-22 21:30:24 +090015 err = snd_motu_stream_lock_try(motu);
16 if (err < 0)
17 return err;
18
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090019 mutex_lock(&motu->mutex);
20
Takashi Sakamoto8edc56e2019-06-17 17:15:08 +090021 err = snd_motu_stream_reserve_duplex(motu, 0);
22 if (err >= 0) {
23 ++motu->substreams_counter;
24 err = snd_motu_stream_start_duplex(motu);
25 }
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090026
27 mutex_unlock(&motu->mutex);
28
Takashi Sakamoto71c37972017-03-22 21:30:24 +090029 if (err < 0)
30 snd_motu_stream_lock_release(motu);
31
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090032 return err;
33}
34
Takashi Sakamotof6341db2019-06-17 17:15:02 +090035static int midi_close(struct snd_rawmidi_substream *substream)
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090036{
37 struct snd_motu *motu = substream->rmidi->private_data;
38
39 mutex_lock(&motu->mutex);
40
Takashi Sakamoto8edc56e2019-06-17 17:15:08 +090041 --motu->substreams_counter;
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090042 snd_motu_stream_stop_duplex(motu);
Takashi Sakamoto8edc56e2019-06-17 17:15:08 +090043 snd_motu_stream_release_duplex(motu);
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090044
45 mutex_unlock(&motu->mutex);
46
Takashi Sakamoto71c37972017-03-22 21:30:24 +090047 snd_motu_stream_lock_release(motu);
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090048 return 0;
49}
50
51static void midi_capture_trigger(struct snd_rawmidi_substream *substrm, int up)
52{
53 struct snd_motu *motu = substrm->rmidi->private_data;
54 unsigned long flags;
55
56 spin_lock_irqsave(&motu->lock, flags);
57
58 if (up)
59 amdtp_motu_midi_trigger(&motu->tx_stream, substrm->number,
60 substrm);
61 else
62 amdtp_motu_midi_trigger(&motu->tx_stream, substrm->number,
63 NULL);
64
65 spin_unlock_irqrestore(&motu->lock, flags);
66}
67
68static void midi_playback_trigger(struct snd_rawmidi_substream *substrm, int up)
69{
70 struct snd_motu *motu = substrm->rmidi->private_data;
71 unsigned long flags;
72
73 spin_lock_irqsave(&motu->lock, flags);
74
75 if (up)
76 amdtp_motu_midi_trigger(&motu->rx_stream, substrm->number,
77 substrm);
78 else
79 amdtp_motu_midi_trigger(&motu->rx_stream, substrm->number,
80 NULL);
81
82 spin_unlock_irqrestore(&motu->lock, flags);
83}
84
85static void set_midi_substream_names(struct snd_motu *motu,
86 struct snd_rawmidi_str *str)
87{
88 struct snd_rawmidi_substream *subs;
89
90 list_for_each_entry(subs, &str->substreams, list) {
91 snprintf(subs->name, sizeof(subs->name),
92 "%s MIDI %d", motu->card->shortname, subs->number + 1);
93 }
94}
95
96int snd_motu_create_midi_devices(struct snd_motu *motu)
97{
Julia Lawalleb2c1832017-08-15 10:09:54 +020098 static const struct snd_rawmidi_ops capture_ops = {
Takashi Sakamotof6341db2019-06-17 17:15:02 +090099 .open = midi_open,
100 .close = midi_close,
Takashi Sakamoto9e796e72017-03-22 21:30:23 +0900101 .trigger = midi_capture_trigger,
102 };
Julia Lawalleb2c1832017-08-15 10:09:54 +0200103 static const struct snd_rawmidi_ops playback_ops = {
Takashi Sakamotof6341db2019-06-17 17:15:02 +0900104 .open = midi_open,
105 .close = midi_close,
Takashi Sakamoto9e796e72017-03-22 21:30:23 +0900106 .trigger = midi_playback_trigger,
107 };
108 struct snd_rawmidi *rmidi;
109 struct snd_rawmidi_str *str;
110 int err;
111
112 /* create midi ports */
113 err = snd_rawmidi_new(motu->card, motu->card->driver, 0, 1, 1, &rmidi);
114 if (err < 0)
115 return err;
116
117 snprintf(rmidi->name, sizeof(rmidi->name),
118 "%s MIDI", motu->card->shortname);
119 rmidi->private_data = motu;
120
121 rmidi->info_flags |= SNDRV_RAWMIDI_INFO_INPUT |
122 SNDRV_RAWMIDI_INFO_OUTPUT |
123 SNDRV_RAWMIDI_INFO_DUPLEX;
124
125 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
126 &capture_ops);
127 str = &rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT];
128 set_midi_substream_names(motu, str);
129
130 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
131 &playback_ops);
132 str = &rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT];
133 set_midi_substream_names(motu, str);
134
135 return 0;
136}