staging:iio:trigger handle name attr in core, remove old alloc and register any contr...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / line6 / playback.c
blob10c54383658367ac4fc81eb2ddc6658a28e1da9d
1 /*
2 * Line6 Linux USB driver - 0.9.1beta
4 * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2.
12 #include <sound/core.h>
13 #include <sound/pcm.h>
14 #include <sound/pcm_params.h>
16 #include "audio.h"
17 #include "capture.h"
18 #include "driver.h"
19 #include "pcm.h"
20 #include "pod.h"
21 #include "playback.h"
24 Software stereo volume control.
26 static void change_volume(struct urb *urb_out, int volume[],
27 int bytes_per_frame)
29 int chn = 0;
31 if (volume[0] == 256 && volume[1] == 256)
32 return; /* maximum volume - no change */
34 if (bytes_per_frame == 4) {
35 short *p, *buf_end;
36 p = (short *)urb_out->transfer_buffer;
37 buf_end = p + urb_out->transfer_buffer_length / sizeof(*p);
39 for (; p < buf_end; ++p) {
40 *p = (*p * volume[chn & 1]) >> 8;
41 ++chn;
43 } else if (bytes_per_frame == 6) {
44 unsigned char *p, *buf_end;
45 p = (unsigned char *)urb_out->transfer_buffer;
46 buf_end = p + urb_out->transfer_buffer_length;
48 for (; p < buf_end; p += 3) {
49 int val;
50 val = p[0] + (p[1] << 8) + ((signed char)p[2] << 16);
51 val = (val * volume[chn & 1]) >> 8;
52 p[0] = val;
53 p[1] = val >> 8;
54 p[2] = val >> 16;
55 ++chn;
60 #ifdef CONFIG_LINE6_USB_IMPULSE_RESPONSE
63 Create signal for impulse response test.
65 static void create_impulse_test_signal(struct snd_line6_pcm *line6pcm,
66 struct urb *urb_out, int bytes_per_frame)
68 int frames = urb_out->transfer_buffer_length / bytes_per_frame;
70 if (bytes_per_frame == 4) {
71 int i;
72 short *pi = (short *)line6pcm->prev_fbuf;
73 short *po = (short *)urb_out->transfer_buffer;
75 for (i = 0; i < frames; ++i) {
76 po[0] = pi[0];
77 po[1] = 0;
78 pi += 2;
79 po += 2;
81 } else if (bytes_per_frame == 6) {
82 int i, j;
83 unsigned char *pi = line6pcm->prev_fbuf;
84 unsigned char *po = urb_out->transfer_buffer;
86 for (i = 0; i < frames; ++i) {
87 for (j = 0; j < bytes_per_frame / 2; ++j)
88 po[j] = pi[j];
90 for (; j < bytes_per_frame; ++j)
91 po[j] = 0;
93 pi += bytes_per_frame;
94 po += bytes_per_frame;
97 if (--line6pcm->impulse_count <= 0) {
98 ((unsigned char *)(urb_out->transfer_buffer))[bytes_per_frame -
99 1] =
100 line6pcm->impulse_volume;
101 line6pcm->impulse_count = line6pcm->impulse_period;
105 #endif
108 Add signal to buffer for software monitoring.
110 static void add_monitor_signal(struct urb *urb_out, unsigned char *signal,
111 int volume, int bytes_per_frame)
113 if (volume == 0)
114 return; /* zero volume - no change */
116 if (bytes_per_frame == 4) {
117 short *pi, *po, *buf_end;
118 pi = (short *)signal;
119 po = (short *)urb_out->transfer_buffer;
120 buf_end = po + urb_out->transfer_buffer_length / sizeof(*po);
122 for (; po < buf_end; ++pi, ++po)
123 *po += (*pi * volume) >> 8;
127 We don't need to handle devices with 6 bytes per frame here
128 since they all support hardware monitoring.
133 Find a free URB, prepare audio data, and submit URB.
135 static int submit_audio_out_urb(struct snd_line6_pcm *line6pcm)
137 int index;
138 unsigned long flags;
139 int i, urb_size, urb_frames;
140 int ret;
141 const int bytes_per_frame = line6pcm->properties->bytes_per_frame;
142 const int frame_increment =
143 line6pcm->properties->snd_line6_rates.rats[0].num_min;
144 const int frame_factor =
145 line6pcm->properties->snd_line6_rates.rats[0].den *
146 (USB_INTERVALS_PER_SECOND / LINE6_ISO_INTERVAL);
147 struct urb *urb_out;
149 spin_lock_irqsave(&line6pcm->lock_audio_out, flags);
150 index =
151 find_first_zero_bit(&line6pcm->active_urb_out, LINE6_ISO_BUFFERS);
153 if (index < 0 || index >= LINE6_ISO_BUFFERS) {
154 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
155 dev_err(line6pcm->line6->ifcdev, "no free URB found\n");
156 return -EINVAL;
159 urb_out = line6pcm->urb_audio_out[index];
160 urb_size = 0;
162 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
163 /* compute frame size for given sampling rate */
164 int fsize = 0;
165 struct usb_iso_packet_descriptor *fout =
166 &urb_out->iso_frame_desc[i];
168 if (line6pcm->flags & MASK_CAPTURE)
169 fsize = line6pcm->prev_fsize;
171 if (fsize == 0) {
172 int n;
173 line6pcm->count_out += frame_increment;
174 n = line6pcm->count_out / frame_factor;
175 line6pcm->count_out -= n * frame_factor;
176 fsize = n * bytes_per_frame;
179 fout->offset = urb_size;
180 fout->length = fsize;
181 urb_size += fsize;
184 if (urb_size == 0) {
185 /* can't determine URB size */
186 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
187 dev_err(line6pcm->line6->ifcdev, "driver bug: urb_size = 0\n"); /* this is somewhat paranoid */
188 return -EINVAL;
191 urb_frames = urb_size / bytes_per_frame;
192 urb_out->transfer_buffer =
193 line6pcm->buffer_out +
194 line6pcm->max_packet_size * line6pcm->index_out;
195 urb_out->transfer_buffer_length = urb_size;
196 urb_out->context = line6pcm;
198 if (++line6pcm->index_out == LINE6_ISO_BUFFERS)
199 line6pcm->index_out = 0;
201 if (test_bit(BIT_PCM_ALSA_PLAYBACK, &line6pcm->flags) &&
202 !test_bit(BIT_PAUSE_PLAYBACK, &line6pcm->flags)) {
203 struct snd_pcm_runtime *runtime =
204 get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK)->runtime;
206 if (line6pcm->pos_out + urb_frames > runtime->buffer_size) {
208 The transferred area goes over buffer boundary,
209 copy the data to the temp buffer.
211 int len;
212 len = runtime->buffer_size - line6pcm->pos_out;
214 if (len > 0) {
215 memcpy(urb_out->transfer_buffer,
216 runtime->dma_area +
217 line6pcm->pos_out * bytes_per_frame,
218 len * bytes_per_frame);
219 memcpy(urb_out->transfer_buffer +
220 len * bytes_per_frame, runtime->dma_area,
221 (urb_frames - len) * bytes_per_frame);
222 } else
223 dev_err(line6pcm->line6->ifcdev, "driver bug: len = %d\n", len); /* this is somewhat paranoid */
224 } else {
225 #if LINE6_REUSE_DMA_AREA_FOR_PLAYBACK
226 /* set the buffer pointer */
227 urb_out->transfer_buffer =
228 runtime->dma_area +
229 line6pcm->pos_out * bytes_per_frame;
230 #else
231 /* copy data */
232 memcpy(urb_out->transfer_buffer,
233 runtime->dma_area +
234 line6pcm->pos_out * bytes_per_frame,
235 urb_out->transfer_buffer_length);
236 #endif
239 line6pcm->pos_out += urb_frames;
240 if (line6pcm->pos_out >= runtime->buffer_size)
241 line6pcm->pos_out -= runtime->buffer_size;
242 } else {
243 memset(urb_out->transfer_buffer, 0,
244 urb_out->transfer_buffer_length);
247 change_volume(urb_out, line6pcm->volume_playback, bytes_per_frame);
249 if (line6pcm->prev_fbuf != NULL) {
250 #ifdef CONFIG_LINE6_USB_IMPULSE_RESPONSE
251 if (line6pcm->flags & MASK_PCM_IMPULSE) {
252 create_impulse_test_signal(line6pcm, urb_out,
253 bytes_per_frame);
254 if (line6pcm->flags & MASK_PCM_ALSA_CAPTURE) {
255 line6_capture_copy(line6pcm,
256 urb_out->transfer_buffer,
257 urb_out->
258 transfer_buffer_length);
259 line6_capture_check_period(line6pcm,
260 urb_out->transfer_buffer_length);
262 } else {
263 #endif
264 if (!
265 (line6pcm->line6->
266 properties->capabilities & LINE6_BIT_HWMON)
267 && (line6pcm->flags & MASK_PLAYBACK)
268 && (line6pcm->flags & MASK_CAPTURE))
269 add_monitor_signal(urb_out, line6pcm->prev_fbuf,
270 line6pcm->volume_monitor,
271 bytes_per_frame);
272 #ifdef CONFIG_LINE6_USB_IMPULSE_RESPONSE
274 #endif
276 #ifdef CONFIG_LINE6_USB_DUMP_PCM
277 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
278 struct usb_iso_packet_descriptor *fout =
279 &urb_out->iso_frame_desc[i];
280 line6_write_hexdump(line6pcm->line6, 'P',
281 urb_out->transfer_buffer + fout->offset,
282 fout->length);
284 #endif
286 ret = usb_submit_urb(urb_out, GFP_ATOMIC);
288 if (ret == 0)
289 set_bit(index, &line6pcm->active_urb_out);
290 else
291 dev_err(line6pcm->line6->ifcdev,
292 "URB out #%d submission failed (%d)\n", index, ret);
294 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
295 return 0;
299 Submit all currently available playback URBs.
301 int line6_submit_audio_out_all_urbs(struct snd_line6_pcm *line6pcm)
303 int ret, i;
305 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
306 ret = submit_audio_out_urb(line6pcm);
307 if (ret < 0)
308 return ret;
311 return 0;
315 Unlink all currently active playback URBs.
317 void line6_unlink_audio_out_urbs(struct snd_line6_pcm *line6pcm)
319 unsigned int i;
321 for (i = LINE6_ISO_BUFFERS; i--;) {
322 if (test_bit(i, &line6pcm->active_urb_out)) {
323 if (!test_and_set_bit(i, &line6pcm->unlink_urb_out)) {
324 struct urb *u = line6pcm->urb_audio_out[i];
325 usb_unlink_urb(u);
332 Wait until unlinking of all currently active playback URBs has been finished.
334 static void wait_clear_audio_out_urbs(struct snd_line6_pcm *line6pcm)
336 int timeout = HZ;
337 unsigned int i;
338 int alive;
340 do {
341 alive = 0;
342 for (i = LINE6_ISO_BUFFERS; i--;) {
343 if (test_bit(i, &line6pcm->active_urb_out))
344 alive++;
346 if (!alive)
347 break;
348 set_current_state(TASK_UNINTERRUPTIBLE);
349 schedule_timeout(1);
350 } while (--timeout > 0);
351 if (alive)
352 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
356 Unlink all currently active playback URBs, and wait for finishing.
358 void line6_unlink_wait_clear_audio_out_urbs(struct snd_line6_pcm *line6pcm)
360 line6_unlink_audio_out_urbs(line6pcm);
361 wait_clear_audio_out_urbs(line6pcm);
365 Callback for completed playback URB.
367 static void audio_out_callback(struct urb *urb)
369 int i, index, length = 0, shutdown = 0;
370 unsigned long flags;
372 struct snd_line6_pcm *line6pcm = (struct snd_line6_pcm *)urb->context;
373 struct snd_pcm_substream *substream =
374 get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK);
376 #if USE_CLEAR_BUFFER_WORKAROUND
377 memset(urb->transfer_buffer, 0, urb->transfer_buffer_length);
378 #endif
380 line6pcm->last_frame_out = urb->start_frame;
382 /* find index of URB */
383 for (index = LINE6_ISO_BUFFERS; index--;)
384 if (urb == line6pcm->urb_audio_out[index])
385 break;
387 if (index < 0)
388 return; /* URB has been unlinked asynchronously */
390 for (i = LINE6_ISO_PACKETS; i--;)
391 length += urb->iso_frame_desc[i].length;
393 spin_lock_irqsave(&line6pcm->lock_audio_out, flags);
395 if (test_bit(BIT_PCM_ALSA_PLAYBACK, &line6pcm->flags)) {
396 struct snd_pcm_runtime *runtime = substream->runtime;
397 line6pcm->pos_out_done +=
398 length / line6pcm->properties->bytes_per_frame;
400 if (line6pcm->pos_out_done >= runtime->buffer_size)
401 line6pcm->pos_out_done -= runtime->buffer_size;
404 clear_bit(index, &line6pcm->active_urb_out);
406 for (i = LINE6_ISO_PACKETS; i--;)
407 if (urb->iso_frame_desc[i].status == -EXDEV) {
408 shutdown = 1;
409 break;
412 if (test_and_clear_bit(index, &line6pcm->unlink_urb_out))
413 shutdown = 1;
415 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
417 if (!shutdown) {
418 submit_audio_out_urb(line6pcm);
420 if (test_bit(BIT_PCM_ALSA_PLAYBACK, &line6pcm->flags)) {
421 line6pcm->bytes_out += length;
422 if (line6pcm->bytes_out >= line6pcm->period_out) {
423 line6pcm->bytes_out %= line6pcm->period_out;
424 snd_pcm_period_elapsed(substream);
430 /* open playback callback */
431 static int snd_line6_playback_open(struct snd_pcm_substream *substream)
433 int err;
434 struct snd_pcm_runtime *runtime = substream->runtime;
435 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
437 err = snd_pcm_hw_constraint_ratdens(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
438 (&line6pcm->
439 properties->snd_line6_rates));
440 if (err < 0)
441 return err;
443 runtime->hw = line6pcm->properties->snd_line6_playback_hw;
444 return 0;
447 /* close playback callback */
448 static int snd_line6_playback_close(struct snd_pcm_substream *substream)
450 return 0;
453 /* hw_params playback callback */
454 static int snd_line6_playback_hw_params(struct snd_pcm_substream *substream,
455 struct snd_pcm_hw_params *hw_params)
457 int ret;
458 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
460 /* -- Florian Demski [FD] */
461 /* don't ask me why, but this fixes the bug on my machine */
462 if (line6pcm == NULL) {
463 if (substream->pcm == NULL)
464 return -ENOMEM;
465 if (substream->pcm->private_data == NULL)
466 return -ENOMEM;
467 substream->private_data = substream->pcm->private_data;
468 line6pcm = snd_pcm_substream_chip(substream);
470 /* -- [FD] end */
472 ret = snd_pcm_lib_malloc_pages(substream,
473 params_buffer_bytes(hw_params));
474 if (ret < 0)
475 return ret;
477 line6pcm->period_out = params_period_bytes(hw_params);
478 return 0;
481 /* hw_free playback callback */
482 static int snd_line6_playback_hw_free(struct snd_pcm_substream *substream)
484 return snd_pcm_lib_free_pages(substream);
487 /* trigger playback callback */
488 int snd_line6_playback_trigger(struct snd_line6_pcm *line6pcm, int cmd)
490 int err;
492 switch (cmd) {
493 case SNDRV_PCM_TRIGGER_START:
494 #ifdef CONFIG_PM
495 case SNDRV_PCM_TRIGGER_RESUME:
496 #endif
497 err = line6_pcm_start(line6pcm, MASK_PCM_ALSA_PLAYBACK);
499 if (err < 0)
500 return err;
502 break;
504 case SNDRV_PCM_TRIGGER_STOP:
505 #ifdef CONFIG_PM
506 case SNDRV_PCM_TRIGGER_SUSPEND:
507 #endif
508 err = line6_pcm_stop(line6pcm, MASK_PCM_ALSA_PLAYBACK);
510 if (err < 0)
511 return err;
513 break;
515 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
516 set_bit(BIT_PAUSE_PLAYBACK, &line6pcm->flags);
517 break;
519 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
520 clear_bit(BIT_PAUSE_PLAYBACK, &line6pcm->flags);
521 break;
523 default:
524 return -EINVAL;
527 return 0;
530 /* playback pointer callback */
531 static snd_pcm_uframes_t
532 snd_line6_playback_pointer(struct snd_pcm_substream *substream)
534 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
535 return line6pcm->pos_out_done;
538 /* playback operators */
539 struct snd_pcm_ops snd_line6_playback_ops = {
540 .open = snd_line6_playback_open,
541 .close = snd_line6_playback_close,
542 .ioctl = snd_pcm_lib_ioctl,
543 .hw_params = snd_line6_playback_hw_params,
544 .hw_free = snd_line6_playback_hw_free,
545 .prepare = snd_line6_prepare,
546 .trigger = snd_line6_trigger,
547 .pointer = snd_line6_playback_pointer,
550 int line6_create_audio_out_urbs(struct snd_line6_pcm *line6pcm)
552 int i;
554 /* create audio URBs and fill in constant values: */
555 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
556 struct urb *urb;
558 /* URB for audio out: */
559 urb = line6pcm->urb_audio_out[i] =
560 usb_alloc_urb(LINE6_ISO_PACKETS, GFP_KERNEL);
562 if (urb == NULL) {
563 dev_err(line6pcm->line6->ifcdev, "Out of memory\n");
564 return -ENOMEM;
567 urb->dev = line6pcm->line6->usbdev;
568 urb->pipe =
569 usb_sndisocpipe(line6pcm->line6->usbdev,
570 line6pcm->ep_audio_write &
571 USB_ENDPOINT_NUMBER_MASK);
572 urb->transfer_flags = URB_ISO_ASAP;
573 urb->start_frame = -1;
574 urb->number_of_packets = LINE6_ISO_PACKETS;
575 urb->interval = LINE6_ISO_INTERVAL;
576 urb->error_count = 0;
577 urb->complete = audio_out_callback;
580 return 0;