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>
24 Software stereo volume control.
26 static void change_volume(struct urb
*urb_out
, int volume
[],
31 if (volume
[0] == 256 && volume
[1] == 256)
32 return; /* maximum volume - no change */
34 if (bytes_per_frame
== 4) {
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;
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) {
50 val
= p
[0] + (p
[1] << 8) + ((signed char)p
[2] << 16);
51 val
= (val
* volume
[chn
& 1]) >> 8;
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) {
72 short *pi
= (short *)line6pcm
->prev_fbuf
;
73 short *po
= (short *)urb_out
->transfer_buffer
;
75 for (i
= 0; i
< frames
; ++i
) {
81 } else if (bytes_per_frame
== 6) {
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
)
90 for (; j
< bytes_per_frame
; ++j
)
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
-
100 line6pcm
->impulse_volume
;
101 line6pcm
->impulse_count
= line6pcm
->impulse_period
;
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
)
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
)
139 int i
, urb_size
, urb_frames
;
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
);
149 spin_lock_irqsave(&line6pcm
->lock_audio_out
, flags
);
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");
159 urb_out
= line6pcm
->urb_audio_out
[index
];
162 for (i
= 0; i
< LINE6_ISO_PACKETS
; ++i
) {
163 /* compute frame size for given sampling rate */
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
;
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
;
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 */
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.
212 len
= runtime
->buffer_size
- line6pcm
->pos_out
;
215 memcpy(urb_out
->transfer_buffer
,
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
);
223 dev_err(line6pcm
->line6
->ifcdev
, "driver bug: len = %d\n", len
); /* this is somewhat paranoid */
225 #if LINE6_REUSE_DMA_AREA_FOR_PLAYBACK
226 /* set the buffer pointer */
227 urb_out
->transfer_buffer
=
229 line6pcm
->pos_out
* bytes_per_frame
;
232 memcpy(urb_out
->transfer_buffer
,
234 line6pcm
->pos_out
* bytes_per_frame
,
235 urb_out
->transfer_buffer_length
);
239 line6pcm
->pos_out
+= urb_frames
;
240 if (line6pcm
->pos_out
>= runtime
->buffer_size
)
241 line6pcm
->pos_out
-= runtime
->buffer_size
;
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
,
254 if (line6pcm
->flags
& MASK_PCM_ALSA_CAPTURE
) {
255 line6_capture_copy(line6pcm
,
256 urb_out
->transfer_buffer
,
258 transfer_buffer_length
);
259 line6_capture_check_period(line6pcm
,
260 urb_out
->transfer_buffer_length
);
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
,
272 #ifdef CONFIG_LINE6_USB_IMPULSE_RESPONSE
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
,
286 ret
= usb_submit_urb(urb_out
, GFP_ATOMIC
);
289 set_bit(index
, &line6pcm
->active_urb_out
);
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
);
299 Submit all currently available playback URBs.
301 int line6_submit_audio_out_all_urbs(struct snd_line6_pcm
*line6pcm
)
305 for (i
= 0; i
< LINE6_ISO_BUFFERS
; ++i
) {
306 ret
= submit_audio_out_urb(line6pcm
);
315 Unlink all currently active playback URBs.
317 void line6_unlink_audio_out_urbs(struct snd_line6_pcm
*line6pcm
)
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
];
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
)
342 for (i
= LINE6_ISO_BUFFERS
; i
--;) {
343 if (test_bit(i
, &line6pcm
->active_urb_out
))
348 set_current_state(TASK_UNINTERRUPTIBLE
);
350 } while (--timeout
> 0);
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;
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
);
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
])
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
) {
412 if (test_and_clear_bit(index
, &line6pcm
->unlink_urb_out
))
415 spin_unlock_irqrestore(&line6pcm
->lock_audio_out
, flags
);
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
)
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
,
439 properties
->snd_line6_rates
));
443 runtime
->hw
= line6pcm
->properties
->snd_line6_playback_hw
;
447 /* close playback callback */
448 static int snd_line6_playback_close(struct snd_pcm_substream
*substream
)
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
)
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
)
465 if (substream
->pcm
->private_data
== NULL
)
467 substream
->private_data
= substream
->pcm
->private_data
;
468 line6pcm
= snd_pcm_substream_chip(substream
);
472 ret
= snd_pcm_lib_malloc_pages(substream
,
473 params_buffer_bytes(hw_params
));
477 line6pcm
->period_out
= params_period_bytes(hw_params
);
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
)
493 case SNDRV_PCM_TRIGGER_START
:
495 case SNDRV_PCM_TRIGGER_RESUME
:
497 err
= line6_pcm_start(line6pcm
, MASK_PCM_ALSA_PLAYBACK
);
504 case SNDRV_PCM_TRIGGER_STOP
:
506 case SNDRV_PCM_TRIGGER_SUSPEND
:
508 err
= line6_pcm_stop(line6pcm
, MASK_PCM_ALSA_PLAYBACK
);
515 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
516 set_bit(BIT_PAUSE_PLAYBACK
, &line6pcm
->flags
);
519 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
520 clear_bit(BIT_PAUSE_PLAYBACK
, &line6pcm
->flags
);
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
)
554 /* create audio URBs and fill in constant values: */
555 for (i
= 0; i
< LINE6_ISO_BUFFERS
; ++i
) {
558 /* URB for audio out: */
559 urb
= line6pcm
->urb_audio_out
[i
] =
560 usb_alloc_urb(LINE6_ISO_PACKETS
, GFP_KERNEL
);
563 dev_err(line6pcm
->line6
->ifcdev
, "Out of memory\n");
567 urb
->dev
= line6pcm
->line6
->usbdev
;
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
;