blob: 2365f7dfde2664dfa3990e2e8ab848b2de5ada4d [file] [log] [blame]
Thomas Gleixnerda607e12019-05-29 16:57:59 -07001// SPDX-License-Identifier: GPL-2.0-only
Takashi Sakamoto9e796e72017-03-22 21:30:23 +09002/*
3 * motu-midi.h - a part of driver for MOTU FireWire series
4 *
5 * Copyright (c) 2015-2017 Takashi Sakamoto <o-takashi@sakamocchi.jp>
Takashi Sakamoto9e796e72017-03-22 21:30:23 +09006 */
7#include "motu.h"
8
Takashi Sakamotof6341db2019-06-17 17:15:02 +09009static int midi_open(struct snd_rawmidi_substream *substream)
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090010{
11 struct snd_motu *motu = substream->rmidi->private_data;
12 int err;
13
Takashi Sakamoto71c37972017-03-22 21:30:24 +090014 err = snd_motu_stream_lock_try(motu);
15 if (err < 0)
16 return err;
17
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090018 mutex_lock(&motu->mutex);
19
Takashi Sakamoto0f5482e2019-10-18 00:54:20 +090020 err = snd_motu_stream_reserve_duplex(motu, 0, 0, 0);
Takashi Sakamoto8edc56e2019-06-17 17:15:08 +090021 if (err >= 0) {
22 ++motu->substreams_counter;
23 err = snd_motu_stream_start_duplex(motu);
Takashi Sakamotoba18ca22019-07-07 14:20:11 +090024 if (err < 0)
25 --motu->substreams_counter;
Takashi Sakamoto8edc56e2019-06-17 17:15:08 +090026 }
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090027
28 mutex_unlock(&motu->mutex);
29
Takashi Sakamoto71c37972017-03-22 21:30:24 +090030 if (err < 0)
31 snd_motu_stream_lock_release(motu);
32
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090033 return err;
34}
35
Takashi Sakamotof6341db2019-06-17 17:15:02 +090036static int midi_close(struct snd_rawmidi_substream *substream)
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090037{
38 struct snd_motu *motu = substream->rmidi->private_data;
39
40 mutex_lock(&motu->mutex);
41
Takashi Sakamoto8edc56e2019-06-17 17:15:08 +090042 --motu->substreams_counter;
Takashi Sakamoto9e796e72017-03-22 21:30:23 +090043 snd_motu_stream_stop_duplex(motu);
44
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}