xref: /openbmc/linux/sound/firewire/bebob/bebob_pcm.c (revision 3e254b16)
1 /*
2  * bebob_pcm.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 
11 static int
12 hw_rule_rate(struct snd_pcm_hw_params *params, struct snd_pcm_hw_rule *rule)
13 {
14 	struct snd_bebob_stream_formation *formations = rule->private;
15 	struct snd_interval *r =
16 		hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
17 	const struct snd_interval *c =
18 		hw_param_interval_c(params, SNDRV_PCM_HW_PARAM_CHANNELS);
19 	struct snd_interval t = {
20 		.min = UINT_MAX, .max = 0, .integer = 1
21 	};
22 	unsigned int i;
23 
24 	for (i = 0; i < SND_BEBOB_STRM_FMT_ENTRIES; i++) {
25 		/* entry is invalid */
26 		if (formations[i].pcm == 0)
27 			continue;
28 
29 		if (!snd_interval_test(c, formations[i].pcm))
30 			continue;
31 
32 		t.min = min(t.min, snd_bebob_rate_table[i]);
33 		t.max = max(t.max, snd_bebob_rate_table[i]);
34 
35 	}
36 	return snd_interval_refine(r, &t);
37 }
38 
39 static int
40 hw_rule_channels(struct snd_pcm_hw_params *params, struct snd_pcm_hw_rule *rule)
41 {
42 	struct snd_bebob_stream_formation *formations = rule->private;
43 	struct snd_interval *c =
44 		hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
45 	const struct snd_interval *r =
46 		hw_param_interval_c(params, SNDRV_PCM_HW_PARAM_RATE);
47 	struct snd_interval t = {
48 		.min = UINT_MAX, .max = 0, .integer = 1
49 	};
50 
51 	unsigned int i;
52 
53 	for (i = 0; i < SND_BEBOB_STRM_FMT_ENTRIES; i++) {
54 		/* entry is invalid */
55 		if (formations[i].pcm == 0)
56 			continue;
57 
58 		if (!snd_interval_test(r, snd_bebob_rate_table[i]))
59 			continue;
60 
61 		t.min = min(t.min, formations[i].pcm);
62 		t.max = max(t.max, formations[i].pcm);
63 	}
64 
65 	return snd_interval_refine(c, &t);
66 }
67 
68 static void
69 limit_channels_and_rates(struct snd_pcm_hardware *hw,
70 			 struct snd_bebob_stream_formation *formations)
71 {
72 	unsigned int i;
73 
74 	hw->channels_min = UINT_MAX;
75 	hw->channels_max = 0;
76 
77 	hw->rate_min = UINT_MAX;
78 	hw->rate_max = 0;
79 	hw->rates = 0;
80 
81 	for (i = 0; i < SND_BEBOB_STRM_FMT_ENTRIES; i++) {
82 		/* entry has no PCM channels */
83 		if (formations[i].pcm == 0)
84 			continue;
85 
86 		hw->channels_min = min(hw->channels_min, formations[i].pcm);
87 		hw->channels_max = max(hw->channels_max, formations[i].pcm);
88 
89 		hw->rate_min = min(hw->rate_min, snd_bebob_rate_table[i]);
90 		hw->rate_max = max(hw->rate_max, snd_bebob_rate_table[i]);
91 		hw->rates |= snd_pcm_rate_to_rate_bit(snd_bebob_rate_table[i]);
92 	}
93 }
94 
95 static void
96 limit_period_and_buffer(struct snd_pcm_hardware *hw)
97 {
98 	hw->periods_min = 2;		/* SNDRV_PCM_INFO_BATCH */
99 	hw->periods_max = UINT_MAX;
100 
101 	hw->period_bytes_min = 4 * hw->channels_max;	/* bytes for a frame */
102 
103 	/* Just to prevent from allocating much pages. */
104 	hw->period_bytes_max = hw->period_bytes_min * 2048;
105 	hw->buffer_bytes_max = hw->period_bytes_max * hw->periods_min;
106 }
107 
108 static int
109 pcm_init_hw_params(struct snd_bebob *bebob,
110 		   struct snd_pcm_substream *substream)
111 {
112 	struct snd_pcm_runtime *runtime = substream->runtime;
113 	struct amdtp_stream *s;
114 	struct snd_bebob_stream_formation *formations;
115 	int err;
116 
117 	runtime->hw.info = SNDRV_PCM_INFO_BATCH |
118 			   SNDRV_PCM_INFO_BLOCK_TRANSFER |
119 			   SNDRV_PCM_INFO_INTERLEAVED |
120 			   SNDRV_PCM_INFO_JOINT_DUPLEX |
121 			   SNDRV_PCM_INFO_MMAP |
122 			   SNDRV_PCM_INFO_MMAP_VALID;
123 
124 	if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
125 		runtime->hw.formats = AMDTP_IN_PCM_FORMAT_BITS;
126 		s = &bebob->tx_stream;
127 		formations = bebob->tx_stream_formations;
128 	} else {
129 		runtime->hw.formats = AMDTP_OUT_PCM_FORMAT_BITS;
130 		s = &bebob->rx_stream;
131 		formations = bebob->rx_stream_formations;
132 	}
133 
134 	limit_channels_and_rates(&runtime->hw, formations);
135 	limit_period_and_buffer(&runtime->hw);
136 
137 	err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
138 				  hw_rule_channels, formations,
139 				  SNDRV_PCM_HW_PARAM_RATE, -1);
140 	if (err < 0)
141 		goto end;
142 
143 	err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
144 				  hw_rule_rate, formations,
145 				  SNDRV_PCM_HW_PARAM_CHANNELS, -1);
146 	if (err < 0)
147 		goto end;
148 
149 	err = amdtp_stream_add_pcm_hw_constraints(s, runtime);
150 end:
151 	return err;
152 }
153 
154 static int
155 pcm_open(struct snd_pcm_substream *substream)
156 {
157 	struct snd_bebob *bebob = substream->private_data;
158 	struct snd_bebob_rate_spec *spec = bebob->spec->rate;
159 	unsigned int sampling_rate;
160 	enum snd_bebob_clock_type src;
161 	int err;
162 
163 	err = snd_bebob_stream_lock_try(bebob);
164 	if (err < 0)
165 		goto end;
166 
167 	err = pcm_init_hw_params(bebob, substream);
168 	if (err < 0)
169 		goto err_locked;
170 
171 	err = snd_bebob_stream_get_clock_src(bebob, &src);
172 	if (err < 0)
173 		goto err_locked;
174 	/* SYT-Match is not supported. */
175 	if (src == SND_BEBOB_CLOCK_TYPE_SYT) {
176 		err = -EBUSY;
177 		goto err_locked;
178 	}
179 
180 	/*
181 	 * When source of clock is internal or any PCM stream are running,
182 	 * the available sampling rate is limited at current sampling rate.
183 	 */
184 	if (src == SND_BEBOB_CLOCK_TYPE_EXTERNAL ||
185 	    amdtp_stream_pcm_running(&bebob->tx_stream) ||
186 	    amdtp_stream_pcm_running(&bebob->rx_stream)) {
187 		err = spec->get(bebob, &sampling_rate);
188 		if (err < 0) {
189 			dev_err(&bebob->unit->device,
190 				"fail to get sampling rate: %d\n", err);
191 			goto err_locked;
192 		}
193 
194 		substream->runtime->hw.rate_min = sampling_rate;
195 		substream->runtime->hw.rate_max = sampling_rate;
196 	}
197 
198 	snd_pcm_set_sync(substream);
199 end:
200 	return err;
201 err_locked:
202 	snd_bebob_stream_lock_release(bebob);
203 	return err;
204 }
205 
206 static int
207 pcm_close(struct snd_pcm_substream *substream)
208 {
209 	struct snd_bebob *bebob = substream->private_data;
210 	snd_bebob_stream_lock_release(bebob);
211 	return 0;
212 }
213 
214 static int
215 pcm_capture_hw_params(struct snd_pcm_substream *substream,
216 		      struct snd_pcm_hw_params *hw_params)
217 {
218 	struct snd_bebob *bebob = substream->private_data;
219 
220 	if (substream->runtime->status->state == SNDRV_PCM_STATE_OPEN)
221 		atomic_inc(&bebob->capture_substreams);
222 	amdtp_stream_set_pcm_format(&bebob->tx_stream,
223 				    params_format(hw_params));
224 	return snd_pcm_lib_alloc_vmalloc_buffer(substream,
225 						params_buffer_bytes(hw_params));
226 }
227 static int
228 pcm_playback_hw_params(struct snd_pcm_substream *substream,
229 		       struct snd_pcm_hw_params *hw_params)
230 {
231 	struct snd_bebob *bebob = substream->private_data;
232 
233 	if (substream->runtime->status->state == SNDRV_PCM_STATE_OPEN)
234 		atomic_inc(&bebob->playback_substreams);
235 	amdtp_stream_set_pcm_format(&bebob->rx_stream,
236 				    params_format(hw_params));
237 	return snd_pcm_lib_alloc_vmalloc_buffer(substream,
238 						params_buffer_bytes(hw_params));
239 }
240 
241 static int
242 pcm_capture_hw_free(struct snd_pcm_substream *substream)
243 {
244 	struct snd_bebob *bebob = substream->private_data;
245 
246 	if (substream->runtime->status->state != SNDRV_PCM_STATE_OPEN)
247 		atomic_dec(&bebob->capture_substreams);
248 
249 	snd_bebob_stream_stop_duplex(bebob);
250 
251 	return snd_pcm_lib_free_vmalloc_buffer(substream);
252 }
253 static int
254 pcm_playback_hw_free(struct snd_pcm_substream *substream)
255 {
256 	struct snd_bebob *bebob = substream->private_data;
257 
258 	if (substream->runtime->status->state != SNDRV_PCM_STATE_OPEN)
259 		atomic_dec(&bebob->playback_substreams);
260 
261 	snd_bebob_stream_stop_duplex(bebob);
262 
263 	return snd_pcm_lib_free_vmalloc_buffer(substream);
264 }
265 
266 static int
267 pcm_capture_prepare(struct snd_pcm_substream *substream)
268 {
269 	struct snd_bebob *bebob = substream->private_data;
270 	struct snd_pcm_runtime *runtime = substream->runtime;
271 	int err;
272 
273 	err = snd_bebob_stream_start_duplex(bebob, runtime->rate);
274 	if (err >= 0)
275 		amdtp_stream_pcm_prepare(&bebob->tx_stream);
276 
277 	return err;
278 }
279 static int
280 pcm_playback_prepare(struct snd_pcm_substream *substream)
281 {
282 	struct snd_bebob *bebob = substream->private_data;
283 	struct snd_pcm_runtime *runtime = substream->runtime;
284 	int err;
285 
286 	err = snd_bebob_stream_start_duplex(bebob, runtime->rate);
287 	if (err >= 0)
288 		amdtp_stream_pcm_prepare(&bebob->rx_stream);
289 
290 	return err;
291 }
292 
293 static int
294 pcm_capture_trigger(struct snd_pcm_substream *substream, int cmd)
295 {
296 	struct snd_bebob *bebob = substream->private_data;
297 
298 	switch (cmd) {
299 	case SNDRV_PCM_TRIGGER_START:
300 		amdtp_stream_pcm_trigger(&bebob->tx_stream, substream);
301 		break;
302 	case SNDRV_PCM_TRIGGER_STOP:
303 		amdtp_stream_pcm_trigger(&bebob->tx_stream, NULL);
304 		break;
305 	default:
306 		return -EINVAL;
307 	}
308 
309 	return 0;
310 }
311 static int
312 pcm_playback_trigger(struct snd_pcm_substream *substream, int cmd)
313 {
314 	struct snd_bebob *bebob = substream->private_data;
315 
316 	switch (cmd) {
317 	case SNDRV_PCM_TRIGGER_START:
318 		amdtp_stream_pcm_trigger(&bebob->rx_stream, substream);
319 		break;
320 	case SNDRV_PCM_TRIGGER_STOP:
321 		amdtp_stream_pcm_trigger(&bebob->rx_stream, NULL);
322 		break;
323 	default:
324 		return -EINVAL;
325 	}
326 
327 	return 0;
328 }
329 
330 static snd_pcm_uframes_t
331 pcm_capture_pointer(struct snd_pcm_substream *sbstrm)
332 {
333 	struct snd_bebob *bebob = sbstrm->private_data;
334 	return amdtp_stream_pcm_pointer(&bebob->tx_stream);
335 }
336 static snd_pcm_uframes_t
337 pcm_playback_pointer(struct snd_pcm_substream *sbstrm)
338 {
339 	struct snd_bebob *bebob = sbstrm->private_data;
340 	return amdtp_stream_pcm_pointer(&bebob->rx_stream);
341 }
342 
343 static const struct snd_pcm_ops pcm_capture_ops = {
344 	.open		= pcm_open,
345 	.close		= pcm_close,
346 	.ioctl		= snd_pcm_lib_ioctl,
347 	.hw_params	= pcm_capture_hw_params,
348 	.hw_free	= pcm_capture_hw_free,
349 	.prepare	= pcm_capture_prepare,
350 	.trigger	= pcm_capture_trigger,
351 	.pointer	= pcm_capture_pointer,
352 	.page		= snd_pcm_lib_get_vmalloc_page,
353 };
354 static const struct snd_pcm_ops pcm_playback_ops = {
355 	.open		= pcm_open,
356 	.close		= pcm_close,
357 	.ioctl		= snd_pcm_lib_ioctl,
358 	.hw_params	= pcm_playback_hw_params,
359 	.hw_free	= pcm_playback_hw_free,
360 	.prepare	= pcm_playback_prepare,
361 	.trigger	= pcm_playback_trigger,
362 	.pointer	= pcm_playback_pointer,
363 	.page		= snd_pcm_lib_get_vmalloc_page,
364 	.mmap		= snd_pcm_lib_mmap_vmalloc,
365 };
366 
367 int snd_bebob_create_pcm_devices(struct snd_bebob *bebob)
368 {
369 	struct snd_pcm *pcm;
370 	int err;
371 
372 	err = snd_pcm_new(bebob->card, bebob->card->driver, 0, 1, 1, &pcm);
373 	if (err < 0)
374 		goto end;
375 
376 	pcm->private_data = bebob;
377 	snprintf(pcm->name, sizeof(pcm->name),
378 		 "%s PCM", bebob->card->shortname);
379 	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &pcm_playback_ops);
380 	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &pcm_capture_ops);
381 end:
382 	return err;
383 }
384