blob: 868eb0decbec00a6c3005417b87b617f342348b3 [file] [log] [blame]
Takashi Sakamoto248b7802014-04-25 22:45:18 +09001/*
2 * bebob_midi.c - a part of driver for BeBoB based devices
3 *
4 * Copyright (c) 2013-2014 Takashi Sakamoto
5 *
6 * Licensed under the terms of the GNU General Public License, version 2.
7 */
8
9#include "bebob.h"
10
11static int midi_capture_open(struct snd_rawmidi_substream *substream)
12{
13 struct snd_bebob *bebob = substream->rmidi->private_data;
Takashi Sakamoto618eabe2014-04-25 22:45:20 +090014 int err;
15
16 err = snd_bebob_stream_lock_try(bebob);
17 if (err < 0)
18 goto end;
Takashi Sakamoto248b7802014-04-25 22:45:18 +090019
Takashi Sakamoto2a71e702016-02-20 16:18:57 +090020 mutex_lock(&bebob->mutex);
Takashi Sakamoto4fd6c6c2016-02-20 16:18:58 +090021 bebob->substreams_counter++;
Takashi Sakamoto618eabe2014-04-25 22:45:20 +090022 err = snd_bebob_stream_start_duplex(bebob, 0);
Takashi Sakamoto2a71e702016-02-20 16:18:57 +090023 mutex_unlock(&bebob->mutex);
Takashi Sakamoto618eabe2014-04-25 22:45:20 +090024 if (err < 0)
25 snd_bebob_stream_lock_release(bebob);
26end:
27 return err;
Takashi Sakamoto248b7802014-04-25 22:45:18 +090028}
29
30static int midi_playback_open(struct snd_rawmidi_substream *substream)
31{
32 struct snd_bebob *bebob = substream->rmidi->private_data;
Takashi Sakamoto618eabe2014-04-25 22:45:20 +090033 int err;
34
35 err = snd_bebob_stream_lock_try(bebob);
36 if (err < 0)
37 goto end;
Takashi Sakamoto248b7802014-04-25 22:45:18 +090038
Takashi Sakamoto2a71e702016-02-20 16:18:57 +090039 mutex_lock(&bebob->mutex);
Takashi Sakamoto4fd6c6c2016-02-20 16:18:58 +090040 bebob->substreams_counter++;
Takashi Sakamoto618eabe2014-04-25 22:45:20 +090041 err = snd_bebob_stream_start_duplex(bebob, 0);
Takashi Sakamoto2a71e702016-02-20 16:18:57 +090042 mutex_unlock(&bebob->mutex);
Takashi Sakamoto618eabe2014-04-25 22:45:20 +090043 if (err < 0)
44 snd_bebob_stream_lock_release(bebob);
45end:
46 return err;
Takashi Sakamoto248b7802014-04-25 22:45:18 +090047}
48
49static int midi_capture_close(struct snd_rawmidi_substream *substream)
50{
51 struct snd_bebob *bebob = substream->rmidi->private_data;
52
Takashi Sakamoto2a71e702016-02-20 16:18:57 +090053 mutex_lock(&bebob->mutex);
Takashi Sakamoto4fd6c6c2016-02-20 16:18:58 +090054 bebob->substreams_counter--;
Takashi Sakamoto248b7802014-04-25 22:45:18 +090055 snd_bebob_stream_stop_duplex(bebob);
Takashi Sakamoto2a71e702016-02-20 16:18:57 +090056 mutex_unlock(&bebob->mutex);
Takashi Sakamoto248b7802014-04-25 22:45:18 +090057
Takashi Sakamoto618eabe2014-04-25 22:45:20 +090058 snd_bebob_stream_lock_release(bebob);
Takashi Sakamoto248b7802014-04-25 22:45:18 +090059 return 0;
60}
61
62static int midi_playback_close(struct snd_rawmidi_substream *substream)
63{
64 struct snd_bebob *bebob = substream->rmidi->private_data;
65
Takashi Sakamoto2a71e702016-02-20 16:18:57 +090066 mutex_lock(&bebob->mutex);
Takashi Sakamoto4fd6c6c2016-02-20 16:18:58 +090067 bebob->substreams_counter--;
Takashi Sakamoto248b7802014-04-25 22:45:18 +090068 snd_bebob_stream_stop_duplex(bebob);
Takashi Sakamoto2a71e702016-02-20 16:18:57 +090069 mutex_unlock(&bebob->mutex);
Takashi Sakamoto248b7802014-04-25 22:45:18 +090070
Takashi Sakamoto618eabe2014-04-25 22:45:20 +090071 snd_bebob_stream_lock_release(bebob);
Takashi Sakamoto248b7802014-04-25 22:45:18 +090072 return 0;
73}
74
75static void midi_capture_trigger(struct snd_rawmidi_substream *substrm, int up)
76{
77 struct snd_bebob *bebob = substrm->rmidi->private_data;
78 unsigned long flags;
79
80 spin_lock_irqsave(&bebob->lock, flags);
81
82 if (up)
Takashi Sakamoto03e2a672015-09-19 11:21:59 +090083 amdtp_am824_midi_trigger(&bebob->tx_stream,
84 substrm->number, substrm);
Takashi Sakamoto248b7802014-04-25 22:45:18 +090085 else
Takashi Sakamoto03e2a672015-09-19 11:21:59 +090086 amdtp_am824_midi_trigger(&bebob->tx_stream,
87 substrm->number, NULL);
Takashi Sakamoto248b7802014-04-25 22:45:18 +090088
89 spin_unlock_irqrestore(&bebob->lock, flags);
90}
91
92static void midi_playback_trigger(struct snd_rawmidi_substream *substrm, int up)
93{
94 struct snd_bebob *bebob = substrm->rmidi->private_data;
95 unsigned long flags;
96
97 spin_lock_irqsave(&bebob->lock, flags);
98
99 if (up)
Takashi Sakamoto03e2a672015-09-19 11:21:59 +0900100 amdtp_am824_midi_trigger(&bebob->rx_stream,
101 substrm->number, substrm);
Takashi Sakamoto248b7802014-04-25 22:45:18 +0900102 else
Takashi Sakamoto03e2a672015-09-19 11:21:59 +0900103 amdtp_am824_midi_trigger(&bebob->rx_stream,
104 substrm->number, NULL);
Takashi Sakamoto248b7802014-04-25 22:45:18 +0900105
106 spin_unlock_irqrestore(&bebob->lock, flags);
107}
108
109static struct snd_rawmidi_ops midi_capture_ops = {
110 .open = midi_capture_open,
111 .close = midi_capture_close,
112 .trigger = midi_capture_trigger,
113};
114
115static struct snd_rawmidi_ops midi_playback_ops = {
116 .open = midi_playback_open,
117 .close = midi_playback_close,
118 .trigger = midi_playback_trigger,
119};
120
121static void set_midi_substream_names(struct snd_bebob *bebob,
122 struct snd_rawmidi_str *str)
123{
124 struct snd_rawmidi_substream *subs;
125
126 list_for_each_entry(subs, &str->substreams, list) {
127 snprintf(subs->name, sizeof(subs->name),
128 "%s MIDI %d",
129 bebob->card->shortname, subs->number + 1);
130 }
131}
132
133int snd_bebob_create_midi_devices(struct snd_bebob *bebob)
134{
135 struct snd_rawmidi *rmidi;
136 struct snd_rawmidi_str *str;
137 int err;
138
139 /* create midi ports */
140 err = snd_rawmidi_new(bebob->card, bebob->card->driver, 0,
141 bebob->midi_output_ports, bebob->midi_input_ports,
142 &rmidi);
143 if (err < 0)
144 return err;
145
146 snprintf(rmidi->name, sizeof(rmidi->name),
147 "%s MIDI", bebob->card->shortname);
148 rmidi->private_data = bebob;
149
150 if (bebob->midi_input_ports > 0) {
151 rmidi->info_flags |= SNDRV_RAWMIDI_INFO_INPUT;
152
153 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
Takashi Sakamoto73616c42014-05-28 00:14:43 +0900154 &midi_capture_ops);
Takashi Sakamoto248b7802014-04-25 22:45:18 +0900155
156 str = &rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT];
157
158 set_midi_substream_names(bebob, str);
159 }
160
161 if (bebob->midi_output_ports > 0) {
162 rmidi->info_flags |= SNDRV_RAWMIDI_INFO_OUTPUT;
163
164 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
Takashi Sakamoto73616c42014-05-28 00:14:43 +0900165 &midi_playback_ops);
Takashi Sakamoto248b7802014-04-25 22:45:18 +0900166
167 str = &rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT];
168
169 set_midi_substream_names(bebob, str);
170 }
171
172 if ((bebob->midi_output_ports > 0) && (bebob->midi_input_ports > 0))
173 rmidi->info_flags |= SNDRV_RAWMIDI_INFO_DUPLEX;
174
175 return 0;
176}