~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/sound/firewire/motu/motu-pcm.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /sound/firewire/motu/motu-pcm.c (Version linux-6.11-rc3) and /sound/firewire/motu/motu-pcm.c (Version linux-5.15.164)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 // SPDX-License-Identifier: GPL-2.0-only
  2 /*                                                  2 /*
  3  * motu-pcm.c - a part of driver for MOTU Fire      3  * motu-pcm.c - a part of driver for MOTU FireWire series
  4  *                                                  4  *
  5  * Copyright (c) 2015-2017 Takashi Sakamoto <o      5  * Copyright (c) 2015-2017 Takashi Sakamoto <o-takashi@sakamocchi.jp>
  6  */                                                 6  */
  7                                                     7 
  8 #include <sound/pcm_params.h>                       8 #include <sound/pcm_params.h>
  9 #include "motu.h"                                   9 #include "motu.h"
 10                                                    10 
 11 static int motu_rate_constraint(struct snd_pcm     11 static int motu_rate_constraint(struct snd_pcm_hw_params *params,
 12                                 struct snd_pcm     12                                 struct snd_pcm_hw_rule *rule)
 13 {                                                  13 {
 14         struct snd_motu_packet_format *formats     14         struct snd_motu_packet_format *formats = rule->private;
 15                                                    15 
 16         const struct snd_interval *c =             16         const struct snd_interval *c =
 17                 hw_param_interval_c(params, SN     17                 hw_param_interval_c(params, SNDRV_PCM_HW_PARAM_CHANNELS);
 18         struct snd_interval *r =                   18         struct snd_interval *r =
 19                 hw_param_interval(params, SNDR     19                 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
 20         struct snd_interval rates = {              20         struct snd_interval rates = {
 21                 .min = UINT_MAX, .max = 0, .in     21                 .min = UINT_MAX, .max = 0, .integer = 1
 22         };                                         22         };
 23         unsigned int i, pcm_channels, rate, mo     23         unsigned int i, pcm_channels, rate, mode;
 24                                                    24 
 25         for (i = 0; i < ARRAY_SIZE(snd_motu_cl     25         for (i = 0; i < ARRAY_SIZE(snd_motu_clock_rates); ++i) {
 26                 rate = snd_motu_clock_rates[i]     26                 rate = snd_motu_clock_rates[i];
 27                 mode = i / 2;                      27                 mode = i / 2;
 28                                                    28 
 29                 pcm_channels = formats->pcm_ch     29                 pcm_channels = formats->pcm_chunks[mode];
 30                 if (!snd_interval_test(c, pcm_     30                 if (!snd_interval_test(c, pcm_channels))
 31                         continue;                  31                         continue;
 32                                                    32 
 33                 rates.min = min(rates.min, rat     33                 rates.min = min(rates.min, rate);
 34                 rates.max = max(rates.max, rat     34                 rates.max = max(rates.max, rate);
 35         }                                          35         }
 36                                                    36 
 37         return snd_interval_refine(r, &rates);     37         return snd_interval_refine(r, &rates);
 38 }                                                  38 }
 39                                                    39 
 40 static int motu_channels_constraint(struct snd     40 static int motu_channels_constraint(struct snd_pcm_hw_params *params,
 41                                     struct snd     41                                     struct snd_pcm_hw_rule *rule)
 42 {                                                  42 {
 43         struct snd_motu_packet_format *formats     43         struct snd_motu_packet_format *formats = rule->private;
 44                                                    44 
 45         const struct snd_interval *r =             45         const struct snd_interval *r =
 46                 hw_param_interval_c(params, SN     46                 hw_param_interval_c(params, SNDRV_PCM_HW_PARAM_RATE);
 47         struct snd_interval *c =                   47         struct snd_interval *c =
 48                 hw_param_interval(params, SNDR     48                 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
 49         struct snd_interval channels = {           49         struct snd_interval channels = {
 50                 .min = UINT_MAX, .max = 0, .in     50                 .min = UINT_MAX, .max = 0, .integer = 1
 51         };                                         51         };
 52         unsigned int i, pcm_channels, rate, mo     52         unsigned int i, pcm_channels, rate, mode;
 53                                                    53 
 54         for (i = 0; i < ARRAY_SIZE(snd_motu_cl     54         for (i = 0; i < ARRAY_SIZE(snd_motu_clock_rates); ++i) {
 55                 rate = snd_motu_clock_rates[i]     55                 rate = snd_motu_clock_rates[i];
 56                 mode = i / 2;                      56                 mode = i / 2;
 57                                                    57 
 58                 if (!snd_interval_test(r, rate     58                 if (!snd_interval_test(r, rate))
 59                         continue;                  59                         continue;
 60                                                    60 
 61                 pcm_channels = formats->pcm_ch     61                 pcm_channels = formats->pcm_chunks[mode];
 62                 channels.min = min(channels.mi     62                 channels.min = min(channels.min, pcm_channels);
 63                 channels.max = max(channels.ma     63                 channels.max = max(channels.max, pcm_channels);
 64         }                                          64         }
 65                                                    65 
 66         return snd_interval_refine(c, &channel     66         return snd_interval_refine(c, &channels);
 67 }                                                  67 }
 68                                                    68 
 69 static void limit_channels_and_rates(struct sn     69 static void limit_channels_and_rates(struct snd_motu *motu,
 70                                      struct sn     70                                      struct snd_pcm_runtime *runtime,
 71                                      struct sn     71                                      struct snd_motu_packet_format *formats)
 72 {                                                  72 {
 73         struct snd_pcm_hardware *hw = &runtime     73         struct snd_pcm_hardware *hw = &runtime->hw;
 74         unsigned int i, pcm_channels, rate, mo     74         unsigned int i, pcm_channels, rate, mode;
 75                                                    75 
 76         hw->channels_min = UINT_MAX;               76         hw->channels_min = UINT_MAX;
 77         hw->channels_max = 0;                      77         hw->channels_max = 0;
 78                                                    78 
 79         for (i = 0; i < ARRAY_SIZE(snd_motu_cl     79         for (i = 0; i < ARRAY_SIZE(snd_motu_clock_rates); ++i) {
 80                 rate = snd_motu_clock_rates[i]     80                 rate = snd_motu_clock_rates[i];
 81                 mode = i / 2;                      81                 mode = i / 2;
 82                                                    82 
 83                 pcm_channels = formats->pcm_ch     83                 pcm_channels = formats->pcm_chunks[mode];
 84                 if (pcm_channels == 0)             84                 if (pcm_channels == 0)
 85                         continue;                  85                         continue;
 86                                                    86 
 87                 hw->rates |= snd_pcm_rate_to_r     87                 hw->rates |= snd_pcm_rate_to_rate_bit(rate);
 88                 hw->channels_min = min(hw->cha     88                 hw->channels_min = min(hw->channels_min, pcm_channels);
 89                 hw->channels_max = max(hw->cha     89                 hw->channels_max = max(hw->channels_max, pcm_channels);
 90         }                                          90         }
 91                                                    91 
 92         snd_pcm_limit_hw_rates(runtime);           92         snd_pcm_limit_hw_rates(runtime);
 93 }                                                  93 }
 94                                                    94 
 95 static int init_hw_info(struct snd_motu *motu,     95 static int init_hw_info(struct snd_motu *motu,
 96                         struct snd_pcm_substre     96                         struct snd_pcm_substream *substream)
 97 {                                                  97 {
 98         struct snd_pcm_runtime *runtime = subs     98         struct snd_pcm_runtime *runtime = substream->runtime;
 99         struct snd_pcm_hardware *hw = &runtime     99         struct snd_pcm_hardware *hw = &runtime->hw;
100         struct amdtp_stream *stream;              100         struct amdtp_stream *stream;
101         struct snd_motu_packet_format *formats    101         struct snd_motu_packet_format *formats;
102         int err;                                  102         int err;
103                                                   103 
104         if (substream->stream == SNDRV_PCM_STR    104         if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
105                 hw->formats = SNDRV_PCM_FMTBIT    105                 hw->formats = SNDRV_PCM_FMTBIT_S32;
106                 stream = &motu->tx_stream;        106                 stream = &motu->tx_stream;
107                 formats = &motu->tx_packet_for    107                 formats = &motu->tx_packet_formats;
108         } else {                                  108         } else {
109                 hw->formats = SNDRV_PCM_FMTBIT    109                 hw->formats = SNDRV_PCM_FMTBIT_S32;
110                 stream = &motu->rx_stream;        110                 stream = &motu->rx_stream;
111                 formats = &motu->rx_packet_for    111                 formats = &motu->rx_packet_formats;
112         }                                         112         }
113                                                   113 
114         limit_channels_and_rates(motu, runtime    114         limit_channels_and_rates(motu, runtime, formats);
115                                                   115 
116         err = snd_pcm_hw_rule_add(runtime, 0,     116         err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
117                                   motu_rate_co    117                                   motu_rate_constraint, formats,
118                                   SNDRV_PCM_HW    118                                   SNDRV_PCM_HW_PARAM_CHANNELS, -1);
119         if (err < 0)                              119         if (err < 0)
120                 return err;                       120                 return err;
121         err = snd_pcm_hw_rule_add(runtime, 0,     121         err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
122                                   motu_channel    122                                   motu_channels_constraint, formats,
123                                   SNDRV_PCM_HW    123                                   SNDRV_PCM_HW_PARAM_RATE, -1);
124         if (err < 0)                              124         if (err < 0)
125                 return err;                       125                 return err;
126                                                   126 
127         return amdtp_motu_add_pcm_hw_constrain    127         return amdtp_motu_add_pcm_hw_constraints(stream, runtime);
128 }                                                 128 }
129                                                   129 
130 static int pcm_open(struct snd_pcm_substream *    130 static int pcm_open(struct snd_pcm_substream *substream)
131 {                                                 131 {
132         struct snd_motu *motu = substream->pri    132         struct snd_motu *motu = substream->private_data;
133         struct amdtp_domain *d = &motu->domain    133         struct amdtp_domain *d = &motu->domain;
134         enum snd_motu_clock_source src;           134         enum snd_motu_clock_source src;
135         int err;                                  135         int err;
136                                                   136 
137         err = snd_motu_stream_lock_try(motu);     137         err = snd_motu_stream_lock_try(motu);
138         if (err < 0)                              138         if (err < 0)
139                 return err;                       139                 return err;
140                                                   140 
141         mutex_lock(&motu->mutex);                 141         mutex_lock(&motu->mutex);
142                                                   142 
143         err = snd_motu_stream_cache_packet_for    143         err = snd_motu_stream_cache_packet_formats(motu);
144         if (err < 0)                              144         if (err < 0)
145                 goto err_locked;                  145                 goto err_locked;
146                                                   146 
147         err = init_hw_info(motu, substream);      147         err = init_hw_info(motu, substream);
148         if (err < 0)                              148         if (err < 0)
149                 goto err_locked;                  149                 goto err_locked;
150                                                   150 
151         err = snd_motu_protocol_get_clock_sour    151         err = snd_motu_protocol_get_clock_source(motu, &src);
152         if (err < 0)                              152         if (err < 0)
153                 goto err_locked;                  153                 goto err_locked;
154                                                   154 
155         // When source of clock is not interna    155         // When source of clock is not internal or any stream is reserved for
156         // transmission of PCM frames, the ava    156         // transmission of PCM frames, the available sampling rate is limited
157         // at current one.                        157         // at current one.
158         if ((src != SND_MOTU_CLOCK_SOURCE_INTE    158         if ((src != SND_MOTU_CLOCK_SOURCE_INTERNAL &&
159              src != SND_MOTU_CLOCK_SOURCE_SPH)    159              src != SND_MOTU_CLOCK_SOURCE_SPH) ||
160             (motu->substreams_counter > 0 && d    160             (motu->substreams_counter > 0 && d->events_per_period > 0)) {
161                 unsigned int frames_per_period    161                 unsigned int frames_per_period = d->events_per_period;
162                 unsigned int frames_per_buffer    162                 unsigned int frames_per_buffer = d->events_per_buffer;
163                 unsigned int rate;                163                 unsigned int rate;
164                                                   164 
165                 err = snd_motu_protocol_get_cl    165                 err = snd_motu_protocol_get_clock_rate(motu, &rate);
166                 if (err < 0)                      166                 if (err < 0)
167                         goto err_locked;          167                         goto err_locked;
168                                                   168 
169                 substream->runtime->hw.rate_mi    169                 substream->runtime->hw.rate_min = rate;
170                 substream->runtime->hw.rate_ma    170                 substream->runtime->hw.rate_max = rate;
171                                                   171 
172                 if (frames_per_period > 0) {      172                 if (frames_per_period > 0) {
173                         err = snd_pcm_hw_const    173                         err = snd_pcm_hw_constraint_minmax(substream->runtime,
174                                         SNDRV_    174                                         SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
175                                         frames    175                                         frames_per_period, frames_per_period);
176                         if (err < 0)              176                         if (err < 0)
177                                 goto err_locke    177                                 goto err_locked;
178                                                   178 
179                         err = snd_pcm_hw_const    179                         err = snd_pcm_hw_constraint_minmax(substream->runtime,
180                                         SNDRV_    180                                         SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
181                                         frames    181                                         frames_per_buffer, frames_per_buffer);
182                         if (err < 0)              182                         if (err < 0)
183                                 goto err_locke    183                                 goto err_locked;
184                 }                                 184                 }
185         }                                         185         }
186                                                   186 
187         snd_pcm_set_sync(substream);              187         snd_pcm_set_sync(substream);
188                                                   188 
189         mutex_unlock(&motu->mutex);               189         mutex_unlock(&motu->mutex);
190                                                   190 
191         return 0;                                 191         return 0;
192 err_locked:                                       192 err_locked:
193         mutex_unlock(&motu->mutex);               193         mutex_unlock(&motu->mutex);
194         snd_motu_stream_lock_release(motu);       194         snd_motu_stream_lock_release(motu);
195         return err;                               195         return err;
196 }                                                 196 }
197                                                   197 
198 static int pcm_close(struct snd_pcm_substream     198 static int pcm_close(struct snd_pcm_substream *substream)
199 {                                                 199 {
200         struct snd_motu *motu = substream->pri    200         struct snd_motu *motu = substream->private_data;
201                                                   201 
202         snd_motu_stream_lock_release(motu);       202         snd_motu_stream_lock_release(motu);
203                                                   203 
204         return 0;                                 204         return 0;
205 }                                                 205 }
206                                                   206 
207 static int pcm_hw_params(struct snd_pcm_substr    207 static int pcm_hw_params(struct snd_pcm_substream *substream,
208                          struct snd_pcm_hw_par    208                          struct snd_pcm_hw_params *hw_params)
209 {                                                 209 {
210         struct snd_motu *motu = substream->pri    210         struct snd_motu *motu = substream->private_data;
211         int err = 0;                              211         int err = 0;
212                                                   212 
213         if (substream->runtime->state == SNDRV !! 213         if (substream->runtime->status->state == SNDRV_PCM_STATE_OPEN) {
214                 unsigned int rate = params_rat    214                 unsigned int rate = params_rate(hw_params);
215                 unsigned int frames_per_period    215                 unsigned int frames_per_period = params_period_size(hw_params);
216                 unsigned int frames_per_buffer    216                 unsigned int frames_per_buffer = params_buffer_size(hw_params);
217                                                   217 
218                 mutex_lock(&motu->mutex);         218                 mutex_lock(&motu->mutex);
219                 err = snd_motu_stream_reserve_    219                 err = snd_motu_stream_reserve_duplex(motu, rate,
220                                         frames    220                                         frames_per_period, frames_per_buffer);
221                 if (err >= 0)                     221                 if (err >= 0)
222                         ++motu->substreams_cou    222                         ++motu->substreams_counter;
223                 mutex_unlock(&motu->mutex);       223                 mutex_unlock(&motu->mutex);
224         }                                         224         }
225                                                   225 
226         return err;                               226         return err;
227 }                                                 227 }
228                                                   228 
229 static int pcm_hw_free(struct snd_pcm_substrea    229 static int pcm_hw_free(struct snd_pcm_substream *substream)
230 {                                                 230 {
231         struct snd_motu *motu = substream->pri    231         struct snd_motu *motu = substream->private_data;
232                                                   232 
233         mutex_lock(&motu->mutex);                 233         mutex_lock(&motu->mutex);
234                                                   234 
235         if (substream->runtime->state != SNDRV !! 235         if (substream->runtime->status->state != SNDRV_PCM_STATE_OPEN)
236                 --motu->substreams_counter;       236                 --motu->substreams_counter;
237                                                   237 
238         snd_motu_stream_stop_duplex(motu);        238         snd_motu_stream_stop_duplex(motu);
239                                                   239 
240         mutex_unlock(&motu->mutex);               240         mutex_unlock(&motu->mutex);
241                                                   241 
242         return 0;                                 242         return 0;
243 }                                                 243 }
244                                                   244 
245 static int capture_prepare(struct snd_pcm_subs    245 static int capture_prepare(struct snd_pcm_substream *substream)
246 {                                                 246 {
247         struct snd_motu *motu = substream->pri    247         struct snd_motu *motu = substream->private_data;
248         int err;                                  248         int err;
249                                                   249 
250         mutex_lock(&motu->mutex);                 250         mutex_lock(&motu->mutex);
251         err = snd_motu_stream_start_duplex(mot    251         err = snd_motu_stream_start_duplex(motu);
252         mutex_unlock(&motu->mutex);               252         mutex_unlock(&motu->mutex);
253         if (err >= 0)                             253         if (err >= 0)
254                 amdtp_stream_pcm_prepare(&motu    254                 amdtp_stream_pcm_prepare(&motu->tx_stream);
255                                                   255 
256         return 0;                                 256         return 0;
257 }                                                 257 }
258 static int playback_prepare(struct snd_pcm_sub    258 static int playback_prepare(struct snd_pcm_substream *substream)
259 {                                                 259 {
260         struct snd_motu *motu = substream->pri    260         struct snd_motu *motu = substream->private_data;
261         int err;                                  261         int err;
262                                                   262 
263         mutex_lock(&motu->mutex);                 263         mutex_lock(&motu->mutex);
264         err = snd_motu_stream_start_duplex(mot    264         err = snd_motu_stream_start_duplex(motu);
265         mutex_unlock(&motu->mutex);               265         mutex_unlock(&motu->mutex);
266         if (err >= 0)                             266         if (err >= 0)
267                 amdtp_stream_pcm_prepare(&motu    267                 amdtp_stream_pcm_prepare(&motu->rx_stream);
268                                                   268 
269         return err;                               269         return err;
270 }                                                 270 }
271                                                   271 
272 static int capture_trigger(struct snd_pcm_subs    272 static int capture_trigger(struct snd_pcm_substream *substream, int cmd)
273 {                                                 273 {
274         struct snd_motu *motu = substream->pri    274         struct snd_motu *motu = substream->private_data;
275                                                   275 
276         switch (cmd) {                            276         switch (cmd) {
277         case SNDRV_PCM_TRIGGER_START:             277         case SNDRV_PCM_TRIGGER_START:
278                 amdtp_stream_pcm_trigger(&motu    278                 amdtp_stream_pcm_trigger(&motu->tx_stream, substream);
279                 break;                            279                 break;
280         case SNDRV_PCM_TRIGGER_STOP:              280         case SNDRV_PCM_TRIGGER_STOP:
281                 amdtp_stream_pcm_trigger(&motu    281                 amdtp_stream_pcm_trigger(&motu->tx_stream, NULL);
282                 break;                            282                 break;
283         default:                                  283         default:
284                 return -EINVAL;                   284                 return -EINVAL;
285         }                                         285         }
286                                                   286 
287         return 0;                                 287         return 0;
288 }                                                 288 }
289 static int playback_trigger(struct snd_pcm_sub    289 static int playback_trigger(struct snd_pcm_substream *substream, int cmd)
290 {                                                 290 {
291         struct snd_motu *motu = substream->pri    291         struct snd_motu *motu = substream->private_data;
292                                                   292 
293         switch (cmd) {                            293         switch (cmd) {
294         case SNDRV_PCM_TRIGGER_START:             294         case SNDRV_PCM_TRIGGER_START:
295                 amdtp_stream_pcm_trigger(&motu    295                 amdtp_stream_pcm_trigger(&motu->rx_stream, substream);
296                 break;                            296                 break;
297         case SNDRV_PCM_TRIGGER_STOP:              297         case SNDRV_PCM_TRIGGER_STOP:
298                 amdtp_stream_pcm_trigger(&motu    298                 amdtp_stream_pcm_trigger(&motu->rx_stream, NULL);
299                 break;                            299                 break;
300         default:                                  300         default:
301                 return -EINVAL;                   301                 return -EINVAL;
302         }                                         302         }
303                                                   303 
304         return 0;                                 304         return 0;
305 }                                                 305 }
306                                                   306 
307 static snd_pcm_uframes_t capture_pointer(struc    307 static snd_pcm_uframes_t capture_pointer(struct snd_pcm_substream *substream)
308 {                                                 308 {
309         struct snd_motu *motu = substream->pri    309         struct snd_motu *motu = substream->private_data;
310                                                   310 
311         return amdtp_domain_stream_pcm_pointer    311         return amdtp_domain_stream_pcm_pointer(&motu->domain, &motu->tx_stream);
312 }                                                 312 }
313 static snd_pcm_uframes_t playback_pointer(stru    313 static snd_pcm_uframes_t playback_pointer(struct snd_pcm_substream *substream)
314 {                                                 314 {
315         struct snd_motu *motu = substream->pri    315         struct snd_motu *motu = substream->private_data;
316                                                   316 
317         return amdtp_domain_stream_pcm_pointer    317         return amdtp_domain_stream_pcm_pointer(&motu->domain, &motu->rx_stream);
318 }                                                 318 }
319                                                   319 
320 static int capture_ack(struct snd_pcm_substrea    320 static int capture_ack(struct snd_pcm_substream *substream)
321 {                                                 321 {
322         struct snd_motu *motu = substream->pri    322         struct snd_motu *motu = substream->private_data;
323                                                   323 
324         return amdtp_domain_stream_pcm_ack(&mo    324         return amdtp_domain_stream_pcm_ack(&motu->domain, &motu->tx_stream);
325 }                                                 325 }
326                                                   326 
327 static int playback_ack(struct snd_pcm_substre    327 static int playback_ack(struct snd_pcm_substream *substream)
328 {                                                 328 {
329         struct snd_motu *motu = substream->pri    329         struct snd_motu *motu = substream->private_data;
330                                                   330 
331         return amdtp_domain_stream_pcm_ack(&mo    331         return amdtp_domain_stream_pcm_ack(&motu->domain, &motu->rx_stream);
332 }                                                 332 }
333                                                   333 
334 int snd_motu_create_pcm_devices(struct snd_mot    334 int snd_motu_create_pcm_devices(struct snd_motu *motu)
335 {                                                 335 {
336         static const struct snd_pcm_ops captur    336         static const struct snd_pcm_ops capture_ops = {
337                 .open      = pcm_open,            337                 .open      = pcm_open,
338                 .close     = pcm_close,           338                 .close     = pcm_close,
339                 .hw_params = pcm_hw_params,       339                 .hw_params = pcm_hw_params,
340                 .hw_free   = pcm_hw_free,         340                 .hw_free   = pcm_hw_free,
341                 .prepare   = capture_prepare,     341                 .prepare   = capture_prepare,
342                 .trigger   = capture_trigger,     342                 .trigger   = capture_trigger,
343                 .pointer   = capture_pointer,     343                 .pointer   = capture_pointer,
344                 .ack       = capture_ack,         344                 .ack       = capture_ack,
345         };                                        345         };
346         static const struct snd_pcm_ops playba    346         static const struct snd_pcm_ops playback_ops = {
347                 .open      = pcm_open,            347                 .open      = pcm_open,
348                 .close     = pcm_close,           348                 .close     = pcm_close,
349                 .hw_params = pcm_hw_params,       349                 .hw_params = pcm_hw_params,
350                 .hw_free   = pcm_hw_free,         350                 .hw_free   = pcm_hw_free,
351                 .prepare   = playback_prepare,    351                 .prepare   = playback_prepare,
352                 .trigger   = playback_trigger,    352                 .trigger   = playback_trigger,
353                 .pointer   = playback_pointer,    353                 .pointer   = playback_pointer,
354                 .ack       = playback_ack,        354                 .ack       = playback_ack,
355         };                                        355         };
356         struct snd_pcm *pcm;                      356         struct snd_pcm *pcm;
357         int err;                                  357         int err;
358                                                   358 
359         err = snd_pcm_new(motu->card, motu->ca    359         err = snd_pcm_new(motu->card, motu->card->driver, 0, 1, 1, &pcm);
360         if (err < 0)                              360         if (err < 0)
361                 return err;                       361                 return err;
362         pcm->private_data = motu;                 362         pcm->private_data = motu;
363         strcpy(pcm->name, motu->card->shortnam    363         strcpy(pcm->name, motu->card->shortname);
364                                                   364 
365         snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_    365         snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &capture_ops);
366         snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_    366         snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &playback_ops);
367         snd_pcm_set_managed_buffer_all(pcm, SN    367         snd_pcm_set_managed_buffer_all(pcm, SNDRV_DMA_TYPE_VMALLOC, NULL, 0, 0);
368                                                   368 
369         return 0;                                 369         return 0;
370 }                                                 370 }
371                                                   371 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php